From: Kevin Zheng Date: Thu, 14 Dec 2023 02:39:38 +0000 (-0800) Subject: Better plasma and tritium fires (#22468) X-Git-Url: https://git.smokeofanarchy.ru/gitweb.cgi?a=commitdiff_plain;h=f1665ee5b056d55daf52c9a31b047df0ffcf481f;p=space-station-14.git Better plasma and tritium fires (#22468) --- 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;