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