Files
Aurora.3/code/modules/xgm/xgm_gas_mixture_presets.dm
e545213323 Away Site Exoplanet Generation Improvements + Crystal Planet and Cryo Outpost Updates (#19735)
changes:
- rscadd: "Crystal Planet Outpost Update. Adds submaps and exoplanet
generation."
  - rscadd: "Cryo Outpost Update. Updates exoplanet generation."
- rscadd: "Away Site Exoplanet Generation Improvements. Allows setting
atmos for all exoplanet turfs on the map."
- rscadd: "Away Site Exoplanet Generation Improvements. Exoplanet turfs
can have light if they are outside."
- rscadd: "Away Site Exoplanet Generation Improvements. Base Turf fixes,
explosions do not turn turfs into space, and destroying or mining turfs
is generally better handled."

---------

Signed-off-by: DreamySkrell <107256943+DreamySkrell@users.noreply.github.com>
Co-authored-by: DreamySkrell <>
Co-authored-by: Fluffy <65877598+FluffyGhoster@users.noreply.github.com>
2024-12-18 20:44:41 +00:00

25 lines
663 B
Plaintext

/datum/gas_mixture/vacuum
// default/empty values, new type just for clarity/organization
/datum/gas_mixture/earth_standard/New()
..()
adjust_gas(GAS_OXYGEN, MOLES_O2STANDARD, FALSE)
adjust_gas(GAS_NITROGEN, MOLES_N2STANDARD, FALSE)
temperature = T20C
update_values()
/datum/gas_mixture/earth_cold/New()
..()
adjust_gas(GAS_OXYGEN, MOLES_O2STANDARD, FALSE)
adjust_gas(GAS_NITROGEN, MOLES_N2STANDARD, FALSE)
temperature = 258 // around -15C
update_values()
/datum/gas_mixture/earth_hot/New()
..()
adjust_gas(GAS_OXYGEN, MOLES_O2STANDARD, FALSE)
adjust_gas(GAS_NITROGEN, MOLES_N2STANDARD, FALSE)
temperature = 305 // around +32C
update_values()