Some blast furnace recipes
This commit is contained in:
parent
e4c2f1be6d
commit
661698593e
15 changed files with 247 additions and 22 deletions
|
@ -33,32 +33,20 @@ import net.minecraft.item.ItemStack;
|
||||||
public class BlastFurnaceRecipes extends RecipeMethods {
|
public class BlastFurnaceRecipes extends RecipeMethods {
|
||||||
|
|
||||||
public static void init() {
|
public static void init() {
|
||||||
// register(ItemDusts.getDustByName("titanium"), null, ItemIngots.getIngotByName("titanium"), null, 3600, 1500);
|
|
||||||
// register(ItemDustsSmall.getSmallDustByName("titanium", 4), null, ItemIngots.getIngotByName("titanium"), null,
|
|
||||||
// 3600, 1500);
|
|
||||||
// register(ItemDusts.getDustByName("aluminum"), null, ItemIngots.getIngotByName("aluminum"), null, 2200, 1700);
|
|
||||||
// register(ItemDustsSmall.getSmallDustByName("aluminum", 4), null, ItemIngots.getIngotByName("aluminum"), null,
|
|
||||||
// 2200, 1700);
|
|
||||||
// register(ItemDusts.getDustByName("tungsten"), null, ItemIngots.getIngotByName("tungsten"), null, 1800, 2500);
|
|
||||||
// register(ItemDustsSmall.getSmallDustByName("tungsten", 4), null, ItemIngots.getIngotByName("tungsten"), null,
|
|
||||||
// 1800, 2500);
|
|
||||||
// register(ItemDusts.getDustByName("chrome"), null, ItemIngots.getIngotByName("chrome"), null, 4420, 1700);
|
|
||||||
// register(ItemDustsSmall.getSmallDustByName("chrome", 4), null, ItemIngots.getIngotByName("chrome"), null, 4420,
|
|
||||||
// 1700);
|
|
||||||
// register(ItemDusts.getDustByName("steel"), null, ItemIngots.getIngotByName("steel"), null, 2800, 1000);
|
|
||||||
// register(ItemDustsSmall.getSmallDustByName("steel", 4), null, ItemIngots.getIngotByName("steel"), null, 2800,
|
|
||||||
// 1000);
|
|
||||||
// register(ItemDusts.getDustByName("galena", 2), null, ItemIngots.getIngotByName("silver"),
|
|
||||||
// ItemIngots.getIngotByName("lead"), 80, 1500);
|
|
||||||
// register(new ItemStack(Items.IRON_INGOT), ItemDusts.getDustByName("coal", 2),
|
|
||||||
// ItemIngots.getIngotByName("steel"), ItemDusts.getDustByName("dark_ashes", 2), 500, 1000);
|
|
||||||
// register(ItemIngots.getIngotByName("tungsten"), ItemIngots.getIngotByName("steel"),
|
|
||||||
// ItemIngots.getIngotByName("hot_tungstensteel"), ItemDusts.getDustByName("dark_ashes", 4), 500, 128,
|
|
||||||
// 3000);
|
|
||||||
// register(new ItemStack(Blocks.IRON_ORE), ItemDusts.getDustByName("calcite"), new ItemStack(Items.IRON_INGOT, 3),
|
// register(new ItemStack(Blocks.IRON_ORE), ItemDusts.getDustByName("calcite"), new ItemStack(Items.IRON_INGOT, 3),
|
||||||
// ItemDusts.getDustByName("dark_ashes"), 140, 1000);
|
// ItemDusts.getDustByName("dark_ashes"), 140, 1000);
|
||||||
// register(BlockOre.getOreByName("Pyrite"), ItemDusts.getDustByName("calcite"),
|
// register(BlockOre.getOreByName("Pyrite"), ItemDusts.getDustByName("calcite"),
|
||||||
// new ItemStack(Items.IRON_INGOT, 2), ItemDusts.getDustByName("dark_ashes"), 140, 1000);
|
// new ItemStack(Items.IRON_INGOT, 2), ItemDusts.getDustByName("dark_ashes"), 140, 1000);
|
||||||
|
|
||||||
// register(new ItemStack(Items.DIAMOND_HELMET), new ItemStack(Blocks.SAND), new ItemStack(Items.DIAMOND, 5),
|
// register(new ItemStack(Items.DIAMOND_HELMET), new ItemStack(Blocks.SAND), new ItemStack(Items.DIAMOND, 5),
|
||||||
// ItemDusts.getDustByName("dark_ashes"), 140, 1000);
|
// ItemDusts.getDustByName("dark_ashes"), 140, 1000);
|
||||||
// register(new ItemStack(Items.DIAMOND_CHESTPLATE), new ItemStack(Blocks.SAND), new ItemStack(Items.DIAMOND, 8),
|
// register(new ItemStack(Items.DIAMOND_CHESTPLATE), new ItemStack(Blocks.SAND), new ItemStack(Items.DIAMOND, 8),
|
||||||
|
|
|
@ -0,0 +1,16 @@
|
||||||
|
{
|
||||||
|
"type": "techreborn:blast_furnace",
|
||||||
|
"power": 128,
|
||||||
|
"time": 200,
|
||||||
|
"heat": 1700,
|
||||||
|
"ingredients" : [
|
||||||
|
{
|
||||||
|
"item": "techreborn:aluminum_dust"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"results" : [
|
||||||
|
{
|
||||||
|
"item": "techreborn:aluminum_ingot"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,17 @@
|
||||||
|
{
|
||||||
|
"type": "techreborn:blast_furnace",
|
||||||
|
"power": 128,
|
||||||
|
"time": 200,
|
||||||
|
"heat": 1700,
|
||||||
|
"ingredients" : [
|
||||||
|
{
|
||||||
|
"item": "techreborn:aluminum_small_dust",
|
||||||
|
"count": 4
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"results" : [
|
||||||
|
{
|
||||||
|
"item": "techreborn:aluminum_ingot"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,16 @@
|
||||||
|
{
|
||||||
|
"type": "techreborn:blast_furnace",
|
||||||
|
"power": 128,
|
||||||
|
"time": 800,
|
||||||
|
"heat": 1700,
|
||||||
|
"ingredients" : [
|
||||||
|
{
|
||||||
|
"item": "techreborn:chrome_dust"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"results" : [
|
||||||
|
{
|
||||||
|
"item": "techreborn:chrome_ingot"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,17 @@
|
||||||
|
{
|
||||||
|
"type": "techreborn:blast_furnace",
|
||||||
|
"power": 128,
|
||||||
|
"time": 800,
|
||||||
|
"heat": 1700,
|
||||||
|
"ingredients" : [
|
||||||
|
{
|
||||||
|
"item": "techreborn:chrome_small_dust",
|
||||||
|
"count": 4
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"results" : [
|
||||||
|
{
|
||||||
|
"item": "techreborn:chrome_ingot"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,23 @@
|
||||||
|
{
|
||||||
|
"type": "techreborn:blast_furnace",
|
||||||
|
"power": 128,
|
||||||
|
"time": 2000,
|
||||||
|
"heat": 3000,
|
||||||
|
"ingredients": [
|
||||||
|
{
|
||||||
|
"item": "techreborn:steel_ingot"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"item": "techreborn:tungsten_ingot"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"results": [
|
||||||
|
{
|
||||||
|
"item": "techreborn:hot_tungstensteel_ingot"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"item": "techreborn:dark_ashes_dust",
|
||||||
|
"count": 4
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
"type": "techreborn:blast_furnace",
|
||||||
|
"power": 128,
|
||||||
|
"time": 20,
|
||||||
|
"heat": 1500,
|
||||||
|
"ingredients": [
|
||||||
|
{
|
||||||
|
"item": "techreborn:galena_dust",
|
||||||
|
"count": 2
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"results": [
|
||||||
|
{
|
||||||
|
"item": "techreborn:lead_ingot"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"item": "techreborn:silver_ingot"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
"type": "techreborn:blast_furnace",
|
||||||
|
"power": 128,
|
||||||
|
"time": 20,
|
||||||
|
"heat": 1500,
|
||||||
|
"ingredients": [
|
||||||
|
{
|
||||||
|
"item": "techreborn:galena_small_dust",
|
||||||
|
"count": 8
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"results": [
|
||||||
|
{
|
||||||
|
"item": "techreborn:lead_ingot"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"item": "techreborn:silver_ingot"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,16 @@
|
||||||
|
{
|
||||||
|
"type": "techreborn:blast_furnace",
|
||||||
|
"power": 128,
|
||||||
|
"time": 100,
|
||||||
|
"heat": 1000,
|
||||||
|
"ingredients" : [
|
||||||
|
{
|
||||||
|
"item": "techreborn:steel_dust"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"results" : [
|
||||||
|
{
|
||||||
|
"item": "techreborn:steel_ingot"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,24 @@
|
||||||
|
{
|
||||||
|
"type": "techreborn:blast_furnace",
|
||||||
|
"power": 128,
|
||||||
|
"time": 500,
|
||||||
|
"heat": 1000,
|
||||||
|
"ingredients": [
|
||||||
|
{
|
||||||
|
"item": "techreborn:refined_iron_ingot"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"item": "techreborn:coal_dust",
|
||||||
|
"count": 4
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"results": [
|
||||||
|
{
|
||||||
|
"item": "techreborn:steel_ingot"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"item": "techreborn:dark_ashes_dust",
|
||||||
|
"count": 2
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,17 @@
|
||||||
|
{
|
||||||
|
"type": "techreborn:blast_furnace",
|
||||||
|
"power": 128,
|
||||||
|
"time": 100,
|
||||||
|
"heat": 1000,
|
||||||
|
"ingredients" : [
|
||||||
|
{
|
||||||
|
"item": "techreborn:steel_small_dust",
|
||||||
|
"count": 4
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"results" : [
|
||||||
|
{
|
||||||
|
"item": "techreborn:steel_ingot"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,17 @@
|
||||||
|
{
|
||||||
|
"type": "techreborn:blast_furnace",
|
||||||
|
"power": 128,
|
||||||
|
"time": 3600,
|
||||||
|
"heat": 1500,
|
||||||
|
"ingredients" : [
|
||||||
|
{
|
||||||
|
"item": "techreborn:titanium_small_dust",
|
||||||
|
"count": 4
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"results" : [
|
||||||
|
{
|
||||||
|
"item": "techreborn:titanium_ingot"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,16 @@
|
||||||
|
{
|
||||||
|
"type": "techreborn:blast_furnace",
|
||||||
|
"power": 128,
|
||||||
|
"time": 2000,
|
||||||
|
"heat": 2500,
|
||||||
|
"ingredients" : [
|
||||||
|
{
|
||||||
|
"item": "techreborn:tungsten_dust"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"results" : [
|
||||||
|
{
|
||||||
|
"item": "techreborn:tungsten_ingot"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,17 @@
|
||||||
|
{
|
||||||
|
"type": "techreborn:blast_furnace",
|
||||||
|
"power": 128,
|
||||||
|
"time": 2000,
|
||||||
|
"heat": 2500,
|
||||||
|
"ingredients" : [
|
||||||
|
{
|
||||||
|
"item": "techreborn:tungsten_small_dust",
|
||||||
|
"count": 4
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"results" : [
|
||||||
|
{
|
||||||
|
"item": "techreborn:tungsten_ingot"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -13,6 +13,7 @@
|
||||||
"results": [
|
"results": [
|
||||||
{
|
{
|
||||||
"item": "techreborn:cell",
|
"item": "techreborn:cell",
|
||||||
|
"count": 2,
|
||||||
"tag": {
|
"tag": {
|
||||||
"fluid": "techreborn:calciumcarbonate"
|
"fluid": "techreborn:calciumcarbonate"
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue