ActuallyAdditions/src/main/java/de/ellpeck/actuallyadditions/mod/items/ItemHairyBall.java

80 lines
3.5 KiB
Java
Raw Normal View History

2015-08-29 14:33:25 +02:00
/*
2016-05-16 22:52:27 +02:00
* This file ("ItemHairyBall.java") is part of the Actually Additions mod for Minecraft.
2015-08-29 14:33:25 +02:00
* It is created and owned by Ellpeck and distributed
* under the Actually Additions License to be found at
2016-05-16 22:52:27 +02:00
* http://ellpeck.de/actaddlicense
2015-08-29 14:33:25 +02:00
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
*
2017-01-01 16:23:26 +01:00
* © 2015-2017 Ellpeck
2015-08-29 14:33:25 +02:00
*/
2016-01-05 04:47:35 +01:00
package de.ellpeck.actuallyadditions.mod.items;
2015-05-07 16:36:29 +02:00
2016-01-05 04:47:35 +01:00
import de.ellpeck.actuallyadditions.api.ActuallyAdditionsAPI;
2016-07-03 20:57:00 +02:00
import de.ellpeck.actuallyadditions.mod.config.values.ConfigBoolValues;
2018-01-29 09:28:12 +01:00
import de.ellpeck.actuallyadditions.mod.config.values.ConfigIntValues;
2016-01-05 04:47:35 +01:00
import de.ellpeck.actuallyadditions.mod.items.base.ItemBase;
2015-05-07 16:36:29 +02:00
import net.minecraft.entity.item.EntityItem;
2016-07-03 20:57:00 +02:00
import net.minecraft.entity.passive.EntityOcelot;
2021-02-26 22:15:48 +01:00
import net.minecraft.entity.player.PlayerEntity;
2015-05-07 16:36:29 +02:00
import net.minecraft.item.EnumRarity;
import net.minecraft.item.ItemStack;
2021-02-26 22:15:48 +01:00
import net.minecraft.util.*;
2015-05-07 16:36:29 +02:00
import net.minecraft.world.World;
2016-07-03 20:57:00 +02:00
import net.minecraftforge.common.MinecraftForge;
import net.minecraftforge.event.entity.living.LivingEvent;
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent;
2021-02-26 22:15:48 +01:00
import java.util.Random;
import java.util.UUID;
2019-05-02 09:10:29 +02:00
public class ItemHairyBall extends ItemBase {
2019-02-27 19:53:05 +01:00
private final UUID KittyVanCatUUID = UUID.fromString("681d4e20-10ef-40c9-a0a5-ba2f1995ef44");
public ItemHairyBall() {
super(name);
2016-07-03 20:57:00 +02:00
MinecraftForge.EVENT_BUS.register(this);
}
2015-05-07 16:36:29 +02:00
2016-07-03 20:57:00 +02:00
@SubscribeEvent
2019-05-02 09:10:29 +02:00
public void livingUpdateEvent(LivingEvent.LivingUpdateEvent event) {
2016-07-03 20:57:00 +02:00
//Ocelots dropping Hair Balls
2019-05-02 09:10:29 +02:00
if (ConfigBoolValues.DO_CAT_DROPS.isEnabled() && event.getEntityLiving() != null && event.getEntityLiving().world != null && !event.getEntityLiving().world.isRemote) {
2021-02-26 22:15:48 +01:00
if (event.getEntityLiving() instanceof EntityOcelot && ((EntityOcelot) event.getEntityLiving()).isTamed() || event.getEntityLiving() instanceof PlayerEntity && event.getEntityLiving().getUniqueID().equals(this.KittyVanCatUUID)) {
2019-05-02 09:10:29 +02:00
if (event.getEntityLiving().world.rand.nextInt(ConfigIntValues.FUR_CHANCE.getValue()) == 0) {
EntityItem item = new EntityItem(event.getEntityLiving().world, event.getEntityLiving().posX + 0.5, event.getEntityLiving().posY + 0.5, event.getEntityLiving().posZ + 0.5, new ItemStack(ActuallyItems.itemHairyBall));
2019-02-27 19:53:05 +01:00
event.getEntityLiving().world.spawnEntity(item);
}
}
2016-07-03 20:57:00 +02:00
}
}
2015-05-07 16:36:29 +02:00
@Override
2021-02-26 22:15:48 +01:00
public ActionResult<ItemStack> onItemRightClick(World world, PlayerEntity player, Hand hand) {
2016-11-19 21:11:17 +01:00
ItemStack stack = player.getHeldItem(hand);
2019-05-02 09:10:29 +02:00
if (!world.isRemote) {
2016-11-02 19:36:32 +01:00
ItemStack returnItem = this.getRandomReturnItem(world.rand);
2019-05-02 09:10:29 +02:00
if (!player.inventory.addItemStackToInventory(returnItem)) {
2016-11-26 21:32:27 +01:00
EntityItem entityItem = new EntityItem(player.world, player.posX, player.posY, player.posZ, returnItem);
entityItem.setPickupDelay(0);
2016-11-26 21:32:27 +01:00
player.world.spawnEntity(entityItem);
2015-05-07 16:36:29 +02:00
}
stack.shrink(1);
2016-03-18 23:47:22 +01:00
2019-05-02 09:10:29 +02:00
world.playSound(null, player.posX, player.posY, player.posZ, SoundEvents.ENTITY_ITEM_PICKUP, SoundCategory.PLAYERS, 0.2F, world.rand.nextFloat() * 0.1F + 0.9F);
2015-05-07 16:36:29 +02:00
}
2019-02-27 19:53:05 +01:00
return new ActionResult<>(EnumActionResult.SUCCESS, stack);
2015-05-07 16:36:29 +02:00
}
2019-05-02 09:10:29 +02:00
public ItemStack getRandomReturnItem(Random rand) {
2016-11-02 19:36:32 +01:00
return WeightedRandom.getRandomItem(rand, ActuallyAdditionsAPI.BALL_OF_FUR_RETURN_ITEMS).returnItem.copy();
2015-05-07 16:36:29 +02:00
}
@Override
2019-05-02 09:10:29 +02:00
public EnumRarity getRarity(ItemStack stack) {
return EnumRarity.EPIC;
2015-10-03 10:19:40 +02:00
}
2015-05-07 16:36:29 +02:00
}