Skip to content

Commit

Permalink
Entries Fixed, must remove duplicates tomorrow though
Browse files Browse the repository at this point in the history
  • Loading branch information
Nieadni committed Aug 22, 2023
1 parent f5b502c commit 7204cd9
Show file tree
Hide file tree
Showing 17 changed files with 253 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,41 +5,41 @@
"pages": [
{
"type": "patchouli:crafting",
"recipe": "unordinary_basics:andesite_bricks",
"recipe": "unordinary_basics:storage/pack/andesite_bricks",

"type2": "patchouli:crafting",
"recipe2": "unordinary_basics:polished_andesite_bricks"
"recipe2": "unordinary_basics:storage/pack/polished_andesite_bricks"
},
{
"type": "patchouli:crafting",
"recipe": "unordinary_basics:diorite_bricks",
"recipe": "unordinary_basics:storage/pack/diorite_bricks",

"type2": "patchouli:crafting",
"recipe2": "unordinary_basics:polished_diorite_bricks"
"recipe2": "unordinary_basics:storage/pack/polished_diorite_bricks"
},



{
"type": "patchouli:crafting",
"recipe": "unordinary_basics:calcite_bricks",
"recipe": "unordinary_basics:storage/pack/calcite_bricks",

"type2": "patchouli:crafting",
"recipe2": "unordinary_basics:dripstone_bricks"
"recipe2": "unordinary_basics:storage/pack/dripstone_bricks"
},
{
"type": "patchouli:crafting",
"recipe": "unordinary_basics:granite_bricks",
"recipe": "unordinary_basics:storage/pack/granite_bricks",

"type2": "patchouli:crafting",
"recipe2": "unordinary_basics:polished_granite_bricks"
"recipe2": "unordinary_basics:storage/pack/polished_granite_bricks"
},



{
"type": "patchouli:crafting",
"recipe": "unordinary_basics:tuff_bricks",
"recipe": "unordinary_basics:storage/pack/tuff_bricks",

"type2": "patchouli:empty"
},
Expand All @@ -48,14 +48,14 @@
"recipe": "unordinary_basics:polished_tuff",

"type2": "patchouli:crafting",
"recipe2": "unordinary_basics:polished_tuff_bricks"
"recipe2": "unordinary_basics:storage/pack/polished_tuff_bricks"
},



{
"type": "patchouli:crafting",
"recipe": "unordinary_basics:soul_sandstone",
"recipe": "unordinary_basics:storage/pack/soul_sandstone",

"type2": "patchouli:crafting",
"recipe2": "unordinary_basics:cut_soul_sandstone"
Expand All @@ -71,14 +71,14 @@

{
"type": "patchouli:crafting",
"recipe": "unordinary_basics:sandstone_bricks",
"recipe": "unordinary_basics:storage/pack/sandstone_bricks",

"type2": "patchouli:crafting",
"recipe2": "unordinary_basics:red_sandstone_bricks"
"recipe2": "unordinary_basics:storage/pack/red_sandstone_bricks"
},
{
"type": "patchouli:crafting",
"recipe": "unordinary_basics:soul_sandstone_bricks",
"recipe": "unordinary_basics:storage/pack/soul_sandstone_bricks",

"type2": "patchouli:empty"
}
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"type": "minecraft:crafting_shaped",
"key": {
"#": {
"item": "unordinary_basics:soul_sandstone"
}
},
"pattern": [
"##",
"##"
],
"result": {
"item": "unordinary_basics:cut_soul_sandstone"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"type": "minecraft:crafting_shaped",
"key": {
"X": {
"item": "minecraft:andesite"
}
},
"pattern": [
"XXX",
"XXX",
"XXX"
],
"result": {
"item": "unordinary_basics:andesite_bricks"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"type": "minecraft:crafting_shaped",
"key": {
"X": {
"item": "minecraft:calcite"
}
},
"pattern": [
"XXX",
"XXX",
"XXX"
],
"result": {
"item": "unordinary_basics:calcite_bricks"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"type": "minecraft:crafting_shaped",
"key": {
"X": {
"item": "minecraft:diorite"
}
},
"pattern": [
"XXX",
"XXX",
"XXX"
],
"result": {
"item": "unordinary_basics:diorite_bricks"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"type": "minecraft:crafting_shaped",
"key": {
"X": {
"item": "minecraft:dripstone_block"
}
},
"pattern": [
"XXX",
"XXX",
"XXX"
],
"result": {
"item": "unordinary_basics:dripstone_bricks"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"type": "minecraft:crafting_shaped",
"key": {
"X": {
"item": "minecraft:granite"
}
},
"pattern": [
"XXX",
"XXX",
"XXX"
],
"result": {
"item": "unordinary_basics:granite_bricks"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"type": "minecraft:crafting_shaped",
"key": {
"X": {
"item": "minecraft:polished_andesite"
}
},
"pattern": [
"XXX",
"XXX",
"XXX"
],
"result": {
"item": "unordinary_basics:polished_andesite_bricks"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"type": "minecraft:crafting_shaped",
"key": {
"X": {
"item": "minecraft:polished_diorite"
}
},
"pattern": [
"XXX",
"XXX",
"XXX"
],
"result": {
"item": "unordinary_basics:polished_diorite_bricks"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"type": "minecraft:crafting_shaped",
"key": {
"X": {
"item": "minecraft:polished_granite"
}
},
"pattern": [
"XXX",
"XXX",
"XXX"
],
"result": {
"item": "unordinary_basics:polished_granite_bricks"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"type": "minecraft:crafting_shaped",
"key": {
"X": {
"item": "unordinary_basics:polished_tuff"
}
},
"pattern": [
"XXX",
"XXX",
"XXX"
],
"result": {
"item": "unordinary_basics:polished_tuff_bricks"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"type": "minecraft:crafting_shaped",
"key": {
"X": {
"item": "minecraft:red_sandstone"
}
},
"pattern": [
"XXX",
"XXX",
"XXX"
],
"result": {
"item": "unordinary_basics:red_sandstone_bricks"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"type": "minecraft:crafting_shaped",
"key": {
"X": {
"item": "minecraft:sandstone"
}
},
"pattern": [
"XXX",
"XXX",
"XXX"
],
"result": {
"item": "unordinary_basics:sandstone_bricks"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"type": "minecraft:crafting_shaped",
"key": {
"X": {
"item": "minecraft:soul_sand"
}
},
"pattern": [
"XXX",
"XXX",
"XXX"
],
"result": {
"item": "unordinary_basics:soul_sandstone"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"type": "minecraft:crafting_shaped",
"key": {
"X": {
"item": "unordinary_basics:soul_sandstone"
}
},
"pattern": [
"XXX",
"XXX",
"XXX"
],
"result": {
"item": "unordinary_basics:soul_sandstone_bricks"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"type": "minecraft:crafting_shaped",
"key": {
"X": {
"item": "minecraft:tuff"
}
},
"pattern": [
"XXX",
"XXX",
"XXX"
],
"result": {
"item": "unordinary_basics:tuff_bricks"
}
}

0 comments on commit 7204cd9

Please sign in to comment.