21 lines
732 B
TypeScript
21 lines
732 B
TypeScript
|
import SkillBase, { ActionOn, ActionType, AffectType, EAttackType, EffectPos, MagicType, ESkillType } from "../core/SkillBase";
|
||
|
|
||
|
// 高級妙手仁心
|
||
|
export default class HighMiaoShouRenXin extends SkillBase{
|
||
|
constructor() {
|
||
|
super();
|
||
|
this.init();
|
||
|
}
|
||
|
|
||
|
init() {
|
||
|
this.id = ESkillType.HighMiaoShouRenXin;
|
||
|
this.name = '高級妙手仁心'; // 技能名字
|
||
|
this.icon = "31155";
|
||
|
this.desc = '進場時(第一回合除外)回复法力百分比最低友方單位100%法力和20%氣血'; //技能介紹
|
||
|
this.action_type = ActionType.PASSIVE; // 主動 被動
|
||
|
}
|
||
|
|
||
|
getDetail():string{
|
||
|
return `進場時(第一回合除外)回复法力百分比最低友方單位100%法力和20%氣血`;
|
||
|
}
|
||
|
}
|