forked from space-syndicate/space-station-14
-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* AutoPipes * AutoPipesFix * Update Content.Server/Atmos/Piping/Binary/EntitySystems/GasVolumePumpSystem.cs Co-authored-by: FN <[email protected]> --------- Co-authored-by: FN <[email protected]>
- Loading branch information
1 parent
80eb8ac
commit 9af89d3
Showing
10 changed files
with
123 additions
and
0 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
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
9 changes: 9 additions & 0 deletions
9
...e/ru-RU/ss14-ru/prototypes/_corvaxnext/entities/structures/piping/atmospherics/binary.ftl
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,9 @@ | ||
ent-GasPressurePumpOn = { ent-GasPressurePump } | ||
.desc = { ent-GasPressurePump.desc } | ||
.suffix = ВКЛ | ||
ent-GasPressurePumpOnMax = { ent-GasPressurePump } | ||
.desc = { ent-GasPressurePump.desc } | ||
.suffix = ВКЛ, 4500 | ||
ent-GasVolumePumpOn = { ent-GasVolumePump } | ||
.desc = { ent-GasVolumePump.desc } | ||
.suffix = ВКЛ |
6 changes: 6 additions & 0 deletions
6
.../ru-RU/ss14-ru/prototypes/_corvaxnext/entities/structures/piping/atmospherics/trinary.ftl
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,6 @@ | ||
ent-GasMixerOn = { ent-GasMixer } | ||
.desc = { ent-GasMixer.desc } | ||
.suffix = ВКЛ | ||
ent-GasMixerOnFlipped = { ent-GasMixerFlipped } | ||
.desc = { ent-GasMixerFlipped.desc } | ||
.suffix = ВКЛ, Перевёрнутый |
29 changes: 29 additions & 0 deletions
29
Resources/Prototypes/_CorvaxNext/Entities/Structures/Piping/Atmospherics/binary.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 | ||
parent: GasPressurePump | ||
id: GasPressurePumpOn | ||
suffix: On | ||
placement: | ||
mode: SnapgridCenter | ||
components: | ||
- type: GasPressurePump | ||
startOnMapInit: true | ||
|
||
- type: entity | ||
parent: GasPressurePumpOn | ||
id: GasPressurePumpOnMax | ||
suffix: On, Max | ||
placement: | ||
mode: SnapgridCenter | ||
components: | ||
- type: GasPressurePump | ||
targetPressure: 4500 | ||
|
||
- type: entity | ||
parent: GasVolumePump | ||
id: GasVolumePumpOn | ||
suffix: On | ||
placement: | ||
mode: SnapgridCenter | ||
components: | ||
- type: GasVolumePump | ||
startOnMapInit: true |
16 changes: 16 additions & 0 deletions
16
Resources/Prototypes/_CorvaxNext/Entities/Structures/Piping/Atmospherics/trinary.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,16 @@ | ||
- type: entity | ||
parent: GasMixer | ||
id: GasMixerOn | ||
suffix: On | ||
placement: | ||
mode: SnapgridCenter | ||
components: | ||
- type: GasMixer | ||
startOnMapInit: true | ||
|
||
- type: entity | ||
parent: [GasMixerFlipped, GasMixerOn] | ||
id: GasMixerOnFlipped | ||
suffix: On, Flipped | ||
placement: | ||
mode: SnapgridCenter |