added lipoifium

This commit is contained in:
Swan
2024-12-12 18:04:52 +01:00
parent 4c43ea5bb0
commit 662aba8e00
4 changed files with 24 additions and 0 deletions
@@ -0,0 +1,4 @@
/datum/gas/lipoifium
id = GAS_FAT
specific_heat = 20
name = "Lipoifium"
@@ -0,0 +1,16 @@
/datum/gas_reaction/lipoifium_formation
priority = 12345
name = "Lipoifium Formation"
id = "lipoifium_formation"
/datum/gas_reaction/lipoifium_formation/init_reqs()
min_requirements = list(
GAS_PLASMA = 20,
GAS_N2 = 20
)
/datum/gas_reaction/lipoifium_formation/react(datum/gas_mixture/air)
//var/temperature = air.return_temperature()
air.adjust_moles(GAS_FAT, 1)
air.adjust_moles(GAS_PLASMA, -1)
air.adjust_moles(GAS_N2, -1)