Jump to content

Craft that renders the item and loses durability


Xemnys

Recommended Posts

Hi,

I'm asking for your help because I can't figure out how to make it so that when an item is crafted on the Crafting Table, it returns the item to the player's inventory and makes the item lose durability. I've tried looking everywhere without success.

Like for the crafting of the cake which returns the empty bucket to the player, but also makes it lose durability.

 

Edited by Xemnys
Link to comment
Share on other sites

Update: I managed to make the item not disappear after crafting, but it doesn't remove any durability.

import net.minecraft.enchantment.EnchantmentHelper;
import net.minecraft.enchantment.Enchantments;
import net.minecraft.enchantment.UnbreakingEnchantment;
import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;

public class NuggetHammer extends Item
{
	private boolean damage;

	public NuggetHammer(Properties p_i48487_1_) 
	{
		super(p_i48487_1_);
	}

	@Override
    public int getMaxDamage(ItemStack stack) 
	{
        return 54 - 1;
    }

    public boolean isBarVisible(ItemStack stack) 
    {
        return false;
    }
	
	@Override
	public ItemStack getContainerItem(ItemStack stack) 
	{
		ItemStack copy = stack.copy();
		copy.setCount(1);

		if (!this.damage)
			return copy;

		int unbreaking = EnchantmentHelper.getItemEnchantmentLevel(Enchantments.UNBREAKING, stack);
		for (int i = 0; i < unbreaking; i++) 
		{
			if (UnbreakingEnchantment.shouldIgnoreDurabilityDrop(stack, unbreaking, random))
				return copy;
		}

		copy.setDamageValue(stack.getDamageValue() + 1);

		if (copy.getDamageValue() > stack.getMaxDamage())
			return ItemStack.EMPTY;

		return copy;
	}
}

 

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.