Renames phoron to plasma everywhere in the codebase and replaces sprites. (#3110)

This commit is contained in:
Vera Aguilera Puerto
2021-02-09 19:05:19 +01:00
committed by GitHub
parent 2d06990ee3
commit 9b1142973e
75 changed files with 154 additions and 129 deletions

View File

@@ -168,16 +168,16 @@ namespace Content.Shared.Atmos
public const float FireMinimumTemperatureToExist = T0C + 100f;
public const float FireMinimumTemperatureToSpread = T0C + 150f;
public const float FireSpreadRadiosityScale = 0.85f;
public const float FirePhoronEnergyReleased = 3000000f;
public const float FirePlasmaEnergyReleased = 3000000f;
public const float FireGrowthRate = 40000f;
public const float SuperSaturationThreshold = 96f;
public const float OxygenBurnRateBase = 1.4f;
public const float PhoronMinimumBurnTemperature = (100f+T0C);
public const float PhoronUpperTemperature = (1370f+T0C);
public const float PhoronOxygenFullburn = 10f;
public const float PhoronBurnRateDelta = 9f;
public const float PlasmaMinimumBurnTemperature = (100f+T0C);
public const float PlasmaUpperTemperature = (1370f+T0C);
public const float PlasmaOxygenFullburn = 10f;
public const float PlasmaBurnRateDelta = 9f;
/// <summary>
/// This is calculated to help prevent singlecap bombs (Overpowered tritium/oxygen single tank bombs)
@@ -254,7 +254,7 @@ namespace Content.Shared.Atmos
Oxygen = 0,
Nitrogen = 1,
CarbonDioxide = 2,
Phoron = 3,
Plasma = 3,
Tritium = 4,
WaterVapor = 5,
}