From 25a3ff0eefc113f494ec990da014db26499ab8d7 Mon Sep 17 00:00:00 2001 From: plsleavemealon <106043510+plsleavemealon@users.noreply.github.com> Date: Thu, 10 Jul 2025 18:21:20 -0500 Subject: [PATCH] heeled mining and heeled work boots for loadout (#4211) ## About The Pull Request Adds the heeled mining and heeled work boots to loadout. They have the same stats and availability as their normal counterparts. ## Why It's Good For The Game More character customization! ## Proof Of Testing Tested locally, works flawlessly. ## Changelog :cl: add: Adds heeled mining and work boots to loadout /:cl: --- .../master_files/code/modules/loadout/categories/shoes.dm | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/modular_skyrat/master_files/code/modules/loadout/categories/shoes.dm b/modular_skyrat/master_files/code/modules/loadout/categories/shoes.dm index d90f47769d9..fe85120c85c 100644 --- a/modular_skyrat/master_files/code/modules/loadout/categories/shoes.dm +++ b/modular_skyrat/master_files/code/modules/loadout/categories/shoes.dm @@ -69,6 +69,10 @@ name = "Work Boots" item_path = /obj/item/clothing/shoes/workboots +/datum/loadout_item/shoes/work_boots/heeled + name = "Heeled Work Boots" + item_path = /obj/item/clothing/shoes/workboots/heeled + /datum/loadout_item/shoes/work_boots/old name = "Old Work Boots" item_path = /obj/item/clothing/shoes/workboots/old @@ -77,6 +81,10 @@ name = "Mining Boots" item_path = /obj/item/clothing/shoes/workboots/mining +/datum/loadout_item/shoes/mining_boots/heeled + name = "Heeled Mining Boots" + item_path = /obj/item/clothing/shoes/workboots/mining/heeled + /datum/loadout_item/shoes/russian_boots name = "Russian Boots" item_path = /obj/item/clothing/shoes/russian