24 lines
803 B
TypeScript
24 lines
803 B
TypeScript
import SkillBase, { ActionOn, ActionType, AffectType, EAttackType, EffectPos, MagicType, ESkillType } from "../core/SkillBase";
|
|
|
|
// 青面獠牙
|
|
export default class QingMianLiaoYa extends SkillBase{
|
|
constructor() {
|
|
super();
|
|
this.init();
|
|
}
|
|
|
|
init() {
|
|
this.id = ESkillType.QingMianLiaoYa;
|
|
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%,對目標造成氣血傷害。 `;
|
|
}
|
|
} |