SamsaraGame/assets/Script/ts/game/skill/high/HighTianMoJieTi.ts

25 lines
817 B
TypeScript
Raw Permalink Normal View History

2025-04-24 17:03:28 +08:00
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%,對目標造成法力傷害。 `;
}
}