aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/xmod/gregtech/registration
diff options
context:
space:
mode:
authorJordan Byrne <draknyte1@hotmail.com>2017-12-24 21:45:03 +1000
committerJordan Byrne <draknyte1@hotmail.com>2017-12-24 21:45:03 +1000
commit2b9da4a0f048300e14bf359b705a4c04c05064ba (patch)
tree565681007584bb5a527d3496dd14dfaaec87582e /src/Java/gtPlusPlus/xmod/gregtech/registration
parentecf908e98ccee72a713091e8ab547e35a41d7436 (diff)
downloadGT5-Unofficial-2b9da4a0f048300e14bf359b705a4c04c05064ba.tar.gz
GT5-Unofficial-2b9da4a0f048300e14bf359b705a4c04c05064ba.tar.bz2
GT5-Unofficial-2b9da4a0f048300e14bf359b705a4c04c05064ba.zip
+ Added the Tesla Tower for base defence.
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/gregtech/registration')
-rw-r--r--src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechTeslaTower.java15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechTeslaTower.java b/src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechTeslaTower.java
new file mode 100644
index 0000000000..5e49c73634
--- /dev/null
+++ b/src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechTeslaTower.java
@@ -0,0 +1,15 @@
+package gtPlusPlus.xmod.gregtech.registration.gregtech;
+
+import gtPlusPlus.api.objects.Logger;
+import gtPlusPlus.xmod.gregtech.api.enums.GregtechItemList;
+import gtPlusPlus.xmod.gregtech.common.tileentities.machines.multi.GregtechMTE_TeslaTower;
+
+public class GregtechTeslaTower {
+
+ public static void run() {
+ Logger.INFO("Gregtech5u Content | Registering Tesla Tower.");
+ GregtechItemList.TelsaTower.set(new GregtechMTE_TeslaTower(984, "multimachine.telsatower", "Tesla's Last Testament").getStackForm(1));
+
+ }
+
+}