mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-07-16 17:44:25 +01:00
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:
@@ -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))
|
||||
|
||||
Reference in New Issue
Block a user