From 6429f57ac79b1d08d0df4b0f1d473a02d58d50de Mon Sep 17 00:00:00 2001 From: Alffd Date: Mon, 8 May 2017 16:25:40 -0400 Subject: [PATCH 1/3] Adds magboots to nukeops shuttle suit locker --- code/game/objects/structures/crates_lockers/closets/syndicate.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/game/objects/structures/crates_lockers/closets/syndicate.dm b/code/game/objects/structures/crates_lockers/closets/syndicate.dm index 26bd0d88759..5b26b46eacd 100644 --- a/code/game/objects/structures/crates_lockers/closets/syndicate.dm +++ b/code/game/objects/structures/crates_lockers/closets/syndicate.dm @@ -27,6 +27,7 @@ new /obj/item/clothing/mask/gas/syndicate(src) new /obj/item/clothing/suit/space/hardsuit/syndi(src) new /obj/item/weapon/tank/jetpack/oxygen/harness(src) + new /obj/item/clothing/shoes/magboots/syndie(src) /obj/structure/closet/syndicate/nuclear desc = "It's a storage unit for a Syndicate boarding party.." From 3f30b81d8a212a514d56bb74951e11df74b17471 Mon Sep 17 00:00:00 2001 From: Alffd Date: Mon, 8 May 2017 21:49:51 -0400 Subject: [PATCH 2/3] Uplink Changes Adds ability for nukeops to purchase andvanced magboots. Removes regular magboots and nukeops suits from purchase list during nuke ops rounds. --- code/datums/uplink_item.dm | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/code/datums/uplink_item.dm b/code/datums/uplink_item.dm index 1cf08abebd0..c4b71269261 100644 --- a/code/datums/uplink_item.dm +++ b/code/datums/uplink_item.dm @@ -991,6 +991,7 @@ var/list/uplink_items = list() reference = "BRHS" item = /obj/item/weapon/storage/box/syndie_kit/hardsuit cost = 8 + excludefrom = list(/datum/game_mode/nuclear) /datum/uplink_item/suits/hardsuit/elite name = "Elite Syndicate Hardsuit" @@ -1046,6 +1047,14 @@ var/list/uplink_items = list() reference = "BRMB" item = /obj/item/clothing/shoes/magboots/syndie cost = 3 + excludefrom = list(/datum/game_mode/nuclear) + +/datum/uplink_item/device_tools/magboots/advance + name = "Advanced Blood-Red Magboots" + desc = "Reverse-engineered magboots that appear to be based on an advanced model, as they have a lighter magnetic pull. Property of Gorlex Marauders." + reference = "ABRMB" + item = /obj/item/clothing/shoes/magboots/syndie/advance + cost = 3 gamemodes = list(/datum/game_mode/nuclear) /datum/uplink_item/device_tools/plastic_explosives From 90560d8ab60a568b28b07217365e3f9b5b09f523 Mon Sep 17 00:00:00 2001 From: Alffd Date: Fri, 2 Jun 2017 22:12:39 -0400 Subject: [PATCH 3/3] Well lets see if that fixes it. --- code/datums/uplink_item.dm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/datums/uplink_item.dm b/code/datums/uplink_item.dm index c4b71269261..d48e7f8d5db 100644 --- a/code/datums/uplink_item.dm +++ b/code/datums/uplink_item.dm @@ -999,6 +999,7 @@ var/list/uplink_items = list() item = /obj/item/weapon/storage/box/syndie_kit/elite_hardsuit cost = 8 reference = "ESHS" + excludefrom = list() gamemodes = list(/datum/game_mode/nuclear) /datum/uplink_item/suits/hardsuit/shielded @@ -1007,6 +1008,7 @@ var/list/uplink_items = list() item = /obj/item/weapon/storage/box/syndie_kit/shielded_hardsuit cost = 30 reference = "SHS" + excludefrom = list() gamemodes = list(/datum/game_mode/nuclear) @@ -1055,6 +1057,7 @@ var/list/uplink_items = list() reference = "ABRMB" item = /obj/item/clothing/shoes/magboots/syndie/advance cost = 3 + excludefrom = list() gamemodes = list(/datum/game_mode/nuclear) /datum/uplink_item/device_tools/plastic_explosives