22 lines
603 B
TypeScript
Raw Normal View History

2025-04-24 17:03:28 +08:00
import SkillBase, { ActionType,ESkillQuality, AffectType, EAttackType, EffectPos, MagicType, ESkillType } from "../core/SkillBase";
export default class JianRen extends SkillBase{
constructor() {
super();
this.init();
}
init() {
this.id = ESkillType.JianRen;
this.name = '堅韌';
this.icon = "10330";
this.desc = '連續被控3回合則擺脫所有控制狀態';
this.action_type = ActionType.PASSIVE;
this.quality = ESkillQuality.FINAL;
}
getDetail():string{
return `連續被控3回合則擺脫所有控制狀態`;
}
}