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