Advertisement
SemlerPDX

Stationeers Logic Type Enums

Nov 23rd, 2024
165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 6.25 KB | Gaming | 0 0
  1. public enum LogicType : ushort
  2. {
  3.     None = 0,
  4.     Power = 1,
  5.     Open = 2,
  6.     Mode = 3,
  7.     Error = 4,
  8.     Pressure = 5,
  9.     Temperature = 6,
  10.     PressureExternal = 7,
  11.     PressureInternal = 8,
  12.     Activate = 9,
  13.     Lock = 10,
  14.     Charge = 11,
  15.     Setting = 12,
  16.     Reagents = 13,
  17.     RatioOxygen = 14,
  18.     RatioCarbonDioxide = 15,
  19.     RatioNitrogen = 16,
  20.     RatioPollutant = 17,
  21.     RatioVolatiles = 18,
  22.     RatioWater = 19,
  23.     Horizontal = 20,
  24.     Vertical = 21,
  25.     SolarAngle = 22,
  26.     Maximum = 23,
  27.     Ratio = 24,
  28.     PowerPotential = 25,
  29.     PowerActual = 26,
  30.     Quantity = 27,
  31.     On = 28,
  32.     ImportQuantity = 29,
  33.     ImportSlotOccupant = 30,
  34.     ExportQuantity = 31,
  35.     ExportSlotOccupant = 32,
  36.     RequiredPower = 33,
  37.     HorizontalRatio = 34,
  38.     VerticalRatio = 35,
  39.     PowerRequired = 36,
  40.     Idle = 37,
  41.     Color = 38,
  42.     ElevatorSpeed = 39,
  43.     ElevatorLevel = 40,
  44.     RecipeHash = 41,
  45.     ExportSlotHash = 42,
  46.     ImportSlotHash = 43,
  47.     PlantHealth1 = 44,
  48.     PlantHealth2 = 45,
  49.     PlantHealth3 = 46,
  50.     PlantHealth4 = 47,
  51.     PlantGrowth1 = 48,
  52.     PlantGrowth2 = 49,
  53.     PlantGrowth3 = 50,
  54.     PlantGrowth4 = 51,
  55.     PlantEfficiency1 = 52,
  56.     PlantEfficiency2 = 53,
  57.     PlantEfficiency3 = 54,
  58.     PlantEfficiency4 = 55,
  59.     PlantHash1 = 56,
  60.     PlantHash2 = 57,
  61.     PlantHash3 = 58,
  62.     PlantHash4 = 59,
  63.     RequestHash = 60,
  64.     CompletionRatio = 61,
  65.     ClearMemory = 62,
  66.     ExportCount = 63,
  67.     ImportCount = 64,
  68.     PowerGeneration = 65,
  69.     TotalMoles = 66,
  70.     Volume = 67,
  71.     Plant = 68,
  72.     Harvest = 69,
  73.     Output = 70,
  74.     PressureSetting = 71,
  75.     TemperatureSetting = 72,
  76.     TemperatureExternal = 73,
  77.     Filtration = 74,
  78.     AirRelease = 75,
  79.     PositionX = 76,
  80.     PositionY = 77,
  81.     PositionZ = 78,
  82.     VelocityMagnitude = 79,
  83.     VelocityRelativeX = 80,
  84.     VelocityRelativeY = 81,
  85.     VelocityRelativeZ = 82,
  86.     RatioNitrousOxide = 83,
  87.     PrefabHash = 84,
  88.     ForceWrite = 85,
  89.     SignalStrength = 86,
  90.     SignalID = 87,
  91.     TargetX = 88,
  92.     TargetY = 89,
  93.     TargetZ = 90,
  94.     SettingInput = 91,
  95.     SettingOutput = 92,
  96.     CurrentResearchPodType = 93,
  97.     ManualResearchRequiredPod = 94,
  98.     MineablesInVicinity = 95,
  99.     MineablesInQueue = 96,
  100.     NextWeatherEventTime = 97,
  101.     Combustion = 98,
  102.     Fuel = 99,
  103.     ReturnFuelCost = 100,
  104.     CollectableGoods = 101,
  105.     Time = 102,
  106.     Bpm = 103,
  107.     EnvironmentEfficiency = 104,
  108.     WorkingGasEfficiency = 105,
  109.     PressureInput = 106,
  110.     TemperatureInput = 107,
  111.     RatioOxygenInput = 108,
  112.     RatioCarbonDioxideInput = 109,
  113.     RatioNitrogenInput = 110,
  114.     RatioPollutantInput = 111,
  115.     RatioVolatilesInput = 112,
  116.     RatioWaterInput = 113,
  117.     RatioNitrousOxideInput = 114,
  118.     TotalMolesInput = 115,
  119.     PressureInput2 = 116,
  120.     TemperatureInput2 = 117,
  121.     RatioOxygenInput2 = 118,
  122.     RatioCarbonDioxideInput2 = 119,
  123.     RatioNitrogenInput2 = 120,
  124.     RatioPollutantInput2 = 121,
  125.     RatioVolatilesInput2 = 122,
  126.     RatioWaterInput2 = 123,
  127.     RatioNitrousOxideInput2 = 124,
  128.     TotalMolesInput2 = 125,
  129.     PressureOutput = 126,
  130.     TemperatureOutput = 127,
  131.     RatioOxygenOutput = 128,
  132.     RatioCarbonDioxideOutput = 129,
  133.     RatioNitrogenOutput = 130,
  134.     RatioPollutantOutput = 131,
  135.     RatioVolatilesOutput = 132,
  136.     RatioWaterOutput = 133,
  137.     RatioNitrousOxideOutput = 134,
  138.     TotalMolesOutput = 135,
  139.     PressureOutput2 = 136,
  140.     TemperatureOutput2 = 137,
  141.     RatioOxygenOutput2 = 138,
  142.     RatioCarbonDioxideOutput2 = 139,
  143.     RatioNitrogenOutput2 = 140,
  144.     RatioPollutantOutput2 = 141,
  145.     RatioVolatilesOutput2 = 142,
  146.     RatioWaterOutput2 = 143,
  147.     RatioNitrousOxideOutput2 = 144,
  148.     TotalMolesOutput2 = 145,
  149.     CombustionInput = 146,
  150.     CombustionInput2 = 147,
  151.     CombustionOutput = 148,
  152.     CombustionOutput2 = 149,
  153.     OperationalTemperatureEfficiency = 150,
  154.     TemperatureDifferentialEfficiency = 151,
  155.     PressureEfficiency = 152,
  156.     CombustionLimiter = 153,
  157.     Throttle = 154,
  158.     Rpm = 155,
  159.     Stress = 156,
  160.     InterrogationProgress = 157,
  161.     TargetPadIndex = 158,
  162.     SizeX = 160,
  163.     SizeY = 161,
  164.     SizeZ = 162,
  165.     MinimumWattsToContact = 163,
  166.     WattsReachingContact = 164,
  167.     Channel0 = 165,
  168.     Channel1 = 166,
  169.     Channel2 = 167,
  170.     Channel3 = 168,
  171.     Channel4 = 169,
  172.     Channel5 = 170,
  173.     Channel6 = 171,
  174.     Channel7 = 172,
  175.     LineNumber = 173,
  176.     Flush = 174,
  177.     SoundAlert = 175,
  178.     SolarIrradiance = 176,
  179.     RatioLiquidNitrogen = 177,
  180.     RatioLiquidNitrogenInput = 178,
  181.     RatioLiquidNitrogenInput2 = 179,
  182.     RatioLiquidNitrogenOutput = 180,
  183.     RatioLiquidNitrogenOutput2 = 181,
  184.     VolumeOfLiquid = 182,
  185.     RatioLiquidOxygen = 183,
  186.     RatioLiquidOxygenInput = 184,
  187.     RatioLiquidOxygenInput2 = 185,
  188.     RatioLiquidOxygenOutput = 186,
  189.     RatioLiquidOxygenOutput2 = 187,
  190.     RatioLiquidVolatiles = 188,
  191.     RatioLiquidVolatilesInput = 189,
  192.     RatioLiquidVolatilesInput2 = 190,
  193.     RatioLiquidVolatilesOutput = 191,
  194.     RatioLiquidVolatilesOutput2 = 192,
  195.     RatioSteam = 193,
  196.     RatioSteamInput = 194,
  197.     RatioSteamInput2 = 195,
  198.     RatioSteamOutput = 196,
  199.     RatioSteamOutput2 = 197,
  200.     ContactTypeId = 198,
  201.     RatioLiquidCarbonDioxide = 199,
  202.     RatioLiquidCarbonDioxideInput = 200,
  203.     RatioLiquidCarbonDioxideInput2 = 201,
  204.     RatioLiquidCarbonDioxideOutput = 202,
  205.     RatioLiquidCarbonDioxideOutput2 = 203,
  206.     RatioLiquidPollutant = 204,
  207.     RatioLiquidPollutantInput = 205,
  208.     RatioLiquidPollutantInput2 = 206,
  209.     RatioLiquidPollutantOutput = 207,
  210.     RatioLiquidPollutantOutput2 = 208,
  211.     RatioLiquidNitrousOxide = 209,
  212.     RatioLiquidNitrousOxideInput = 210,
  213.     RatioLiquidNitrousOxideInput2 = 211,
  214.     RatioLiquidNitrousOxideOutput = 212,
  215.     RatioLiquidNitrousOxideOutput2 = 213,
  216.     Progress = 214,
  217.     DestinationCode = 215,
  218.     Acceleration = 216,
  219.     ReferenceId = 217,
  220.     AutoShutOff = 218,
  221.     Mass = 219,
  222.     DryMass = 220,
  223.     Thrust = 221,
  224.     Weight = 222,
  225.     ThrustToWeight = 223,
  226.     TimeToDestination = 224,
  227.     BurnTimeRemaining = 225,
  228.     AutoLand = 226,
  229.     ForwardX = 227,
  230.     ForwardY = 228,
  231.     ForwardZ = 229,
  232.     Orientation = 230,
  233.     VelocityX = 231,
  234.     VelocityY = 232,
  235.     VelocityZ = 233,
  236.     PassedMoles = 234,
  237.     ExhaustVelocity = 235,
  238.     FlightControlRule = 236,
  239.     ReEntryAltitude = 237,
  240.     Apex = 238,
  241.     EntityState = 239,
  242.     DrillCondition = 240,
  243.     Index = 241,
  244.     CelestialHash = 242,
  245.     AlignmentError = 243,
  246.     DistanceAu = 244,
  247.     OrbitPeriod = 245,
  248.     Inclination = 246,
  249.     Eccentricity = 247,
  250.     SemiMajorAxis = 248,
  251.     DistanceKm = 249,
  252.     CelestialParentHash = 250,
  253.     TrueAnomaly = 251,
  254.     RatioHydrogen = 252,
  255.     RatioLiquidHydrogen = 253,
  256.     RatioPollutedWater = 254,
  257.     Discover = 255,
  258.     Chart = 256,
  259.     Survey = 257,
  260.     NavPoints = 258,
  261.     ChartedNavPoints = 259,
  262.     Sites = 260,
  263.     CurrentCode = 261,
  264.     Density = 262,
  265.     Richness = 263,
  266.     Size = 264,
  267.     TotalQuantity = 265,
  268.     MinedQuantity = 266,
  269.     BestContactFilter = 267,
  270.     NameHash = 268
  271. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement