Added recipe to get rubydust from rubys

This commit is contained in:
Gig 2015-06-28 19:57:35 +01:00
parent d53a2aeef1
commit ad12de30d3
2 changed files with 8 additions and 4 deletions

View file

@ -86,13 +86,12 @@ public class GuiIndustrialSawmill extends GuiContainer {
}
protected void drawGuiContainerForegroundLayer(int p_146979_1_,
int p_146979_2_)
protected void drawGuiContainerForegroundLayer(int p_146979_1_, int p_146979_2_)
{
String name = StatCollector.translateToLocal("tile.techreborn.industrialSawmill.name");
this.fontRendererObj.drawString(name, this.xSize / 2 - this.fontRendererObj.getStringWidth(name) / 2, 6, 4210752);
this.fontRendererObj.drawString(
I18n.format("container.inventory", new Object[0]), 58,
this.ySize - 96 + 2, 4210752);
I18n.format("container.inventory", new Object[0]), 58,
this.ySize - 96 + 2, 4210752);
}
}

View file

@ -1823,6 +1823,11 @@ public class ModRecipes {
RecipeHandler.addRecipe(new GrinderRecipe(new ItemStack(ModBlocks.ore, 1, 2), null, new FluidStack(FluidRegistry.WATER, 1000), ItemGems.getGemByName("ruby", 1), ItemDustsSmall.getSmallDustByName("Ruby", 6), ItemDustsSmall.getSmallDustByName("Chrome", 2), null, 100, 120));
RecipeHandler.addRecipe(new GrinderRecipe(new ItemStack(ModBlocks.ore, 1, 2), IC2Items.getItem("waterCell"), null, ItemGems.getGemByName("ruby", 1), ItemDustsSmall.getSmallDustByName("Ruby", 6), ItemDustsSmall.getSmallDustByName("Chrome", 2), IC2Items.getItem("cell"), 100, 120));
RecipeHandler.addRecipe(new GrinderRecipe(new ItemStack(ModBlocks.ore, 1, 2), new ItemStack(Items.water_bucket), null, ItemGems.getGemByName("ruby", 1), ItemDustsSmall.getSmallDustByName("Ruby", 6), ItemDustsSmall.getSmallDustByName("Chrome", 2), new ItemStack(Items.bucket), 100, 120));
//Ruby Ore
RecipeHandler.addRecipe(new GrinderRecipe(ItemGems.getGemByName("ruby", 1), null, new FluidStack(FluidRegistry.WATER, 1000), ItemDusts.getDustByName("ruby", 1), ItemDustsSmall.getSmallDustByName("Ruby", 6), ItemDustsSmall.getSmallDustByName("Chrome", 2), null, 100, 120));
RecipeHandler.addRecipe(new GrinderRecipe(ItemGems.getGemByName("ruby", 1), IC2Items.getItem("waterCell"), null, ItemDusts.getDustByName("ruby", 1), ItemDustsSmall.getSmallDustByName("Ruby", 6), ItemDustsSmall.getSmallDustByName("Chrome", 2), IC2Items.getItem("cell"), 100, 120));
RecipeHandler.addRecipe(new GrinderRecipe(ItemGems.getGemByName("ruby", 1), new ItemStack(Items.water_bucket), null, ItemDusts.getDustByName("ruby", 1), ItemDustsSmall.getSmallDustByName("Ruby", 6), ItemDustsSmall.getSmallDustByName("Chrome", 2), new ItemStack(Items.bucket), 100, 120));
//Sapphire Ore
RecipeHandler.addRecipe(new GrinderRecipe(new ItemStack(ModBlocks.ore, 1, 3), null, new FluidStack(FluidRegistry.WATER, 1000), ItemGems.getGemByName("sapphire", 1), ItemDustsSmall.getSmallDustByName("Sapphire", 6), ItemDustsSmall.getSmallDustByName("Aluminum", 2), null, 100, 120));