buff gas leak event (#25864)

the fog is coming

(cherry picked from commit 27e14d8a9660c9ab7a69470e7566fea0ff1b71c1)
This commit is contained in:
Ilya246 2024-03-06 05:41:03 +04:00 committed by Debug
parent 250a76abd6
commit e025ff72f2
No known key found for this signature in database
GPG Key ID: 271270A74EF9C350
1 changed files with 5 additions and 4 deletions

View 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;
}