import { EAttrTypeL1 } from "../../../../core/EEnum"; import SkillBase, { ActionType, ESkillQuality, ESkillType } from "../../core/SkillBase"; // 高級星火燎原 export default class HighXingHuoLiaoYuan extends SkillBase { constructor() { super(); this.init(); } init() { this.id = ESkillType.HighXingHuoLiaoYuan; this.name = "高級星火燎原"; this.icon = 'xhly'; this.desc = "增加火系狂暴率、忽視風雷水火鬼火。"; this.effectDesc = "[E]增加火系狂暴率{0}%;[E]增加忽視風、雷、水、火、鬼火{1}%"; this.effectMap = { [EAttrTypeL1.KB_FIRE]: { add: 5.45, index: 0 }, [EAttrTypeL1.HK_WIND]: { add: 1, index: 1 }, [EAttrTypeL1.HK_THUNDER]: { add: 1, index: 2 }, [EAttrTypeL1.HK_WATER]: { add: 1, index: 3 }, [EAttrTypeL1.HK_FIRE]: { add: 1, index: 4 }, [EAttrTypeL1.HK_WILDFIRE]: { add: 1, index: 5 } }; this.attrDesc = "火狂暴 忽視"; this.action_type = ActionType.PASSIVE; this.quality = ESkillQuality.HIGH; } }