From 863b46b7e659d43b21d117d25de9be7748ffbc9e Mon Sep 17 00:00:00 2001 From: Anonymous Date: Sat, 22 Oct 2022 11:38:53 +0300 Subject: [PATCH] Adds apron, overalls and Amish suit to loadout --- modular_splurt/code/modules/client/loadout/suit.dm | 9 +++++++++ modular_splurt/code/modules/client/loadout/uniform.dm | 5 +++++ 2 files changed, 14 insertions(+) diff --git a/modular_splurt/code/modules/client/loadout/suit.dm b/modular_splurt/code/modules/client/loadout/suit.dm index a8959b89e9..695ed1ed3e 100644 --- a/modular_splurt/code/modules/client/loadout/suit.dm +++ b/modular_splurt/code/modules/client/loadout/suit.dm @@ -14,6 +14,15 @@ name = "dracula coat" path = /obj/item/clothing/suit/dracula +// Suggestion #3279 +/datum/gear/suit/apron + name = "apron, blue" + path = /obj/item/clothing/suit/apron + +/datum/gear/suit/overalls + name = "overalls" + path = /obj/item/clothing/suit/apron/overalls + // Fixes "Fed (Modern) uniform, White" being in general suit loadout section. /datum/gear/suit/trekcmdcapmod subcategory = LOADOUT_SUBCATEGORY_SUIT_JOBS diff --git a/modular_splurt/code/modules/client/loadout/uniform.dm b/modular_splurt/code/modules/client/loadout/uniform.dm index 4f99b4bdd7..29d91596d7 100644 --- a/modular_splurt/code/modules/client/loadout/uniform.dm +++ b/modular_splurt/code/modules/client/loadout/uniform.dm @@ -45,6 +45,11 @@ name = "waiter's outfit" path = /obj/item/clothing/under/suit/waiter +// Suggestion #3278 +/datum/gear/uniform/amish + name = "Amish suit" + path = /obj/item/clothing/under/suit/sl + /datum/gear/uniform/bunnysuit name = "bunny outfit" path = /obj/item/clothing/under/bunnysuit