diff --git a/code/modules/client/preference/loadout/loadout_accessories.dm b/code/modules/client/preference/loadout/loadout_accessories.dm index b86d5c44ed1..1c7ad2f88e8 100644 --- a/code/modules/client/preference/loadout/loadout_accessories.dm +++ b/code/modules/client/preference/loadout/loadout_accessories.dm @@ -93,3 +93,49 @@ display_name = "stethoscope" path = /obj/item/clothing/accessory/stethoscope allowed_roles = list("Chief Medical Officer", "Medical Doctor", "Paramedic", "Brig Physician") + +/datum/gear/accessory/cowboyshirt + display_name = "cowboy shirt, black" + path = /obj/item/clothing/accessory/cowboyshirt + +/datum/gear/accessory/cowboyshirt/s + display_name = "cowboy shirt, short sleeved black" + path = /obj/item/clothing/accessory/cowboyshirt/s + +/datum/gear/accessory/cowboyshirt/white + display_name = "cowboy shirt, white" + path = /obj/item/clothing/accessory/cowboyshirt/white + +/datum/gear/accessory/cowboyshirt/whites + display_name = "cowboy shirt, short sleeved white" + path = /obj/item/clothing/accessory/cowboyshirt/whites + +/datum/gear/accessory/cowboyshirt/pink + display_name = "cowboy shirt, pink" + path = /obj/item/clothing/accessory/cowboyshirt/pink + +/datum/gear/accessory/cowboyshirt/pinks + display_name = "cowboy shirt, short sleeved pink" + path = /obj/item/clothing/accessory/cowboyshirt/pinks + +/datum/gear/accessory/cowboyshirt/red + display_name = "cowboy shirt, red" + path = /obj/item/clothing/accessory/cowboyshirt/red + +/datum/gear/accessory/cowboyshirt/reds + display_name = "cowboy shirt, short sleeved red" + path = /obj/item/clothing/accessory/cowboyshirt/reds + +/datum/gear/accessory/cowboyshirt/navy + display_name = "cowboy shirt, navy" + path = /obj/item/clothing/accessory/cowboyshirt/navy + +/datum/gear/accessory/cowboyshirt/navys + display_name = "cowboy shirt, short sleeved navy" + path = /obj/item/clothing/accessory/cowboyshirt/navys + + + + + + diff --git a/code/modules/clothing/under/accessories/accessory.dm b/code/modules/clothing/under/accessories/accessory.dm index 8ad91dad6fb..fb82f20b8fc 100644 --- a/code/modules/clothing/under/accessories/accessory.dm +++ b/code/modules/clothing/under/accessories/accessory.dm @@ -377,6 +377,117 @@ icon_state = "stripedbluescarf" item_color = "stripedbluescarf" +//Cowboy Shirts +/obj/item/clothing/accessory/cowboyshirt + name = "black cowboy shirt" + desc = "For a real western look." + icon_state = "cowboyshirt" + item_state = "cowboyshirt" + item_color = "cowboyshirt" + species_fit = list("Vox") + sprite_sheets = list( + "Vox" = 'icons/mob/species/vox/suit.dmi' + ) + +/obj/item/clothing/accessory/cowboyshirt/s + name = "shortsleeved black cowboy shirt" + desc = "For when it's a hot day in the west." + icon_state = "cowboyshirt_s" + item_state = "cowboyshirt_s" + item_color = "cowboyshirt_s" + species_fit = list("Vox") + sprite_sheets = list( + "Vox" = 'icons/mob/species/vox/suit.dmi' + ) + +/obj/item/clothing/accessory/cowboyshirt/white + name = "white cowboy shirt" + desc = "For the rancher in us all." + icon_state = "cowboyshirt_white" + item_state = "cowboyshirt_white" + item_color = "cowboyshirt_white" + species_fit = list("Vox") + sprite_sheets = list( + "Vox" = 'icons/mob/species/vox/suit.dmi' + ) + +/obj/item/clothing/accessory/cowboyshirt/whites + name = "short sleeved white cowboy shirt" + desc = "Best for midday cattle tending." + icon_state = "cowboyshirt_whites" + item_state = "cowboyshirt_whites" + item_color = "cowboyshirt_whites" + species_fit = list("Vox") + sprite_sheets = list( + "Vox" = 'icons/mob/species/vox/suit.dmi' + ) + +/obj/item/clothing/accessory/cowboyshirt/pink + name = "pink cowboy shirt" + desc = "For only the manliest of men, or girliest of girls." + icon_state = "cowboyshirt_pink" + item_state = "cowboyshirt_pink" + item_color = "cowboyshirt_pink" + species_fit = list("Vox") + sprite_sheets = list( + "Vox" = 'icons/mob/species/vox/suit.dmi' + ) + +/obj/item/clothing/accessory/cowboyshirt/pinks + name = "short sleeved pink cowboy shirt" + desc = "For a real buckle bunny." + icon_state = "cowboyshirt_pinks" + item_state = "cowboyshirt_pinks" + item_color = "cowboyshirt_pinks" + species_fit = list("Vox") + sprite_sheets = list( + "Vox" = 'icons/mob/species/vox/suit.dmi' + ) + +/obj/item/clothing/accessory/cowboyshirt/navy + name = "navy cowboy shirt" + desc = "Now yer a real cowboy." + icon_state = "cowboyshirt_navy" + item_state = "cowboyshirt_navy" + item_color = "cowboyshirt_navy" + species_fit = list("Vox") + sprite_sheets = list( + "Vox" = 'icons/mob/species/vox/suit.dmi' + ) + +/obj/item/clothing/accessory/cowboyshirt/navys + name = "short sleeved navy cowboy shirt" + desc = "Sometimes ya need to roll up your sleeves." + icon_state = "cowboyshirt_navys" + item_state = "cowboyshirt_navys" + item_color = "cowboyshirt_navys" + species_fit = list("Vox") + sprite_sheets = list( + "Vox" = 'icons/mob/species/vox/suit.dmi' + ) + +/obj/item/clothing/accessory/cowboyshirt/red + name = "red cowboy shirt" + desc = "It's high noon." + icon_state = "cowboyshirt_red" + item_state = "cowboyshirt_red" + item_color = "cowboyshirt_red" + species_fit = list("Vox") + sprite_sheets = list( + "Vox" = 'icons/mob/species/vox/suit.dmi' + ) + +/obj/item/clothing/accessory/cowboyshirt/reds + name = "short sleeved red cowboy shirt" + desc = "Life on the open range is quite dangeorus, you never know what to expect." + icon_state = "cowboyshirt_reds" + item_state = "cowboyshirt_reds" + item_color = "cowboyshirt_reds" + species_fit = list("Vox") + sprite_sheets = list( + "Vox" = 'icons/mob/species/vox/suit.dmi' + ) + /obj/item/clothing/accessory/petcollar name = "pet collar" desc = "The latest fashion accessory for your favorite pets!" diff --git a/icons/mob/species/vox/shoes.dmi b/icons/mob/species/vox/shoes.dmi index 83d6b9870ce..45f664c715a 100644 Binary files a/icons/mob/species/vox/shoes.dmi and b/icons/mob/species/vox/shoes.dmi differ diff --git a/icons/mob/species/vox/suit.dmi b/icons/mob/species/vox/suit.dmi index 4584f489ca6..b0e9f61d7bf 100644 Binary files a/icons/mob/species/vox/suit.dmi and b/icons/mob/species/vox/suit.dmi differ diff --git a/icons/mob/ties.dmi b/icons/mob/ties.dmi index e557ed1c87e..891f725aa07 100644 Binary files a/icons/mob/ties.dmi and b/icons/mob/ties.dmi differ diff --git a/icons/obj/clothing/ties.dmi b/icons/obj/clothing/ties.dmi index cc83ea5d9ec..a894b1b2465 100644 Binary files a/icons/obj/clothing/ties.dmi and b/icons/obj/clothing/ties.dmi differ