22 lines
650 B
TypeScript
22 lines
650 B
TypeScript
import SkillBase, { ActionOn, ActionType, AffectType, EAttackType, EffectPos, MagicType, ESkillType } from "../core/SkillBase";
|
|
|
|
// 涅槃
|
|
export default class NiePan extends SkillBase{
|
|
constructor() {
|
|
super();
|
|
this.init();
|
|
}
|
|
|
|
init() {
|
|
this.id = ESkillType.NiePan;
|
|
this.name = '涅槃';
|
|
this.icon = "3002";
|
|
this.desc = '神獸死亡時在該回合有30%機率全血無異常狀態復活1次。 ';
|
|
this.action_type = ActionType.PASSIVE;
|
|
this.particleEffect = '31206';
|
|
}
|
|
|
|
getDetail():string{
|
|
return `神獸死亡時在該回合有30%機率全血無異常狀態復活1次。 `;
|
|
}
|
|
} |