import { EAttrTypeL1 } from "../../../core/EEnum"; import SkillBase, { ActionType, ESkillQuality, ESkillType } from "../core/SkillBase"; // 鏤玉裁冰・把玩 export default class LouYvCaiBing1 extends SkillBase { constructor() { super(); this.id = ESkillType.LouYvCaiBing1; this.name = "鏤玉裁冰・把玩"; this.icon = "71351"; this.effectDesc = "增加自身{0}%的加強冰屬性"; this.effectMap = { [EAttrTypeL1.ICE_EHAN]: { add: 7, index: 0 }, }; this.action_type = ActionType.PASSIVE; this.quality = ESkillQuality.LOW; } }