aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/xmod/gregtech/registration
diff options
context:
space:
mode:
authorAlkalus <draknyte1@hotmail.com>2017-08-07 02:51:38 +0000
committerAlkalus <draknyte1@hotmail.com>2017-08-07 02:51:38 +0000
commit2c3cf059795ac4f601f8647dac3fb0b2ef1ddd25 (patch)
treeaf8e1608333b0e90baa3537e4bb60d16f7ae90c0 /src/Java/gtPlusPlus/xmod/gregtech/registration
parent2e3b94c761f4c5c55b99325381f359d755371d9b (diff)
downloadGT5-Unofficial-2c3cf059795ac4f601f8647dac3fb0b2ef1ddd25.tar.gz
GT5-Unofficial-2c3cf059795ac4f601f8647dac3fb0b2ef1ddd25.tar.bz2
GT5-Unofficial-2c3cf059795ac4f601f8647dac3fb0b2ef1ddd25.zip
+ Added The Thermal Boiler, Multiblock Crafter and Shelving from GT4.
> This code will need a small rewrite to support GT5 functionality.
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/gregtech/registration')
-rw-r--r--src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/Gregtech4Content.java26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/Gregtech4Content.java b/src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/Gregtech4Content.java
index e0d0374493..9139da59df 100644
--- a/src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/Gregtech4Content.java
+++ b/src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/Gregtech4Content.java
@@ -15,7 +15,10 @@ public class Gregtech4Content
{
if (LoadedMods.Gregtech){
workbenches();
+ thermalBoiler();
+ multiCrafter();
tesseracts();
+ shelves();
}
}
@@ -25,6 +28,18 @@ public class Gregtech4Content
//Free //GregtechItemList.GT4_Workbench_Bronze.set(new GT_MetaTileEntity_BronzeCraftingTable(828, "workbench.bronze", "Bronze Workbench", 0).getStackForm(1L));
//Free //GregtechItemList.GT4_Workbench_Advanced.set(new GT_MetaTileEntity_AdvancedCraftingTable(829, "workbench.advanced", "Advanced Workbench", 1).getStackForm(1L));
}
+
+ private static void thermalBoiler(){
+ //Gregtech 4 Workbenches
+ Utils.LOG_INFO("Gregtech 4 Content | Registering Thermal Boiler.");
+ GregtechItemList.GT4_Thermal_Boiler.set(new GT_MetaTileEntity_Multi_ThermalBoiler(810, "gtplusplus.thermal.boiler", "Thermal Boiler").getStackForm(1L));
+ }
+
+ private static void multiCrafter(){
+ //Gregtech 4 Workbenches
+ Utils.LOG_INFO("Gregtech 4 Content | Registering Multiblock Crafter.");
+ GregtechItemList.GT4_Multi_Crafter.set(new GT_MetaTileEntity_TesseractTerminal(811, "tesseract.terminal", "Tesseract Terminal", 4).getStackForm(1L));
+ }
private static void tesseracts(){
//Gregtech 4 Workbenches
@@ -32,4 +47,15 @@ public class Gregtech4Content
GregtechItemList.GT4_Tesseract_Generator.set(new GT_MetaTileEntity_TesseractGenerator(833, "tesseract.generator", "Tesseract Generator", 4).getStackForm(1L));
GregtechItemList.GT4_Tesseract_Terminal.set(new GT_MetaTileEntity_TesseractTerminal(834, "tesseract.terminal", "Tesseract Terminal", 4).getStackForm(1L));
}
+
+ private static void shelves(){
+ //Gregtech 4 Workbenches
+ Utils.LOG_INFO("Gregtech 4 Content | Registering Shelves.");
+ GregtechItemList.GT4_Shelf.set(new GT_MetaTileEntity_Shelf(870, "gtplusplus.shelf.wooden", "Wood encased Shelf").getStackForm(1L));
+ GregtechItemList.GT4_Shelf_Iron.set(new GT_MetaTileEntity_Shelf_Iron(871, "gtplusplus.shelf.iron", "Metal encased Shelf").getStackForm(1L));
+ GregtechItemList.GT4_Shelf_FileCabinet.set(new GT_MetaTileEntity_Shelf_FileCabinet(872, "gtplusplus.shelf.filecabinet", "File Cabinet").getStackForm(1L));
+ GregtechItemList.GT4_Shelf_Desk.set(new GT_MetaTileEntity_Shelf_Desk8(873, "gtplusplus.shelf.desk", "Metal encased Desk").getStackForm(1L));
+ GregtechItemList.GT4_Shelf_Compartment.set(new GT_MetaTileEntity_Shelf_Compartment(874, "gtplusplus.shelf.compartment", "Compartment").getStackForm(1L));
+ }
+
}