2025-04-24 17:03:28 +08:00

22 lines
655 B
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import SkillBase, { ActionOn, ActionType, AffectType, EAttackType, EffectPos, MagicType, ESkillType } from "../core/SkillBase";
// 高級閃現
export default class HighShanXian extends SkillBase{
constructor() {
super();
this.init();
}
init() {
this.id = ESkillType.HighShanXian;
this.name = '高級閃現';
this.icon = "2010";
this.desc = '當召喚獸死亡離場時有35%機率無需召喚自動加入戰鬥。 ';
this.action_type = ActionType.PASSIVE;
}
getDetail():string{
return `當前召喚獸死亡離場時此召喚獸有35%機率無需召喚自動加入戰鬥。 `;
}
}