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