Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[FIX] Удаляем из РРТ вентиляторы #917

Merged
merged 1 commit into from
Dec 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Resources/Prototypes/ADT/Entities/Objects/Tools/tools.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
- ADTGasVentPump
- ADTGasValve
- ADTGasVentScrubber
- ADTAtmosDeviceFanTiny
# - ADTAtmosDeviceFanTiny Удалено в целях баланса
- ADTGasPassiveGate
- ADTGasDualPortVentPump
- ADTSignalControlledValve
Expand Down
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 Resources/Prototypes/ADT/Recipes/Construction/utilities.yml
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
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,11 @@
delay: 2
fx: EffectRCDDeconstruct2
# ADT-RPD-End
# ADT-Tweak-Start
- type: Construction
graph: ADTFan
node: litleFan
# ADT-Tweak-End

- type: entity
id: AtmosDeviceFanDirectional
Expand Down Expand Up @@ -60,3 +65,8 @@
- type: Tag
tags:
- SpreaderIgnore
# ADT-Tweak-Start
- type: Construction
graph: ADTFan
node: directionalFan
# ADT-Tweak-End
Loading