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