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

23 lines
713 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 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回合第一回合除外與擊其不意衝突。 `;
}
}