25 lines
709 B
TypeScript
25 lines
709 B
TypeScript
|
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回合。 `;
|
|||
|
}
|
|||
|
}
|
|||
|
|