SamsaraGame/assets/Script/ts/game/skill/low/QiangHuaXuanRen.ts
2025-04-24 17:03:28 +08:00

20 lines
731 B
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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生效`;
}
}