22 lines
650 B
TypeScript
Raw 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 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次。 `;
}
}