import SkillBase, { ActionType, AffectType, EAttackType, EffectPos, MagicType, ESkillType } from "../core/SkillBase"; // 分花拂柳 export default class FenHuaFuLiu extends SkillBase{ constructor() { super(); this.init(); } init() { this.id = ESkillType.FenHuaFuLiu; this.name = '分花拂柳'; // 技能名字 this.icon = "2113"; this.desc = '物理攻擊消滅一個單位時,有機率繼續追擊下個單位,最多追擊3個單位。 '; //技能介紹 this.particleEffect = '32207'; //特效 this.effectPos = EffectPos.BODY; // // this.skillEffectX = 0; // 技能特效 顯示修正位置 // this.skillEffectY = 0; // 技能特效 顯示修正位置 this.action_type = ActionType.PASSIVE; // 主動 被動 } getDetail():string{ return `物理攻擊消滅一個單位時,有機率繼續追擊下個單位,最多追擊3個單位。 `; } }