diff --git a/code/game/objects/items/weapons/storage/boxes.dm b/code/game/objects/items/weapons/storage/boxes.dm index 69816d0a405..e3d689a6e48 100644 --- a/code/game/objects/items/weapons/storage/boxes.dm +++ b/code/game/objects/items/weapons/storage/boxes.dm @@ -1233,6 +1233,15 @@ for(var/I in 1 to 7) new /obj/item/grenade/chem_grenade/metalfoam(src) +/obj/item/storage/box/coke_envirosuit + name = "coke suit box" + desc = "A box with a special envirosuit brought to you by Space Cola Co." + icon_state = "plasma_box" + +/obj/item/storage/box/coke_envirosuit/populate_contents() + new /obj/item/clothing/under/plasmaman/coke(src) + new /obj/item/clothing/head/helmet/space/plasmaman/coke(src) + #undef NODESIGN #undef NANOTRASEN #undef SYNDI diff --git a/code/modules/client/preference/loadout/loadout_racial.dm b/code/modules/client/preference/loadout/loadout_racial.dm index ba6ed7bec30..128bfdd3c29 100644 --- a/code/modules/client/preference/loadout/loadout_racial.dm +++ b/code/modules/client/preference/loadout/loadout_racial.dm @@ -75,3 +75,8 @@ description = "Large, comfortable robes worn by those who need a bit more covering. The thick fabric contains a pocket suitable for those that need their hands free during their work, while the cloth serves to cover scars or other injuries to the wearer's body." path = /obj/item/clothing/suit/hooded/vox_robes slot = SLOT_HUD_OUTER_SUIT + +/datum/gear/racial/plasmamansuit_coke + display_name = "Coke Suit" + description = "Plasmaman envirosuit designed by Space Cola Co and gifted to the people of Boron as part of an elaborate advertisement campaign." + path = /obj/item/storage/box/coke_envirosuit diff --git a/code/modules/clothing/spacesuits/plasmamen.dm b/code/modules/clothing/spacesuits/plasmamen.dm index 062e281519f..cfc22e69e6e 100644 --- a/code/modules/clothing/spacesuits/plasmamen.dm +++ b/code/modules/clothing/spacesuits/plasmamen.dm @@ -273,3 +273,9 @@ desc = "A plasmaman envirohelm designed for the common, maint-dwelling masses." icon_state = "assistant_envirohelm" item_state = "assistant_envirohelm" + +/obj/item/clothing/head/helmet/space/plasmaman/coke + name = "coke envirosuit helmet" + desc = "A plasmaman envirohelm designed by Space Cola Co for the plasmamen." + icon_state = "coke_envirohelm" + item_state = "coke_envirohelm" diff --git a/code/modules/clothing/under/jobs/plasmamen/civilian_service.dm b/code/modules/clothing/under/jobs/plasmamen/civilian_service.dm index 2c106e456ec..82b2ddf1f2e 100644 --- a/code/modules/clothing/under/jobs/plasmamen/civilian_service.dm +++ b/code/modules/clothing/under/jobs/plasmamen/civilian_service.dm @@ -112,3 +112,10 @@ icon_state = "bs_envirosuit" item_state = "bs_envirosuit" item_color = "bs_envirosuit" + +/obj/item/clothing/under/plasmaman/coke + name = "coke envirosuit" + desc = "An envirosuit designed by Space Cola Co for plasmamen." + icon_state = "coke_envirosuit" + item_state = "coke_envirosuit" + item_color = "coke_envirosuit" diff --git a/icons/mob/clothing/species/plasmaman/helmet.dmi b/icons/mob/clothing/species/plasmaman/helmet.dmi index 49a721b90ed..0c50caa58a4 100644 Binary files a/icons/mob/clothing/species/plasmaman/helmet.dmi and b/icons/mob/clothing/species/plasmaman/helmet.dmi differ diff --git a/icons/mob/clothing/species/plasmaman/uniform.dmi b/icons/mob/clothing/species/plasmaman/uniform.dmi index 81fc03611e5..4b7af92aacb 100644 Binary files a/icons/mob/clothing/species/plasmaman/uniform.dmi and b/icons/mob/clothing/species/plasmaman/uniform.dmi differ diff --git a/icons/obj/clothing/species/plasmaman/hats.dmi b/icons/obj/clothing/species/plasmaman/hats.dmi index 3cc5deef802..504c6fa190f 100644 Binary files a/icons/obj/clothing/species/plasmaman/hats.dmi and b/icons/obj/clothing/species/plasmaman/hats.dmi differ diff --git a/icons/obj/clothing/species/plasmaman/uniform.dmi b/icons/obj/clothing/species/plasmaman/uniform.dmi index cc6c2a0ed1e..830d26bab5b 100644 Binary files a/icons/obj/clothing/species/plasmaman/uniform.dmi and b/icons/obj/clothing/species/plasmaman/uniform.dmi differ