diff --git a/code/modules/client/preference/loadout/loadout_shoes.dm b/code/modules/client/preference/loadout/loadout_shoes.dm index ec32e30d661..ead7257bba1 100644 --- a/code/modules/client/preference/loadout/loadout_shoes.dm +++ b/code/modules/client/preference/loadout/loadout_shoes.dm @@ -7,6 +7,14 @@ display_name = "sandals, wooden" path = /obj/item/clothing/shoes/sandal +/datum/gear/shoes/winterboots + display_name = "winter boots" + path = /obj/item/clothing/shoes/winterboots + +/datum/gear/shoes/workboots + display_name = "work boots" + path = /obj/item/clothing/shoes/workboots + /datum/gear/shoes/fancysandals display_name = "sandals, fancy" cost = 5 diff --git a/code/modules/clothing/shoes/miscellaneous.dm b/code/modules/clothing/shoes/miscellaneous.dm index 702c47d13ed..49c3c3d2392 100644 --- a/code/modules/clothing/shoes/miscellaneous.dm +++ b/code/modules/clothing/shoes/miscellaneous.dm @@ -103,6 +103,16 @@ can_cut_open = 1 icon_state = "workboots" +/obj/item/clothing/shoes/winterboots + name = "winter boots" + desc = "Boots lined with 'synthetic' animal fur." + can_cut_open = 1 + icon_state = "winterboots" + cold_protection = FEET|LEGS + min_cold_protection_temperature = SHOES_MIN_TEMP_PROTECT + heat_protection = FEET|LEGS + max_heat_protection_temperature = SHOES_MAX_TEMP_PROTECT + /obj/item/clothing/shoes/cult name = "boots" desc = "A pair of boots worn by the followers of Nar-Sie." diff --git a/icons/mob/feet.dmi b/icons/mob/feet.dmi index 4a9504d91f6..659c3d2e9d2 100644 Binary files a/icons/mob/feet.dmi and b/icons/mob/feet.dmi differ diff --git a/icons/mob/species/vox/shoes.dmi b/icons/mob/species/vox/shoes.dmi index f3cc54d72e0..83d6b9870ce 100644 Binary files a/icons/mob/species/vox/shoes.dmi and b/icons/mob/species/vox/shoes.dmi differ diff --git a/icons/obj/clothing/shoes.dmi b/icons/obj/clothing/shoes.dmi index fa191ef7e21..b92c02e7166 100644 Binary files a/icons/obj/clothing/shoes.dmi and b/icons/obj/clothing/shoes.dmi differ