From f1665ee5b056d55daf52c9a31b047df0ffcf481f Mon Sep 17 00:00:00 2001 From: Kevin Zheng Date: Wed, 13 Dec 2023 18:39:38 -0800 Subject: [PATCH] Better plasma and tritium fires (#22468) --- Content.Shared/Atmos/Atmospherics.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Content.Shared/Atmos/Atmospherics.cs b/Content.Shared/Atmos/Atmospherics.cs index fd5976aa0b..13674cded0 100644 --- a/Content.Shared/Atmos/Atmospherics.cs +++ b/Content.Shared/Atmos/Atmospherics.cs @@ -179,11 +179,11 @@ namespace Content.Shared.Atmos /// /// Amount of heat released per mole of burnt hydrogen or tritium (hydrogen isotope) /// - public const float FireHydrogenEnergyReleased = 560000f; + public const float FireHydrogenEnergyReleased = 284e3f; // hydrogen is 284 kJ/mol public const float FireMinimumTemperatureToExist = T0C + 100f; public const float FireMinimumTemperatureToSpread = T0C + 150f; public const float FireSpreadRadiosityScale = 0.85f; - public const float FirePlasmaEnergyReleased = 3000000f; + public const float FirePlasmaEnergyReleased = 16e3f; // methane is 16 kJ/mol public const float FireGrowthRate = 40000f; public const float SuperSaturationThreshold = 96f; @@ -216,7 +216,7 @@ namespace Content.Shared.Atmos /// Remove X mol of nitrogen for each mol of frezon. /// public const float FrezonNitrogenCoolRatio = 5; - public const float FrezonCoolEnergyReleased = -3000000f; + public const float FrezonCoolEnergyReleased = -600e3f; public const float FrezonCoolRateModifier = 20f; public const float FrezonProductionMaxEfficiencyTemperature = 73.15f;