diff options
author | Alkalus <draknyte1@hotmail.com> | 2017-11-14 07:46:58 +1000 |
---|---|---|
committer | Alkalus <draknyte1@hotmail.com> | 2017-11-14 07:46:58 +1000 |
commit | 9ca3689c05efa82a4b5efe3f8d3b6013ebd54cd5 (patch) | |
tree | 6a5c0e6739dbfdeee93f41d0b3dce4c98f3020c2 /src/Java/gtPlusPlus/core/handler | |
parent | 42b40a8e1bf40e4d42f8b693031f6bdf59f059ce (diff) | |
download | GT5-Unofficial-9ca3689c05efa82a4b5efe3f8d3b6013ebd54cd5.tar.gz GT5-Unofficial-9ca3689c05efa82a4b5efe3f8d3b6013ebd54cd5.tar.bz2 GT5-Unofficial-9ca3689c05efa82a4b5efe3f8d3b6013ebd54cd5.zip |
$ Fixed Thermal Boiler guide book recipe.
Diffstat (limited to 'src/Java/gtPlusPlus/core/handler')
-rw-r--r-- | src/Java/gtPlusPlus/core/handler/BookHandler.java | 21 |
1 files changed, 14 insertions, 7 deletions
diff --git a/src/Java/gtPlusPlus/core/handler/BookHandler.java b/src/Java/gtPlusPlus/core/handler/BookHandler.java index 5f6334bc8d..ebfed327f9 100644 --- a/src/Java/gtPlusPlus/core/handler/BookHandler.java +++ b/src/Java/gtPlusPlus/core/handler/BookHandler.java @@ -54,11 +54,18 @@ public class BookHandler { //Test Novel book_ModularBauble = writeBookTemplate( - "Manual_Modular_Bauble", "How to: Modular baubles", "Alkalus", + "Manual_Modular_Bauble", "How to: Modular Baubles", "Alkalus", new String[] { - "There was once a sad and lonely oak tree.", - "There was once a sad and lonely oak tree.", - "There was once a sad and lonely oak tree.", + "Concept: This idea came from wanting flexibility.", + "First step, Build a Modularity table to begin customisation of your Bauble." + + " After this has been constructed, you can now combine the upgrades listed within this book to improve the baubles level /100.", + "Defence:" + + " Can be upgraded by combining metal plates with the bauble." + + "+1 | Aluminium Plate" + + "+2 | Stainless Steel Plate" + + "+3 | Tungsten Plate" + + "+4 | TungstenSteel Plate" + + "+5 | Naquadah Plate", "There was once a sad and lonely oak tree.", "There was once a sad and lonely oak tree.", "There was once a sad and lonely oak tree."}); @@ -72,9 +79,9 @@ public class BookHandler { public static ItemStack ItemBookWritten_Test; public static void runLater(){ - ItemBookWritten_ThermalBoiler = ItemUtils.simpleMetaStack(ModItems.itemCustomBook, 1, 1); - //ItemBookWritten_ModularBaubles = writeBook(book_ModularBauble); - //ItemBookWritten_Test = writeBook(book_TestNovel); + ItemBookWritten_ThermalBoiler = ItemUtils.simpleMetaStack(ModItems.itemCustomBook, 0, 1); + ItemBookWritten_ModularBaubles = ItemUtils.simpleMetaStack(ModItems.itemCustomBook, 1, 1); + ItemBookWritten_Test = ItemUtils.simpleMetaStack(ModItems.itemCustomBook, 2, 1); RecipeUtils.addShapelessGregtechRecipe(new ItemStack[]{ItemUtils.getSimpleStack(Items.writable_book), ItemUtils.getSimpleStack(Items.lava_bucket)}, ItemBookWritten_ThermalBoiler); } |