mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 10:12:45 +00:00
24 lines
645 B
Plaintext
24 lines
645 B
Plaintext
/datum/gear/gloves/goldring
|
|
display_name = "wedding ring, gold"
|
|
path = /obj/item/clothing/gloves/weddingring
|
|
|
|
/datum/gear/gloves/silverring
|
|
display_name = "wedding ring, silver"
|
|
path = /obj/item/clothing/gloves/weddingring/silver
|
|
|
|
/datum/gear/gloves/colored
|
|
display_name = "gloves, colorable"
|
|
path = /obj/item/clothing/gloves/color
|
|
|
|
/datum/gear/gloves/colored/New()
|
|
..()
|
|
gear_tweaks = list(gear_tweak_free_color_choice)
|
|
|
|
|
|
/datum/gear/gloves/latex/colorable
|
|
display_name = "gloves, latex, colorable"
|
|
path = /obj/item/clothing/gloves/latex
|
|
|
|
/datum/gear/gloves/latex/colorable/New()
|
|
..()
|
|
gear_tweaks = list(gear_tweak_free_color_choice) |