Watch Yourself (#15972)

* watches

* watches

I didn't actually need any of this, it's all handled by the embedded gps
This commit is contained in:
Killian
2024-05-11 20:05:39 +01:00
committed by GitHub
parent f46821ce21
commit 815a47e333
6 changed files with 87 additions and 5 deletions
@@ -99,4 +99,19 @@
/datum/gear/gloves/circuitry
display_name = "gloves, circuitry (empty)"
path = /obj/item/clothing/gloves/circuitry
path = /obj/item/clothing/gloves/circuitry
/datum/gear/gloves/watch
display_name = "wristwatch selector"
description = "Pick from a range of wristwatches."
path = /obj/item/clothing/gloves/watch
/datum/gear/gloves/watch/New()
..()
var/list/selector_watches = list(
"plain plastic"=/obj/item/clothing/gloves/watch,
"silver"=/obj/item/clothing/gloves/watch/silver,
"gold"=/obj/item/clothing/gloves/watch/gold,
"survival"=/obj/item/clothing/gloves/watch/survival
)
gear_tweaks += new/datum/gear_tweak/path(sortAssoc(selector_watches))