White and dark tiles craftable 2: Electric Boogalo! (#6837)

* Uncommented the white and dark tile recipe.

* Added a crafting recipe for white and dark tiles.

* smol fix

* another fix, 6 days late, I wish I wasn't blind

* I can't read, thanks Peptide

* Added construction graphs for white and dark tiles, pascalcased wood and steel tiles

* minor fixes and pascalcase

* Pascalcased wood and steel IDs

* Pascalcase and stuff, also I think fixes?
This commit is contained in:
ninruB
2022-03-05 22:47:19 +02:00
committed by GitHub
parent 90d8ddc764
commit fd4bf1ab69
3 changed files with 68 additions and 30 deletions

View File

@@ -32,7 +32,7 @@
- type: Stack - type: Stack
stackType: FloorTileSteel stackType: FloorTileSteel
- type: Construction - type: Construction
graph: tileSteel graph: TileSteel
node: steeltile node: steeltile
- type: entity - type: entity
@@ -51,7 +51,7 @@
- type: Stack - type: Stack
stackType: FloorTileWood stackType: FloorTileWood
- type: Construction - type: Construction
graph: tileWood graph: TileWood
node: woodtile node: woodtile
- type: entity - type: entity
@@ -69,6 +69,9 @@
- floor_white - floor_white
- type: Stack - type: Stack
stackType: FloorTileWhite stackType: FloorTileWhite
- type: Construction
graph: TileWhite
node: whitetile
- type: entity - type: entity
name: dark tile name: dark tile
@@ -85,6 +88,9 @@
- floor_dark - floor_dark
- type: Stack - type: Stack
stackType: FloorTileDark stackType: FloorTileDark
- type: Construction
graph: TileDark
node: darktile
- type: entity - type: entity
name: techmaint floor name: techmaint floor

View File

@@ -1,5 +1,5 @@
- type: constructionGraph - type: constructionGraph
id: tileSteel id: TileSteel
start: start start: start
graph: graph:
- node: start - node: start
@@ -15,7 +15,7 @@
entity: FloorTileItemSteel entity: FloorTileItemSteel
- type: constructionGraph - type: constructionGraph
id: tileWood id: TileWood
start: start start: start
graph: graph:
- node: start - node: start
@@ -30,3 +30,35 @@
amount: 1 amount: 1
- node: woodtile - node: woodtile
entity: FloorTileItemWood entity: FloorTileItemWood
- type: constructionGraph
id: TileWhite
start: start
graph:
- node: start
edges:
- to: whitetile
completed:
- !type:SetStackCount
amount: 4
steps:
- material: Steel
amount: 1
- node: whitetile
entity: FloorTileItemWhite
- type: constructionGraph
id: TileDark
start: start
graph:
- node: start
edges:
- to: darktile
completed:
- !type:SetStackCount
amount: 4
steps:
- material: Steel
amount: 1
- node: darktile
entity: FloorTileItemDark

View File

@@ -2,8 +2,8 @@
- type: construction - type: construction
name: steel tile name: steel tile
id: tileSteel id: TileSteel
graph: tileSteel graph: TileSteel
startNode: start startNode: start
targetNode: steeltile targetNode: steeltile
category: Tiles category: Tiles
@@ -13,8 +13,8 @@
- type: construction - type: construction
name: wood floor name: wood floor
id: tileWood id: TileWood
graph: tileWood graph: TileWood
startNode: start startNode: start
targetNode: woodtile targetNode: woodtile
category: Tiles category: Tiles
@@ -22,28 +22,28 @@
icon: Objects/Tiles/tile.rsi/wood.png icon: Objects/Tiles/tile.rsi/wood.png
objectType: Item objectType: Item
# - type: construction - type: construction
# name: white tile name: white tile
# id: tileWhite id: TileWhite
# graph: tileWhite graph: TileWhite
# startNode: start startNode: start
# targetNode: whitetile targetNode: whitetile
# category: Tiles category: Tiles
# description: "A white station tile." description: "Four white station tiles."
# icon: Objects/Tiles/tile.rsi/white.png icon: Objects/Tiles/tile.rsi/white.png
# objectType: Item objectType: Item
#
# - type: construction - type: construction
# name: dark tile name: dark tile
# id: tileDark id: TileDark
# graph: tile graph: TileDark
# startNode: start startNode: start
# targetNode: darktile targetNode: darktile
# category: Tiles category: Tiles
# description: "A dark station tile." description: "Four dark station tiles."
# icon: Objects/Tiles/tile.rsi/dark.png icon: Objects/Tiles/tile.rsi/dark.png
# objectType: Item objectType: Item
#
# - type: construction # - type: construction
# name: techmaint floor # name: techmaint floor
# id: tileTechmaint # id: tileTechmaint