2025-04-24 17:03:28 +08:00

27 lines
899 B
TypeScript

import { EAttrTypeL1 } from "../../../../core/EEnum";
import SkillBase, { ActionType, ESkillQuality, ESkillType } from "../../core/SkillBase";
// 戰心清明
export default class ZhanXinQingMing extends SkillBase {
constructor() {
super();
this.init();
}
init() {
this.id = ESkillType.ZhanXinQingMing;
this.name = "戰心清明";
this.icon = 'zxqm';
this.desc = "增加攻擊力、抗混亂、抗遺忘";
this.effectDesc = "[A]增加攻擊力{0}%;[E]增加抗混亂{1}%;[E]增加抗遺忘{2}%";
this.effectMap = {
[EAttrTypeL1.ATK_PERC]: { add: 1.88, index: 0 },
[EAttrTypeL1.K_CONFUSION]: { add: 1.56, index: 1 },
[EAttrTypeL1.K_FORGET]: { add: 1.88, index: 2 }
};
this.attrDesc = "攻 抗混 抗忘";
this.action_type = ActionType.PASSIVE;
this.quality = ESkillQuality.LOW;
}
}