mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-01-25 00:41:48 +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.1 KiB
Plaintext
38 lines
1.1 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/lipstick
|
|
display_name = "Lipstick, red"
|
|
path = /obj/item/lipstick
|
|
sort_category = "Cosmetics"
|
|
|
|
/datum/gear/lipstick/black
|
|
display_name = "Lipstick, black"
|
|
path = /obj/item/lipstick/black
|
|
|
|
/datum/gear/lipstick/jade
|
|
display_name = "Lipstick, jade"
|
|
path = /obj/item/lipstick/jade
|
|
|
|
/datum/gear/lipstick/purple
|
|
display_name = "Lipstick, purple"
|
|
path = /obj/item/lipstick/purple
|
|
|
|
/datum/gear/lipstick/blue
|
|
display_name = "Lipstick, blue"
|
|
path = /obj/item/lipstick/blue
|
|
|
|
/datum/gear/lipstick/lime
|
|
display_name = "Lipstick, lime"
|
|
path = /obj/item/lipstick/lime
|