Makes gasses use defines (#75542)

## About The Pull Request

Adds defines for gasses and replaces uses I've found to instead use the
defines.

Can you believe I made this PR while trying to work with Xenos? This
sucks!

## Why It's Good For The Game

There's a lot of different uses of things like "o2" and "plasma", and
they are pretty inconsistent. In some places, it's "hydrogen", in others
it's "h2". In some it's "plasma", others "plasm". This unifies it all
under defines so it has a less chance of breaking in the future.

## Changelog

Nothing player-facing.
This commit is contained in:
John Willard
2023-05-27 19:45:22 -04:00
committed by GitHub
parent 7c698bc9ed
commit 0c99bd28f4
43 changed files with 213 additions and 211 deletions
@@ -1,7 +1,7 @@
/// ## A bunch of turf subtypes used to really make this ruin work.
/// Define of the specific gas mix we want across all of the turfs.
#define CO2_PRESSURIZED_MIX "o2=22;n2=82;co2=500;TEMP=293.15"
#define CO2_PRESSURIZED_MIX GAS_O2 + "=22;" + GAS_N2 + "=82;" + GAS_CO2 + "=500;TEMP=T20C"
/turf/open/floor/iron/co2_pressurized
initial_gas_mix = CO2_PRESSURIZED_MIX