mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-22 11:37:40 +01:00
71 lines
2.0 KiB
Plaintext
71 lines
2.0 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/gloves
|
|
main_typepath = /datum/gear/gloves
|
|
slot = ITEM_SLOT_GLOVES
|
|
sort_category = "Gloves"
|
|
|
|
/datum/gear/gloves/fingerless
|
|
display_name = "Fingerless Gloves"
|
|
path = /obj/item/clothing/gloves/fingerless
|
|
|
|
/datum/gear/gloves/orange
|
|
display_name = "Orange Gloves"
|
|
path = /obj/item/clothing/gloves/color/orange
|
|
|
|
/datum/gear/gloves/red
|
|
display_name = "Red Gloves"
|
|
path = /obj/item/clothing/gloves/color/red
|
|
|
|
/datum/gear/gloves/blue
|
|
display_name = "Blue Gloves"
|
|
path = /obj/item/clothing/gloves/color/blue
|
|
|
|
/datum/gear/gloves/purple
|
|
display_name = "Purple Gloves"
|
|
path = /obj/item/clothing/gloves/color/purple
|
|
|
|
/datum/gear/gloves/green
|
|
display_name = "Green Gloves"
|
|
path = /obj/item/clothing/gloves/color/green
|
|
|
|
/datum/gear/gloves/grey
|
|
display_name = "Grey Gloves"
|
|
path = /obj/item/clothing/gloves/color/grey
|
|
|
|
/datum/gear/gloves/brown
|
|
display_name = "Brown Gloves"
|
|
path = /obj/item/clothing/gloves/color/brown
|
|
|
|
/datum/gear/gloves/light_brown
|
|
display_name = "Light Brown Gloves"
|
|
path = /obj/item/clothing/gloves/color/light_brown
|
|
|
|
/datum/gear/gloves/white
|
|
display_name = "White Silk Gloves"
|
|
path = /obj/item/clothing/gloves/color/white
|
|
|
|
/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
|
|
|
|
/datum/gear/gloves/white_diamondring
|
|
display_name = "white diamond ring"
|
|
path = /obj/item/clothing/gloves/ring/white_diamond
|
|
cost = 2
|