]> git.smokeofanarchy.ru Git - space-station-14.git/commitdiff
buff gas leak event (#25864)
authorIlya246 <57039557+Ilya246@users.noreply.github.com>
Wed, 6 Mar 2024 01:41:03 +0000 (05:41 +0400)
committerGitHub <noreply@github.com>
Wed, 6 Mar 2024 01:41:03 +0000 (12:41 +1100)
the fog is coming

Content.Server/StationEvents/Components/GasLeakRuleComponent.cs

index f92da0af19ec25175855f3843b5ee9ccd99ffcbe..171aca12c27187b0025912d45e45263c8ff281be 100644 (file)
@@ -13,6 +13,7 @@ public sealed partial class GasLeakRuleComponent : Component
         Gas.Plasma,
         Gas.Tritium,
         Gas.Frezon,
+        Gas.WaterVapor, // the fog
     };
 
     /// <summary>
@@ -33,14 +34,14 @@ public sealed partial class GasLeakRuleComponent : Component
     public bool FoundTile;
     public Gas LeakGas;
     public float MolesPerSecond;
-    public readonly int MinimumMolesPerSecond = 20;
+    public readonly int MinimumMolesPerSecond = 80;
 
     /// <summary>
     ///     Don't want to make it too fast to give people time to flee.
     /// </summary>
-    public int MaximumMolesPerSecond = 50;
+    public int MaximumMolesPerSecond = 200;
 
-    public int MinimumGas = 250;
-    public int MaximumGas = 1000;
+    public int MinimumGas = 1000;
+    public int MaximumGas = 4000;
     public float SparkChance = 0.05f;
 }