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