mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2025-12-27 18:51:53 +00:00
* `display_name` -> Typepaths V1 * Loadout display name capitalisation #15857 * Review 1, plus json fixes * (Hopefully) final tweaks * Styling nitpicks * Extra tweaks because why not It never caused a runtime, but the `?.` is just in case. * Deconflicting * Warning comment * Whoops Typing faster than my brain
78 lines
2.2 KiB
Plaintext
78 lines
2.2 KiB
Plaintext
/*
|
|
######################################################################################
|
|
## ##
|
|
## IMPORTANT README ##
|
|
## ##
|
|
## Changing any /datum/gear typepaths --WILL-- break people's loadouts. ##
|
|
## The typepaths are stored directly in the `characters.gear` column of the DB. ##
|
|
## Please inform the server host if you wish to modify any of these. ##
|
|
## ##
|
|
######################################################################################
|
|
*/
|
|
|
|
|
|
/datum/gear/shoes
|
|
main_typepath = /datum/gear/shoes
|
|
slot = slot_shoes
|
|
sort_category = "Shoes"
|
|
|
|
/datum/gear/shoes/sandals
|
|
display_name = "Sandals, wooden"
|
|
path = /obj/item/clothing/shoes/sandal
|
|
|
|
/datum/gear/shoes/winterboots
|
|
display_name = "Winter boots"
|
|
path = /obj/item/clothing/shoes/winterboots
|
|
|
|
/datum/gear/shoes/workboots
|
|
display_name = "Work boots"
|
|
path = /obj/item/clothing/shoes/workboots
|
|
|
|
/datum/gear/shoes/fancysandals
|
|
display_name = "Sandals, fancy"
|
|
path = /obj/item/clothing/shoes/sandal/fancy
|
|
|
|
/datum/gear/shoes/dressshoes
|
|
display_name = "Dress shoes"
|
|
path = /obj/item/clothing/shoes/centcom
|
|
|
|
/datum/gear/shoes/cowboyboots
|
|
display_name = "Cowboy boots, brown"
|
|
path = /obj/item/clothing/shoes/cowboy
|
|
|
|
/datum/gear/shoes/cowboyboots_black
|
|
display_name = "Cowboy boots, black"
|
|
path = /obj/item/clothing/shoes/cowboy/black
|
|
|
|
/datum/gear/shoes/cowboyboots/white
|
|
display_name = "Cowboy boots, white"
|
|
path = /obj/item/clothing/shoes/cowboy/white
|
|
|
|
/datum/gear/shoes/cowboyboots/pink
|
|
display_name = "Cowboy boots, pink"
|
|
path = /obj/item/clothing/shoes/cowboy/pink
|
|
|
|
/datum/gear/shoes/jackboots
|
|
display_name = "Jackboots"
|
|
path = /obj/item/clothing/shoes/jackboots
|
|
|
|
/datum/gear/shoes/jacksandals
|
|
display_name = "Jacksandals"
|
|
path = /obj/item/clothing/shoes/jackboots/jacksandals
|
|
|
|
/datum/gear/shoes/laceup
|
|
display_name = "Laceup shoes"
|
|
path = /obj/item/clothing/shoes/laceup
|
|
|
|
/datum/gear/shoes/blackshoes
|
|
display_name = "Black shoes"
|
|
path = /obj/item/clothing/shoes/black
|
|
|
|
/datum/gear/shoes/brownshoes
|
|
display_name = "Brown shoes"
|
|
path = /obj/item/clothing/shoes/brown
|
|
|
|
/datum/gear/shoes/whiteshoes
|
|
display_name = "White shoes"
|
|
path = /obj/item/clothing/shoes/white
|