diff --git a/code/modules/clothing/outfits/plasmaman.dm b/code/modules/clothing/outfits/plasmaman.dm index 9d7b0dd3..268c8800 100644 --- a/code/modules/clothing/outfits/plasmaman.dm +++ b/code/modules/clothing/outfits/plasmaman.dm @@ -126,3 +126,8 @@ head = /obj/item/clothing/head/helmet/space/plasmaman/clown uniform = /obj/item/clothing/under/plasmaman/clown mask = /obj/item/clothing/mask/gas/clown_hat + +/datum/outfit/plasmaman/captain + name = "Plasmaman Captain" + head = /obj/item/clothing/head/helmet/space/plasmaman/captain + uniform = /obj/item/clothing/under/plasmaman/captain \ No newline at end of file diff --git a/code/modules/clothing/spacesuits/plasmamen.dm b/code/modules/clothing/spacesuits/plasmamen.dm index e4ba758d..fe1ead7f 100644 --- a/code/modules/clothing/spacesuits/plasmamen.dm +++ b/code/modules/clothing/spacesuits/plasmamen.dm @@ -267,4 +267,10 @@ icon_state = "clown_envirohelm" item_state = "clown_envirohelm" visor_icon = "clown_envisor" - smile_state = "clown_smile" \ No newline at end of file + smile_state = "clown_smile" + +/obj/item/clothing/head/helmet/space/plasmaman/captain + name = "captain envirosuit helmet" + desc = "A blue and gold envirosuit helmet designed only for the most important plasmaman on board." + icon_state = "captain_envirohelm" + item_state = "captain_envirohelm" \ No newline at end of file diff --git a/code/modules/clothing/under/jobs/Plasmaman/command.dm b/code/modules/clothing/under/jobs/Plasmaman/command.dm new file mode 100644 index 00000000..caf5df0d --- /dev/null +++ b/code/modules/clothing/under/jobs/Plasmaman/command.dm @@ -0,0 +1,6 @@ +/obj/item/clothing/under/plasmaman/captain + name = "captain plasma envirosuit" + desc = "A blue and gold envirosuit designed only for the most important plasmaman on board." + icon_state = "captain_envirosuit" + item_state = "captain_envirosuit" + item_color = "captain_envirosuit" \ No newline at end of file diff --git a/code/modules/mob/living/carbon/human/species_types/plasmamen.dm b/code/modules/mob/living/carbon/human/species_types/plasmamen.dm index 4eb0a1e5..a91aa63c 100644 --- a/code/modules/mob/living/carbon/human/species_types/plasmamen.dm +++ b/code/modules/mob/living/carbon/human/species_types/plasmamen.dm @@ -118,6 +118,8 @@ if("Clown") O = new /datum/outfit/plasmaman/clown + if("Captain") + O = new /datum/outfit/plasmaman/captain H.equipOutfit(O, visualsOnly) H.internal = H.get_item_for_held_index(2) diff --git a/icons/mob/head.dmi b/icons/mob/head.dmi index b21c68bc..0ce1dbd0 100644 Binary files a/icons/mob/head.dmi and b/icons/mob/head.dmi differ diff --git a/icons/mob/uniform.dmi b/icons/mob/uniform.dmi index 671743f2..9885b0bd 100644 Binary files a/icons/mob/uniform.dmi and b/icons/mob/uniform.dmi differ diff --git a/icons/obj/clothing/hats.dmi b/icons/obj/clothing/hats.dmi index 33db51e1..987eef6b 100644 Binary files a/icons/obj/clothing/hats.dmi and b/icons/obj/clothing/hats.dmi differ diff --git a/icons/obj/clothing/uniforms.dmi b/icons/obj/clothing/uniforms.dmi index 20045222..fdd3e1f4 100644 Binary files a/icons/obj/clothing/uniforms.dmi and b/icons/obj/clothing/uniforms.dmi differ diff --git a/tgstation.dme b/tgstation.dme index a9ea9f06..7aa5d8ae 100644 --- a/tgstation.dme +++ b/tgstation.dme @@ -1700,6 +1700,7 @@ #include "code\modules\clothing\under\jobs\medsci.dm" #include "code\modules\clothing\under\jobs\security.dm" #include "code\modules\clothing\under\jobs\Plasmaman\civilian_service.dm" +#include "code\modules\clothing\under\jobs\Plasmaman\command.dm" #include "code\modules\clothing\under\jobs\Plasmaman\engineering.dm" #include "code\modules\clothing\under\jobs\Plasmaman\medsci.dm" #include "code\modules\clothing\under\jobs\Plasmaman\security.dm"