mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2025-12-25 17:51:17 +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
38 lines
1.2 KiB
Plaintext
38 lines
1.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/glasses
|
|
main_typepath = /datum/gear/glasses
|
|
slot = slot_glasses
|
|
sort_category = "Glasses"
|
|
|
|
/datum/gear/glasses/sunglasses
|
|
display_name = "Cheap sunglasses"
|
|
path = /obj/item/clothing/glasses/sunglasses_fake
|
|
|
|
/datum/gear/glasses/eyepatch
|
|
display_name = "Eyepatch"
|
|
path = /obj/item/clothing/glasses/eyepatch
|
|
|
|
/datum/gear/glasses/hipster
|
|
display_name = "Hipster glasses"
|
|
path = /obj/item/clothing/glasses/regular/hipster
|
|
|
|
/datum/gear/glasses/monocle
|
|
display_name = "Monocle"
|
|
path = /obj/item/clothing/glasses/monocle
|
|
|
|
/datum/gear/glasses/prescription
|
|
display_name = "Prescription glasses"
|
|
path = /obj/item/clothing/glasses/regular
|