diff --git a/code/game/machinery/vending.dm b/code/game/machinery/vending.dm index 64fc0c4a8f..bbab86d493 100644 --- a/code/game/machinery/vending.dm +++ b/code/game/machinery/vending.dm @@ -854,7 +854,8 @@ /obj/item/weapon/reagent_containers/syringe/antiviral = 4,/obj/item/weapon/reagent_containers/syringe = 12, /obj/item/device/healthanalyzer = 5,/obj/item/weapon/reagent_containers/glass/beaker = 4, /obj/item/weapon/reagent_containers/dropper = 2, /obj/item/stack/medical/advanced/bruise_pack = 3, /obj/item/stack/medical/advanced/ointment = 3, /obj/item/stack/medical/splint = 2, - /obj/item/weapon/storage/box/khcrystal = 4) //VOREStation Add + /obj/item/weapon/storage/box/khcrystal = 4, + /obj/item/weapon/storage/box/backup_kit = 2) //VOREStation Add - khcrystal and backup_kit contraband = list(/obj/item/weapon/reagent_containers/pill/tox = 3,/obj/item/weapon/reagent_containers/pill/stox = 4,/obj/item/weapon/reagent_containers/pill/antitox = 6) idle_power_usage = 211 //refrigerator - believe it or not, this is actually the average power consumption of a refrigerated vending machine according to NRCan. req_log_access = access_cmo diff --git a/code/modules/research/designs_vr.dm b/code/modules/research/designs_vr.dm index e205490dfb..89a99dcfe6 100644 --- a/code/modules/research/designs_vr.dm +++ b/code/modules/research/designs_vr.dm @@ -14,6 +14,13 @@ materials = list(DEFAULT_WALL_MATERIAL = 7000, "glass" = 7000, "gold" = 2000, "diamond" = 3000) build_path = /obj/item/weapon/implantcase/vrlanguage +/datum/design/item/implant/backup + name = "backup implant" + id = "implant_backup" + req_tech = list(TECH_MATERIAL = 2, TECH_BIO = 2, TECH_DATA = 4, TECH_ENGINEERING = 2) + materials = list(DEFAULT_WALL_MATERIAL = 2000, "glass" = 2000) + build_path = /obj/item/weapon/implantcase/backup + /datum/design/item/weapon/sizegun name = "shrink ray" id = "shrinkray"