import { EAttrTypeL1 } from "../../../core/EEnum"; import SkillBase, { ActionType, ESkillQuality, ESkillType } from "../core/SkillBase"; // 飄渺如雲・無價 export default class PiaoMiaoRuYun3 extends SkillBase { constructor() { super(); this.id = ESkillType.PiaoMiaoRuYun3; this.name = "飄渺如雲・無價"; this.icon = "3898"; this.effectDesc = "(仙法、鬼火)增加自身{0}%的忽視屬性"; this.effectMap = { [EAttrTypeL1.HK_WILDFIRE]: { add: 25, index: 0 }, [EAttrTypeL1.ATK_ADD]: { add: 25, index: 1 }, }; this.action_type = ActionType.PASSIVE; this.quality = ESkillQuality.FINAL; } }