Alloy smelter recipes

This commit is contained in:
drcrazy 2019-07-26 14:08:03 +03:00
parent e4b0eff608
commit f28462a9e6
7 changed files with 81 additions and 21 deletions

View file

@ -97,7 +97,6 @@ public enum ModFluids {
RebornFluidManager.register(flowingFluid, new Identifier("techreborn", identifier.getPath() + "_flowing")); RebornFluidManager.register(flowingFluid, new Identifier("techreborn", identifier.getPath() + "_flowing"));
Registry.register(Registry.BLOCK, identifier, block); Registry.register(Registry.BLOCK, identifier, block);
Registry.register(Registry.ITEM, identifier, bucket);
} }
public RebornFluid getFluid() { public RebornFluid getFluid() {

View file

@ -79,7 +79,7 @@ public class ModRecipes {
ChemicalReactorRecipes.init(); ChemicalReactorRecipes.init();
FusionReactorRecipes.init(); FusionReactorRecipes.init();
DistillationTowerRecipes.init(); DistillationTowerRecipes.init();
AlloySmelterRecipes.init();
FluidReplicatorRecipes.init(); FluidReplicatorRecipes.init();
addBlastFurnaceRecipes(); addBlastFurnaceRecipes();

View file

@ -34,25 +34,6 @@ public class AlloySmelterRecipes extends RecipeMethods {
/* /*
//
// // Brass
// if (OreUtil.doesOreExistAndValid("ingotBrass")) {
// ItemStack brassStack = getOre("ingotBrass");
// brassStack.setCount(4);
// RecipeHandler.addRecipe(
// new AlloySmelterRecipe(ingotCopper3, "ingotZinc",
// brassStack, 200, 16));
// RecipeHandler.addRecipe(
// new AlloySmelterRecipe(ingotCopper3, "dustZinc",
// brassStack, 200, 16));
// RecipeHandler.addRecipe(
// new AlloySmelterRecipe(dustCopper3, "ingotZinc",
// brassStack, 200, 16));
// RecipeHandler.addRecipe(
// new AlloySmelterRecipe(dustCopper3, "dustZinc",
// brassStack, 200, 16));
// }
// Red Alloy // Red Alloy
// if (OreUtil.doesOreExistAndValid("ingotRedAlloy")) { // if (OreUtil.doesOreExistAndValid("ingotRedAlloy")) {
ItemStack redAlloyStack = getOre("ingotRedAlloy"); ItemStack redAlloyStack = getOre("ingotRedAlloy");

View file

@ -0,0 +1,20 @@
{
"type": "techreborn:alloy_smelter",
"power": 16,
"time": 200,
"ingredients" : [
{
"item": "techreborn:copper_ingot",
"count": 3
},
{
"item": "techreborn:zinc_ingot"
}
],
"results" : [
{
"item": "techreborn:brass_ingot",
"count": 4
}
]
}

View file

@ -0,0 +1,20 @@
{
"type": "techreborn:alloy_smelter",
"power": 16,
"time": 200,
"ingredients" : [
{
"item": "techreborn:copper_dust",
"count": 3
},
{
"item": "techreborn:zinc_dust"
}
],
"results" : [
{
"item": "techreborn:brass_ingot",
"count": 4
}
]
}

View file

@ -0,0 +1,20 @@
{
"type": "techreborn:alloy_smelter",
"power": 16,
"time": 200,
"ingredients" : [
{
"item": "techreborn:copper_ingot",
"count": 3
},
{
"item": "techreborn:zinc_dust"
}
],
"results" : [
{
"item": "techreborn:brass_ingot",
"count": 4
}
]
}

View file

@ -0,0 +1,20 @@
{
"type": "techreborn:alloy_smelter",
"power": 16,
"time": 200,
"ingredients" : [
{
"item": "techreborn:copper_dust",
"count": 3
},
{
"item": "techreborn:zinc_ingot"
}
],
"results" : [
{
"item": "techreborn:brass_ingot",
"count": 4
}
]
}