24 lines
670 B
TypeScript
24 lines
670 B
TypeScript
|
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回合不可使用 )`;
|
|||
|
}
|
|||
|
}
|