import { ESkillType, EAttrTypeL1, EActionType, ESkillQuality } from "../../role/EEnum"; import SkillBase from "../core/SkillBase"; // 度厄・珍藏 export default class DuE2 extends SkillBase { constructor() { super(); this.skill_id = ESkillType.DuE2; this.skill_name = "度厄・珍藏"; this.effectDesc = "人物和召唤兽使用澄霜成功率提高,使用银魄不良状态率减少"; this.action_type = EActionType.PASSIVE; this.quality = ESkillQuality.HIGH; } }