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