blob: 1d517ff9437262ed06d4bad43cf7121778211576 [file] [log] [blame] [raw]
package com.legacy.aether.items.staffs;
import net.minecraft.item.Item;
import com.legacy.aether.registry.creative_tabs.AetherCreativeTabs;
public class ItemNatureStaff extends Item
{
public ItemNatureStaff()
{
this.setCreativeTab(AetherCreativeTabs.misc);
this.setMaxStackSize(1);
this.setMaxDamage(100);
}
}