import { ESkillType, EAttrTypeL1, EActionType, ESkillQuality } from "../../role/EEnum"; import SkillBase from "../core/SkillBase"; // 浩气凌霄・无价 export default class HaoQiLingXiao3 extends SkillBase { constructor() { super(); this.skill_id = ESkillType.HaoQiLingXiao3; this.skill_name = "浩气凌霄・无价"; this.effectDesc = "释放仙法、鬼火、三尸、毒有一定几率二连击"; this.action_type = EActionType.PASSIVE; this.quality = ESkillQuality.FINAL; } }