diff --git a/code/modules/client/preference_setup/loadout/loadout_shoes.dm b/code/modules/client/preference_setup/loadout/loadout_shoes.dm index 428780cf5c8..96743ff5cf4 100644 --- a/code/modules/client/preference_setup/loadout/loadout_shoes.dm +++ b/code/modules/client/preference_setup/loadout/loadout_shoes.dm @@ -121,4 +121,20 @@ /datum/gear/shoes/circuitry display_name = "boots, circuitry (empty)" - path = /obj/item/clothing/shoes/circuitry \ No newline at end of file + path = /obj/item/clothing/shoes/circuitry + +/datum/gear/shoes/slippers + display_name = "bunny slippers" + path = /obj/item/clothing/shoes/slippers + +/datum/gear/shoes/slippers/New() + ..() + var/slippers = list() + slippers["bunny slippers"] = /obj/item/clothing/shoes/slippers + slippers["worn bunny slippers"] = /obj/item/clothing/shoes/slippers_worn + gear_tweaks += new/datum/gear_tweak/path(slippers) + +/datum/gear/shoes/clog + display_name = "plastic clogs" + path = /obj/item/clothing/shoes/sandal/clogs + flags = GEAR_HAS_NAME_SELECTION | GEAR_HAS_DESC_SELECTION | GEAR_HAS_COLOR_SELECTION diff --git a/code/modules/client/preference_setup/loadout/loadout_uniform.dm b/code/modules/client/preference_setup/loadout/loadout_uniform.dm index 8cb40239c5e..bc414482f18 100644 --- a/code/modules/client/preference_setup/loadout/loadout_uniform.dm +++ b/code/modules/client/preference_setup/loadout/loadout_uniform.dm @@ -315,3 +315,14 @@ description = "For those that value leg-room." path = /obj/item/clothing/under/rank/cargotech/alt allowed_roles = list("Cargo Technician") + +/datum/gear/uniform/pyjama + display_name = "pyjamas" + path = /obj/item/clothing/under/pj/blue + +/datum/gear/uniform/pyjama/New() + ..() + var/pyjamas = list() + pyjamas["blue pyjamas"] = /obj/item/clothing/under/pj/blue + pyjamas["red pyjamas"] = /obj/item/clothing/under/pj/red + gear_tweaks += new/datum/gear_tweak/path(pyjamas) \ No newline at end of file diff --git a/code/modules/clothing/shoes/miscellaneous.dm b/code/modules/clothing/shoes/miscellaneous.dm index 8e92a60c44c..87aaffdfffd 100644 --- a/code/modules/clothing/shoes/miscellaneous.dm +++ b/code/modules/clothing/shoes/miscellaneous.dm @@ -66,6 +66,12 @@ icon_state = "thongsandal" item_state = "thongsandal" +obj/item/clothing/shoes/sandal/clogs + name = "plastic clogs" + desc = "A pair of plastic clog shoes." + icon_state = "clogs" + item_state = "clogs" + /obj/item/clothing/shoes/clown_shoes desc = "The prankster's standard-issue clowning shoes. Damn they're huge!" name = "clown shoes" diff --git a/html/changelogs/alberyk-moreloadoutstuff.yml b/html/changelogs/alberyk-moreloadoutstuff.yml new file mode 100644 index 00000000000..fd64d28d71e --- /dev/null +++ b/html/changelogs/alberyk-moreloadoutstuff.yml @@ -0,0 +1,6 @@ +author: Alberyk, Happy_Fox + +delete-after: True + +changes: + - rscadd: "Added a some new options to the custom loadout: bunny slippers, pyjamas and colorable plastic clogs." diff --git a/icons/mob/feet.dmi b/icons/mob/feet.dmi index 335843971e9..a241fca6971 100644 Binary files a/icons/mob/feet.dmi and b/icons/mob/feet.dmi differ diff --git a/icons/obj/clothing/shoes.dmi b/icons/obj/clothing/shoes.dmi index 74d9a4244bf..0c6218eee3e 100644 Binary files a/icons/obj/clothing/shoes.dmi and b/icons/obj/clothing/shoes.dmi differ