mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-04 14:01:22 +00:00
* 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>
53 lines
1.1 KiB
Plaintext
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
|
|
|