Convert all non-dynamic recipes to JSON, add ore dictionary support where appropriate and change incorrect "amount" tag to "count", fixes #18
This commit is contained in:
@@ -7,7 +7,8 @@
|
||||
],
|
||||
"key": {
|
||||
"v": {
|
||||
"item": "minecraft:gold_nugget"
|
||||
"type": "forge:ore_dict",
|
||||
"ore": "nuggetGold"
|
||||
},
|
||||
"w": {
|
||||
"item": "minecraft:carpet",
|
||||
@@ -17,7 +18,8 @@
|
||||
"item": "ebwizardry:magic_crystal"
|
||||
},
|
||||
"y": {
|
||||
"item": "minecraft:lapis_block"
|
||||
"type": "forge:ore_dict",
|
||||
"ore": "blockLapis"
|
||||
},
|
||||
"z": {
|
||||
"type": "forge:ore_dict",
|
||||
|
||||
@@ -0,0 +1,14 @@
|
||||
{
|
||||
"type": "minecraft:crafting_shapeless",
|
||||
"ingredients": [
|
||||
{
|
||||
"item": "minecraft:paper"
|
||||
},
|
||||
{
|
||||
"item": "minecraft:string"
|
||||
}
|
||||
],
|
||||
"result": {
|
||||
"item": "ebwizardry:blank_scroll"
|
||||
}
|
||||
}
|
||||
+2
-1
@@ -1,5 +1,6 @@
|
||||
{
|
||||
"type": "minecraft:crafting_shapeless",
|
||||
"group": "magic_crystal",
|
||||
"ingredients": [
|
||||
{
|
||||
"item": "ebwizardry:crystal_block"
|
||||
@@ -7,6 +8,6 @@
|
||||
],
|
||||
"result": {
|
||||
"item": "ebwizardry:magic_crystal",
|
||||
"amount": 9
|
||||
"count": 9
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"type": "minecraft:crafting_shapeless",
|
||||
"group": "magic_crystal",
|
||||
"ingredients": [
|
||||
{
|
||||
"item": "ebwizardry:crystal_flower"
|
||||
}
|
||||
],
|
||||
"result": {
|
||||
"item": "ebwizardry:magic_crystal",
|
||||
"count": 2
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,21 @@
|
||||
{
|
||||
"type": "minecraft:crafting_shapeless",
|
||||
"ingredients": [
|
||||
{
|
||||
"item": "minecraft:blaze_powder"
|
||||
},
|
||||
{
|
||||
"item": "minecraft:blaze_powder"
|
||||
},
|
||||
{
|
||||
"item": "minecraft:glass_bottle"
|
||||
},
|
||||
{
|
||||
"item": "minecraft:gunpowder"
|
||||
}
|
||||
],
|
||||
"result": {
|
||||
"item": "ebwizardry:firebomb",
|
||||
"count": 3
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,20 @@
|
||||
{
|
||||
"type": "minecraft:crafting_shaped",
|
||||
"pattern": [
|
||||
" x ",
|
||||
"xyx",
|
||||
" x "
|
||||
],
|
||||
"key": {
|
||||
"x": {
|
||||
"item": "ebwizardry:magic_crystal"
|
||||
},
|
||||
"y": {
|
||||
"item": "minecraft:book"
|
||||
}
|
||||
},
|
||||
"result": {
|
||||
"item": "ebwizardry:spell_book",
|
||||
"data": 1
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,24 @@
|
||||
{
|
||||
"type": "forge:ore_shaped",
|
||||
"pattern": [
|
||||
" z",
|
||||
" y ",
|
||||
"x "
|
||||
],
|
||||
"key": {
|
||||
"x": {
|
||||
"type": "forge:ore_dict",
|
||||
"ore": "nuggetGold"
|
||||
},
|
||||
"y": {
|
||||
"type": "forge:ore_dict",
|
||||
"ore": "stickWood"
|
||||
},
|
||||
"z": {
|
||||
"item": "ebwizardry:magic_crystal"
|
||||
}
|
||||
},
|
||||
"result": {
|
||||
"item": "ebwizardry:magic_wand"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,21 @@
|
||||
{
|
||||
"type": "minecraft:crafting_shapeless",
|
||||
"ingredients": [
|
||||
{
|
||||
"item": "minecraft:spider_eye"
|
||||
},
|
||||
{
|
||||
"item": "minecraft:spider_eye"
|
||||
},
|
||||
{
|
||||
"item": "minecraft:glass_bottle"
|
||||
},
|
||||
{
|
||||
"item": "minecraft:gunpowder"
|
||||
}
|
||||
],
|
||||
"result": {
|
||||
"item": "ebwizardry:poison_bomb",
|
||||
"count": 3
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,21 @@
|
||||
{
|
||||
"type": "minecraft:crafting_shapeless",
|
||||
"ingredients": [
|
||||
{
|
||||
"item": "minecraft:coal"
|
||||
},
|
||||
{
|
||||
"item": "minecraft:coal"
|
||||
},
|
||||
{
|
||||
"item": "minecraft:glass_bottle"
|
||||
},
|
||||
{
|
||||
"item": "minecraft:gunpowder"
|
||||
}
|
||||
],
|
||||
"result": {
|
||||
"item": "ebwizardry:smoke_bomb",
|
||||
"count": 3
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user