import { ESkillType, EActionType, ESkillQuality } from "../../role/EEnum"; import SkillBase from "../core/SkillBase"; //技能效果:具有此技能的召唤兽在场时,场上敌方人物和召唤兽的破防概率减少。 export default class DuanRen extends SkillBase { constructor() { super(); this.skill_id = ESkillType.DuanRen; this.skill_name = '断刃'; this.action_type = EActionType.PASSIVE; this.kind = ESkillType.DuanRen; this.quality = ESkillQuality.FINAL; } }