-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[FIX] Удаляем из РРТ вентиляторы (#917)
## Описание PR Удалил из меню РРТ вентилятор Добавил крафты в меню крафта для маленького вентилятора и для вентилятора направленного ## Почему / Баланс Чтобы не ломали атмосферу на станции и получали другие избыточные плюшки, спамя вентилями :cl: Петр - remove: Из меню РРТ удален крафт вентилятора. Причина - спам ими на станции и вызываемые этим проблемы. - add: В меню крафта в раздел "утилиты" добавлены крафты для малого вентилятора и направленного вентилятора.
- Loading branch information
Showing
4 changed files
with
91 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
52 changes: 52 additions & 0 deletions
52
Resources/Prototypes/ADT/Recipes/Construction/Graph/utilities/tiny_fan.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,52 @@ | ||
- type: constructionGraph | ||
id: ADTFan | ||
start: start | ||
graph: | ||
- node: start | ||
edges: | ||
- to: litleFan | ||
steps: | ||
- material: Plasteel | ||
amount: 10 | ||
doAfter: 5 | ||
- to: directionalFan | ||
steps: | ||
- material: Plasteel | ||
amount: 10 | ||
doAfter: 5 | ||
|
||
- node: litleFan | ||
entity: AtmosDeviceFanTiny | ||
edges: | ||
- to: start | ||
# conditions: | ||
# - !type:EntityAnchored | ||
# anchored: false | ||
completed: | ||
- !type:SpawnPrototype | ||
prototype: SheetPlasteel1 | ||
amount: 6 | ||
- !type:DeleteEntity | ||
steps: | ||
- tool: Screwing | ||
doAfter: 5 | ||
- tool: Welding | ||
doAfter: 5 | ||
|
||
- node: directionalFan | ||
entity: AtmosDeviceFanDirectional | ||
edges: | ||
- to: start | ||
# conditions: | ||
# - !type:EntityAnchored | ||
# anchored: false | ||
completed: | ||
- !type:SpawnPrototype | ||
prototype: SheetPlasteel1 | ||
amount: 6 | ||
- !type:DeleteEntity | ||
steps: | ||
- tool: Screwing | ||
doAfter: 5 | ||
- tool: Welding | ||
doAfter: 5 |
28 changes: 28 additions & 0 deletions
28
Resources/Prototypes/ADT/Recipes/Construction/utilities.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,28 @@ | ||
# FAN | ||
- type: construction | ||
name: little fan | ||
id: ADTLitleFan | ||
description: Fan to hold the air in and space outside. | ||
graph: ADTFan | ||
startNode: start | ||
targetNode: litleFan | ||
category: construction-category-utilities | ||
placementMode: SnapgridCenter | ||
canBuildInImpassable: false | ||
icon: | ||
sprite: Structures/Piping/Atmospherics/tinyfan.rsi | ||
state: icon | ||
|
||
- type: construction | ||
name: little directional fan | ||
id: ADTLitleDirectionalFan | ||
description: Fan to hold the air in and space outside. | ||
graph: ADTFan | ||
startNode: start | ||
targetNode: directionalFan | ||
category: construction-category-utilities | ||
placementMode: SnapgridCenter | ||
canBuildInImpassable: false | ||
icon: | ||
sprite: Structures/Piping/Atmospherics/directionalfan.rsi | ||
state: icon |
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