diff --git a/code/game/objects/items/stacks/sheets/sheet_types.dm b/code/game/objects/items/stacks/sheets/sheet_types.dm index a5970674..9cc329c1 100644 --- a/code/game/objects/items/stacks/sheets/sheet_types.dm +++ b/code/game/objects/items/stacks/sheets/sheet_types.dm @@ -311,6 +311,7 @@ GLOBAL_LIST_INIT(bamboo_recipes, list ( \ GLOBAL_LIST_INIT(cloth_recipes, list ( \ new/datum/stack_recipe("grey jumpsuit", /obj/item/clothing/under/color/grey, 3), \ new/datum/stack_recipe("black shoes", /obj/item/clothing/shoes/sneakers/black, 2), \ + new/datum/stack_recipe("cloth footwraps", /obj/item/clothing/shoes/footwraps, 2), \ null, \ new/datum/stack_recipe("backpack", /obj/item/storage/backpack, 4), \ new/datum/stack_recipe("duffel bag", /obj/item/storage/backpack/duffelbag, 6), \ diff --git a/code/modules/clothing/shoes/miscellaneous.dm b/code/modules/clothing/shoes/miscellaneous.dm index 153fe2a6..a90be14c 100644 --- a/code/modules/clothing/shoes/miscellaneous.dm +++ b/code/modules/clothing/shoes/miscellaneous.dm @@ -371,6 +371,11 @@ lightCycle = 0 active = FALSE +/obj/item/clothing/shoes/footwraps + name = "cloth footwraps" + desc = "A roll of treated canvas used for wrapping claws or paws." + icon_state = "foot_wraps" + /obj/item/clothing/shoes/wraps name = "gilded leg wraps" desc = "Ankle coverings. These ones have a golden design." diff --git a/icons/mob/feet.dmi b/icons/mob/feet.dmi index 2c97614a..f5ddc89e 100644 Binary files a/icons/mob/feet.dmi and b/icons/mob/feet.dmi differ diff --git a/icons/mob/feet_digi.dmi b/icons/mob/feet_digi.dmi index 7b4070f4..bc4d8f2d 100644 Binary files a/icons/mob/feet_digi.dmi and b/icons/mob/feet_digi.dmi differ diff --git a/icons/obj/clothing/shoes.dmi b/icons/obj/clothing/shoes.dmi index 87395f34..9e8621de 100644 Binary files a/icons/obj/clothing/shoes.dmi and b/icons/obj/clothing/shoes.dmi differ diff --git a/modular_citadel/code/modules/client/loadout/shoes.dm b/modular_citadel/code/modules/client/loadout/shoes.dm index 9a7b16bd..7b9fe2b1 100644 --- a/modular_citadel/code/modules/client/loadout/shoes.dm +++ b/modular_citadel/code/modules/client/loadout/shoes.dm @@ -73,6 +73,11 @@ category = SLOT_SHOES path= /obj/item/clothing/shoes/wraps/blue +/datum/gear/footwraps + name = "Cloth footwraps" + category = SLOT_SHOES + path= /obj/item/clothing/shoes/footwraps + /datum/gear/christmasbootsr name = "Red Christmas Boots" category = SLOT_SHOES diff --git a/modular_citadel/icons/mob/digishoes.dmi b/modular_citadel/icons/mob/digishoes.dmi index 3e757157..a3175f0c 100644 Binary files a/modular_citadel/icons/mob/digishoes.dmi and b/modular_citadel/icons/mob/digishoes.dmi differ