mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-01-24 00:12:07 +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
30 lines
956 B
Plaintext
30 lines
956 B
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/gloves
|
|
main_typepath = /datum/gear/gloves
|
|
slot = slot_gloves
|
|
sort_category = "Gloves"
|
|
|
|
/datum/gear/gloves/fingerless
|
|
display_name = "Fingerless Gloves"
|
|
path = /obj/item/clothing/gloves/fingerless
|
|
|
|
/datum/gear/gloves/silverring
|
|
display_name = "Silver ring"
|
|
path = /obj/item/clothing/gloves/ring/silver
|
|
|
|
/datum/gear/gloves/goldring
|
|
display_name = "Gold ring"
|
|
path = /obj/item/clothing/gloves/ring/gold
|