Files
Bubberstation/code/datums/atmosphere/planetary.dm
SkyratBot d079c1b719 [MIRROR] reduces the amount of some of lavaland and icemoon gases (#1380)
* reduces the amount of some of lavaland and icemoon gases (#54214)

reduces bz and miasma amounts from lavaland atmos
reduces miasma amount from icemoon

* reduces the amount of some of lavaland and icemoon gases

Co-authored-by: Ghilker <42839747+Ghilker@users.noreply.github.com>
2020-10-19 18:48:43 +01:00

53 lines
1.1 KiB
Plaintext

// Atmos types used for planetary airs
/datum/atmosphere/lavaland
id = LAVALAND_DEFAULT_ATMOS
base_gases = list(
/datum/gas/oxygen=5,
/datum/gas/nitrogen=10,
)
normal_gases = list(
/datum/gas/oxygen=10,
/datum/gas/nitrogen=10,
/datum/gas/carbon_dioxide=10,
)
restricted_gases = list(
/datum/gas/plasma=0.1,
/datum/gas/bz=1.2,
/datum/gas/miasma=1.2,
/datum/gas/water_vapor=0.1,
)
restricted_chance = 50
minimum_pressure = HAZARD_LOW_PRESSURE + 10
maximum_pressure = LAVALAND_EQUIPMENT_EFFECT_PRESSURE - 1
minimum_temp = BODYTEMP_COLD_DAMAGE_LIMIT + 1
maximum_temp = 350
/datum/atmosphere/icemoon
id = ICEMOON_DEFAULT_ATMOS
base_gases = list(
/datum/gas/oxygen=5,
/datum/gas/nitrogen=10,
)
normal_gases = list(
/datum/gas/oxygen=10,
/datum/gas/nitrogen=10,
/datum/gas/carbon_dioxide=10,
)
restricted_gases = list(
/datum/gas/plasma=0.1,
/datum/gas/water_vapor=0.1,
/datum/gas/miasma=1.2,
)
restricted_chance = 50
minimum_pressure = HAZARD_LOW_PRESSURE + 10
maximum_pressure = LAVALAND_EQUIPMENT_EFFECT_PRESSURE - 1
minimum_temp = 180
maximum_temp = 180