net.minecraft.item.ToolMaterial Java Examples

The following examples show how to use net.minecraft.item.ToolMaterial. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: AxeItem.java    From Galacticraft-Rewoven with MIT License 4 votes vote down vote up
public AxeItem(ToolMaterial material, float attackDamage, float attackSpeed, Settings settings) {
    super(material, attackDamage, attackSpeed, settings);
}
 
Example #2
Source File: PickaxeItem.java    From Galacticraft-Rewoven with MIT License 4 votes vote down vote up
public PickaxeItem(ToolMaterial material, int attackDamage, float attackSpeed, Settings settings) {
    super(material, attackDamage, attackSpeed, settings);
}
 
Example #3
Source File: HoeItem.java    From Galacticraft-Rewoven with MIT License 4 votes vote down vote up
public HoeItem(ToolMaterial material, float attackDamage, Settings settings) {
    super(material, (int) attackDamage, -3.1F, settings);
}
 
Example #4
Source File: ClubItem.java    From the-hallow with MIT License 4 votes vote down vote up
public ClubItem(ToolMaterial material, int damage, float speed, Settings settings) {
	super(material, damage, speed, settings);
}
 
Example #5
Source File: ScytheItem.java    From the-hallow with MIT License 4 votes vote down vote up
public ScytheItem(ToolMaterial material, int damage, float speed, Settings settings) {
	super(material, damage, speed, settings);
}
 
Example #6
Source File: SwordItemMixin.java    From Wurst7 with GNU General Public License v3.0 4 votes vote down vote up
private SwordItemMixin(WurstClient wurst, ToolMaterial material,
	Settings settings)
{
	super(material, settings);
}
 
Example #7
Source File: MiningToolItemMixin.java    From Wurst7 with GNU General Public License v3.0 4 votes vote down vote up
private MiningToolItemMixin(WurstClient wurst, ToolMaterial material,
	Settings settings)
{
	super(material, settings);
}