Skip to content

Commit

Permalink
- Fix archaic brick/tile slabs/stairs not having recipes
Browse files Browse the repository at this point in the history
- Version Bump
  • Loading branch information
DaedalusGame committed Jun 16, 2018
1 parent da18cf6 commit 5e14fd9
Show file tree
Hide file tree
Showing 7 changed files with 109 additions and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle
Expand Up @@ -15,7 +15,7 @@ buildscript {
apply plugin: 'net.minecraftforge.gradle.forge'


version = "0.18hotfix"
version = "1.0"
group= "soot" // http://maven.apache.org/guides/mini/guide-naming-conventions.html
archivesBaseName = "Soot"

Expand Down
17 changes: 17 additions & 0 deletions src/main/resources/assets/soot/recipes/slab_archaic_bricks.json
@@ -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 src/main/resources/assets/soot/recipes/slab_archaic_tile.json
@@ -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 src/main/resources/assets/soot/recipes/stairs_archaic_bricks.json
@@ -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 src/main/resources/assets/soot/recipes/stairs_archaic_tile.json
@@ -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 src/main/resources/assets/soot/recipes/unslab_archaic_bricks.json
@@ -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 src/main/resources/assets/soot/recipes/unslab_archaic_tile.json
@@ -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
}
]
}

0 comments on commit 5e14fd9

Please sign in to comment.