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