Files
Bubberstation/code/game/machinery/computer/atmos_computers/__identifiers.dm
klorpa d2c7806047 Spelling and Grammar Fixes (#85992)
## About The Pull Request
Fixes several errors to spelling, grammar, and punctuation.
## Why It's Good For The Game
## Changelog
🆑
spellcheck: fixed a few typos
/🆑
2024-08-21 17:07:02 +12:00

74 lines
3.3 KiB
Plaintext

// ATMOSIA GAS MONITOR SUITE TAGS
// Things that use these include atmos control monitors, sensors, inputs, and outlets.
// They last three adds _sensor, _in, and _out respectively to the id_tag variable.
// Don't put underscores here, we use them as delimiters.
#define ATMOS_GAS_MONITOR_O2 GAS_O2
#define ATMOS_GAS_MONITOR_PLAS GAS_PLASMA
#define ATMOS_GAS_MONITOR_AIR GAS_AIR
#define ATMOS_GAS_MONITOR_MIX "mix"
#define ATMOS_GAS_MONITOR_N2O GAS_N2O
#define ATMOS_GAS_MONITOR_N2 GAS_N2
#define ATMOS_GAS_MONITOR_CO2 GAS_CO2
#define ATMOS_GAS_MONITOR_BZ GAS_BZ
#define ATMOS_GAS_MONITOR_FREON GAS_FREON
#define ATMOS_GAS_MONITOR_HALON GAS_HALON
#define ATMOS_GAS_MONITOR_HEALIUM GAS_HEALIUM
#define ATMOS_GAS_MONITOR_H2 GAS_HYDROGEN
#define ATMOS_GAS_MONITOR_HYPERNOBLIUM GAS_HYPER_NOBLIUM
#define ATMOS_GAS_MONITOR_MIASMA GAS_MIASMA
#define ATMOS_GAS_MONITOR_NITRIUM GAS_NITRIUM
#define ATMOS_GAS_MONITOR_PLUOXIUM GAS_PLUOXIUM
#define ATMOS_GAS_MONITOR_PROTO_NITRATE GAS_PROTO_NITRATE
#define ATMOS_GAS_MONITOR_TRITIUM GAS_TRITIUM
#define ATMOS_GAS_MONITOR_H2O GAS_WATER_VAPOR
#define ATMOS_GAS_MONITOR_ZAUKER GAS_ZAUKER
#define ATMOS_GAS_MONITOR_HELIUM GAS_HEALIUM
#define ATMOS_GAS_MONITOR_ANTINOBLIUM GAS_ANTINOBLIUM
#define ATMOS_GAS_MONITOR_INCINERATOR "incinerator"
#define ATMOS_GAS_MONITOR_ORDNANCE_BURN "ordnanceburn"
#define ATMOS_GAS_MONITOR_ORDNANCE_FREEZER "ordnancefreezer"
#define ATMOS_GAS_MONITOR_DISTRO "distro"
#define ATMOS_GAS_MONITOR_WASTE "waste"
#define ATMOS_GAS_MONITOR_ENGINE "engine"
///maps an air sensor's chamber id to its input valve[ i.e. outlet_injector] id
#define CHAMBER_INPUT_FROM_ID(chamber_id) ((chamber_id) + "_in")
///maps an air sensor's chamber id to its output valve[i.e. vent pump] id
#define CHAMBER_OUTPUT_FROM_ID(chamber_id) ((chamber_id) + "_out")
///list of all air sensor's created round start
GLOBAL_LIST_EMPTY(map_loaded_sensors)
// Human-readble names of these funny tags.
GLOBAL_LIST_INIT(station_gas_chambers, list(
ATMOS_GAS_MONITOR_O2 = "Oxygen Supply",
ATMOS_GAS_MONITOR_PLAS = "Plasma Supply",
ATMOS_GAS_MONITOR_AIR = "Mixed Air Supply",
ATMOS_GAS_MONITOR_N2O = "Nitrous Oxide Supply",
ATMOS_GAS_MONITOR_N2 = "Nitrogen Supply",
ATMOS_GAS_MONITOR_CO2 = "Carbon Dioxide Supply",
ATMOS_GAS_MONITOR_BZ = "BZ Supply",
ATMOS_GAS_MONITOR_FREON = "Freon Supply",
ATMOS_GAS_MONITOR_HALON = "Halon Supply",
ATMOS_GAS_MONITOR_HEALIUM = "Healium Supply",
ATMOS_GAS_MONITOR_H2 = "Hydrogen Supply",
ATMOS_GAS_MONITOR_HYPERNOBLIUM = "Hypernoblium Supply",
ATMOS_GAS_MONITOR_MIASMA = "Miasma Supply",
ATMOS_GAS_MONITOR_NITRIUM = "Nitrium Supply",
ATMOS_GAS_MONITOR_PLUOXIUM = "Pluoxium Supply",
ATMOS_GAS_MONITOR_PROTO_NITRATE = "Proto-Nitrate Supply",
ATMOS_GAS_MONITOR_TRITIUM = "Tritium Supply",
ATMOS_GAS_MONITOR_H2O = "Water Vapor Supply",
ATMOS_GAS_MONITOR_ZAUKER = "Zauker Supply",
ATMOS_GAS_MONITOR_HELIUM = "Helium Supply",
ATMOS_GAS_MONITOR_ANTINOBLIUM = "Antinoblium Supply",
ATMOS_GAS_MONITOR_MIX = "Mix Chamber",
ATMOS_GAS_MONITOR_INCINERATOR = "Incinerator Chamber",
ATMOS_GAS_MONITOR_ORDNANCE_BURN = "Ordnance Burn Chamber",
ATMOS_GAS_MONITOR_ORDNANCE_FREEZER = "Ordnance Freezer Chamber",
ATMOS_GAS_MONITOR_DISTRO = "Distribution Loop",
ATMOS_GAS_MONITOR_WASTE = "Waste Loop",
ATMOS_GAS_MONITOR_ENGINE = "Supermatter Engine Chamber",
))