diff --git a/code/datums/uplink_item.dm b/code/datums/uplink_item.dm index 22849cb495e..d605b4f32e9 100644 --- a/code/datums/uplink_item.dm +++ b/code/datums/uplink_item.dm @@ -388,6 +388,14 @@ var/list/uplink_items = list() item = /obj/item/weapon/aiModule/syndicate cost = 14 +/datum/uplink_item/stolen/magboots + name = "Stolen Magboots" + desc = "A pair of magnetic boots with a Syndicate paintjob that assist with freer movement in space or on-station during gravitational generator failures. \ + These reverse-engineered knockoffs of Nanotrasen's 'Advanced Magboots' slow you down in simulated-gravity environments much like the standard issue variety." + item = /obj/item/clothing/shoes/magboots/syndie + cost = 2 + gamemodes = list(/datum/game_mode/nuclear) + /datum/uplink_item/device_tools/c4 name = "Composition C-4" desc = "C-4 is plastic explosive of the common variety Composition C. You can use it to breach walls or connect a signaler to its wiring to make it remotely detonable. \ diff --git a/code/modules/clothing/shoes/magboots.dm b/code/modules/clothing/shoes/magboots.dm index 5b359700790..0a35967a5c4 100644 --- a/code/modules/clothing/shoes/magboots.dm +++ b/code/modules/clothing/shoes/magboots.dm @@ -43,3 +43,9 @@ icon_state = "advmag0" magboot_state = "advmag" slowdown_active = SHOES_SLOWDOWN + +/obj/item/clothing/shoes/magboots/syndie + desc = "Reverse-engineered magnetic boots that have a heavy magnetic pull. Property of Gorlex Marauders." + name = "blood-red magboots" + icon_state = "syndiemag0" + magboot_state = "syndiemag" \ No newline at end of file diff --git a/icons/mob/feet.dmi b/icons/mob/feet.dmi index 9683a624847..b55685323e7 100644 Binary files a/icons/mob/feet.dmi and b/icons/mob/feet.dmi differ diff --git a/icons/obj/clothing/shoes.dmi b/icons/obj/clothing/shoes.dmi index bb4c308ca05..27190678b95 100644 Binary files a/icons/obj/clothing/shoes.dmi and b/icons/obj/clothing/shoes.dmi differ