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

22 lines
603 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, { 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回合則擺脫所有控制狀態`;
}
}