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