forked from DaedalusGame/Soot
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Fix archaic brick/tile slabs/stairs not having recipes
- Version Bump
- Loading branch information
1 parent
da18cf6
commit 5e14fd9
Showing
7 changed files
with
109 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
17 changes: 17 additions & 0 deletions
17
src/main/resources/assets/soot/recipes/slab_archaic_bricks.json
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,17 @@ | ||
{ | ||
"result": { | ||
"item": "soot:archaic_bricks_slab", | ||
"count": 6, | ||
"data": 0 | ||
}, | ||
"pattern": [ | ||
"AAA" | ||
], | ||
"type": "forge:ore_shaped", | ||
"key": { | ||
"A": { | ||
"item": "embers:archaic_bricks", | ||
"data": 0 | ||
} | ||
} | ||
} |
17 changes: 17 additions & 0 deletions
17
src/main/resources/assets/soot/recipes/slab_archaic_tile.json
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,17 @@ | ||
{ | ||
"result": { | ||
"item": "soot:archaic_tile_slab", | ||
"count": 6, | ||
"data": 0 | ||
}, | ||
"pattern": [ | ||
"AAA" | ||
], | ||
"type": "forge:ore_shaped", | ||
"key": { | ||
"A": { | ||
"item": "embers:archaic_tile", | ||
"data": 0 | ||
} | ||
} | ||
} |
19 changes: 19 additions & 0 deletions
19
src/main/resources/assets/soot/recipes/stairs_archaic_bricks.json
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,19 @@ | ||
{ | ||
"result": { | ||
"item": "soot:archaic_bricks_stairs", | ||
"count": 4, | ||
"data": 0 | ||
}, | ||
"pattern": [ | ||
"A ", | ||
"AA ", | ||
"AAA" | ||
], | ||
"type": "forge:ore_shaped", | ||
"key": { | ||
"A": { | ||
"item": "embers:archaic_bricks", | ||
"data": 0 | ||
} | ||
} | ||
} |
19 changes: 19 additions & 0 deletions
19
src/main/resources/assets/soot/recipes/stairs_archaic_tile.json
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,19 @@ | ||
{ | ||
"result": { | ||
"item": "soot:archaic_tile_stairs", | ||
"count": 4, | ||
"data": 0 | ||
}, | ||
"pattern": [ | ||
"A ", | ||
"AA ", | ||
"AAA" | ||
], | ||
"type": "forge:ore_shaped", | ||
"key": { | ||
"A": { | ||
"item": "embers:archaic_tile", | ||
"data": 0 | ||
} | ||
} | ||
} |
18 changes: 18 additions & 0 deletions
18
src/main/resources/assets/soot/recipes/unslab_archaic_bricks.json
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,18 @@ | ||
{ | ||
"result": { | ||
"item": "embers:archaic_bricks", | ||
"count": 1, | ||
"data": 0 | ||
}, | ||
"type": "forge:ore_shapeless", | ||
"ingredients": [ | ||
{ | ||
"item": "soot:archaic_bricks_slab", | ||
"data": 0 | ||
}, | ||
{ | ||
"item": "soot:archaic_bricks_slab", | ||
"data": 0 | ||
} | ||
] | ||
} |
18 changes: 18 additions & 0 deletions
18
src/main/resources/assets/soot/recipes/unslab_archaic_tile.json
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,18 @@ | ||
{ | ||
"result": { | ||
"item": "embers:archaic_tile", | ||
"count": 1, | ||
"data": 0 | ||
}, | ||
"type": "forge:ore_shapeless", | ||
"ingredients": [ | ||
{ | ||
"item": "soot:archaic_tile_slab", | ||
"data": 0 | ||
}, | ||
{ | ||
"item": "soot:archaic_tile_slab", | ||
"data": 0 | ||
} | ||
] | ||
} |