diff --git a/modular_splurt/code/modules/clothing/under/jobs/centcom.dm b/modular_splurt/code/modules/clothing/under/jobs/centcom.dm new file mode 100644 index 000000000000..f2d08f2c6a06 --- /dev/null +++ b/modular_splurt/code/modules/clothing/under/jobs/centcom.dm @@ -0,0 +1,62 @@ +/obj/item/clothing/under/rank/centcom + name = "centcom base uniform" + desc = "Shouldn't be seing this, and not just cause it's CC's!" + icon = 'modular_splurt/icons/obj/clothing/centcom.dmi' + mob_overlay_icon = 'modular_splurt/icons/mob/clothing/centcom.dmi' + icon_state = "debug" + item_state = "debug" + +// Actual CC uniforms + +/obj/item/clothing/under/rank/centcom/highranking + name = "high ranking centcom officer jumpsuit" + desc = "Oh shit, boss is here." + icon_state = "centcom" + item_state = "centcom" + can_adjust = TRUE + +/obj/item/clothing/under/rank/centcom/highrankingfem + name = "high ranking centcom officer jumpskirt" + desc = "Oh shit, boss is here." + icon_state = "centcom_skirt" + item_state = "centcom_skirt" + can_adjust = TRUE + +/obj/item/clothing/under/rank/centcom/officer + name = "centcom officer jumpsuit" + desc = "Lean, Green and Mean. Smells of self importance." + icon_state = "official" + item_state = "official" + can_adjust = TRUE + +/obj/item/clothing/under/rank/centcom/sweater + name = "high ranking centcom officer sweater" + desc = "Favored by a certain bridge \"advisor\"." + icon_state = "officer" + item_state = "officer" + can_adjust = TRUE + +/obj/item/clothing/under/rank/centcom/sweaterfem + name = "high ranking centcom officer sweaterskirt" + desc = "Favored by a certain femboy bride \"advisor\"." + icon_state = "officer_skirt" + item_state = "officer_skirt" + can_adjust = TRUE + +/obj/item/clothing/under/rank/centcom/intern + name = "centcom intern jumpsuit" + desc = "Cheap and mass produced, very itchy." + icon_state = "intern" + item_state = "intern" + +/obj/item/clothing/under/rank/centcom/tactical + name = "tactical centcom uniform" + desc = "No technorussian." + icon_state = "military" + item_state = "military" + +/obj/item/clothing/under/rank/centcom/tacticalengi + name = "tactical engie centcom uniform" + desc = "\"I solve practical problems.\"" + icon_state = "military_eng" + item_state = "military_eng" diff --git a/modular_splurt/code/modules/mob/living/emotes.dm b/modular_splurt/code/modules/mob/living/emotes.dm index f95fbe3e9b62..24b4742a50bb 100644 --- a/modular_splurt/code/modules/mob/living/emotes.dm +++ b/modular_splurt/code/modules/mob/living/emotes.dm @@ -1628,6 +1628,15 @@ To add randomization to your emote, copy and paste this line of code: vary = FALSE volume = 30 +/datum/emote/sound/human/squirm + key = "squirm" + key_third_person = "squirm" + name = "squirm" + message = "squirms in place!" + message_mime = "squirms in place!" + emote_type = EMOTE_VISIBLE + emote_cooldown = 0.8 SECONDS + /datum/emote/sound/human/malaysia key = "malaysia" key_third_person = "admits to blowing up Malaysia!" diff --git a/modular_splurt/icons/mob/clothing/centcom.dmi b/modular_splurt/icons/mob/clothing/centcom.dmi new file mode 100644 index 000000000000..df196a85d53a Binary files /dev/null and b/modular_splurt/icons/mob/clothing/centcom.dmi differ diff --git a/modular_splurt/icons/obj/clothing/centcom.dmi b/modular_splurt/icons/obj/clothing/centcom.dmi new file mode 100644 index 000000000000..7ea33803f122 Binary files /dev/null and b/modular_splurt/icons/obj/clothing/centcom.dmi differ diff --git a/tgstation.dme b/tgstation.dme index e7cc4796b144..4b19b4da8bb9 100644 --- a/tgstation.dme +++ b/tgstation.dme @@ -4889,6 +4889,7 @@ #include "modular_splurt\code\modules\clothing\under\accessories.dm" #include "modular_splurt\code\modules\clothing\under\miscellaneous.dm" #include "modular_splurt\code\modules\clothing\under\shorts.dm" +#include "modular_splurt\code\modules\clothing\under\jobs\centcom.dm" #include "modular_splurt\code\modules\clothing\under\jobs\command.dm" #include "modular_splurt\code\modules\clothing\under\jobs\engineering.dm" #include "modular_splurt\code\modules\clothing\under\jobs\security.dm"