From 92cedd818ccdb57085b14c8ed735e903479ac581 Mon Sep 17 00:00:00 2001 From: Draknyte1 Date: Mon, 20 Jun 2016 02:01:03 +1000 Subject: +Added New Circuits & Components along with recipes. +Added A complete set of Machine components up to MAX voltage along with recipes. +Started Initial work on multiblock items (Similar to the turbine rotor needed in Large turbines) +Added better support for future recipe additions. --- .../TOOL_Gregtech_MaxEfficiencyMultiBlockItem.java | 27 ++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 src/Java/miscutil/gregtech/common/tools/TOOL_Gregtech_MaxEfficiencyMultiBlockItem.java (limited to 'src/Java/miscutil/gregtech/common/tools/TOOL_Gregtech_MaxEfficiencyMultiBlockItem.java') diff --git a/src/Java/miscutil/gregtech/common/tools/TOOL_Gregtech_MaxEfficiencyMultiBlockItem.java b/src/Java/miscutil/gregtech/common/tools/TOOL_Gregtech_MaxEfficiencyMultiBlockItem.java new file mode 100644 index 0000000000..15cf1599b6 --- /dev/null +++ b/src/Java/miscutil/gregtech/common/tools/TOOL_Gregtech_MaxEfficiencyMultiBlockItem.java @@ -0,0 +1,27 @@ +package miscutil.gregtech.common.tools; + +import gregtech.api.interfaces.IIconContainer; +import miscutil.gregtech.api.enums.GregtechTextures; + +public class TOOL_Gregtech_MaxEfficiencyMultiBlockItem extends TOOL_Gregtech_BaseMultiblockItem { + @Override + public float getSpeedMultiplier() { + return 4.0F; + } + + @Override + public float getMaxDurabilityMultiplier() { + return 4.0F; + } + + @Override + public float getBaseDamage() { + return 3.0F; + } + + @Override + public IIconContainer getTurbineIcon() { + return GregtechTextures.ItemIcons.TURBINE_HUGE; + } + +} -- cgit