30 lines
1.1 KiB
TypeScript
Raw Normal View History

2025-04-24 17:03:28 +08:00
import { EAttrTypeL1 } from "../../../../core/EEnum";
import SkillBase, { ActionType, ESkillQuality, ESkillType } from "../../core/SkillBase";
// 高級萬劫不復
export default class HighWanJieBuFu extends SkillBase {
constructor() {
super();
this.init();
}
init() {
this.id = ESkillType.HighWanJieBuFu;
this.name = "高級萬劫不復";
this.icon = 'wjbf';
this.desc = "增加法力、忽視上風雷水火鬼火。";
this.effectDesc = "[D]增加法力{0}%;[E]增加忽視風、雷、水、火、鬼火{1}%";
this.effectMap = {
[EAttrTypeL1.MP_PERC]: { add: 1.5, index: 0 },
[EAttrTypeL1.HK_WIND]: { add: 2.15, index: 1 },
[EAttrTypeL1.HK_THUNDER]: { add: 2.15, index: 2 },
[EAttrTypeL1.HK_WATER]: { add: 2.15, index: 3 },
[EAttrTypeL1.HK_FIRE]: { add: 2.15, index: 4 },
[EAttrTypeL1.HK_WILDFIRE]: { add: 2.15, index: 5 }
};
this.attrDesc = "法 忽視";
this.action_type = ActionType.PASSIVE;
this.quality = ESkillQuality.HIGH;
}
}