import { ESkillType, EAttrTypeL1, EActionType, ESkillQuality } from "../../role/EEnum"; import SkillBase from "../core/SkillBase"; // 四海承风・把玩 export default class SiHaiChengFeng1 extends SkillBase { constructor() { super(); this.skill_id = ESkillType.SiHaiChengFeng1; this.skill_name = "四海承风・把玩"; this.effectDesc = "新出场的召唤兽(不含首发)一定几率携带,加防、加速或加攻状态"; this.action_type = EActionType.PASSIVE; this.quality = ESkillQuality.LOW; } }