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

23 lines
654 B
TypeScript
Raw Permalink 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 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生效`;
}
}