diff --git a/src/main/java/de/ellpeck/actuallyadditions/mod/booklet/InitBooklet.java b/src/main/java/de/ellpeck/actuallyadditions/mod/booklet/InitBooklet.java index d220e57c7..ac8a1a6fe 100644 --- a/src/main/java/de/ellpeck/actuallyadditions/mod/booklet/InitBooklet.java +++ b/src/main/java/de/ellpeck/actuallyadditions/mod/booklet/InitBooklet.java @@ -212,6 +212,7 @@ public final class InitBooklet{ new BookletChapter("rangedCollector", ActuallyAdditionsAPI.entryFunctionalNonRF, new ItemStack(InitBlocks.blockRangedCollector), new PageTextOnly(1).addTextReplacement("", TileEntityRangedCollector.RANGE), new PageCrafting(2, BlockCrafting.recipeRangedCollector).setNoText()); //RF Using Blocks + new BookletChapter("batteryBox", ActuallyAdditionsAPI.entryFunctionalRF, new ItemStack(InitBlocks.blockBatteryBox), new PageTextOnly(1), new PageCrafting(2, BlockCrafting.recipeBatteryBox).setNoText()).setSpecial(); new BookletChapter("farmer", ActuallyAdditionsAPI.entryFunctionalRF, new ItemStack(InitBlocks.blockFarmer), new PageTextOnly(1), new PagePicture(2, "page_farmer_crops", 95).addItemToPage(new ItemStack(Items.WHEAT_SEEDS)).addItemToPage(new ItemStack(InitItems.itemCanolaSeed)), new PagePicture(3, "page_farmer_cactus", 105).addItemToPage(new ItemStack(Blocks.CACTUS)), new PagePicture(4, "page_farmer_wart", 95).addItemToPage(new ItemStack(Items.NETHER_WART)), new PageCrafting(4, BlockCrafting.recipeFarmer).setWildcard().setNoText()).setImportant(); new BookletChapter("fireworkBox", ActuallyAdditionsAPI.entryFunctionalRF, new ItemStack(InitBlocks.blockFireworkBox), new PageTextOnly(1).addTextReplacement("", TileEntityFireworkBox.USE_PER_SHOT), new PageCrafting(2, BlockCrafting.recipeFireworkBox)).setSpecial(); new BookletChapter("miner", ActuallyAdditionsAPI.entryFunctionalRF, new ItemStack(InitBlocks.blockMiner), new PageTextOnly(1).addTextReplacement("", TileEntityMiner.ENERGY_USE_PER_BLOCK).addTextReplacement("", TileEntityMiner.DEFAULT_RANGE), new PageCrafting(2, BlockCrafting.recipeMiner)).setSpecial(); diff --git a/src/main/java/de/ellpeck/actuallyadditions/mod/crafting/BlockCrafting.java b/src/main/java/de/ellpeck/actuallyadditions/mod/crafting/BlockCrafting.java index 333d921b7..c11516fe0 100644 --- a/src/main/java/de/ellpeck/actuallyadditions/mod/crafting/BlockCrafting.java +++ b/src/main/java/de/ellpeck/actuallyadditions/mod/crafting/BlockCrafting.java @@ -97,9 +97,17 @@ public final class BlockCrafting{ public static IRecipe recipeDistributorItem; public static IRecipe recipeBioReactor; public static IRecipe recipeFarmer; + public static IRecipe recipeBatteryBox; public static void init(){ + //Battery Box + GameRegistry.addRecipe(new ShapelessOreRecipe(new ItemStack(InitBlocks.blockBatteryBox), + new ItemStack(InitBlocks.blockEnergizer), + new ItemStack(InitBlocks.blockEnervator), + new ItemStack(InitItems.itemMisc, 1, TheMiscItems.COIL.ordinal()))); + recipeBatteryBox = RecipeUtil.lastIRecipe(); + //Farmer GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(InitBlocks.blockFarmer), "ISI", "SCS", "ISI", diff --git a/src/main/resources/assets/actuallyadditions/lang/en_US.lang b/src/main/resources/assets/actuallyadditions/lang/en_US.lang index 75c891b61..cee646c2f 100644 --- a/src/main/resources/assets/actuallyadditions/lang/en_US.lang +++ b/src/main/resources/assets/actuallyadditions/lang/en_US.lang @@ -1124,3 +1124,6 @@ booklet.actuallyadditions.chapter.website.button.1=View the Website booklet.actuallyadditions.chapter.engineerHouse.name=A visit to the Engineers booklet.actuallyadditions.chapter.engineerHouse.text.1=If you want to know how to start, you can check out what the Engineers are up to. They are two friendly villagers that sell you various goods: One is the Crystallizer, who will exchange Emeralds and Crystals with you, and the Engineer will trade various machines with you! On the next page, you can see the house they live in - which is also worth checking out! But be careful, the machines inside the house are a little more fragile, meaning they will shatter once you try to break them. booklet.actuallyadditions.chapter.engineerHouse.text.2= Machines Primus + +booklet.actuallyadditions.chapter.batteryBox.name=Battery Box +booklet.actuallyadditions.chapter.batteryBox.text.1=The Battery Box is a great way to store your power. However, for it to be able to use power, you have to right-click a Battery onto it. It will then be able to store energy on the battery itself. If you set the battery to discharge mode via sneak-right-clicking it or by applying a redstone pulse to the Battery Box, it will try to spread the power it receives equally to up to 15 adjacent Battery Boxes. \ No newline at end of file