import { EAttrTypeL1 } from "../../../core/EEnum"; import SkillBase, { ActionType, ESkillQuality, ESkillType } from "../core/SkillBase"; // 把薪助火・把玩 export default class BaXinZhuHuo1 extends SkillBase { constructor() { super(); this.id = ESkillType.BaXinZhuHuo1; this.name = "把薪助火・把玩"; this.icon = "73201"; this.effectDesc = "增加自身{0}%的加強加防屬性"; this.effectMap = { [EAttrTypeL1.DEFEND_ADD_EHAN]: { add: 10, index: 0 }, }; this.action_type = ActionType.PASSIVE; this.quality = ESkillQuality.LOW; } }