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