Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Module:Plant/data

From Stationeers Community Wiki
Revision as of 04:36, 17 March 2026 by RA2lover (talk | contribs) (Created page with "--Game XMLs were converted into lua tables with https://www.freeformatter.com/xml-to-json-converter.html --which was then followed with the following massaging replacements: -- "[" -> "{" -- "]" -> "}" -- ' "@' -> ' "' -- ' "" -> ' ' -- ": -> " =" --Load this with mw.loadData. local p={} p.Plants = { { Id = "LifeRequirementsDefault", LiquidPerTick = { Type = "Water", Moles = "0.00006" }, Inhaled = { Type = "CarbonDioxide", Moles = "0.0012",...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Documentation for this module may be created at Module:Plant/data/doc

--Game XMLs were converted into lua tables with https://www.freeformatter.com/xml-to-json-converter.html
--which was then followed with the following massaging replacements:

-- "[" -> "{"
-- "]" -> "}"
-- '	"@' -> '	"'
-- '	"" ->  '	'
-- ": -> " ="

--Load this with mw.loadData.

local p={}


p.Plants = {
	{
		Id = "LifeRequirementsDefault",
		LiquidPerTick = {
			Type = "Water",
			Moles = "0.00006"
		},
		Inhaled = {
			Type = "CarbonDioxide",
			Moles = "0.0012",
			Ratio = "0.01"
		},
		Exhaled = {
			Type = "Oxygen",
			Moles = "0.0012"
		},
		HarmfulGas = {
			{
				Type = "Pollutant",
				PartialPressure = "1"
			},
			{
				Type = "Volatiles",
				PartialPressure = "1"
			},
			{
				Type = "Silanol",
				PartialPressure = "1"
			},
			{
				Type = "HydrochloricAcid",
				PartialPressure = "0.1"
			},
			{
				Type = "Hydrazine",
				PartialPressure = "0.1"
			}
		},
		WaterUsage = {
			Base = "1"
		},
		GasProduction = {
			Base = "1"
		},
		GrowthSpeedMultiplier = {
			Base = "1"
		},
		TimeUntilDehydrationDamage = {
			Base = "1800"
		},
		TimeUntilUndesiredGasDamage = {
			Base = "300"
		},
		UndesiredGasResistance = {
			Base = "1"
		},
		TimeUntilFrozenDamage = {
			Base = "300"
		},
		TimeUntilOverHeatedDamage = {
			Base = "300"
		},
		TimeUntilSuffocatedDamage = {
			Base = "3600"
		},
		TimeUntilLowPressureDamage = {
			Base = "600"
		},
		TimeUntilHighPressureDamage = {
			Base = "600"
		},
		TimeUntilLightDamage = {
			Base = "3600"
		},
		TimeUntilDarknessDamage = {
			Base = "3600"
		},
		LightPerDay = {
			Base = "600",
			Invert = "true"
		},
		DarknessPerDay = {
			Base = "300",
			Invert = "true"
		},
		GrowTemperatureC = {
			MidPoint = "25",
			CenterSize = "10",
			LowSize = "20",
			HighSize = "20"
		},
		GrowPressure = {
			MidPoint = "75",
			CenterSize = "50",
			LowSize = "25",
			HighSize = "100",
			Clamp = "true"
		}
	},
	{
		Id = "LifeRequirementsItemSoybean",
		LiquidPerTick = {
			Type = "Water",
			Moles = "0.00006"
		},
		Inhaled = {
			{
				Type = "CarbonDioxide",
				Moles = "0.0012",
				Ratio = "0.01"
			},
			{
				Type = "Nitrogen",
				Moles = "0.0012",
				Ratio = "0.01"
			}
		},
		Exhaled = {
			Type = "Oxygen",
			Moles = "0.0012"
		},
		HarmfulGas = {
			{
				Type = "Pollutant",
				PartialPressure = "1"
			},
			{
				Type = "Volatiles",
				PartialPressure = "1"
			},
			{
				Type = "Silanol",
				PartialPressure = "1"
			},
			{
				Type = "HydrochloricAcid",
				PartialPressure = "0.1"
			},
			{
				Type = "Hydrazine",
				PartialPressure = "0.1"
			}
		},
		WaterUsage = {
			Base = "1"
		},
		GasProduction = {
			Base = "1"
		},
		GrowthSpeedMultiplier = {
			Base = "1"
		},
		TimeUntilDehydrationDamage = {
			Base = "1800"
		},
		TimeUntilUndesiredGasDamage = {
			Base = "300"
		},
		UndesiredGasResistance = {
			Base = "1"
		},
		TimeUntilFrozenDamage = {
			Base = "300"
		},
		TimeUntilOverHeatedDamage = {
			Base = "300"
		},
		TimeUntilSuffocatedDamage = {
			Base = "3600"
		},
		TimeUntilLowPressureDamage = {
			Base = "600"
		},
		TimeUntilHighPressureDamage = {
			Base = "600"
		},
		TimeUntilLightDamage = {
			Base = "3600"
		},
		TimeUntilDarknessDamage = {
			Base = "3600"
		},
		LightPerDay = {
			Base = "600",
			Invert = "true"
		},
		DarknessPerDay = {
			Base = "300",
			Invert = "true"
		},
		GrowTemperatureC = {
			MidPoint = "25",
			CenterSize = "10",
			LowSize = "20",
			HighSize = "20"
		},
		GrowPressure = {
			MidPoint = "75",
			CenterSize = "50",
			LowSize = "25",
			HighSize = "100",
			Clamp = "true"
		}
	},
	{
		Id = "LifeRequirementsItemCorn",
		LiquidPerTick = {
			Type = "Water",
			Moles = "0.00006"
		},
		Inhaled = {
			Type = "CarbonDioxide",
			Moles = "0.0012",
			Ratio = "0.01"
		},
		Exhaled = {
			Type = "Oxygen",
			Moles = "0.0012"
		},
		HarmfulGas = {
			{
				Type = "Pollutant",
				PartialPressure = "1"
			},
			{
				Type = "Volatiles",
				PartialPressure = "1"
			},
			{
				Type = "Silanol",
				PartialPressure = "1"
			},
			{
				Type = "HydrochloricAcid",
				PartialPressure = "0.1"
			},
			{
				Type = "Hydrazine",
				PartialPressure = "0.1"
			}
		},
		WaterUsage = {
			Base = "1"
		},
		GasProduction = {
			Base = "1"
		},
		GrowthSpeedMultiplier = {
			Base = "1"
		},
		TimeUntilDehydrationDamage = {
			Base = "1800"
		},
		TimeUntilUndesiredGasDamage = {
			Base = "300"
		},
		UndesiredGasResistance = {
			Base = "1"
		},
		TimeUntilFrozenDamage = {
			Base = "300"
		},
		TimeUntilOverHeatedDamage = {
			Base = "300"
		},
		TimeUntilSuffocatedDamage = {
			Base = "3600"
		},
		TimeUntilLowPressureDamage = {
			Base = "600"
		},
		TimeUntilHighPressureDamage = {
			Base = "600"
		},
		TimeUntilLightDamage = {
			Base = "3600"
		},
		TimeUntilDarknessDamage = {
			Base = "3600"
		},
		LightPerDay = {
			Base = "500",
			Invert = "true"
		},
		DarknessPerDay = {
			Base = "200",
			Invert = "true"
		},
		GrowTemperatureC = {
			MidPoint = "25",
			CenterSize = "10",
			LowSize = "20",
			HighSize = "20"
		},
		GrowPressure = {
			MidPoint = "75",
			CenterSize = "50",
			LowSize = "25",
			HighSize = "100",
			Clamp = "true"
		}
	},
	{
		Id = "LifeRequirementsItemFern",
		LiquidPerTick = {
			Type = "Water",
			Moles = "0.00006"
		},
		Inhaled = {
			Type = "CarbonDioxide",
			Moles = "0.0024",
			Ratio = "0.01"
		},
		Exhaled = {
			Type = "Oxygen",
			Moles = "0.0024"
		},
		HarmfulGas = {
			{
				Type = "Pollutant",
				PartialPressure = "1"
			},
			{
				Type = "Volatiles",
				PartialPressure = "1"
			},
			{
				Type = "Silanol",
				PartialPressure = "1"
			},
			{
				Type = "HydrochloricAcid",
				PartialPressure = "0.1"
			},
			{
				Type = "Hydrazine",
				PartialPressure = "0.1"
			}
		},
		WaterUsage = {
			Base = "1"
		},
		GasProduction = {
			Base = "1"
		},
		GrowthSpeedMultiplier = {
			Base = "1"
		},
		TimeUntilDehydrationDamage = {
			Base = "1200"
		},
		TimeUntilUndesiredGasDamage = {
			Base = "300"
		},
		UndesiredGasResistance = {
			Base = "1"
		},
		TimeUntilFrozenDamage = {
			Base = "120"
		},
		TimeUntilOverHeatedDamage = {
			Base = "120"
		},
		TimeUntilSuffocatedDamage = {
			Base = "1200"
		},
		TimeUntilLowPressureDamage = {
			Base = "120"
		},
		TimeUntilHighPressureDamage = {
			Base = "120"
		},
		TimeUntilLightDamage = {
			Base = "3600"
		},
		TimeUntilDarknessDamage = {
			Base = "3600"
		},
		LightPerDay = {
			Base = "480",
			Invert = "true"
		},
		DarknessPerDay = {
			Base = "300",
			Invert = "true"
		},
		GrowTemperatureC = {
			MidPoint = "25",
			CenterSize = "10",
			LowSize = "20",
			HighSize = "20"
		},
		GrowPressure = {
			MidPoint = "75",
			CenterSize = "50",
			LowSize = "25",
			HighSize = "100",
			Clamp = "true"
		}
	},
	{
		Id = "LifeRequirementsItemDargaFern",
		LiquidPerTick = {
			Type = "Water",
			Moles = "0.00006"
		},
		Inhaled = {
			Type = "CarbonDioxide",
			Moles = "0.0085",
			Ratio = "0.01"
		},
		Exhaled = {
			Type = "Oxygen",
			Moles = "0.0085"
		},
		HarmfulGas = {
			{
				Type = "Pollutant",
				PartialPressure = "1"
			},
			{
				Type = "Volatiles",
				PartialPressure = "1"
			},
			{
				Type = "Silanol",
				PartialPressure = "1"
			},
			{
				Type = "HydrochloricAcid",
				PartialPressure = "0.1"
			},
			{
				Type = "Hydrazine",
				PartialPressure = "0.1"
			}
		},
		WaterUsage = {
			Base = "1"
		},
		GasProduction = {
			Base = "1"
		},
		GrowthSpeedMultiplier = {
			Base = "1"
		},
		TimeUntilDehydrationDamage = {
			Base = "1200"
		},
		TimeUntilUndesiredGasDamage = {
			Base = "300"
		},
		UndesiredGasResistance = {
			Base = "1"
		},
		TimeUntilFrozenDamage = {
			Base = "120"
		},
		TimeUntilOverHeatedDamage = {
			Base = "120"
		},
		TimeUntilSuffocatedDamage = {
			Base = "1200"
		},
		TimeUntilLowPressureDamage = {
			Base = "120"
		},
		TimeUntilHighPressureDamage = {
			Base = "120"
		},
		TimeUntilLightDamage = {
			Base = "3600"
		},
		TimeUntilDarknessDamage = {
			Base = "3600"
		},
		LightPerDay = {
			Base = "480",
			Invert = "true"
		},
		DarknessPerDay = {
			Base = "300",
			Invert = "true"
		},
		GrowTemperatureC = {
			MidPoint = "25",
			CenterSize = "10",
			LowSize = "20",
			HighSize = "20"
		},
		GrowPressure = {
			MidPoint = "75",
			CenterSize = "50",
			LowSize = "25",
			HighSize = "100",
			Clamp = "true"
		}
	},
	{
		Id = "LifeRequirementsItemMushroom",
		LiquidPerTick = {
			Type = "Water",
			Moles = "0.00006"
		},
		Inhaled = {
			Type = "Oxygen",
			Moles = "0.0012",
			Ratio = "0.01"
		},
		Exhaled = {
			Type = "CarbonDioxide",
			Moles = "0.0012"
		},
		HarmfulGas = {
			{
				Type = "Pollutant",
				PartialPressure = "1"
			},
			{
				Type = "Volatiles",
				PartialPressure = "1"
			},
			{
				Type = "Silanol",
				PartialPressure = "1"
			},
			{
				Type = "HydrochloricAcid",
				PartialPressure = "0.1"
			},
			{
				Type = "Hydrazine",
				PartialPressure = "0.1"
			}
		},
		WaterUsage = {
			Base = "1"
		},
		GasProduction = {
			Base = "1"
		},
		GrowthSpeedMultiplier = {
			Base = "1"
		},
		TimeUntilDehydrationDamage = {
			Base = "1800"
		},
		TimeUntilUndesiredGasDamage = {
			Base = "300"
		},
		UndesiredGasResistance = {
			Base = "1"
		},
		TimeUntilFrozenDamage = {
			Base = "300"
		},
		TimeUntilOverHeatedDamage = {
			Base = "300"
		},
		TimeUntilSuffocatedDamage = {
			Base = "300"
		},
		TimeUntilLowPressureDamage = {
			Base = "600"
		},
		TimeUntilHighPressureDamage = {
			Base = "600"
		},
		TimeUntilLightDamage = {
			Base = "120"
		},
		TimeUntilDarknessDamage = {
			Base = "0"
		},
		LightPerDay = {
			Base = "0",
			Invert = "true"
		},
		DarknessPerDay = {
			Base = "1100",
			Invert = "true"
		},
		GrowTemperatureC = {
			MidPoint = "25",
			CenterSize = "10",
			LowSize = "20",
			HighSize = "20"
		},
		GrowPressure = {
			MidPoint = "75",
			CenterSize = "50",
			LowSize = "25",
			HighSize = "100",
			Clamp = "true"
		}
	},
	{
		Id = "LifeRequirementsItemPlantSwitchGrass",
		LiquidPerTick = {
			Type = "Water",
			Moles = "0.00006"
		},
		Inhaled = {
			Type = "CarbonDioxide",
			Moles = "0.0012",
			Ratio = "0.01"
		},
		Exhaled = {
			Type = "Oxygen",
			Moles = "0.0012"
		},
		HarmfulGas = {
			{
				Type = "Pollutant",
				PartialPressure = "1"
			},
			{
				Type = "Volatiles",
				PartialPressure = "1"
			},
			{
				Type = "Silanol",
				PartialPressure = "1"
			},
			{
				Type = "HydrochloricAcid",
				PartialPressure = "0.1"
			},
			{
				Type = "Hydrazine",
				PartialPressure = "0.1"
			}
		},
		WaterUsage = {
			Base = "1"
		},
		GasProduction = {
			Base = "1"
		},
		GrowthSpeedMultiplier = {
			Base = "1"
		},
		TimeUntilDehydrationDamage = {
			Base = "1800"
		},
		TimeUntilUndesiredGasDamage = {
			Base = "300"
		},
		UndesiredGasResistance = {
			Base = "1"
		},
		TimeUntilFrozenDamage = {
			Base = "300"
		},
		TimeUntilOverHeatedDamage = {
			Base = "300"
		},
		TimeUntilSuffocatedDamage = {
			Base = "3600"
		},
		TimeUntilLowPressureDamage = {
			Base = "600"
		},
		TimeUntilHighPressureDamage = {
			Base = "600"
		},
		TimeUntilLightDamage = {
			Base = "3600"
		},
		TimeUntilDarknessDamage = {
			Base = "3600"
		},
		LightPerDay = {
			Base = "600",
			Invert = "true"
		},
		DarknessPerDay = {
			Base = "300",
			Invert = "true"
		},
		GrowTemperatureC = {
			MidPoint = "30",
			CenterSize = "20",
			LowSize = "20",
			HighSize = "20"
		},
		GrowPressure = {
			MidPoint = "75",
			CenterSize = "50",
			LowSize = "25",
			HighSize = "100",
			Clamp = "true"
		}
	},
	{
		Id = "LifeRequirementsItemPotato",
		LiquidPerTick = {
			Type = "Water",
			Moles = "0.00006"
		},
		Inhaled = {
			Type = "CarbonDioxide",
			Moles = "0.0012",
			Ratio = "0.01"
		},
		Exhaled = {
			Type = "Oxygen",
			Moles = "0.0012"
		},
		HarmfulGas = {
			{
				Type = "Pollutant",
				PartialPressure = "1"
			},
			{
				Type = "Volatiles",
				PartialPressure = "1"
			},
			{
				Type = "Silanol",
				PartialPressure = "1"
			},
			{
				Type = "HydrochloricAcid",
				PartialPressure = "0.1"
			},
			{
				Type = "Hydrazine",
				PartialPressure = "0.1"
			}
		},
		WaterUsage = {
			Base = "1"
		},
		GasProduction = {
			Base = "1"
		},
		GrowthSpeedMultiplier = {
			Base = "1"
		},
		TimeUntilDehydrationDamage = {
			Base = "1800"
		},
		TimeUntilUndesiredGasDamage = {
			Base = "300"
		},
		UndesiredGasResistance = {
			Base = "1"
		},
		TimeUntilFrozenDamage = {
			Base = "300"
		},
		TimeUntilOverHeatedDamage = {
			Base = "300"
		},
		TimeUntilSuffocatedDamage = {
			Base = "3600"
		},
		TimeUntilLowPressureDamage = {
			Base = "600"
		},
		TimeUntilHighPressureDamage = {
			Base = "600"
		},
		TimeUntilLightDamage = {
			Base = "3600"
		},
		TimeUntilDarknessDamage = {
			Base = "3600"
		},
		LightPerDay = {
			Base = "300",
			Invert = "true"
		},
		DarknessPerDay = {
			Base = "200",
			Invert = "true"
		},
		GrowTemperatureC = {
			MidPoint = "25",
			CenterSize = "10",
			LowSize = "20",
			HighSize = "20"
		},
		GrowPressure = {
			MidPoint = "75",
			CenterSize = "50",
			LowSize = "25",
			HighSize = "100",
			Clamp = "true"
		}
	},
	{
		Id = "LifeRequirementsItemPumpkin",
		LiquidPerTick = {
			Type = "Water",
			Moles = "0.00006"
		},
		Inhaled = {
			Type = "CarbonDioxide",
			Moles = "0.0012",
			Ratio = "0.01"
		},
		Exhaled = {
			Type = "Oxygen",
			Moles = "0.0012"
		},
		HarmfulGas = {
			{
				Type = "Pollutant",
				PartialPressure = "1"
			},
			{
				Type = "Volatiles",
				PartialPressure = "1"
			},
			{
				Type = "Silanol",
				PartialPressure = "1"
			},
			{
				Type = "HydrochloricAcid",
				PartialPressure = "0.1"
			},
			{
				Type = "Hydrazine",
				PartialPressure = "0.1"
			}
		},
		WaterUsage = {
			Base = "1"
		},
		GasProduction = {
			Base = "1"
		},
		GrowthSpeedMultiplier = {
			Base = "1"
		},
		TimeUntilDehydrationDamage = {
			Base = "1800"
		},
		TimeUntilUndesiredGasDamage = {
			Base = "300"
		},
		UndesiredGasResistance = {
			Base = "1"
		},
		TimeUntilFrozenDamage = {
			Base = "300"
		},
		TimeUntilOverHeatedDamage = {
			Base = "300"
		},
		TimeUntilSuffocatedDamage = {
			Base = "3600"
		},
		TimeUntilLowPressureDamage = {
			Base = "600"
		},
		TimeUntilHighPressureDamage = {
			Base = "600"
		},
		TimeUntilLightDamage = {
			Base = "3600"
		},
		TimeUntilDarknessDamage = {
			Base = "3600"
		},
		LightPerDay = {
			Base = "500",
			Invert = "true"
		},
		DarknessPerDay = {
			Base = "100",
			Invert = "true"
		},
		GrowTemperatureC = {
			MidPoint = "25",
			CenterSize = "10",
			LowSize = "20",
			HighSize = "20"
		},
		GrowPressure = {
			MidPoint = "75",
			CenterSize = "50",
			LowSize = "25",
			HighSize = "100",
			Clamp = "true"
		}
	},
	{
		Id = "LifeRequirementsItemRice",
		LiquidPerTick = {
			Type = "Water",
			Moles = "0.00012"
		},
		Inhaled = {
			Type = "CarbonDioxide",
			Moles = "0.0012",
			Ratio = "0.01"
		},
		Exhaled = {
			Type = "Oxygen",
			Moles = "0.0012"
		},
		HarmfulGas = {
			{
				Type = "Pollutant",
				PartialPressure = "1"
			},
			{
				Type = "Volatiles",
				PartialPressure = "1"
			},
			{
				Type = "Silanol",
				PartialPressure = "1"
			},
			{
				Type = "HydrochloricAcid",
				PartialPressure = "0.1"
			},
			{
				Type = "Hydrazine",
				PartialPressure = "0.1"
			}
		},
		WaterUsage = {
			Base = "1"
		},
		GasProduction = {
			Base = "1"
		},
		GrowthSpeedMultiplier = {
			Base = "1"
		},
		TimeUntilDehydrationDamage = {
			Base = "300"
		},
		TimeUntilUndesiredGasDamage = {
			Base = "300"
		},
		UndesiredGasResistance = {
			Base = "1"
		},
		TimeUntilFrozenDamage = {
			Base = "300"
		},
		TimeUntilOverHeatedDamage = {
			Base = "300"
		},
		TimeUntilSuffocatedDamage = {
			Base = "3600"
		},
		TimeUntilLowPressureDamage = {
			Base = "600"
		},
		TimeUntilHighPressureDamage = {
			Base = "600"
		},
		TimeUntilLightDamage = {
			Base = "3600"
		},
		TimeUntilDarknessDamage = {
			Base = "3600"
		},
		LightPerDay = {
			Base = "600",
			Invert = "true"
		},
		DarknessPerDay = {
			Base = "300",
			Invert = "true"
		},
		GrowTemperatureC = {
			MidPoint = "25",
			CenterSize = "10",
			LowSize = "20",
			HighSize = "20"
		},
		GrowPressure = {
			MidPoint = "75",
			CenterSize = "50",
			LowSize = "25",
			HighSize = "100",
			Clamp = "true"
		}
	},
	{
		Id = "LifeRequirementsItemTomato",
		LiquidPerTick = {
			Type = "Water",
			Moles = "0.00006"
		},
		Inhaled = {
			Type = "CarbonDioxide",
			Moles = "0.0012",
			Ratio = "0.01"
		},
		Exhaled = {
			Type = "Oxygen",
			Moles = "0.0012"
		},
		HarmfulGas = {
			{
				Type = "Pollutant",
				PartialPressure = "1"
			},
			{
				Type = "Volatiles",
				PartialPressure = "1"
			},
			{
				Type = "Silanol",
				PartialPressure = "1"
			},
			{
				Type = "HydrochloricAcid",
				PartialPressure = "0.1"
			},
			{
				Type = "Hydrazine",
				PartialPressure = "0.1"
			}
		},
		WaterUsage = {
			Base = "1"
		},
		GasProduction = {
			Base = "1"
		},
		GrowthSpeedMultiplier = {
			Base = "1"
		},
		TimeUntilDehydrationDamage = {
			Base = "1200"
		},
		TimeUntilUndesiredGasDamage = {
			Base = "300"
		},
		UndesiredGasResistance = {
			Base = "1"
		},
		TimeUntilFrozenDamage = {
			Base = "120"
		},
		TimeUntilOverHeatedDamage = {
			Base = "120"
		},
		TimeUntilSuffocatedDamage = {
			Base = "1200"
		},
		TimeUntilLowPressureDamage = {
			Base = "120"
		},
		TimeUntilHighPressureDamage = {
			Base = "120"
		},
		TimeUntilLightDamage = {
			Base = "3600"
		},
		TimeUntilDarknessDamage = {
			Base = "3600"
		},
		LightPerDay = {
			Base = "480",
			Invert = "true"
		},
		DarknessPerDay = {
			Base = "300",
			Invert = "true"
		},
		GrowTemperatureC = {
			MidPoint = "25",
			CenterSize = "10",
			LowSize = "20",
			HighSize = "20"
		},
		GrowPressure = {
			MidPoint = "75",
			CenterSize = "50",
			LowSize = "25",
			HighSize = "100",
			Clamp = "true"
		}
	},
	{
		Id = "LifeRequirementsItemSugarcane",
		LiquidPerTick = {
			Type = "Water",
			Moles = "0.00006"
		},
		Inhaled = {
			Type = "CarbonDioxide",
			Moles = "0.0012",
			Ratio = "0.01"
		},
		Exhaled = {
			Type = "Oxygen",
			Moles = "0.0012"
		},
		HarmfulGas = {
			Type = "Pollutant",
			PartialPressure = "1"
		},
		WaterUsage = {
			Base = "1"
		},
		GasProduction = {
			Base = "1"
		},
		GrowthSpeedMultiplier = {
			Base = "1"
		},
		TimeUntilDehydrationDamage = {
			Base = "1800"
		},
		TimeUntilUndesiredGasDamage = {
			Base = "300"
		},
		UndesiredGasResistance = {
			Base = "1"
		},
		TimeUntilFrozenDamage = {
			Base = "300"
		},
		TimeUntilOverHeatedDamage = {
			Base = "300"
		},
		TimeUntilSuffocatedDamage = {
			Base = "3600"
		},
		TimeUntilLowPressureDamage = {
			Base = "600"
		},
		TimeUntilHighPressureDamage = {
			Base = "600"
		},
		TimeUntilLightDamage = {
			Base = "3600"
		},
		TimeUntilDarknessDamage = {
			Base = "3600"
		},
		LightPerDay = {
			Base = "500",
			Invert = "true"
		},
		DarknessPerDay = {
			Base = "200",
			Invert = "true"
		},
		GrowTemperatureC = {
			MidPoint = "25",
			CenterSize = "10",
			LowSize = "20",
			HighSize = "20"
		},
		GrowPressure = {
			MidPoint = "75",
			CenterSize = "50",
			LowSize = "25",
			HighSize = "100",
			Clamp = "true"
		}
	},
	{
		Id = "LifeRequirementsItemCocoa",
		LiquidPerTick = {
			Type = "Water",
			Moles = "0.00006"
		},
		Inhaled = {
			Type = "CarbonDioxide",
			Moles = "0.0012",
			Ratio = "0.01"
		},
		Exhaled = {
			Type = "Oxygen",
			Moles = "0.0012"
		},
		HarmfulGas = {
			Type = "Pollutant",
			PartialPressure = "1"
		},
		WaterUsage = {
			Base = "1"
		},
		GasProduction = {
			Base = "1"
		},
		GrowthSpeedMultiplier = {
			Base = "1"
		},
		TimeUntilDehydrationDamage = {
			Base = "1800"
		},
		TimeUntilUndesiredGasDamage = {
			Base = "300"
		},
		UndesiredGasResistance = {
			Base = "1"
		},
		TimeUntilFrozenDamage = {
			Base = "300"
		},
		TimeUntilOverHeatedDamage = {
			Base = "300"
		},
		TimeUntilSuffocatedDamage = {
			Base = "3600"
		},
		TimeUntilLowPressureDamage = {
			Base = "600"
		},
		TimeUntilHighPressureDamage = {
			Base = "600"
		},
		TimeUntilLightDamage = {
			Base = "3600"
		},
		TimeUntilDarknessDamage = {
			Base = "3600"
		},
		LightPerDay = {
			Base = "500",
			Invert = "true"
		},
		DarknessPerDay = {
			Base = "200",
			Invert = "true"
		},
		GrowTemperatureC = {
			MidPoint = "35",
			CenterSize = "10",
			LowSize = "10",
			HighSize = "10"
		},
		GrowPressure = {
			MidPoint = "75",
			CenterSize = "50",
			LowSize = "25",
			HighSize = "100",
			Clamp = "true"
		}
	},
	{
		Id = "LifeRequirementsItemWinterspawnAlpha",
		LiquidPerTick = {
			Type = "Water",
			Moles = "0.0002"
		},
		Inhaled = {
			Type = "Nitrogen",
			Moles = "0.003",
			Ratio = "0.01"
		},
		Exhaled = {
			{
				Type = "Oxygen",
				Moles = "0.0002"
			},
			{
				Type = "Volatiles",
				Moles = "0.0004"
			}
		},
		HarmfulGas = {
			{
				Type = "Pollutant",
				PartialPressure = "1"
			},
			{
				Type = "Volatiles",
				PartialPressure = "1"
			},
			{
				Type = "Silanol",
				PartialPressure = "1"
			},
			{
				Type = "HydrochloricAcid",
				PartialPressure = "0.1"
			},
			{
				Type = "Hydrazine",
				PartialPressure = "0.1"
			}
		},
		WaterUsage = {
			Base = "1"
		},
		GasProduction = {
			Base = "1"
		},
		GrowthSpeedMultiplier = {
			Base = "1"
		},
		TimeUntilDehydrationDamage = {
			Base = "1800"
		},
		TimeUntilUndesiredGasDamage = {
			Base = "300"
		},
		UndesiredGasResistance = {
			Base = "1"
		},
		TimeUntilFrozenDamage = {
			Base = "300"
		},
		TimeUntilOverHeatedDamage = {
			Base = "300"
		},
		TimeUntilSuffocatedDamage = {
			Base = "3600"
		},
		TimeUntilLowPressureDamage = {
			Base = "600"
		},
		TimeUntilHighPressureDamage = {
			Base = "600"
		},
		TimeUntilLightDamage = {
			Base = "3600"
		},
		TimeUntilDarknessDamage = {
			Base = "3600"
		},
		LightPerDay = {
			Base = "600",
			Invert = "true"
		},
		DarknessPerDay = {
			Base = "300",
			Invert = "true"
		},
		GrowTemperatureC = {
			MidPoint = "25",
			CenterSize = "10",
			LowSize = "20",
			HighSize = "20"
		},
		GrowPressure = {
			MidPoint = "75",
			CenterSize = "50",
			LowSize = "25",
			HighSize = "100",
			Clamp = "true"
		}
	},
	{
		Id = "LifeRequirementsItemWinterspawnBeta",
		LiquidPerTick = {
			Type = "Water",
			Moles = "0.0004"
		},
		Inhaled = {
			Type = "Nitrogen",
			Moles = "0.005",
			Ratio = "0.01"
		},
		Exhaled = {
			{
				Type = "Oxygen",
				Moles = "0.0004"
			},
			{
				Type = "Volatiles",
				Moles = "0.0008"
			}
		},
		HarmfulGas = {
			{
				Type = "Pollutant",
				PartialPressure = "1"
			},
			{
				Type = "Volatiles",
				PartialPressure = "1"
			},
			{
				Type = "Silanol",
				PartialPressure = "1"
			},
			{
				Type = "HydrochloricAcid",
				PartialPressure = "0.1"
			},
			{
				Type = "Hydrazine",
				PartialPressure = "0.1"
			}
		},
		WaterUsage = {
			Base = "1"
		},
		GasProduction = {
			Base = "1"
		},
		GrowthSpeedMultiplier = {
			Base = "1"
		},
		TimeUntilDehydrationDamage = {
			Base = "1800"
		},
		TimeUntilUndesiredGasDamage = {
			Base = "300"
		},
		UndesiredGasResistance = {
			Base = "1"
		},
		TimeUntilFrozenDamage = {
			Base = "300"
		},
		TimeUntilOverHeatedDamage = {
			Base = "300"
		},
		TimeUntilSuffocatedDamage = {
			Base = "3600"
		},
		TimeUntilLowPressureDamage = {
			Base = "600"
		},
		TimeUntilHighPressureDamage = {
			Base = "600"
		},
		TimeUntilLightDamage = {
			Base = "3600"
		},
		TimeUntilDarknessDamage = {
			Base = "3600"
		},
		LightPerDay = {
			Base = "600",
			Invert = "true"
		},
		DarknessPerDay = {
			Base = "300",
			Invert = "true"
		},
		GrowTemperatureC = {
			MidPoint = "25",
			CenterSize = "10",
			LowSize = "20",
			HighSize = "20"
		},
		GrowPressure = {
			MidPoint = "75",
			CenterSize = "50",
			LowSize = "25",
			HighSize = "100",
			Clamp = "true"
		}
	},
	{
		Id = "LifeRequirementsItemHadesAlpha",
		LiquidPerTick = {
			Type = "Water",
			Moles = "0.00006"
		},
		Inhaled = {
			{
				Type = "Oxygen",
				Moles = "0.0075",
				Ratio = "0.01"
			},
			{
				Type = "Volatiles",
				Moles = "0.0025",
				Ratio = "0.01"
			}
		},
		Exhaled = {
			Type = "Pollutant",
			Moles = "0.004"
		},
		HarmfulGas = {
			{
				Type = "Pollutant",
				PartialPressure = "1"
			},
			{
				Type = "Volatiles",
				PartialPressure = "1"
			},
			{
				Type = "Silanol",
				PartialPressure = "1"
			},
			{
				Type = "HydrochloricAcid",
				PartialPressure = "0.1"
			},
			{
				Type = "Hydrazine",
				PartialPressure = "0.1"
			}
		},
		WaterUsage = {
			Base = "1"
		},
		GasProduction = {
			Base = "1"
		},
		GrowthSpeedMultiplier = {
			Base = "1"
		},
		TimeUntilDehydrationDamage = {
			Base = "1800"
		},
		TimeUntilUndesiredGasDamage = {
			Base = "300"
		},
		UndesiredGasResistance = {
			Base = "1"
		},
		TimeUntilFrozenDamage = {
			Base = "300"
		},
		TimeUntilOverHeatedDamage = {
			Base = "300"
		},
		TimeUntilSuffocatedDamage = {
			Base = "3600"
		},
		TimeUntilLowPressureDamage = {
			Base = "600"
		},
		TimeUntilHighPressureDamage = {
			Base = "600"
		},
		TimeUntilLightDamage = {
			Base = "3600"
		},
		TimeUntilDarknessDamage = {
			Base = "3600"
		},
		LightPerDay = {
			Base = "600",
			Invert = "true"
		},
		DarknessPerDay = {
			Base = "300",
			Invert = "true"
		},
		GrowTemperatureC = {
			MidPoint = "25",
			CenterSize = "10",
			LowSize = "20",
			HighSize = "20"
		},
		GrowPressure = {
			MidPoint = "75",
			CenterSize = "50",
			LowSize = "25",
			HighSize = "100",
			Clamp = "true"
		}
	},
	{
		Id = "LifeRequirementsItemHadesBeta",
		LiquidPerTick = {
			Type = "Water",
			Moles = "0.00006"
		},
		Inhaled = {
			{
				Type = "Oxygen",
				Moles = "0.0075",
				Ratio = "0.01"
			},
			{
				Type = "Volatiles",
				Moles = "0.0025",
				Ratio = "0.01"
			}
		},
		Exhaled = {
			Type = "Pollutant",
			Moles = "0.0025"
		},
		HarmfulGas = {
			{
				Type = "Pollutant",
				PartialPressure = "1"
			},
			{
				Type = "Volatiles",
				PartialPressure = "1"
			},
			{
				Type = "Silanol",
				PartialPressure = "1"
			},
			{
				Type = "HydrochloricAcid",
				PartialPressure = "0.1"
			},
			{
				Type = "Hydrazine",
				PartialPressure = "0.1"
			}
		},
		WaterUsage = {
			Base = "1"
		},
		GasProduction = {
			Base = "1"
		},
		GrowthSpeedMultiplier = {
			Base = "1"
		},
		TimeUntilDehydrationDamage = {
			Base = "1800"
		},
		TimeUntilUndesiredGasDamage = {
			Base = "300"
		},
		UndesiredGasResistance = {
			Base = "1"
		},
		TimeUntilFrozenDamage = {
			Base = "300"
		},
		TimeUntilOverHeatedDamage = {
			Base = "300"
		},
		TimeUntilSuffocatedDamage = {
			Base = "3600"
		},
		TimeUntilLowPressureDamage = {
			Base = "600"
		},
		TimeUntilHighPressureDamage = {
			Base = "600"
		},
		TimeUntilLightDamage = {
			Base = "3600"
		},
		TimeUntilDarknessDamage = {
			Base = "3600"
		},
		LightPerDay = {
			Base = "600",
			Invert = "true"
		},
		DarknessPerDay = {
			Base = "300",
			Invert = "true"
		},
		GrowTemperatureC = {
			MidPoint = "25",
			CenterSize = "10",
			LowSize = "20",
			HighSize = "20"
		},
		GrowPressure = {
			MidPoint = "75",
			CenterSize = "50",
			LowSize = "25",
			HighSize = "100",
			Clamp = "true"
		}
	}
}





















p.PlantLifeRequirements = {
	{
		Id = "LifeRequirementsDefault",
		LiquidPerTick = {
			Type = "Water",
			Moles = "0.00006"
		},
		Inhaled = {
			Type = "CarbonDioxide",
			Moles = "0.0012",
			Ratio = "0.01"
		},
		Exhaled = {
			Type = "Oxygen",
			Moles = "0.0012"
		},
		HarmfulGas = {
			{
				Type = "Pollutant",
				PartialPressure = "1"
			},
			{
				Type = "Volatiles",
				PartialPressure = "1"
			},
			{
				Type = "Silanol",
				PartialPressure = "1"
			},
			{
				Type = "HydrochloricAcid",
				PartialPressure = "0.1"
			},
			{
				Type = "Hydrazine",
				PartialPressure = "0.1"
			}
		},
		WaterUsage = {
			Base = "1"
		},
		GasProduction = {
			Base = "1"
		},
		GrowthSpeedMultiplier = {
			Base = "1"
		},
		TimeUntilDehydrationDamage = {
			Base = "1800"
		},
		TimeUntilUndesiredGasDamage = {
			Base = "300"
		},
		UndesiredGasResistance = {
			Base = "1"
		},
		TimeUntilFrozenDamage = {
			Base = "300"
		},
		TimeUntilOverHeatedDamage = {
			Base = "300"
		},
		TimeUntilSuffocatedDamage = {
			Base = "3600"
		},
		TimeUntilLowPressureDamage = {
			Base = "600"
		},
		TimeUntilHighPressureDamage = {
			Base = "600"
		},
		TimeUntilLightDamage = {
			Base = "3600"
		},
		TimeUntilDarknessDamage = {
			Base = "3600"
		},
		LightPerDay = {
			Base = "600",
			Invert = "true"
		},
		DarknessPerDay = {
			Base = "300",
			Invert = "true"
		},
		GrowTemperatureC = {
			MidPoint = "25",
			CenterSize = "10",
			LowSize = "20",
			HighSize = "20"
		},
		GrowPressure = {
			MidPoint = "75",
			CenterSize = "50",
			LowSize = "25",
			HighSize = "100",
			Clamp = "true"
		}
	},
	{
		Id = "LifeRequirementsItemSoybean",
		LiquidPerTick = {
			Type = "Water",
			Moles = "0.00006"
		},
		Inhaled = {
			{
				Type = "CarbonDioxide",
				Moles = "0.0012",
				Ratio = "0.01"
			},
			{
				Type = "Nitrogen",
				Moles = "0.0012",
				Ratio = "0.01"
			}
		},
		Exhaled = {
			Type = "Oxygen",
			Moles = "0.0012"
		},
		HarmfulGas = {
			{
				Type = "Pollutant",
				PartialPressure = "1"
			},
			{
				Type = "Volatiles",
				PartialPressure = "1"
			},
			{
				Type = "Silanol",
				PartialPressure = "1"
			},
			{
				Type = "HydrochloricAcid",
				PartialPressure = "0.1"
			},
			{
				Type = "Hydrazine",
				PartialPressure = "0.1"
			}
		},
		WaterUsage = {
			Base = "1"
		},
		GasProduction = {
			Base = "1"
		},
		GrowthSpeedMultiplier = {
			Base = "1"
		},
		TimeUntilDehydrationDamage = {
			Base = "1800"
		},
		TimeUntilUndesiredGasDamage = {
			Base = "300"
		},
		UndesiredGasResistance = {
			Base = "1"
		},
		TimeUntilFrozenDamage = {
			Base = "300"
		},
		TimeUntilOverHeatedDamage = {
			Base = "300"
		},
		TimeUntilSuffocatedDamage = {
			Base = "3600"
		},
		TimeUntilLowPressureDamage = {
			Base = "600"
		},
		TimeUntilHighPressureDamage = {
			Base = "600"
		},
		TimeUntilLightDamage = {
			Base = "3600"
		},
		TimeUntilDarknessDamage = {
			Base = "3600"
		},
		LightPerDay = {
			Base = "600",
			Invert = "true"
		},
		DarknessPerDay = {
			Base = "300",
			Invert = "true"
		},
		GrowTemperatureC = {
			MidPoint = "25",
			CenterSize = "10",
			LowSize = "20",
			HighSize = "20"
		},
		GrowPressure = {
			MidPoint = "75",
			CenterSize = "50",
			LowSize = "25",
			HighSize = "100",
			Clamp = "true"
		}
	},
	{
		Id = "LifeRequirementsItemCorn",
		LiquidPerTick = {
			Type = "Water",
			Moles = "0.00006"
		},
		Inhaled = {
			Type = "CarbonDioxide",
			Moles = "0.0012",
			Ratio = "0.01"
		},
		Exhaled = {
			Type = "Oxygen",
			Moles = "0.0012"
		},
		HarmfulGas = {
			{
				Type = "Pollutant",
				PartialPressure = "1"
			},
			{
				Type = "Volatiles",
				PartialPressure = "1"
			},
			{
				Type = "Silanol",
				PartialPressure = "1"
			},
			{
				Type = "HydrochloricAcid",
				PartialPressure = "0.1"
			},
			{
				Type = "Hydrazine",
				PartialPressure = "0.1"
			}
		},
		WaterUsage = {
			Base = "1"
		},
		GasProduction = {
			Base = "1"
		},
		GrowthSpeedMultiplier = {
			Base = "1"
		},
		TimeUntilDehydrationDamage = {
			Base = "1800"
		},
		TimeUntilUndesiredGasDamage = {
			Base = "300"
		},
		UndesiredGasResistance = {
			Base = "1"
		},
		TimeUntilFrozenDamage = {
			Base = "300"
		},
		TimeUntilOverHeatedDamage = {
			Base = "300"
		},
		TimeUntilSuffocatedDamage = {
			Base = "3600"
		},
		TimeUntilLowPressureDamage = {
			Base = "600"
		},
		TimeUntilHighPressureDamage = {
			Base = "600"
		},
		TimeUntilLightDamage = {
			Base = "3600"
		},
		TimeUntilDarknessDamage = {
			Base = "3600"
		},
		LightPerDay = {
			Base = "500",
			Invert = "true"
		},
		DarknessPerDay = {
			Base = "200",
			Invert = "true"
		},
		GrowTemperatureC = {
			MidPoint = "25",
			CenterSize = "10",
			LowSize = "20",
			HighSize = "20"
		},
		GrowPressure = {
			MidPoint = "75",
			CenterSize = "50",
			LowSize = "25",
			HighSize = "100",
			Clamp = "true"
		}
	},
	{
		Id = "LifeRequirementsItemFern",
		LiquidPerTick = {
			Type = "Water",
			Moles = "0.00006"
		},
		Inhaled = {
			Type = "CarbonDioxide",
			Moles = "0.0024",
			Ratio = "0.01"
		},
		Exhaled = {
			Type = "Oxygen",
			Moles = "0.0024"
		},
		HarmfulGas = {
			{
				Type = "Pollutant",
				PartialPressure = "1"
			},
			{
				Type = "Volatiles",
				PartialPressure = "1"
			},
			{
				Type = "Silanol",
				PartialPressure = "1"
			},
			{
				Type = "HydrochloricAcid",
				PartialPressure = "0.1"
			},
			{
				Type = "Hydrazine",
				PartialPressure = "0.1"
			}
		},
		WaterUsage = {
			Base = "1"
		},
		GasProduction = {
			Base = "1"
		},
		GrowthSpeedMultiplier = {
			Base = "1"
		},
		TimeUntilDehydrationDamage = {
			Base = "1200"
		},
		TimeUntilUndesiredGasDamage = {
			Base = "300"
		},
		UndesiredGasResistance = {
			Base = "1"
		},
		TimeUntilFrozenDamage = {
			Base = "120"
		},
		TimeUntilOverHeatedDamage = {
			Base = "120"
		},
		TimeUntilSuffocatedDamage = {
			Base = "1200"
		},
		TimeUntilLowPressureDamage = {
			Base = "120"
		},
		TimeUntilHighPressureDamage = {
			Base = "120"
		},
		TimeUntilLightDamage = {
			Base = "3600"
		},
		TimeUntilDarknessDamage = {
			Base = "3600"
		},
		LightPerDay = {
			Base = "480",
			Invert = "true"
		},
		DarknessPerDay = {
			Base = "300",
			Invert = "true"
		},
		GrowTemperatureC = {
			MidPoint = "25",
			CenterSize = "10",
			LowSize = "20",
			HighSize = "20"
		},
		GrowPressure = {
			MidPoint = "75",
			CenterSize = "50",
			LowSize = "25",
			HighSize = "100",
			Clamp = "true"
		}
	},
	{
		Id = "LifeRequirementsItemDargaFern",
		LiquidPerTick = {
			Type = "Water",
			Moles = "0.00006"
		},
		Inhaled = {
			Type = "CarbonDioxide",
			Moles = "0.0085",
			Ratio = "0.01"
		},
		Exhaled = {
			Type = "Oxygen",
			Moles = "0.0085"
		},
		HarmfulGas = {
			{
				Type = "Pollutant",
				PartialPressure = "1"
			},
			{
				Type = "Volatiles",
				PartialPressure = "1"
			},
			{
				Type = "Silanol",
				PartialPressure = "1"
			},
			{
				Type = "HydrochloricAcid",
				PartialPressure = "0.1"
			},
			{
				Type = "Hydrazine",
				PartialPressure = "0.1"
			}
		},
		WaterUsage = {
			Base = "1"
		},
		GasProduction = {
			Base = "1"
		},
		GrowthSpeedMultiplier = {
			Base = "1"
		},
		TimeUntilDehydrationDamage = {
			Base = "1200"
		},
		TimeUntilUndesiredGasDamage = {
			Base = "300"
		},
		UndesiredGasResistance = {
			Base = "1"
		},
		TimeUntilFrozenDamage = {
			Base = "120"
		},
		TimeUntilOverHeatedDamage = {
			Base = "120"
		},
		TimeUntilSuffocatedDamage = {
			Base = "1200"
		},
		TimeUntilLowPressureDamage = {
			Base = "120"
		},
		TimeUntilHighPressureDamage = {
			Base = "120"
		},
		TimeUntilLightDamage = {
			Base = "3600"
		},
		TimeUntilDarknessDamage = {
			Base = "3600"
		},
		LightPerDay = {
			Base = "480",
			Invert = "true"
		},
		DarknessPerDay = {
			Base = "300",
			Invert = "true"
		},
		GrowTemperatureC = {
			MidPoint = "25",
			CenterSize = "10",
			LowSize = "20",
			HighSize = "20"
		},
		GrowPressure = {
			MidPoint = "75",
			CenterSize = "50",
			LowSize = "25",
			HighSize = "100",
			Clamp = "true"
		}
	},
	{
		Id = "LifeRequirementsItemMushroom",
		LiquidPerTick = {
			Type = "Water",
			Moles = "0.00006"
		},
		Inhaled = {
			Type = "Oxygen",
			Moles = "0.0012",
			Ratio = "0.01"
		},
		Exhaled = {
			Type = "CarbonDioxide",
			Moles = "0.0012"
		},
		HarmfulGas = {
			{
				Type = "Pollutant",
				PartialPressure = "1"
			},
			{
				Type = "Volatiles",
				PartialPressure = "1"
			},
			{
				Type = "Silanol",
				PartialPressure = "1"
			},
			{
				Type = "HydrochloricAcid",
				PartialPressure = "0.1"
			},
			{
				Type = "Hydrazine",
				PartialPressure = "0.1"
			}
		},
		WaterUsage = {
			Base = "1"
		},
		GasProduction = {
			Base = "1"
		},
		GrowthSpeedMultiplier = {
			Base = "1"
		},
		TimeUntilDehydrationDamage = {
			Base = "1800"
		},
		TimeUntilUndesiredGasDamage = {
			Base = "300"
		},
		UndesiredGasResistance = {
			Base = "1"
		},
		TimeUntilFrozenDamage = {
			Base = "300"
		},
		TimeUntilOverHeatedDamage = {
			Base = "300"
		},
		TimeUntilSuffocatedDamage = {
			Base = "300"
		},
		TimeUntilLowPressureDamage = {
			Base = "600"
		},
		TimeUntilHighPressureDamage = {
			Base = "600"
		},
		TimeUntilLightDamage = {
			Base = "120"
		},
		TimeUntilDarknessDamage = {
			Base = "0"
		},
		LightPerDay = {
			Base = "0",
			Invert = "true"
		},
		DarknessPerDay = {
			Base = "1100",
			Invert = "true"
		},
		GrowTemperatureC = {
			MidPoint = "25",
			CenterSize = "10",
			LowSize = "20",
			HighSize = "20"
		},
		GrowPressure = {
			MidPoint = "75",
			CenterSize = "50",
			LowSize = "25",
			HighSize = "100",
			Clamp = "true"
		}
	},
	{
		Id = "LifeRequirementsItemPlantSwitchGrass",
		LiquidPerTick = {
			Type = "Water",
			Moles = "0.00006"
		},
		Inhaled = {
			Type = "CarbonDioxide",
			Moles = "0.0012",
			Ratio = "0.01"
		},
		Exhaled = {
			Type = "Oxygen",
			Moles = "0.0012"
		},
		HarmfulGas = {
			{
				Type = "Pollutant",
				PartialPressure = "1"
			},
			{
				Type = "Volatiles",
				PartialPressure = "1"
			},
			{
				Type = "Silanol",
				PartialPressure = "1"
			},
			{
				Type = "HydrochloricAcid",
				PartialPressure = "0.1"
			},
			{
				Type = "Hydrazine",
				PartialPressure = "0.1"
			}
		},
		WaterUsage = {
			Base = "1"
		},
		GasProduction = {
			Base = "1"
		},
		GrowthSpeedMultiplier = {
			Base = "1"
		},
		TimeUntilDehydrationDamage = {
			Base = "1800"
		},
		TimeUntilUndesiredGasDamage = {
			Base = "300"
		},
		UndesiredGasResistance = {
			Base = "1"
		},
		TimeUntilFrozenDamage = {
			Base = "300"
		},
		TimeUntilOverHeatedDamage = {
			Base = "300"
		},
		TimeUntilSuffocatedDamage = {
			Base = "3600"
		},
		TimeUntilLowPressureDamage = {
			Base = "600"
		},
		TimeUntilHighPressureDamage = {
			Base = "600"
		},
		TimeUntilLightDamage = {
			Base = "3600"
		},
		TimeUntilDarknessDamage = {
			Base = "3600"
		},
		LightPerDay = {
			Base = "600",
			Invert = "true"
		},
		DarknessPerDay = {
			Base = "300",
			Invert = "true"
		},
		GrowTemperatureC = {
			MidPoint = "30",
			CenterSize = "20",
			LowSize = "20",
			HighSize = "20"
		},
		GrowPressure = {
			MidPoint = "75",
			CenterSize = "50",
			LowSize = "25",
			HighSize = "100",
			Clamp = "true"
		}
	},
	{
		Id = "LifeRequirementsItemPotato",
		LiquidPerTick = {
			Type = "Water",
			Moles = "0.00006"
		},
		Inhaled = {
			Type = "CarbonDioxide",
			Moles = "0.0012",
			Ratio = "0.01"
		},
		Exhaled = {
			Type = "Oxygen",
			Moles = "0.0012"
		},
		HarmfulGas = {
			{
				Type = "Pollutant",
				PartialPressure = "1"
			},
			{
				Type = "Volatiles",
				PartialPressure = "1"
			},
			{
				Type = "Silanol",
				PartialPressure = "1"
			},
			{
				Type = "HydrochloricAcid",
				PartialPressure = "0.1"
			},
			{
				Type = "Hydrazine",
				PartialPressure = "0.1"
			}
		},
		WaterUsage = {
			Base = "1"
		},
		GasProduction = {
			Base = "1"
		},
		GrowthSpeedMultiplier = {
			Base = "1"
		},
		TimeUntilDehydrationDamage = {
			Base = "1800"
		},
		TimeUntilUndesiredGasDamage = {
			Base = "300"
		},
		UndesiredGasResistance = {
			Base = "1"
		},
		TimeUntilFrozenDamage = {
			Base = "300"
		},
		TimeUntilOverHeatedDamage = {
			Base = "300"
		},
		TimeUntilSuffocatedDamage = {
			Base = "3600"
		},
		TimeUntilLowPressureDamage = {
			Base = "600"
		},
		TimeUntilHighPressureDamage = {
			Base = "600"
		},
		TimeUntilLightDamage = {
			Base = "3600"
		},
		TimeUntilDarknessDamage = {
			Base = "3600"
		},
		LightPerDay = {
			Base = "300",
			Invert = "true"
		},
		DarknessPerDay = {
			Base = "200",
			Invert = "true"
		},
		GrowTemperatureC = {
			MidPoint = "25",
			CenterSize = "10",
			LowSize = "20",
			HighSize = "20"
		},
		GrowPressure = {
			MidPoint = "75",
			CenterSize = "50",
			LowSize = "25",
			HighSize = "100",
			Clamp = "true"
		}
	},
	{
		Id = "LifeRequirementsItemPumpkin",
		LiquidPerTick = {
			Type = "Water",
			Moles = "0.00006"
		},
		Inhaled = {
			Type = "CarbonDioxide",
			Moles = "0.0012",
			Ratio = "0.01"
		},
		Exhaled = {
			Type = "Oxygen",
			Moles = "0.0012"
		},
		HarmfulGas = {
			{
				Type = "Pollutant",
				PartialPressure = "1"
			},
			{
				Type = "Volatiles",
				PartialPressure = "1"
			},
			{
				Type = "Silanol",
				PartialPressure = "1"
			},
			{
				Type = "HydrochloricAcid",
				PartialPressure = "0.1"
			},
			{
				Type = "Hydrazine",
				PartialPressure = "0.1"
			}
		},
		WaterUsage = {
			Base = "1"
		},
		GasProduction = {
			Base = "1"
		},
		GrowthSpeedMultiplier = {
			Base = "1"
		},
		TimeUntilDehydrationDamage = {
			Base = "1800"
		},
		TimeUntilUndesiredGasDamage = {
			Base = "300"
		},
		UndesiredGasResistance = {
			Base = "1"
		},
		TimeUntilFrozenDamage = {
			Base = "300"
		},
		TimeUntilOverHeatedDamage = {
			Base = "300"
		},
		TimeUntilSuffocatedDamage = {
			Base = "3600"
		},
		TimeUntilLowPressureDamage = {
			Base = "600"
		},
		TimeUntilHighPressureDamage = {
			Base = "600"
		},
		TimeUntilLightDamage = {
			Base = "3600"
		},
		TimeUntilDarknessDamage = {
			Base = "3600"
		},
		LightPerDay = {
			Base = "500",
			Invert = "true"
		},
		DarknessPerDay = {
			Base = "100",
			Invert = "true"
		},
		GrowTemperatureC = {
			MidPoint = "25",
			CenterSize = "10",
			LowSize = "20",
			HighSize = "20"
		},
		GrowPressure = {
			MidPoint = "75",
			CenterSize = "50",
			LowSize = "25",
			HighSize = "100",
			Clamp = "true"
		}
	},
	{
		Id = "LifeRequirementsItemRice",
		LiquidPerTick = {
			Type = "Water",
			Moles = "0.00012"
		},
		Inhaled = {
			Type = "CarbonDioxide",
			Moles = "0.0012",
			Ratio = "0.01"
		},
		Exhaled = {
			Type = "Oxygen",
			Moles = "0.0012"
		},
		HarmfulGas = {
			{
				Type = "Pollutant",
				PartialPressure = "1"
			},
			{
				Type = "Volatiles",
				PartialPressure = "1"
			},
			{
				Type = "Silanol",
				PartialPressure = "1"
			},
			{
				Type = "HydrochloricAcid",
				PartialPressure = "0.1"
			},
			{
				Type = "Hydrazine",
				PartialPressure = "0.1"
			}
		},
		WaterUsage = {
			Base = "1"
		},
		GasProduction = {
			Base = "1"
		},
		GrowthSpeedMultiplier = {
			Base = "1"
		},
		TimeUntilDehydrationDamage = {
			Base = "300"
		},
		TimeUntilUndesiredGasDamage = {
			Base = "300"
		},
		UndesiredGasResistance = {
			Base = "1"
		},
		TimeUntilFrozenDamage = {
			Base = "300"
		},
		TimeUntilOverHeatedDamage = {
			Base = "300"
		},
		TimeUntilSuffocatedDamage = {
			Base = "3600"
		},
		TimeUntilLowPressureDamage = {
			Base = "600"
		},
		TimeUntilHighPressureDamage = {
			Base = "600"
		},
		TimeUntilLightDamage = {
			Base = "3600"
		},
		TimeUntilDarknessDamage = {
			Base = "3600"
		},
		LightPerDay = {
			Base = "600",
			Invert = "true"
		},
		DarknessPerDay = {
			Base = "300",
			Invert = "true"
		},
		GrowTemperatureC = {
			MidPoint = "25",
			CenterSize = "10",
			LowSize = "20",
			HighSize = "20"
		},
		GrowPressure = {
			MidPoint = "75",
			CenterSize = "50",
			LowSize = "25",
			HighSize = "100",
			Clamp = "true"
		}
	},
	{
		Id = "LifeRequirementsItemTomato",
		LiquidPerTick = {
			Type = "Water",
			Moles = "0.00006"
		},
		Inhaled = {
			Type = "CarbonDioxide",
			Moles = "0.0012",
			Ratio = "0.01"
		},
		Exhaled = {
			Type = "Oxygen",
			Moles = "0.0012"
		},
		HarmfulGas = {
			{
				Type = "Pollutant",
				PartialPressure = "1"
			},
			{
				Type = "Volatiles",
				PartialPressure = "1"
			},
			{
				Type = "Silanol",
				PartialPressure = "1"
			},
			{
				Type = "HydrochloricAcid",
				PartialPressure = "0.1"
			},
			{
				Type = "Hydrazine",
				PartialPressure = "0.1"
			}
		},
		WaterUsage = {
			Base = "1"
		},
		GasProduction = {
			Base = "1"
		},
		GrowthSpeedMultiplier = {
			Base = "1"
		},
		TimeUntilDehydrationDamage = {
			Base = "1200"
		},
		TimeUntilUndesiredGasDamage = {
			Base = "300"
		},
		UndesiredGasResistance = {
			Base = "1"
		},
		TimeUntilFrozenDamage = {
			Base = "120"
		},
		TimeUntilOverHeatedDamage = {
			Base = "120"
		},
		TimeUntilSuffocatedDamage = {
			Base = "1200"
		},
		TimeUntilLowPressureDamage = {
			Base = "120"
		},
		TimeUntilHighPressureDamage = {
			Base = "120"
		},
		TimeUntilLightDamage = {
			Base = "3600"
		},
		TimeUntilDarknessDamage = {
			Base = "3600"
		},
		LightPerDay = {
			Base = "480",
			Invert = "true"
		},
		DarknessPerDay = {
			Base = "300",
			Invert = "true"
		},
		GrowTemperatureC = {
			MidPoint = "25",
			CenterSize = "10",
			LowSize = "20",
			HighSize = "20"
		},
		GrowPressure = {
			MidPoint = "75",
			CenterSize = "50",
			LowSize = "25",
			HighSize = "100",
			Clamp = "true"
		}
	},
	{
		Id = "LifeRequirementsItemSugarcane",
		LiquidPerTick = {
			Type = "Water",
			Moles = "0.00006"
		},
		Inhaled = {
			Type = "CarbonDioxide",
			Moles = "0.0012",
			Ratio = "0.01"
		},
		Exhaled = {
			Type = "Oxygen",
			Moles = "0.0012"
		},
		HarmfulGas = {
			Type = "Pollutant",
			PartialPressure = "1"
		},
		WaterUsage = {
			Base = "1"
		},
		GasProduction = {
			Base = "1"
		},
		GrowthSpeedMultiplier = {
			Base = "1"
		},
		TimeUntilDehydrationDamage = {
			Base = "1800"
		},
		TimeUntilUndesiredGasDamage = {
			Base = "300"
		},
		UndesiredGasResistance = {
			Base = "1"
		},
		TimeUntilFrozenDamage = {
			Base = "300"
		},
		TimeUntilOverHeatedDamage = {
			Base = "300"
		},
		TimeUntilSuffocatedDamage = {
			Base = "3600"
		},
		TimeUntilLowPressureDamage = {
			Base = "600"
		},
		TimeUntilHighPressureDamage = {
			Base = "600"
		},
		TimeUntilLightDamage = {
			Base = "3600"
		},
		TimeUntilDarknessDamage = {
			Base = "3600"
		},
		LightPerDay = {
			Base = "500",
			Invert = "true"
		},
		DarknessPerDay = {
			Base = "200",
			Invert = "true"
		},
		GrowTemperatureC = {
			MidPoint = "25",
			CenterSize = "10",
			LowSize = "20",
			HighSize = "20"
		},
		GrowPressure = {
			MidPoint = "75",
			CenterSize = "50",
			LowSize = "25",
			HighSize = "100",
			Clamp = "true"
		}
	},
	{
		Id = "LifeRequirementsItemCocoa",
		LiquidPerTick = {
			Type = "Water",
			Moles = "0.00006"
		},
		Inhaled = {
			Type = "CarbonDioxide",
			Moles = "0.0012",
			Ratio = "0.01"
		},
		Exhaled = {
			Type = "Oxygen",
			Moles = "0.0012"
		},
		HarmfulGas = {
			Type = "Pollutant",
			PartialPressure = "1"
		},
		WaterUsage = {
			Base = "1"
		},
		GasProduction = {
			Base = "1"
		},
		GrowthSpeedMultiplier = {
			Base = "1"
		},
		TimeUntilDehydrationDamage = {
			Base = "1800"
		},
		TimeUntilUndesiredGasDamage = {
			Base = "300"
		},
		UndesiredGasResistance = {
			Base = "1"
		},
		TimeUntilFrozenDamage = {
			Base = "300"
		},
		TimeUntilOverHeatedDamage = {
			Base = "300"
		},
		TimeUntilSuffocatedDamage = {
			Base = "3600"
		},
		TimeUntilLowPressureDamage = {
			Base = "600"
		},
		TimeUntilHighPressureDamage = {
			Base = "600"
		},
		TimeUntilLightDamage = {
			Base = "3600"
		},
		TimeUntilDarknessDamage = {
			Base = "3600"
		},
		LightPerDay = {
			Base = "500",
			Invert = "true"
		},
		DarknessPerDay = {
			Base = "200",
			Invert = "true"
		},
		GrowTemperatureC = {
			MidPoint = "35",
			CenterSize = "10",
			LowSize = "10",
			HighSize = "10"
		},
		GrowPressure = {
			MidPoint = "75",
			CenterSize = "50",
			LowSize = "25",
			HighSize = "100",
			Clamp = "true"
		}
	},
	{
		Id = "LifeRequirementsItemWinterspawnAlpha",
		LiquidPerTick = {
			Type = "Water",
			Moles = "0.0002"
		},
		Inhaled = {
			Type = "Nitrogen",
			Moles = "0.003",
			Ratio = "0.01"
		},
		Exhaled = {
			{
				Type = "Oxygen",
				Moles = "0.0002"
			},
			{
				Type = "Volatiles",
				Moles = "0.0004"
			}
		},
		HarmfulGas = {
			{
				Type = "Pollutant",
				PartialPressure = "1"
			},
			{
				Type = "Volatiles",
				PartialPressure = "1"
			},
			{
				Type = "Silanol",
				PartialPressure = "1"
			},
			{
				Type = "HydrochloricAcid",
				PartialPressure = "0.1"
			},
			{
				Type = "Hydrazine",
				PartialPressure = "0.1"
			}
		},
		WaterUsage = {
			Base = "1"
		},
		GasProduction = {
			Base = "1"
		},
		GrowthSpeedMultiplier = {
			Base = "1"
		},
		TimeUntilDehydrationDamage = {
			Base = "1800"
		},
		TimeUntilUndesiredGasDamage = {
			Base = "300"
		},
		UndesiredGasResistance = {
			Base = "1"
		},
		TimeUntilFrozenDamage = {
			Base = "300"
		},
		TimeUntilOverHeatedDamage = {
			Base = "300"
		},
		TimeUntilSuffocatedDamage = {
			Base = "3600"
		},
		TimeUntilLowPressureDamage = {
			Base = "600"
		},
		TimeUntilHighPressureDamage = {
			Base = "600"
		},
		TimeUntilLightDamage = {
			Base = "3600"
		},
		TimeUntilDarknessDamage = {
			Base = "3600"
		},
		LightPerDay = {
			Base = "600",
			Invert = "true"
		},
		DarknessPerDay = {
			Base = "300",
			Invert = "true"
		},
		GrowTemperatureC = {
			MidPoint = "25",
			CenterSize = "10",
			LowSize = "20",
			HighSize = "20"
		},
		GrowPressure = {
			MidPoint = "75",
			CenterSize = "50",
			LowSize = "25",
			HighSize = "100",
			Clamp = "true"
		}
	},
	{
		Id = "LifeRequirementsItemWinterspawnBeta",
		LiquidPerTick = {
			Type = "Water",
			Moles = "0.0004"
		},
		Inhaled = {
			Type = "Nitrogen",
			Moles = "0.005",
			Ratio = "0.01"
		},
		Exhaled = {
			{
				Type = "Oxygen",
				Moles = "0.0004"
			},
			{
				Type = "Volatiles",
				Moles = "0.0008"
			}
		},
		HarmfulGas = {
			{
				Type = "Pollutant",
				PartialPressure = "1"
			},
			{
				Type = "Volatiles",
				PartialPressure = "1"
			},
			{
				Type = "Silanol",
				PartialPressure = "1"
			},
			{
				Type = "HydrochloricAcid",
				PartialPressure = "0.1"
			},
			{
				Type = "Hydrazine",
				PartialPressure = "0.1"
			}
		},
		WaterUsage = {
			Base = "1"
		},
		GasProduction = {
			Base = "1"
		},
		GrowthSpeedMultiplier = {
			Base = "1"
		},
		TimeUntilDehydrationDamage = {
			Base = "1800"
		},
		TimeUntilUndesiredGasDamage = {
			Base = "300"
		},
		UndesiredGasResistance = {
			Base = "1"
		},
		TimeUntilFrozenDamage = {
			Base = "300"
		},
		TimeUntilOverHeatedDamage = {
			Base = "300"
		},
		TimeUntilSuffocatedDamage = {
			Base = "3600"
		},
		TimeUntilLowPressureDamage = {
			Base = "600"
		},
		TimeUntilHighPressureDamage = {
			Base = "600"
		},
		TimeUntilLightDamage = {
			Base = "3600"
		},
		TimeUntilDarknessDamage = {
			Base = "3600"
		},
		LightPerDay = {
			Base = "600",
			Invert = "true"
		},
		DarknessPerDay = {
			Base = "300",
			Invert = "true"
		},
		GrowTemperatureC = {
			MidPoint = "25",
			CenterSize = "10",
			LowSize = "20",
			HighSize = "20"
		},
		GrowPressure = {
			MidPoint = "75",
			CenterSize = "50",
			LowSize = "25",
			HighSize = "100",
			Clamp = "true"
		}
	},
	{
		Id = "LifeRequirementsItemHadesAlpha",
		LiquidPerTick = {
			Type = "Water",
			Moles = "0.00006"
		},
		Inhaled = {
			{
				Type = "Oxygen",
				Moles = "0.0075",
				Ratio = "0.01"
			},
			{
				Type = "Volatiles",
				Moles = "0.0025",
				Ratio = "0.01"
			}
		},
		Exhaled = {
			Type = "Pollutant",
			Moles = "0.004"
		},
		HarmfulGas = {
			{
				Type = "Pollutant",
				PartialPressure = "1"
			},
			{
				Type = "Volatiles",
				PartialPressure = "1"
			},
			{
				Type = "Silanol",
				PartialPressure = "1"
			},
			{
				Type = "HydrochloricAcid",
				PartialPressure = "0.1"
			},
			{
				Type = "Hydrazine",
				PartialPressure = "0.1"
			}
		},
		WaterUsage = {
			Base = "1"
		},
		GasProduction = {
			Base = "1"
		},
		GrowthSpeedMultiplier = {
			Base = "1"
		},
		TimeUntilDehydrationDamage = {
			Base = "1800"
		},
		TimeUntilUndesiredGasDamage = {
			Base = "300"
		},
		UndesiredGasResistance = {
			Base = "1"
		},
		TimeUntilFrozenDamage = {
			Base = "300"
		},
		TimeUntilOverHeatedDamage = {
			Base = "300"
		},
		TimeUntilSuffocatedDamage = {
			Base = "3600"
		},
		TimeUntilLowPressureDamage = {
			Base = "600"
		},
		TimeUntilHighPressureDamage = {
			Base = "600"
		},
		TimeUntilLightDamage = {
			Base = "3600"
		},
		TimeUntilDarknessDamage = {
			Base = "3600"
		},
		LightPerDay = {
			Base = "600",
			Invert = "true"
		},
		DarknessPerDay = {
			Base = "300",
			Invert = "true"
		},
		GrowTemperatureC = {
			MidPoint = "25",
			CenterSize = "10",
			LowSize = "20",
			HighSize = "20"
		},
		GrowPressure = {
			MidPoint = "75",
			CenterSize = "50",
			LowSize = "25",
			HighSize = "100",
			Clamp = "true"
		}
	},
	{
		Id = "LifeRequirementsItemHadesBeta",
		LiquidPerTick = {
			Type = "Water",
			Moles = "0.00006"
		},
		Inhaled = {
			{
				Type = "Oxygen",
				Moles = "0.0075",
				Ratio = "0.01"
			},
			{
				Type = "Volatiles",
				Moles = "0.0025",
				Ratio = "0.01"
			}
		},
		Exhaled = {
			Type = "Pollutant",
			Moles = "0.0025"
		},
		HarmfulGas = {
			{
				Type = "Pollutant",
				PartialPressure = "1"
			},
			{
				Type = "Volatiles",
				PartialPressure = "1"
			},
			{
				Type = "Silanol",
				PartialPressure = "1"
			},
			{
				Type = "HydrochloricAcid",
				PartialPressure = "0.1"
			},
			{
				Type = "Hydrazine",
				PartialPressure = "0.1"
			}
		},
		WaterUsage = {
			Base = "1"
		},
		GasProduction = {
			Base = "1"
		},
		GrowthSpeedMultiplier = {
			Base = "1"
		},
		TimeUntilDehydrationDamage = {
			Base = "1800"
		},
		TimeUntilUndesiredGasDamage = {
			Base = "300"
		},
		UndesiredGasResistance = {
			Base = "1"
		},
		TimeUntilFrozenDamage = {
			Base = "300"
		},
		TimeUntilOverHeatedDamage = {
			Base = "300"
		},
		TimeUntilSuffocatedDamage = {
			Base = "3600"
		},
		TimeUntilLowPressureDamage = {
			Base = "600"
		},
		TimeUntilHighPressureDamage = {
			Base = "600"
		},
		TimeUntilLightDamage = {
			Base = "3600"
		},
		TimeUntilDarknessDamage = {
			Base = "3600"
		},
		LightPerDay = {
			Base = "600",
			Invert = "true"
		},
		DarknessPerDay = {
			Base = "300",
			Invert = "true"
		},
		GrowTemperatureC = {
			MidPoint = "25",
			CenterSize = "10",
			LowSize = "20",
			HighSize = "20"
		},
		GrowPressure = {
			MidPoint = "75",
			CenterSize = "50",
			LowSize = "25",
			HighSize = "100",
			Clamp = "true"
		}
	}
}

return p