import { ESkillType, EAttrTypeL1, EActionType, ESkillQuality } from "../../role/EEnum"; import SkillBase from "../core/SkillBase"; // 狂澜・珍藏 export default class KuangLan2 extends SkillBase { constructor() { super(); this.skill_id = ESkillType.KuangLan2; this.skill_name = "狂澜・珍藏"; this.effectDesc = "百分比增加召唤兽风雷水火鬼火系狂暴率"; this.action_type = EActionType.PASSIVE; this.quality = ESkillQuality.HIGH; } }