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