Skip to content

Commit

Permalink
Update supermatter
Browse files Browse the repository at this point in the history
  • Loading branch information
VMSolidus committed May 10, 2024
1 parent 185a63b commit 79e9664
Show file tree
Hide file tree
Showing 2 changed files with 203 additions and 99 deletions.
10 changes: 8 additions & 2 deletions Content.Shared/Supermatter/Components/SupermatterComponent.cs
Original file line number Diff line number Diff line change
Expand Up @@ -347,10 +347,13 @@ public sealed partial class SupermatterComponent : Component
{
{Gas.Oxygen, 0f},
{Gas.Nitrogen, 0f},
{Gas.NitrousOxide, 0f},
{Gas.CarbonDioxide, 0f},
{Gas.Plasma, 0f},
{Gas.Tritium, 0f},
{Gas.WaterVapor, 0f}
{Gas.WaterVapor, 0f},
{Gas.Frezon, 0f},
{Gas.Ammonia, 0f}
};

/// <summary>
Expand All @@ -360,10 +363,13 @@ public sealed partial class SupermatterComponent : Component
{
[Gas.Oxygen] = (TransmitModifier: 1.5f, HeatPenalty: 1f, PowerMixRatio: 1f),
[Gas.Nitrogen] = (TransmitModifier: 0f, HeatPenalty: -1.5f, PowerMixRatio: -1f),
[Gas.NitrousOxide] = (TransmitModifier: 1f, HeatPenalty: -5f, PowerMixRatio: 1f),
[Gas.CarbonDioxide] = (TransmitModifier: 0f, HeatPenalty: 0.1f, PowerMixRatio: 1f),
[Gas.Plasma] = (TransmitModifier: 4f, HeatPenalty: 15f, PowerMixRatio: 1f),
[Gas.Tritium] = (TransmitModifier: 30f, HeatPenalty: 10f, PowerMixRatio: 1f),
[Gas.WaterVapor] = (TransmitModifier: 2f, HeatPenalty: 12f, PowerMixRatio: 1f)
[Gas.WaterVapor] = (TransmitModifier: 2f, HeatPenalty: 12f, PowerMixRatio: 1f),
[Gas.Frezon] = (TransmitModifier: 3f, HeatPenalty: -9f, PowerMixRatio: -1f),
[Gas.Ammonia] = (TransmitModifier: 1.5f, HeatPenalty: 1.5f, PowerMixRatio: 1.5f)
};

#endregion SM Gas
Expand Down
Loading

0 comments on commit 79e9664

Please sign in to comment.