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

20 lines
807 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { EAttrTypeL1 } from "../../../core/EEnum";
import SkillBase, { ActionType, ESkillQuality, ESkillType } from "../core/SkillBase";
// 忽如其來・無價
export default class HuRuQiLai3 extends SkillBase {
constructor() {
super();
this.id = ESkillType.HuRuQiLai3;
this.name = "忽如其來・無價";
this.icon = "71301";
this.effectDesc = " (仙法、鬼火)法術傷害忽視值增加60%觸發回合縮短到4回合使用後增益效果消失";
this.effectMap = {
[EAttrTypeL1.HK_WILDFIRE]: { add: 60, index: 0 },
[EAttrTypeL1.HK_WATER]: { add: 60, index: 1 },
[EAttrTypeL1.HK_THUNDER]: { add: 60, index: 2 },
};
this.action_type = ActionType.PASSIVE;
this.quality = ESkillQuality.HIGH;
}
}