SamsaraGame/assets/Script/ts/game/skill/low/QiangHuaXuanRen.ts

20 lines
731 B
TypeScript
Raw Permalink Normal View History

2025-04-24 17:03:28 +08:00
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生效`;
}
}