diff --git a/code/datums/uplink_item.dm b/code/datums/uplink_item.dm index 8d0e1b408f4..8f47c5a7e47 100644 --- a/code/datums/uplink_item.dm +++ b/code/datums/uplink_item.dm @@ -996,6 +996,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" @@ -1003,6 +1004,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 @@ -1011,6 +1013,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) @@ -1051,6 +1054,15 @@ 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 + excludefrom = list() gamemodes = list(/datum/game_mode/nuclear) /datum/uplink_item/device_tools/plastic_explosives 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.."