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