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

22 lines
664 B
TypeScript
Raw Permalink 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 SkillBase, { ActionOn, ActionType, AffectType, EAttackType, EffectPos, MagicType, ESkillType } from "../core/SkillBase";
// 遺患
export default class YiHuan extends SkillBase{
constructor() {
super();
this.init();
}
init() {
this.id = ESkillType.YiHuan;
this.name = '遺患';
this.icon = "2009";
this.desc = '敵方第一個施法單位施法前對其造成法力傷害,此技能只生效一次。 ';
this.action_type = ActionType.PASSIVE;
}
getDetail():string{
return `敵方第一個施法單位施法前對其造成法力傷害,此技能只生效一次。 僅PVP生效`;
}
}