Add more jeremium items

This commit is contained in:
RyanTLG
2022-04-05 19:04:49 +02:00
parent 0775acf2d0
commit 04c7e396e4
35 changed files with 425 additions and 10 deletions

View File

@@ -0,0 +1,12 @@
package net.arcmods.ryantlg.customToolItemClasses.jeremium;
import net.minecraft.item.ShovelItem;
import net.minecraft.item.ToolMaterial;
public class JeremiumShovelItem extends ShovelItem{
public JeremiumShovelItem(ToolMaterial material, float attackDamage, float attackSpeed, Settings settings) {
super(material, attackDamage, attackSpeed, settings);
}
}