-
Notifications
You must be signed in to change notification settings - Fork 407
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Vox atmosphere marker, vents, and air alarms
- Loading branch information
deltanedas
committed
Aug 26, 2024
1 parent
09d5fe3
commit 4effb1d
Showing
4 changed files
with
77 additions
and
1 deletion.
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
50 changes: 50 additions & 0 deletions
50
Resources/Prototypes/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 |