Added straw charge item.

This commit is contained in:
2022-01-16 17:50:55 +00:00
parent 93b2c8c1e6
commit 5759b7db96
2 changed files with 19 additions and 1 deletions

View File

@ -0,0 +1,17 @@
package dev.micle.totemofreviving.item;
import dev.micle.totemofreviving.TotemOfReviving;
import net.minecraft.item.Item;
import net.minecraft.item.Rarity;
public class StrawChargeItem extends Item {
private static final String NAME = "straw_charge";
public StrawChargeItem() {
super(new Properties().tab(TotemOfReviving.ITEM_GROUP).stacksTo(64).rarity(Rarity.UNCOMMON));
}
public static String getName() {
return NAME;
}
}