import { ESkillType, EAttrTypeL1, EActionType, ESkillQuality } from "../../role/EEnum"; import SkillBase from "../core/SkillBase"; // 强毒・珍藏 export default class QiangDu2 extends SkillBase { constructor() { super(); this.skill_id = ESkillType.QiangDu2; this.skill_name = "强毒・珍藏"; this.effectDesc = "每点增加强毒"; this.effectMap = { [EAttrTypeL1.TOXIN_EHAN]: { add: 10, index: 0 }, }; this.action_type = EActionType.PASSIVE; this.quality = ESkillQuality.HIGH; } }