25 lines
709 B
TypeScript
Raw Normal View History

2025-04-24 17:03:28 +08:00
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回合。 `;
}
}