import { ESkillType, EAttrTypeL1, EActionType, ESkillQuality } from "../../role/EEnum"; import SkillBase from "../core/SkillBase"; // 咆哮・把玩 export default class PaoXiao1 extends SkillBase { constructor() { super(); this.skill_id = ESkillType.PaoXiao1; this.skill_name = "咆哮・把玩"; this.effectDesc = "增加召唤兽天魔、分光、青面、小楼狂暴率"; this.action_type = EActionType.PASSIVE; this.quality = ESkillQuality.LOW; } }