mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-21 20:11:04 +01:00
Temperature Pack temperature changes majorly increased to fix https://github.com/Aurorastation/Aurora.3/issues/16716 10 degrees of temperature for blizzard/volcano pack were far too little, I thought at first temperature code was being weird but appears fine. --------- Co-authored-by: Ben10083 <Ben10083@users.noreply.github.com>
31 lines
1.0 KiB
Plaintext
31 lines
1.0 KiB
Plaintext
/obj/item/clothing/accessory/temperature
|
|
name = "temperature pack"
|
|
desc = "A nice little pack that heats/cools you when worn under your clothes!"
|
|
icon = 'icons/obj/item/clothing/accessory/temperature.dmi'
|
|
icon_state = "pack"
|
|
contained_sprite = TRUE
|
|
|
|
/obj/item/clothing/accessory/temperature/volcano
|
|
name = "volcano pack"
|
|
desc = "A dangerous little pack that can warm even the coldest heart!"
|
|
icon_state = "volcano_pack"
|
|
body_temperature_change = 30
|
|
|
|
/obj/item/clothing/accessory/temperature/warm
|
|
name = "heat pack"
|
|
desc = "A nice little pack that heats you when worn under your clothes!"
|
|
icon_state = "heat_pack"
|
|
body_temperature_change = 20
|
|
|
|
/obj/item/clothing/accessory/temperature/cold
|
|
name = "cold pack"
|
|
desc = "A nice little pack that cools you when worn under your clothes!"
|
|
icon_state = "cold_pack"
|
|
body_temperature_change = -20
|
|
|
|
/obj/item/clothing/accessory/temperature/blizzard
|
|
name = "blizzard pack"
|
|
desc = "A dangerous little pack that can suck the warmth out of any hearth!"
|
|
icon_state = "blizzard_pack"
|
|
body_temperature_change = -30
|