diff --git a/code/modules/client/preference/loadout/loadout_hat.dm b/code/modules/client/preference/loadout/loadout_hat.dm index 2abfd08f8ce..82d215e7b4f 100644 --- a/code/modules/client/preference/loadout/loadout_hat.dm +++ b/code/modules/client/preference/loadout/loadout_hat.dm @@ -97,6 +97,22 @@ display_name = "cowboy hat" path = /obj/item/clothing/head/cowboyhat +/datum/gear/hat/cowboyhat_brown + display_name = "cowboy hat, brown" + path = /obj/item/clothing/head/cowboyhat + +/datum/gear/hat/cowboyhat_black + display_name = "cowboy hat, black" + path = /obj/item/clothing/head/cowboyhat_black + +/datum/gear/hat/cowboyhat_white + display_name = "cowboy hat, white" + path = /obj/item/clothing/head/cowboyhat_white + +/datum/gear/hat/cowboyhat_pink + display_name = "cowboy hat, pink" + path = /obj/item/clothing/head/cowboyhat_pink + /datum/gear/hat/pr_beret display_name = "beret, purple" path = /obj/item/clothing/head/beret/purple_normal diff --git a/code/modules/client/preference/loadout/loadout_shoes.dm b/code/modules/client/preference/loadout/loadout_shoes.dm index ead7257bba1..f39b25aabf6 100644 --- a/code/modules/client/preference/loadout/loadout_shoes.dm +++ b/code/modules/client/preference/loadout/loadout_shoes.dm @@ -24,3 +24,23 @@ display_name = "dress shoes" cost = 5 path = /obj/item/clothing/shoes/centcom + +/datum/gear/shoes/cowboyboots + display_name = "cowboy boots" + cost = 1 + path = /obj/item/clothing/shoes/cowboyboots + +/datum/gear/shoes/cowboyboots_black + display_name = "cowboy boots, black" + cost = 1 + path = /obj/item/clothing/shoes/cowboyboots_black + +/datum/gear/shoes/cowboyboots_white + display_name = "cowboy boots, white" + cost = 1 + path = /obj/item/clothing/shoes/cowboyboots_white + +/datum/gear/shoes/cowboyboots_pink + display_name = "cowboy boots, pink" + cost = 1 + path = /obj/item/clothing/shoes/cowboyboots_pink diff --git a/code/modules/clothing/head/misc.dm b/code/modules/clothing/head/misc.dm index 319c0fd5fce..ee16f4129c8 100644 --- a/code/modules/clothing/head/misc.dm +++ b/code/modules/clothing/head/misc.dm @@ -188,6 +188,30 @@ item_state = "fedora" desc = "There's a new sheriff in town. Pass the whiskey." +/obj/item/clothing/head/cowboyhat_brown + name = "cowboy hat" + icon_state = "cowboyhat_brown" + item_state = "cowboyhat_brown" + desc = "For the Rancher in us all." + +/obj/item/clothing/head/cowboyhat_black + name = "black cowboy hat" + icon_state = "cowboyhat_black" + item_state = "cowboyhat_black" + desc = "This station aint big enough for the two ah' us." + +/obj/item/clothing/head/cowboyhat_white + name = "white cowboy hat" + icon_state = "cowboyhat_white" + item_state = "cowboyhat_white" + desc = "Authentic Marshall hair case. Now ya can protect this here homestead. Navy Model not included." + +/obj/item/clothing/head/cowboyhat_pink + name = "cowgirl hat" + icon_state = "cowboyhat_pink" + item_state = "cowboyhat_pink" + desc = "For those buckle bunnies wanta' become a real buckaroo." + /obj/item/clothing/head/fedora name = "fedora" icon_state = "fedora" diff --git a/code/modules/clothing/shoes/miscellaneous.dm b/code/modules/clothing/shoes/miscellaneous.dm index 09ec70e6729..9ad55d65e7a 100644 --- a/code/modules/clothing/shoes/miscellaneous.dm +++ b/code/modules/clothing/shoes/miscellaneous.dm @@ -232,3 +232,27 @@ desc = "These boots were made for dancing." icon_state = "bsing" put_on_delay = 50 + +/obj/item/clothing/shoes/cowboyboots + name = "cowboy boots" + desc = "A pair a' brown boots." + icon_state = "cowboyboots" + item_color = "cowboyboots" + +/obj/item/clothing/shoes/cowboyboots_black + name = "black cowboy boots" + desc = "A pair a' black rustlers' boots" + icon_state = "cowboyboots_black" + item_color = "cowboyboots_black" + +/obj/item/clothing/shoes/cowboyboots_white + name = "white cowboy boots" + desc = "For the rancher in us all." + icon_state = "cowboyboots_white" + item_color = "cowboyboots_white" + +/obj/item/clothing/shoes/cowboyboots_pink + name = "pink cowgirl boots" + desc = "For a Rustlin' tustlin' cowgirl." + icon_state = "cowboyboots_pink" + item_color = "cowboyboots_pink" \ No newline at end of file diff --git a/icons/mob/feet.dmi b/icons/mob/feet.dmi index 659c3d2e9d2..2dd84b4117c 100644 Binary files a/icons/mob/feet.dmi and b/icons/mob/feet.dmi differ diff --git a/icons/mob/head.dmi b/icons/mob/head.dmi index acfaf83a92c..f41205fb0fd 100644 Binary files a/icons/mob/head.dmi and b/icons/mob/head.dmi differ diff --git a/icons/obj/clothing/hats.dmi b/icons/obj/clothing/hats.dmi index 0aece3ac8ac..abcd031c8ed 100644 Binary files a/icons/obj/clothing/hats.dmi and b/icons/obj/clothing/hats.dmi differ diff --git a/icons/obj/clothing/shoes.dmi b/icons/obj/clothing/shoes.dmi index b92c02e7166..3631097a2ba 100644 Binary files a/icons/obj/clothing/shoes.dmi and b/icons/obj/clothing/shoes.dmi differ