Glove small resprite, inhands and some cleanup (#8372)

This commit is contained in:
Wowzewow (Wezzy)
2020-03-07 16:00:47 +01:00
committed by GitHub
parent d3e4a2bb7f
commit 5387d4cf47
14 changed files with 217 additions and 61 deletions
@@ -1,6 +1,6 @@
/datum/gear/gloves
display_name = "watch"
path = /obj/item/clothing/gloves/watch
display_name = "fingerless gloves"
path = /obj/item/clothing/gloves/fingerless
cost = 1
slot = slot_gloves
sort_category = "Gloves and Handwear"
@@ -36,7 +36,7 @@
gear_tweaks += gear_tweak_free_color_choice
/datum/gear/gloves/ring
display_name = "ring"
display_name = "ring selection"
description = "A selection of rings."
path = /obj/item/clothing/ring/engagement
@@ -56,9 +56,20 @@
ringtype["ring, plastic"] = /obj/item/clothing/ring/material/plastic
gear_tweaks += new/datum/gear_tweak/path(ringtype)
/datum/gear/gloves/fingerless
display_name = "fingerless gloves"
path = /obj/item/clothing/gloves/fingerless
/datum/gear/gloves/watch
display_name = "watch selection"
description = "A selection of watches."
path = /obj/item/clothing/gloves/watch
/datum/gear/gloves/watch/New()
..()
var/watchtype = list()
watchtype["watch"] = /obj/item/clothing/gloves/watch
watchtype["silver watch"] = /obj/item/clothing/gloves/watch/silver
watchtype["gold watch"] = /obj/item/clothing/gloves/watch/gold
watchtype["spy watch"] = /obj/item/clothing/gloves/watch/spy
watchtype["pocketwatch"] = /obj/item/pocketwatch
gear_tweaks += new/datum/gear_tweak/path(watchtype)
/datum/gear/gloves/circuitry
display_name = "gloves, circuitry (empty)"