From 138610b2a9bc90dc44515ea003898c1b3869d7da Mon Sep 17 00:00:00 2001 From: SconesC Date: Fri, 14 Aug 2015 15:23:30 -0700 Subject: [PATCH 1/2] Belts into the Uplink --- code/datums/uplink_item.dm | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/code/datums/uplink_item.dm b/code/datums/uplink_item.dm index ebd3e3f3f4d..73cbcbac6ea 100644 --- a/code/datums/uplink_item.dm +++ b/code/datums/uplink_item.dm @@ -514,6 +514,13 @@ var/list/uplink_items = list() item = /obj/item/weapon/storage/backpack/dufflebag/syndie/surgery cost = 4 +/datum/uplink_item/device_tools/military_belt + name = "Military Belt" + desc = "A robust seven-slot red belt made for carrying a broad variety of weapons, ammunition and explosives" + item = /obj/item/weapon/storage/belt/military + cost = 5 + excludefrom = list(/datum/game_mode/nuclear) + /datum/uplink_item/device_tools/medkit name = "Syndicate Combat Medic Kit" desc = "The syndicate medkit is a suspicious black and red. Included is a combat stimulant injector for rapid healing, a medical hud for quick identification of injured comrades, \ From 024c71553a7c9aa0a26a3194775b64d257b7ab4e Mon Sep 17 00:00:00 2001 From: SconesC Date: Fri, 14 Aug 2015 15:32:07 -0700 Subject: [PATCH 2/2] Reduces price to 3 TC --- code/datums/uplink_item.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/datums/uplink_item.dm b/code/datums/uplink_item.dm index 73cbcbac6ea..a90e8351418 100644 --- a/code/datums/uplink_item.dm +++ b/code/datums/uplink_item.dm @@ -518,7 +518,7 @@ var/list/uplink_items = list() name = "Military Belt" desc = "A robust seven-slot red belt made for carrying a broad variety of weapons, ammunition and explosives" item = /obj/item/weapon/storage/belt/military - cost = 5 + cost = 3 excludefrom = list(/datum/game_mode/nuclear) /datum/uplink_item/device_tools/medkit