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