forked from space-wizards/space-station-14
-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
major bug fixes like holy I made it an actually functioning feature (…
…somewhat)
- Loading branch information
Showing
5 changed files
with
108 additions
and
91 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,10 @@ | ||
- type: construction | ||
name: Golem Core | ||
id: GolemCoreConstruction | ||
graph: GolumCoreGraph2 | ||
graph: GolumCoreGraph | ||
startNode: start | ||
targetNode: BaseCore | ||
category: construction-category-utilities | ||
description: A golem core. | ||
icon: { sprite: Structures/Specific/Anomalies/Cores/shadow_core.rsi, state: core } | ||
objectType: Item | ||
tag: BaseCore |
133 changes: 53 additions & 80 deletions
133
Resources/Prototypes/_Harmony/Recipes/GolemCores/Graphs/Core.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 |
---|---|---|
@@ -1,117 +1,90 @@ | ||
- type: constructionGraph | ||
id: GolumCoreGraph2 | ||
id: GolumCoreGraph | ||
start: start | ||
graph: | ||
- node: start | ||
edges: | ||
- to: BaseCore | ||
steps: | ||
- tag: AnomalyCoreRock | ||
- tag: AnomCore | ||
name: Anomaly Core | ||
icon: | ||
sprite: Structures/Specific/Anomalies/Cores/shadow_core.rsi | ||
state: core | ||
doAfter: 1 | ||
- type: constructionGraph | ||
id: GolumCoreGraphExpansion | ||
start: BaseCore | ||
graph: | ||
- node: BaseCore | ||
entity: GolemCoreAdamantium | ||
edges: | ||
|
||
- to: PlasmaCore | ||
steps: | ||
- material: Steel | ||
amount: 10 | ||
doAfter: 1 | ||
|
||
- to: UraniumCore | ||
- tag: SheetUranium | ||
name: Uranium Sheet | ||
amount: 10 | ||
icon: | ||
sprite: Objects/Materials/Sheets/other.rsi | ||
state: uranium_3 | ||
doAfter: 1 | ||
steps: | ||
- material: Uranium | ||
amount: 10 | ||
doAfter: 1 | ||
|
||
- to: PlasmaCore | ||
- tag: SheetPlasma | ||
name: Plasma Sheet | ||
amount: 10 | ||
icon: | ||
sprite: Objects/Materials/Sheets/other.rsi | ||
state: plasma_3 | ||
doAfter: 1 | ||
steps: | ||
- material: Plasma | ||
amount: 10 | ||
doAfter: 1 | ||
|
||
- to: GlassCore | ||
- tag: SheetGlass | ||
name: Glass Sheet | ||
amount: 10 | ||
icon: | ||
sprite: Objects/Materials/Sheets/glass.rsi | ||
state: Glass_3 | ||
doAfter: 1 | ||
steps: | ||
- material: Glass | ||
amount: 10 | ||
doAfter: 1 | ||
|
||
- to: GoldCore | ||
- tag: IngotGold | ||
name: Gold Ingot | ||
amount: 10 | ||
icon: | ||
sprite: Objects/Materials/ingots.rsi | ||
state: gold_3 | ||
doAfter: 1 | ||
|
||
- to: SilverCore | ||
- tag: IngotSilver | ||
name: Silver Ingot | ||
amount: 10 | ||
icon: | ||
sprite: Objects/Materials/ingots.rsi | ||
state: silver_3 | ||
doAfter: 1 | ||
steps: | ||
- material: Gold | ||
amount: 10 | ||
doAfter: 1 | ||
|
||
- to: SilverCore | ||
- tag: IngotSilver | ||
name: Silver Ingot | ||
amount: 10 | ||
icon: | ||
sprite: Objects/Materials/ingots.rsi | ||
state: silver_3 | ||
doAfter: 1 | ||
steps: | ||
- material: Silver | ||
amount: 10 | ||
doAfter: 1 | ||
|
||
- to: DiamondCore | ||
- tag: MaterialDiamond | ||
name: Diamond | ||
amount: 10 | ||
icon: | ||
sprite: Objects/Materials/ingots.rsi | ||
state: silver_3 | ||
doAfter: 1 | ||
steps: | ||
- material: Diamond | ||
amount: 10 | ||
doAfter: 1 | ||
|
||
- to: BananiumCore | ||
- tag: MaterialBananium | ||
name: Bananium | ||
amount: 10 | ||
icon: | ||
sprite: Objects/Materials/materials.rsi | ||
state: bananium_1 | ||
doAfter: 1 | ||
steps: | ||
- material: Bananium | ||
amount: 10 | ||
doAfter: 1 | ||
|
||
- node: SteelCore | ||
entity: GolemCoreSteel | ||
- node: SteelCore | ||
entity: GolemCoreSteel | ||
|
||
- node: UraniumCore | ||
entity: GolemCoreUranium | ||
- node: UraniumCore | ||
entity: GolemCoreUranium | ||
|
||
- node: PlasmaCore | ||
entity: GolemCorePlasma | ||
- node: PlasmaCore | ||
entity: GolemCorePlasma | ||
|
||
- node: GlassCore | ||
entity: GolemCorePlasma | ||
- node: GlassCore | ||
entity: GolemCoreGlass | ||
|
||
- node: GoldCore | ||
entity: GolemCorePlasma | ||
- node: GoldCore | ||
entity: GolemCoreGold | ||
|
||
- node: SilverCore | ||
entity: GolemCorePlasma | ||
- node: SilverCore | ||
entity: GolemCoreSilver | ||
|
||
- node: DiamondCore | ||
entity: GolemCorePlasma | ||
- node: DiamondCore | ||
entity: GolemCoreDiamond | ||
|
||
- node: BananiumCore | ||
entity: GolemCorePlasma | ||
- node: BananiumCore | ||
entity: GolemCoreBananium | ||
|
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 |
---|---|---|
|
@@ -3,3 +3,5 @@ | |
id: ClothingShoesGaloshes | ||
- type: Tag | ||
id: ClothingShoesDuckyGaloshes | ||
- type: Tag | ||
id: AnomCore |