Heat Packs & Discomfort Tweaks (#15659)

This commit is contained in:
Geeves
2023-02-03 12:33:44 +01:00
committed by GitHub
parent 241a3a3676
commit 937fe2292b
11 changed files with 80 additions and 6 deletions
@@ -575,3 +575,17 @@
aodai["ao dai, new hai phong cut"] = /obj/item/clothing/accessory/aodai/nhp
aodai["ao dai, masculine formalwear"] = /obj/item/clothing/accessory/aodai/masc
gear_tweaks += new /datum/gear_tweak/path(aodai)
/datum/gear/accessory/temperature
display_name = "temperature packs"
description = "A nice little pack that heats/cools you when worn under your clothes!"
path = /obj/item/clothing/accessory/temperature
flags = 0
/datum/gear/accessory/temperature/New()
..()
var/list/temperature = list()
for(var/temp_path in subtypesof(/obj/item/clothing/accessory/temperature))
var/obj/item/clothing/accessory/temperature/temp_pack = temp_path
temperature[initial(temp_pack.name)] = temp_path
gear_tweaks += new /datum/gear_tweak/path(temperature)