25 lines
817 B
TypeScript
25 lines
817 B
TypeScript
import SkillBase, { ActionOn, ActionType, AffectType, EAttackType, EffectPos, MagicType, ESkillType } from "../core/SkillBase";
|
|
|
|
// 高級天魔解體
|
|
export default class HighTianMoJieTi extends SkillBase{
|
|
constructor() {
|
|
super();
|
|
this.init();
|
|
}
|
|
|
|
init() {
|
|
this.id = ESkillType.HighTianMoJieTi;
|
|
this.name = '高級天魔解體'; // 技能名字
|
|
this.icon = "2031";
|
|
this.desc = '犧牲自身氣血當前值的95%,對目標造成氣血傷害。 '; //技能介紹
|
|
this.particleEffect = "2031";
|
|
this.effectPos = EffectPos.BODY; //
|
|
this.atkType = EAttackType.REMOTE; //近身|遠程
|
|
this.action_type = ActionType.INITIATIVE; // 主動 被動
|
|
}
|
|
|
|
getDetail():string{
|
|
return `犧牲自身氣血當前值的95%,對目標造成法力傷害。 `;
|
|
}
|
|
}
|