Some grinder recipes
This commit is contained in:
parent
aa7464ad4a
commit
6c0f8afa68
9 changed files with 122 additions and 33 deletions
|
@ -155,40 +155,7 @@ public class ModRecipes {
|
|||
// int eutick = 2;
|
||||
// int ticktime = 300;
|
||||
|
||||
// RecipeHandler.addRecipe(Reference.GRINDER_RECIPE, new GrinderRecipe(
|
||||
// new ItemStack(Items.BONE),
|
||||
// new ItemStack(Items.DYE, 6, 15),
|
||||
// 170, 19));
|
||||
|
||||
// RecipeHandler.addRecipe(Reference.GRINDER_RECIPE, new GrinderRecipe(
|
||||
// new ItemStack(Blocks.COBBLESTONE),
|
||||
// new ItemStack(Blocks.SAND),
|
||||
// 230, 23));
|
||||
//
|
||||
// RecipeHandler.addRecipe(Reference.GRINDER_RECIPE, new GrinderRecipe(
|
||||
// new ItemStack(Blocks.GRAVEL),
|
||||
// new ItemStack(Items.FLINT),
|
||||
// 200, 20));
|
||||
|
||||
// RecipeHandler.addRecipe(Reference.GRINDER_RECIPE, new GrinderRecipe(
|
||||
// new ItemStack(Items.COAL),
|
||||
// ItemDusts.getDustByName("coal"),
|
||||
// 230, 27));
|
||||
|
||||
// RecipeHandler.addRecipe(Reference.GRINDER_RECIPE, new GrinderRecipe(
|
||||
// new ItemStack(Items.COAL, 1, 1),
|
||||
// ItemDusts.getDustByName("charcoal"),
|
||||
// 230, 27));
|
||||
//
|
||||
// RecipeHandler.addRecipe(Reference.GRINDER_RECIPE, new GrinderRecipe(
|
||||
// new ItemStack(net.minecraft.init.Items.CLAY_BALL),
|
||||
// ItemDusts.getDustByName("clay"),
|
||||
// 200, 18));
|
||||
//
|
||||
// RecipeHandler.addRecipe(Reference.GRINDER_RECIPE, new GrinderRecipe(
|
||||
// new ItemStack(Blocks.GLOWSTONE),
|
||||
// ItemDusts.getDustByName("glowstone", 4), 220, 21));
|
||||
//
|
||||
// RecipeHandler.addRecipe(Reference.GRINDER_RECIPE, new GrinderRecipe(
|
||||
// new ItemStack(Blocks.NETHERRACK),
|
||||
// ItemDusts.getDustByName("netherrack"),
|
||||
|
|
|
@ -0,0 +1,17 @@
|
|||
{
|
||||
"type": "techreborn:grinder",
|
||||
"power": 20,
|
||||
"time": 170,
|
||||
"ingredients" : [
|
||||
{
|
||||
"item": "minecraft:bone",
|
||||
"count": 2
|
||||
}
|
||||
],
|
||||
"results" : [
|
||||
{
|
||||
"item": "minecraft:bone_meal",
|
||||
"count": 6
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,15 @@
|
|||
{
|
||||
"type": "techreborn:grinder",
|
||||
"power": 27,
|
||||
"time": 230,
|
||||
"ingredients" : [
|
||||
{
|
||||
"item": "minecraft:charcoal"
|
||||
}
|
||||
],
|
||||
"results" : [
|
||||
{
|
||||
"item": "techreborn:charcoal_dust"
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,15 @@
|
|||
{
|
||||
"type": "techreborn:grinder",
|
||||
"power": 18,
|
||||
"time": 180,
|
||||
"ingredients" : [
|
||||
{
|
||||
"item": "minecraft:clay_ball"
|
||||
}
|
||||
],
|
||||
"results" : [
|
||||
{
|
||||
"item": "techreborn:clay_dust"
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,15 @@
|
|||
{
|
||||
"type": "techreborn:grinder",
|
||||
"power": 27,
|
||||
"time": 230,
|
||||
"ingredients" : [
|
||||
{
|
||||
"item": "minecraft:coal"
|
||||
}
|
||||
],
|
||||
"results" : [
|
||||
{
|
||||
"item": "techreborn:coal_dust"
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,15 @@
|
|||
{
|
||||
"type": "techreborn:grinder",
|
||||
"power": 20,
|
||||
"time": 230,
|
||||
"ingredients" : [
|
||||
{
|
||||
"item": "minecraft:cobblestone"
|
||||
}
|
||||
],
|
||||
"results" : [
|
||||
{
|
||||
"item": "minecraft:sand"
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,15 @@
|
|||
{
|
||||
"type": "techreborn:grinder",
|
||||
"power": 18,
|
||||
"time": 220,
|
||||
"ingredients" : [
|
||||
{
|
||||
"item": "minecraft:glowstone"
|
||||
}
|
||||
],
|
||||
"results" : [
|
||||
{
|
||||
"item": "minecraft:glowstone_dust"
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,15 @@
|
|||
{
|
||||
"type": "techreborn:grinder",
|
||||
"power": 20,
|
||||
"time": 200,
|
||||
"ingredients" : [
|
||||
{
|
||||
"item": "minecraft:gravel"
|
||||
}
|
||||
],
|
||||
"results" : [
|
||||
{
|
||||
"item": "minecraft:flint"
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,15 @@
|
|||
{
|
||||
"type": "techreborn:grinder",
|
||||
"power": 18,
|
||||
"time": 300,
|
||||
"ingredients" : [
|
||||
{
|
||||
"item": "minecraft:netherrack"
|
||||
}
|
||||
],
|
||||
"results" : [
|
||||
{
|
||||
"item": "techreborn:netherrack_dust"
|
||||
}
|
||||
]
|
||||
}
|
Loading…
Add table
Reference in a new issue