import SkillBase, { ActionOn, ActionType, AffectType, EAttackType, EffectPos, MagicType, ESkillType, ESkillQuality } from "../core/SkillBase"; // 長驅直入 export default class ChangQuZhiRu extends SkillBase{ constructor() { super(); this.init(); } init() { this.id = ESkillType.ChangQuZhiRu; this.name = '長驅直入'; this.icon = "10325"; this.desc = '消耗15400法力,清除敵方3個單位正面狀態,整場戰鬥只可使用1次,6回合後才可使用。 (僅PVP生效)'; this.quality = ESkillQuality.FINAL; this.particleEffect = '32309'; this.skillActOn = ActionOn.ENEMY; this.action_type = ActionType.INITIATIVE; this.faXi=MagicType.Rrsume; } getDetail():string{ return `消耗15400法力,清除敵方3個單位正面狀態,整場戰鬥只可使用1次,6回合後才可使用。 (僅PVP生效)`; } }