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