-
-
Notifications
You must be signed in to change notification settings - Fork 257
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0d9ca57
commit e6e336b
Showing
7 changed files
with
55 additions
and
6 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#define ATMOS_GAS_MONITOR_INPUT_NUCLEIUM "nucleium_in" | ||
#define ATMOS_GAS_MONITOR_OUTPUT_NUCLEIUM "nucleium_out" | ||
#define ATMOS_GAS_MONITOR_SENSOR_NUCLEIUM "nucleium_sensor" |
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,11 @@ | ||
/obj/machinery/computer/atmos_control/tank/nucleium_tank //NSV added nucleium tank console | ||
name = "Nucleium Supply Monitor" | ||
input_tag = ATMOS_GAS_MONITOR_INPUT_NUCLEIUM | ||
output_tag = ATMOS_GAS_MONITOR_OUTPUT_NUCLEIUM | ||
sensors = list(ATMOS_GAS_MONITOR_SENSOR_NUCLEIUM = "Nucleium Tank") | ||
circuit = /obj/item/circuitboard/computer/atmos_control/tank/nucleium_tank | ||
|
||
/obj/machinery/air_sensor/atmos/nucleium_tank //nucleium stuff | ||
name = "nucleium tank gas sensor" | ||
id_tag = ATMOS_GAS_MONITOR_SENSOR_NUCLEIUM | ||
|
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
3 changes: 3 additions & 0 deletions
3
nsv13/code/modules/atmospherics/machinery/components/unary_devices/outlet_injector.dm
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,3 @@ | ||
/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/nucleium_input | ||
name = "nucleium tank input injector" | ||
id = ATMOS_GAS_MONITOR_INPUT_NUCLEIUM |
3 changes: 3 additions & 0 deletions
3
nsv13/code/modules/atmospherics/machinery/components/unary_devices/vent_pump.dm
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,3 @@ | ||
/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/nucleium_output | ||
name = "nucleium tank output inlet" | ||
id_tag = ATMOS_GAS_MONITOR_OUTPUT_NUCLEIUM |