26 lines
792 B
TypeScript
26 lines
792 B
TypeScript
|
import { EAttrTypeL1 } from "../../../../core/EEnum";
|
||
|
import SkillBase, { ActionType, ESkillQuality, ESkillType } from "../../core/SkillBase";
|
||
|
|
||
|
// 金戈鐵甲
|
||
|
export default class JinGeTieJia extends SkillBase {
|
||
|
constructor() {
|
||
|
super();
|
||
|
this.init();
|
||
|
}
|
||
|
|
||
|
init() {
|
||
|
this.id = ESkillType.JinGeTieJia;
|
||
|
this.name = "金戈鐵甲";
|
||
|
this.icon = "jgtj";
|
||
|
this.desc = "增加攻擊力、抗物理。";
|
||
|
this.effectDesc = "[A]增加攻擊力{0}%;[E]增加抗物理{1}%";
|
||
|
this.effectMap = {
|
||
|
[EAttrTypeL1.ATK_PERC]: { add: 2.88, index: 0 },
|
||
|
[EAttrTypeL1.K_PHY_GET]: { add: 3.06, index: 1 }
|
||
|
};
|
||
|
this.attrDesc = "攻 抗物理";
|
||
|
this.action_type = ActionType.PASSIVE;
|
||
|
this.quality = ESkillQuality.LOW;
|
||
|
}
|
||
|
|
||
|
}
|