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

23 lines
719 B
TypeScript
Raw 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 JueJingFengSheng extends SkillBase{
constructor() {
super();
this.init();
}
init() {
this.id = ESkillType.JueJingFengSheng;
this.name = '絕境逢生';
this.icon = "2702";
this.particleEffect = '2702'; //特效
this.desc = '恢復全體隊友氣血和法力。 ';
this.skillActOn = ActionOn.SELF;
this.faXi=MagicType.Rrsume;
}
getDetail():string{
return `給己方所有單位回复60%的氣血與60%的法力每場戰鬥只能使用1次。 前5回合不可使用 `;
}
}