mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2026-07-10 15:53:44 +01:00
The great Aurora shoe heist
This commit is contained in:
@@ -1,13 +1,21 @@
|
||||
// Shoelocker
|
||||
/datum/gear/shoes
|
||||
display_name = "jackboots"
|
||||
path = /obj/item/clothing/shoes/boots/jackboots
|
||||
display_name = "sandals"
|
||||
path = /obj/item/clothing/shoes/sandal
|
||||
slot = slot_shoes
|
||||
sort_category = "Shoes and Footwear"
|
||||
|
||||
/datum/gear/shoes/toeless
|
||||
display_name = "toe-less jackboots"
|
||||
path = /obj/item/clothing/shoes/boots/jackboots/toeless
|
||||
/datum/gear/shoes/jackboots
|
||||
display_name = "jackboots"
|
||||
path = /obj/item/clothing/shoes/boots/jackboots
|
||||
|
||||
/datum/gear/shoes/kneeboots
|
||||
display_name = "jackboots, knee-length"
|
||||
path = /obj/item/clothing/shoes/boots/jackboots/knee
|
||||
|
||||
/datum/gear/shoes/thighboots
|
||||
display_name = "jackboots. thigh-length"
|
||||
path = /obj/item/clothing/shoes/boots/jackboots/thigh
|
||||
|
||||
/datum/gear/shoes/workboots
|
||||
display_name = "workboots"
|
||||
@@ -17,10 +25,6 @@
|
||||
display_name = "toe-less workboots"
|
||||
path = /obj/item/clothing/shoes/boots/workboots/toeless
|
||||
|
||||
/datum/gear/shoes/sandals
|
||||
display_name = "sandals"
|
||||
path = /obj/item/clothing/shoes/sandal
|
||||
|
||||
/datum/gear/shoes/black
|
||||
display_name = "shoes, black"
|
||||
path = /obj/item/clothing/shoes/black
|
||||
@@ -34,21 +38,21 @@
|
||||
path = /obj/item/clothing/shoes/brown
|
||||
|
||||
/datum/gear/shoes/lacey
|
||||
display_name = "shoes, classy"
|
||||
display_name = "shoes, oxford selection"
|
||||
path = /obj/item/clothing/shoes/laceup
|
||||
|
||||
/datum/gear/shoes/dress
|
||||
display_name = "shoes, dress"
|
||||
path = /obj/item/clothing/shoes/laceup
|
||||
/datum/gear/shoes/lacey/New()
|
||||
..()
|
||||
var/list/laces = list()
|
||||
for(var/lace in typesof(/obj/item/clothing/shoes/laceup))
|
||||
var/obj/item/clothing/shoes/laceup/lace_type = lace
|
||||
laces[initial(lace_type.name)] = lace_type
|
||||
gear_tweaks += new/datum/gear_tweak/path(sortAssoc(laces))
|
||||
|
||||
/datum/gear/shoes/green
|
||||
display_name = "shoes, green"
|
||||
path = /obj/item/clothing/shoes/green
|
||||
|
||||
/datum/gear/shoes/leather
|
||||
display_name = "shoes, leather"
|
||||
path = /obj/item/clothing/shoes/leather
|
||||
|
||||
/datum/gear/shoes/orange
|
||||
display_name = "shoes, orange"
|
||||
path = /obj/item/clothing/shoes/orange
|
||||
@@ -74,36 +78,16 @@
|
||||
path = /obj/item/clothing/shoes/yellow
|
||||
|
||||
/datum/gear/shoes/hitops/
|
||||
display_name = "high-top, white"
|
||||
display_name = "high-top selection"
|
||||
path = /obj/item/clothing/shoes/hitops/
|
||||
|
||||
/datum/gear/shoes/hitops/red
|
||||
display_name = "high-top, red"
|
||||
path = /obj/item/clothing/shoes/hitops/red
|
||||
|
||||
/datum/gear/shoes/hitops/black
|
||||
display_name = "high-top, black"
|
||||
path = /obj/item/clothing/shoes/hitops/black
|
||||
|
||||
/datum/gear/shoes/hitops/orange
|
||||
display_name = "high-top, orange"
|
||||
path = /obj/item/clothing/shoes/hitops/orange
|
||||
|
||||
/datum/gear/shoes/hitops/blue
|
||||
display_name = "high-top, blue"
|
||||
path = /obj/item/clothing/shoes/hitops/blue
|
||||
|
||||
/datum/gear/shoes/hitops/green
|
||||
display_name = "high-top, green"
|
||||
path = /obj/item/clothing/shoes/hitops/green
|
||||
|
||||
/datum/gear/shoes/hitops/purple
|
||||
display_name = "high-top, purple"
|
||||
path = /obj/item/clothing/shoes/hitops/purple
|
||||
|
||||
/datum/gear/shoes/hitops/yellow
|
||||
display_name = "high-top, yellow"
|
||||
path = /obj/item/clothing/shoes/hitops/yellow
|
||||
/datum/gear/shoes/hitops/New()
|
||||
..()
|
||||
var/list/hitops = list()
|
||||
for(var/hitop in typesof(/obj/item/clothing/shoes/hitops))
|
||||
var/obj/item/clothing/shoes/hitops/hitop_type = hitop
|
||||
hitops[initial(hitop_type.name)] = hitop_type
|
||||
gear_tweaks += new/datum/gear_tweak/path(sortAssoc(hitops))
|
||||
|
||||
/datum/gear/shoes/flipflops
|
||||
display_name = "flip flops"
|
||||
|
||||
Reference in New Issue
Block a user