-
Notifications
You must be signed in to change notification settings - Fork 361
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add atmos stuff for mapping vox boxes (#1668)
* add 101kpa nitrogen fixgridatmos marker * make a lot of things datafields so they save and can be set in yml * add vox box scrubber/filter/sensor/alarm * move some stuff to deltav folder, add deltav comments to the fixgridatmos mixture --------- Co-authored-by: deltanedas <@deltanedas:kde.org>
- Loading branch information
1 parent
eea69d0
commit 6dc5ff7
Showing
7 changed files
with
98 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 8 additions & 0 deletions
8
Resources/Prototypes/DeltaV/Entities/Markers/atmos_blocker.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
- type: entity | ||
parent: AtmosFixNitrogenMarker | ||
id: AtmosFixVoxMarker | ||
suffix: Vox Atmosphere | ||
description: "Nitrogen @ 101 kpa, T20C" | ||
components: | ||
- type: AtmosFixMarker | ||
mode: 7 |
50 changes: 50 additions & 0 deletions
50
Resources/Prototypes/DeltaV/Entities/Structures/Specific/Atmospherics/vox.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
- type: entity | ||
abstract: true | ||
parent: AirSensorBase | ||
id: AirSensorVoxBase | ||
suffix: Vox Atmosphere | ||
components: | ||
- type: AtmosMonitor | ||
gasThresholdPrototypes: | ||
Oxygen: voxOxygen | ||
Nitrogen: voxNitrogen | ||
CarbonDioxide: stationCO2 | ||
Plasma: stationPlasma | ||
Tritium: stationTritium | ||
WaterVapor: stationWaterVapor | ||
Ammonia: stationAmmonia | ||
NitrousOxide: stationNO | ||
Frezon: danger | ||
|
||
- type: entity | ||
parent: [AirSensorVoxBase, AirSensor] | ||
id: AirSensorVox | ||
|
||
- type: entity | ||
parent: [AirSensorVoxBase, GasVentPump] | ||
id: GasVentPumpVox | ||
|
||
- type: entity | ||
parent: [AirSensorVoxBase, GasVentScrubber] | ||
id: GasVentScrubberVox | ||
components: | ||
- type: GasVentScrubber | ||
wideNet: true # Air alarm with auto mode overrides filters with hardcoded defaults so default to widenet | ||
filterGases: | ||
- Oxygen # filter out oxygen as well as regular harmful gases | ||
- CarbonDioxide | ||
- Plasma | ||
- Tritium | ||
- WaterVapor | ||
- Ammonia | ||
- NitrousOxide | ||
- Frezon | ||
|
||
# use this to prevent overriding filters with hardcoded defaults | ||
- type: entity | ||
parent: AirAlarm | ||
id: AirAlarmVox | ||
suffix: Vox Atmosphere, auto mode disabled | ||
components: | ||
- type: AirAlarm | ||
autoMode: false |