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