2015-05-16 00:51:56 +00:00
|
|
|
package gregtech.common.tools;
|
|
|
|
|
2015-08-15 23:10:06 +00:00
|
|
|
import gregtech.api.enums.Textures;
|
|
|
|
import gregtech.api.interfaces.IIconContainer;
|
|
|
|
|
2015-05-16 00:51:56 +00:00
|
|
|
public class GT_Tool_Turbine_Small extends GT_Tool_Turbine {
|
|
|
|
@Override public float getSpeedMultiplier() {return 1.0F;}
|
|
|
|
@Override public float getMaxDurabilityMultiplier() {return 1.0F;}
|
|
|
|
@Override public float getBaseDamage() {return 0.0F;}
|
2015-08-15 23:10:06 +00:00
|
|
|
@Override public IIconContainer getTurbineIcon() {return Textures.ItemIcons.TURBINE_SMALL;}
|
|
|
|
|
2015-05-16 00:51:56 +00:00
|
|
|
}
|