mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-04 16:19:10 +01:00
53 lines
2.2 KiB
Java
53 lines
2.2 KiB
Java
/*
|
|
* This file ("LivingDropEvent.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://github.com/Ellpeck/ActuallyAdditions/blob/master/README.md
|
|
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
|
|
*
|
|
* © 2015 Ellpeck
|
|
*/
|
|
|
|
package de.ellpeck.actuallyadditions.event;
|
|
|
|
import cpw.mods.fml.common.eventhandler.SubscribeEvent;
|
|
import de.ellpeck.actuallyadditions.config.values.ConfigBoolValues;
|
|
import de.ellpeck.actuallyadditions.items.InitItems;
|
|
import de.ellpeck.actuallyadditions.items.metalists.TheMiscItems;
|
|
import de.ellpeck.actuallyadditions.util.Util;
|
|
import net.minecraft.entity.EntityCreature;
|
|
import net.minecraft.entity.monster.EntitySpider;
|
|
import net.minecraft.entity.passive.EntityBat;
|
|
import net.minecraft.entity.player.EntityPlayer;
|
|
import net.minecraft.init.Blocks;
|
|
import net.minecraft.item.ItemStack;
|
|
import net.minecraftforge.event.entity.living.LivingDropsEvent;
|
|
|
|
public class LivingDropEvent{
|
|
|
|
@SubscribeEvent
|
|
public void onEntityDropEvent(LivingDropsEvent event){
|
|
if(event.source.getEntity() instanceof EntityPlayer){
|
|
//Drop Solidified XP
|
|
if(event.entityLiving instanceof EntityCreature){
|
|
if(Util.RANDOM.nextInt(15) <= 0){
|
|
event.entityLiving.entityDropItem(new ItemStack(InitItems.itemSolidifiedExperience, Util.RANDOM.nextInt(2)+1), 0);
|
|
}
|
|
}
|
|
|
|
//Drop Cobwebs from Spiders
|
|
if(ConfigBoolValues.DO_SPIDER_DROPS.isEnabled() && event.entityLiving instanceof EntitySpider){
|
|
if(Util.RANDOM.nextInt(80) <= 0){
|
|
event.entityLiving.entityDropItem(new ItemStack(Blocks.web, Util.RANDOM.nextInt(2)+1), 0);
|
|
}
|
|
}
|
|
|
|
//Drop Wings from Bats
|
|
if(ConfigBoolValues.DO_BAT_DROPS.isEnabled() && event.entityLiving instanceof EntityBat){
|
|
if(Util.RANDOM.nextInt(30) <= 0){
|
|
event.entityLiving.entityDropItem(new ItemStack(InitItems.itemMisc, Util.RANDOM.nextInt(2)+1, TheMiscItems.BAT_WING.ordinal()), 0);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|