import { EAttrTypeL1 } from "../../../core/EEnum"; import SkillBase, { ActionType, ESkillQuality, ESkillType } from "../core/SkillBase"; // 五毒俱全・把玩 export default class WuDuJvQuan1 extends SkillBase { constructor() { super(); this.id = ESkillType.WuDuJvQuan1; this.name = "五毒俱全・把玩"; this.icon = "71331"; this.effectDesc = "增加自身{0}%的加強毒屬性"; this.effectMap = { [EAttrTypeL1.TOXIN_EHAN]: { add: 10, index: 0 }, }; this.action_type = ActionType.PASSIVE; this.quality = ESkillQuality.LOW; } }