Files
Aurora.3/code/modules/client/preference_setup/loadout/loadout_shoes.dm
Alberyk 5a355914fc Port bay newest loadout system (#1648)
-ports bay newest loadout system, which is pretty much a tab of their own, with different sections instead of a single list
-adds code that allows for several tweaks of custom loadout, like color, item path and contents
-adds dumb lunchboxes that can be filled with some food selection
-adds the option to select pre-filled vacuum-flasks or flasks
-also tries to fix the issues with xeno gear again
2017-01-29 21:52:09 +02:00

46 lines
1.4 KiB
Plaintext

// Shoelocker
/datum/gear/shoes
display_name = "jackboots"
path = /obj/item/clothing/shoes/jackboots
slot = slot_shoes
sort_category = "Shoes and Footwear"
/datum/gear/shoes/toeless
display_name = "toe-less jackboots"
path = /obj/item/clothing/shoes/jackboots/unathi
/datum/gear/shoes/workboots
display_name = "workboots"
path = /obj/item/clothing/shoes/workboots
/datum/gear/shoes/sandals
display_name = "sandals"
path = /obj/item/clothing/shoes/sandal
/datum/gear/shoes/color
display_name = "shoe selection"
path = /obj/item/clothing/shoes/black
/datum/gear/shoes/color/New()
..()
var/shoes = list()
shoes["black shoes"] = /obj/item/clothing/shoes/black
shoes["blue shoes"] = /obj/item/clothing/shoes/blue
shoes["brown shoes"] = /obj/item/clothing/shoes/brown
shoes["green shoes"] = /obj/item/clothing/shoes/green
shoes["orange shoes"] = /obj/item/clothing/shoes/orange
shoes["purple shoes"] = /obj/item/clothing/shoes/purple
shoes["rainbow shoes"] = /obj/item/clothing/shoes/rainbow
shoes["red shoes"] = /obj/item/clothing/shoes/red
shoes["white shoes"] = /obj/item/clothing/shoes/white
shoes["yellow shoes"] = /obj/item/clothing/shoes/yellow
gear_tweaks += new/datum/gear_tweak/path(shoes)
/datum/gear/shoes/dress
display_name = "shoes, dress"
path = /obj/item/clothing/shoes/laceup
/datum/gear/shoes/leather
display_name = "shoes, leather"
path = /obj/item/clothing/shoes/leather