21 lines
759 B
TypeScript
21 lines
759 B
TypeScript
import { EAttrTypeL1 } from "../../../core/EEnum";
|
|
import SkillBase, { ActionType, ESkillQuality, ESkillType } from "../core/SkillBase";
|
|
|
|
// 精疲力竭・無價
|
|
export default class JingPiLiJie3 extends SkillBase {
|
|
constructor() {
|
|
super();
|
|
this.id = ESkillType.JingPiLiJie3;
|
|
this.name = "精疲力竭・無價";
|
|
this.icon = "76301";
|
|
this.effectDesc = "增加自身{0}%的加強破甲屬性和加強震擊屬性";
|
|
this.effectMap = {
|
|
[EAttrTypeL1.BREAK_EHAN]: { add: 40, index: 0 },
|
|
[EAttrTypeL1.THUD_EHAN]: { add: 40, index: 1 },
|
|
[EAttrTypeL1.MP_PERC]: { add: 20, index: 2 },
|
|
};
|
|
this.action_type = ActionType.PASSIVE;
|
|
this.quality = ESkillQuality.FINAL;
|
|
}
|
|
}
|