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

25 lines
709 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 ZiXuWuYou extends SkillBase{
constructor() {
super();
this.init();
}
init() {
this.id = ESkillType.ZiXuWuYou;
this.name = '子虛烏有';
this.icon = "2700";
this.desc = '隱身自己和某一友方單位。 ';
this.buffEffect = 'yinshen';
this.faXi = MagicType.YinShen;
this.particleEffect = '32302';
this.skillActOn = ActionOn.SELF;
}
getDetail():string{
return `自己與己方任一單位同時隱身持續3回合冷卻時間5回合。 `;
}
}