mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-05-17 20:30:46 +01:00
f8333a8d93
* move those to static paths * maps * . * . * ugh * .
64 lines
1.6 KiB
Plaintext
64 lines
1.6 KiB
Plaintext
/datum/decl/xgm_gas/oxygen
|
|
id = GAS_O2
|
|
name = GASNAME_O2
|
|
specific_heat = 20 // J/(mol*K)
|
|
molar_mass = 0.032 // kg/mol
|
|
|
|
flags = XGM_GAS_OXIDIZER
|
|
|
|
/datum/decl/xgm_gas/nitrogen
|
|
id = GAS_N2
|
|
name = GASNAME_N2
|
|
specific_heat = 20 // J/(mol*K)
|
|
molar_mass = 0.028 // kg/mol
|
|
|
|
/datum/decl/xgm_gas/carbon_dioxide
|
|
id = GAS_CO2
|
|
name = GASNAME_CO2
|
|
specific_heat = 30 // J/(mol*K)
|
|
molar_mass = 0.044 // kg/mol
|
|
|
|
/datum/decl/xgm_gas/phoron
|
|
id = GAS_PHORON
|
|
name = GASNAME_PHORON
|
|
|
|
//Note that this has a significant impact on TTV yield.
|
|
//Because it is so high, any leftover phoron soaks up a lot of heat and drops the yield pressure.
|
|
specific_heat = 200 // J/(mol*K)
|
|
|
|
//Hypothetical group 14 (same as carbon), period 8 element.
|
|
//Using multiplicity rule, it's atomic number is 162
|
|
//and following a N/Z ratio of 1.5, the molar mass of a monatomic gas is:
|
|
molar_mass = 0.405 // kg/mol
|
|
|
|
tile_overlay = "phoron"
|
|
overlay_limit = 0.7
|
|
flags = XGM_GAS_FUEL | XGM_GAS_CONTAMINANT | XGM_GAS_FUSION_FUEL //R-UST port, adding XGM_GAS_FUSION_FUEL flag.
|
|
|
|
/datum/decl/xgm_gas/volatile_fuel
|
|
id = GAS_VOLATILE_FUEL
|
|
name = GASNAME_VOLATILE_FUEL
|
|
specific_heat = 253 // J/(mol*K) C8H18 gasoline. Isobaric, but good enough.
|
|
molar_mass = 0.114 // kg/mol. same.
|
|
|
|
flags = XGM_GAS_FUEL
|
|
|
|
/datum/decl/xgm_gas/nitrous_oxide
|
|
id = GAS_N2O
|
|
name = GASNAME_N2O
|
|
specific_heat = 40 // J/(mol*K)
|
|
molar_mass = 0.044 // kg/mol. N2O
|
|
|
|
tile_overlay = "nitrous_oxide"
|
|
overlay_limit = 1
|
|
flags = XGM_GAS_OXIDIZER
|
|
|
|
/datum/decl/xgm_gas/methane
|
|
id = GAS_CH4
|
|
name = GASNAME_CH4
|
|
specific_heat = 34 // J/(mol*K)
|
|
molar_mass = 0.016 // kg/mol
|
|
overlay_limit = 1
|
|
tile_overlay = "miasma"
|
|
flags = XGM_GAS_FUEL
|