xy-server/game/skill/pet/JianRen.ts
2025-04-23 09:34:08 +08:00

17 lines
554 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 { ESkillType, EActionType, EAttrTypeL1, ESkillQuality } from "../../role/EEnum";
import SkillBase from "../core/SkillBase";
import SKDataUtil from "../../gear/SKDataUtil";
//技能效果连续被控3回合则摆脱所有控制状态
export default class JianRen extends SkillBase {
constructor() {
super();
this.skill_id = ESkillType.JianRen;
this.skill_name = "坚韧";
this.action_type = EActionType.PASSIVE;
this.kind = ESkillType.JianRen;
this.quality = ESkillQuality.FINAL;
}
}