Freon fixes, tweaks and balancing (#50153)

* balancing, fixes, tweaks

* freon specific_heat increase

* fix an issue with negative temperature

* changed HyperNob canister color

* done change request and tweaked more the hardcap limit
This commit is contained in:
Ghilker
2020-03-28 21:31:35 +01:00
committed by GitHub
parent 34c93e55ab
commit 22cf0dc785
10 changed files with 15 additions and 14 deletions
+4 -4
View File
@@ -259,13 +259,13 @@ Unless you know what you're doing, only use the first three numbers. They're in
alpha = 150
categories = list(MAT_CATEGORY_RIGID = TRUE)
sheet_type = /obj/item/stack/sheet/hot_ice
value_per_unit = 0.5
beauty_modifier = 0.5
value_per_unit = 0.75
beauty_modifier = 0.75
/datum/material/hot_ice/on_applied(atom/source, amount, material_flags)
. = ..()
source.AddComponent(/datum/component/hot_ice, "plasma", amount*50, amount*20+300)
source.AddComponent(/datum/component/hot_ice, "plasma", amount*150, amount*20+300)
/datum/material/hot_ice/on_removed(atom/source, amount, material_flags)
qdel(source.GetComponent(/datum/component/hot_ice, "plasma", amount*50, amount*20+300))
qdel(source.GetComponent(/datum/component/hot_ice, "plasma", amount*150, amount*20+300))
return ..()