blob: 4292ab73fb20a6ea0f15d7e6f514a0ced425820f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
package gregtech.common.tools;
import gregtech.api.enums.Textures;
import gregtech.api.interfaces.IIconContainer;
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;}
@Override public IIconContainer getTurbineIcon() {return Textures.ItemIcons.TURBINE_SMALL;}
}
|