forked from space-wizards/space-station-14
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add new freezer atmos devices and fix freezer fixgridatmos marker (sp…
- Loading branch information
1 parent
5c98da4
commit 75727db
Showing
4 changed files
with
58 additions
and
3 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
29 changes: 29 additions & 0 deletions
29
Resources/Prototypes/Entities/Structures/Specific/Atmospherics/freezer.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,29 @@ | ||
- type: entity | ||
abstract: true | ||
parent: AirSensorBase | ||
id: AirSensorFreezerBase | ||
suffix: Freezer Atmosphere | ||
components: | ||
- type: AtmosMonitor | ||
temperatureThresholdId: freezerTemperature | ||
|
||
- type: entity | ||
parent: [AirSensorFreezerBase, AirSensor] | ||
id: AirSensorFreezer | ||
|
||
- type: entity | ||
parent: [AirSensorFreezerBase, GasVentPump] | ||
id: GasVentPumpFreezer | ||
|
||
- type: entity | ||
parent: [AirSensorFreezerBase, GasVentScrubber] | ||
id: GasVentScrubberFreezer | ||
|
||
# air alarm proto with auto: false to prevent the automatic switching of modes overriding the default values | ||
- type: entity | ||
parent: AirAlarm | ||
id: AirAlarmFreezer | ||
suffix: Freezer Atmosphere, auto mode disabled | ||
components: | ||
- type: AirAlarm | ||
autoMode: false |