22 lines
666 B
TypeScript
22 lines
666 B
TypeScript
import SkillBase, { ActionOn, ActionType, AffectType, EAttackType, EffectPos, MagicType, ESkillType } from "../core/SkillBase";
|
||
|
||
// 懸刃
|
||
export default class XuanRen extends SkillBase{
|
||
constructor() {
|
||
super();
|
||
this.init();
|
||
}
|
||
|
||
init() {
|
||
this.id = ESkillType.XuanRen;
|
||
this.name = '懸刃';
|
||
this.icon = "2008";
|
||
this.desc = '敵方第一個施法單位施法前對其造成氣血傷害,此技能只生效一次。 ';
|
||
this.action_type = ActionType.PASSIVE;
|
||
}
|
||
|
||
getDetail():string{
|
||
return `敵方第一個施法單位施法前對其造成氣血傷害,此技能只生效一次。 (僅PVP生效)`;
|
||
}
|
||
}
|