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