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