23 lines
654 B
TypeScript
Raw Permalink Normal View History

2025-04-24 17:03:28 +08:00
import SkillBase, { ActionType, AffectType, EAttackType, EffectPos, MagicType, ESkillType } from "../core/SkillBase";
export default class HuaWu extends SkillBase{
constructor() {
super();
this.init();
}
init() {
this.id = ESkillType.HuaWu;
this.name = '化無';
this.particleEffect = '2701'; //特效
this.icon = "2701";
this.desc = '取消第一個敵方法術,此技能只生效一次。 ';
this.action_type = ActionType.PASSIVE;
this.particleEffect = '32303';
}
getDetail():string{
return `取消第一個敵方法術,此技能只生效一次。 僅PVP生效`;
}
}