mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-27 15:01:04 +01:00
e545213323
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>
25 lines
663 B
Plaintext
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()
|