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

24 lines
670 B
TypeScript
Raw Normal View History

2025-04-24 17:03:28 +08:00
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回合不可使用 `;
}
}