ActuallyAdditions/src/main/java/de/ellpeck/actuallyadditions/mod/items/ItemResonantRice.java
2024-03-03 01:20:53 +01:00

36 lines
1.2 KiB
Java

/*
* This file ("ItemResonantRice.java") is part of the Actually Additions mod for Minecraft.
* It is created and owned by Ellpeck and distributed
* under the Actually Additions License to be found at
* http://ellpeck.de/actaddlicense
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
*
* © 2015-2017 Ellpeck
*/
package de.ellpeck.actuallyadditions.mod.items;
import de.ellpeck.actuallyadditions.mod.items.base.ItemBase;
import net.minecraft.world.InteractionHand;
import net.minecraft.world.InteractionResultHolder;
import net.minecraft.world.entity.player.Player;
import net.minecraft.world.item.ItemStack;
import net.minecraft.world.level.Level;
public class ItemResonantRice extends ItemBase {
public ItemResonantRice() {
super();
}
@Override
public InteractionResultHolder<ItemStack> use(Level world, Player player, InteractionHand hand) {
ItemStack stack = player.getItemInHand(hand);
if (!world.isClientSide) {
stack.shrink(1);
world.explode(null, player.getX(), player.getY(), player.getZ(), 0.5F, Level.ExplosionInteraction.MOB);
}
return InteractionResultHolder.success(stack);
}
}