xy-server/game/skill/baldric/HuRuQiLai3.ts
2025-04-23 09:34:08 +08:00

23 lines
872 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 {ESkillType, EAttrTypeL1, EActionType, ESkillQuality, EAttrTypeL2} from "../../role/EEnum";
import SkillBase from "../core/SkillBase";
// 忽如其来・无价
export default class HuRuQiLai3 extends SkillBase {
constructor() {
super();
this.skill_id = ESkillType.HuRuQiLai3;
this.skill_name = "忽如其来・无价";
this.effectDesc = " (仙法、鬼火)法术伤害忽视值增加60%触发回合缩短到4回合使用后增益效果消失";
this.effectMap = {
[EAttrTypeL1.HK_WILDFIRE]: { add: 60, index: 0 },
[EAttrTypeL1.HK_WATER]: { add: 60, index: 0 },
[EAttrTypeL1.HK_THUNDER]: { add: 60, index: 0 },
};
this.limit_round = 4;
this.cooldown = 4;
this.action_type = EActionType.PASSIVE;
this.quality = ESkillQuality.FINAL;
}
}