23 lines
713 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 YinShen extends SkillBase{
constructor() {
super();
this.init();
}
init() {
this.id = ESkillType.YinShen;
this.name = '隱身';
this.icon = "2111";
this.desc = '進入戰鬥後立刻隱身3回合第一回合除外與擊其不意衝突。 ';
this.action_type = ActionType.PASSIVE;
this.buffEffect = 'yinshen';
this.faXi = MagicType.YinShen;
}
getDetail():string{
return `進入戰鬥後立刻隱身3回合第一回合除外與擊其不意衝突。 `;
}
}