2025-04-24 17:03:28 +08:00

27 lines
920 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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個單位。 `;
}
}