Adds on-mob sprites for the pocketwatch + differing states per slot worn (#20375)

I feel so sigma!
![image](https://i.imgur.com/F3jQTaK.gif)
![image](https://i.imgur.com/WUKJSEO.gif)

---------

Co-authored-by: Gabby <59633984+feartheblackout@users.noreply.github.com>
This commit is contained in:
FearTheGabby
2025-01-19 05:16:51 -06:00
committed by GitHub
parent eebc1fb770
commit cb109da3d7
19 changed files with 114 additions and 68 deletions
@@ -33,7 +33,7 @@
watchtype["holo watch"] = /obj/item/clothing/wrists/watch/holo
watchtype["leather watch"] = /obj/item/clothing/wrists/watch/leather
watchtype["spy watch"] = /obj/item/clothing/wrists/watch/spy
watchtype["pocketwatch"] = /obj/item/pocketwatch
watchtype["pocketwatch"] = /obj/item/clothing/wrists/watch/pocketwatch
gear_tweaks += new /datum/gear_tweak/path(watchtype)
/*
@@ -421,7 +421,7 @@ ABSTRACT_TYPE(/datum/gear/shoes/tajara)
/datum/gear/adhomai_watch
display_name = "adhomian watch selection"
description = "A selection of Adhomian watches."
path = /obj/item/pocketwatch/adhomai
path = /obj/item/clothing/wrists/watch/pocketwatch/adhomai
sort_category = "Xenowear - Tajara"
whitelisted = list(SPECIES_TAJARA, SPECIES_TAJARA_ZHAN, SPECIES_TAJARA_MSAI)
flags = GEAR_HAS_DESC_SELECTION
@@ -429,7 +429,7 @@ ABSTRACT_TYPE(/datum/gear/shoes/tajara)
/datum/gear/adhomai_watch/New()
..()
var/list/watch = list()
watch["adhomian pocket watch"] = /obj/item/pocketwatch/adhomai
watch["adhomian pocket watch"] = /obj/item/clothing/wrists/watch/pocketwatch/adhomai
watch["male adhomian wrist watch"] = /obj/item/clothing/wrists/watch/tajara
watch["female adhomian wrist watch"] = /obj/item/clothing/wrists/watch/tajara/female
gear_tweaks += new /datum/gear_tweak/path(watch)