forked from space-wizards/space-station-14
-
-
Notifications
You must be signed in to change notification settings - Fork 86
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #916 from Darkmajia/sofa-table-construction
sofa and reinforced wood table construction
- Loading branch information
Showing
5 changed files
with
406 additions
and
57 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
200 changes: 200 additions & 0 deletions
200
Resources/Prototypes/_DeltaV/Recipes/Construction/Graphs/furniture/sofas.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,200 @@ | ||
- type: constructionGraph | ||
id: Sofa | ||
start: start | ||
graph: | ||
- node: start | ||
actions: | ||
- !type:DestroyEntity {} | ||
edges: | ||
- to: SofaMiddle | ||
steps: | ||
- material: Steel | ||
amount: 2 | ||
doAfter: 1 | ||
- material: Cloth | ||
amount: 2 | ||
- to: SofaLeft | ||
steps: | ||
- material: Steel | ||
amount: 2 | ||
doAfter: 1 | ||
- material: Cloth | ||
amount: 2 | ||
- to: SofaRight | ||
steps: | ||
- material: Steel | ||
amount: 2 | ||
doAfter: 1 | ||
- material: Cloth | ||
amount: 2 | ||
- to: SofaCorner | ||
steps: | ||
- material: Steel | ||
amount: 2 | ||
doAfter: 1 | ||
- material: Cloth | ||
amount: 2 | ||
- to: SofaCorpMiddle | ||
steps: | ||
- material: Steel | ||
amount: 2 | ||
doAfter: 1 | ||
- material: Cloth | ||
amount: 2 | ||
- to: SofaCorpLeft | ||
steps: | ||
- material: Steel | ||
amount: 2 | ||
doAfter: 1 | ||
- material: Cloth | ||
amount: 2 | ||
- to: SofaCorpRight | ||
steps: | ||
- material: Steel | ||
amount: 2 | ||
doAfter: 1 | ||
- material: Cloth | ||
amount: 2 | ||
- to: SofaCorpCorner | ||
steps: | ||
- material: Steel | ||
amount: 2 | ||
doAfter: 1 | ||
- material: Cloth | ||
amount: 2 | ||
|
||
- node: SofaMiddle | ||
entity: BenchSofaMiddle | ||
edges: | ||
- to: start | ||
completed: | ||
- !type:SpawnPrototype | ||
prototype: SheetSteel1 | ||
amount: 2 | ||
- !type:SpawnPrototype | ||
prototype: MaterialCloth1 | ||
amount: 2 | ||
steps: | ||
- tool: Cutting | ||
doAfter: 1 | ||
- tool: Screwing | ||
doAfter: 1 | ||
|
||
- node: SofaLeft | ||
entity: BenchSofaLeft | ||
edges: | ||
- to: start | ||
completed: | ||
- !type:SpawnPrototype | ||
prototype: SheetSteel1 | ||
amount: 2 | ||
- !type:SpawnPrototype | ||
prototype: MaterialCloth1 | ||
amount: 2 | ||
steps: | ||
- tool: Cutting | ||
doAfter: 1 | ||
- tool: Screwing | ||
doAfter: 1 | ||
|
||
- node: SofaRight | ||
entity: BenchSofaRight | ||
edges: | ||
- to: start | ||
completed: | ||
- !type:SpawnPrototype | ||
prototype: SheetSteel1 | ||
amount: 2 | ||
- !type:SpawnPrototype | ||
prototype: MaterialCloth1 | ||
amount: 2 | ||
steps: | ||
- tool: Cutting | ||
doAfter: 1 | ||
- tool: Screwing | ||
doAfter: 1 | ||
|
||
- node: SofaCorner | ||
entity: BenchSofaCorner | ||
edges: | ||
- to: start | ||
completed: | ||
- !type:SpawnPrototype | ||
prototype: SheetSteel1 | ||
amount: 2 | ||
- !type:SpawnPrototype | ||
prototype: MaterialCloth1 | ||
amount: 2 | ||
steps: | ||
- tool: Cutting | ||
doAfter: 1 | ||
- tool: Screwing | ||
doAfter: 1 | ||
|
||
- node: SofaCorpMiddle | ||
entity: BenchSofaCorpMiddle | ||
edges: | ||
- to: start | ||
completed: | ||
- !type:SpawnPrototype | ||
prototype: SheetSteel1 | ||
amount: 2 | ||
- !type:SpawnPrototype | ||
prototype: MaterialCloth1 | ||
amount: 2 | ||
steps: | ||
- tool: Cutting | ||
doAfter: 1 | ||
- tool: Screwing | ||
doAfter: 1 | ||
|
||
- node: SofaCorpLeft | ||
entity: BenchSofaCorpLeft | ||
edges: | ||
- to: start | ||
completed: | ||
- !type:SpawnPrototype | ||
prototype: SheetSteel1 | ||
amount: 2 | ||
- !type:SpawnPrototype | ||
prototype: MaterialCloth1 | ||
amount: 2 | ||
steps: | ||
- tool: Cutting | ||
doAfter: 1 | ||
- tool: Screwing | ||
doAfter: 1 | ||
|
||
- node: SofaCorpRight | ||
entity: BenchSofaCorpRight | ||
edges: | ||
- to: start | ||
completed: | ||
- !type:SpawnPrototype | ||
prototype: SheetSteel1 | ||
amount: 2 | ||
- !type:SpawnPrototype | ||
prototype: MaterialCloth1 | ||
amount: 2 | ||
steps: | ||
- tool: Cutting | ||
doAfter: 1 | ||
- tool: Screwing | ||
doAfter: 1 | ||
|
||
- node: SofaCorpCorner | ||
entity: BenchSofaCorpCorner | ||
edges: | ||
- to: start | ||
completed: | ||
- !type:SpawnPrototype | ||
prototype: SheetSteel1 | ||
amount: 2 | ||
- !type:SpawnPrototype | ||
prototype: MaterialCloth1 | ||
amount: 2 | ||
steps: | ||
- tool: Cutting | ||
doAfter: 1 | ||
- tool: Screwing | ||
doAfter: 1 |
Oops, something went wrong.