import SkillBase, { ActionOn, ActionType, AffectType, EAttackType, EffectPos, MagicType, ESkillType, ESkillQuality } from "../core/SkillBase"; // 作鳥獸散 export default class ZuoNiaoShouSan extends SkillBase{ constructor() { super(); this.init(); } init() { this.id = ESkillType.ZuoNiaoShouSan; this.name = '作鳥獸散'; this.icon = "2705"; this.desc = '當主人倒地,且友方召喚獸只剩自身在場時清除任何狀態立即觸發回复友方人物50%的血法後離場。 '; this.quality = ESkillQuality.FINAL; //技能 品質 this.particleEffect = '32301'; this.skillActOn = ActionOn.SELF; this.action_type = ActionType.PASSIVE; } getDetail():string{ return `當主人倒地,且友方召喚獸只剩自身在場時清除任何狀態立即觸發回复友方人物50%的血法後離場。 `; } }