mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-07-14 09:27:45 +01:00
New shoe sprites (#7474)
This commit is contained in:
@@ -6,9 +6,17 @@
|
||||
sort_category = "Shoes and Footwear"
|
||||
|
||||
/datum/gear/shoes/workboots
|
||||
display_name = "workboots"
|
||||
display_name = "workboots selection"
|
||||
path = /obj/item/clothing/shoes/workboots
|
||||
|
||||
/datum/gear/shoes/workboots/New()
|
||||
..()
|
||||
var/shoes = list()
|
||||
shoes["brown workboots"] = /obj/item/clothing/shoes/workboots
|
||||
shoes["grey workboots"] = /obj/item/clothing/shoes/workboots/grey
|
||||
shoes["dark workboots"] = /obj/item/clothing/shoes/workboots/dark
|
||||
gear_tweaks += new/datum/gear_tweak/path(shoes)
|
||||
|
||||
/datum/gear/shoes/winterboots
|
||||
display_name = "winter boots"
|
||||
path = /obj/item/clothing/shoes/winter
|
||||
@@ -37,12 +45,16 @@
|
||||
gear_tweaks += new/datum/gear_tweak/path(shoes)
|
||||
|
||||
/datum/gear/shoes/dress
|
||||
display_name = "shoes, dress"
|
||||
display_name = "oxford shoe selection"
|
||||
path = /obj/item/clothing/shoes/laceup
|
||||
|
||||
/datum/gear/shoes/leather
|
||||
display_name = "shoes, leather"
|
||||
path = /obj/item/clothing/shoes/leather
|
||||
/datum/gear/shoes/dress/New()
|
||||
..()
|
||||
var/shoes = list()
|
||||
shoes["black oxford shoes"] = /obj/item/clothing/shoes/laceup
|
||||
shoes["grey oxford shoes"] = /obj/item/clothing/shoes/laceup/grey
|
||||
shoes["brown oxford shoes"] = /obj/item/clothing/shoes/laceup/brown
|
||||
gear_tweaks += new/datum/gear_tweak/path(shoes)
|
||||
|
||||
/datum/gear/shoes/flats
|
||||
display_name = "flats selection"
|
||||
|
||||
@@ -16,18 +16,26 @@
|
||||
|
||||
/datum/gear/shoes/toeless
|
||||
display_name = "toe-less jackboots"
|
||||
path = /obj/item/clothing/shoes/jackboots/unathi
|
||||
path = /obj/item/clothing/shoes/jackboots/toeless
|
||||
sort_category = "Xenowear"
|
||||
whitelisted = list("Vaurca Worker", "Vaurca Warrior", "Unathi", "Aut'akh Unathi", "Tajara", "Zhan-Khazan Tajara", "M'sai Tajara")
|
||||
|
||||
/datum/gear/shoes/workboots_toeless
|
||||
display_name = "toeless workboots"
|
||||
display_name = "toeless workboots selection"
|
||||
path = /obj/item/clothing/shoes/workboots/toeless
|
||||
sort_category = "Xenowear"
|
||||
whitelisted = list("Vaurca Worker", "Vaurca Warrior", "Unathi", "Aut'akh Unathi", "Tajara", "Zhan-Khazan Tajara", "M'sai Tajara")
|
||||
|
||||
/datum/gear/shoes/workboots_toeless/New()
|
||||
..()
|
||||
var/shoes = list()
|
||||
shoes["brown toeless workboots"] = /obj/item/clothing/shoes/workboots/toeless
|
||||
shoes["grey toeless workboots"] = /obj/item/clothing/shoes/workboots/toeless/grey
|
||||
shoes["dark toeless workboots"] = /obj/item/clothing/shoes/workboots/toeless/dark
|
||||
gear_tweaks += new/datum/gear_tweak/path(shoes)
|
||||
|
||||
/datum/gear/shoes/caligae
|
||||
display_name = "caligae"
|
||||
display_name = "caligae selection"
|
||||
path = /obj/item/clothing/shoes/caligae
|
||||
whitelisted = list("Unathi", "Aut'akh Unathi", "Tajara", "Zhan-Khazan Tajara", "M'sai Tajara")
|
||||
sort_category = "Xenowear"
|
||||
|
||||
Reference in New Issue
Block a user