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

24 lines
670 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, ESkillType, MagicType } from "../core/SkillBase";
// 妙手回春
export default class MiaoShouHuiChun extends SkillBase {
constructor() {
super();
this.init();
}
init() {
this.id = ESkillType.MiaoShouHuiChun;
this.name = '妙手回春';
this.icon = "2112";
this.particleEffect = '2702'; //特效
this.desc = '恢復3個隊友氣血和法力。 ';
this.skillActOn = ActionOn.SELF;
this.faXi=MagicType.Rrsume; //回血
}
getDetail(): string {
return `給己方3個隊友回复50%的氣血與50%的法力每場戰鬥只能使用1次。 前5回合不可使用 `;
}
}