mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-05 00:29:08 +01:00
31 lines
1.5 KiB
Java
31 lines
1.5 KiB
Java
|
package ellpeck.someprettyrandomstuff.event;
|
||
|
|
||
|
import cpw.mods.fml.common.eventhandler.SubscribeEvent;
|
||
|
import ellpeck.someprettyrandomstuff.items.InitItems;
|
||
|
import ellpeck.someprettyrandomstuff.items.metalists.TheSpecialDrops;
|
||
|
import net.minecraft.entity.EntityCreature;
|
||
|
import net.minecraft.entity.monster.EntityMob;
|
||
|
import net.minecraft.entity.passive.EntityAnimal;
|
||
|
import net.minecraft.entity.player.EntityPlayer;
|
||
|
import net.minecraft.item.ItemStack;
|
||
|
import net.minecraftforge.event.entity.living.LivingDropsEvent;
|
||
|
|
||
|
import java.util.Random;
|
||
|
|
||
|
public class KilledEvent{
|
||
|
@SubscribeEvent
|
||
|
public void onEntityDropEvent(LivingDropsEvent event){
|
||
|
if(event.source.getEntity() instanceof EntityPlayer){
|
||
|
for(int i = 0; i < TheSpecialDrops.values().length; i++){
|
||
|
TheSpecialDrops theDrop = TheSpecialDrops.values()[i];
|
||
|
if(theDrop.canDrop && event.entityLiving.getClass() == theDrop.dropFrom || (event.entityLiving instanceof EntityCreature && theDrop.dropFrom == EntityCreature.class) || (event.entityLiving instanceof EntityMob && theDrop.dropFrom == EntityMob.class) || (event.entityLiving instanceof EntityAnimal && theDrop.dropFrom == EntityAnimal.class)){
|
||
|
if(new Random().nextInt(100) + 1 <= theDrop.chance){
|
||
|
event.entityLiving.entityDropItem(new ItemStack(InitItems.itemSpecialDrop, new Random().nextInt(theDrop.maxAmount) + 1, theDrop.ordinal()), 0);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
}
|
||
|
}
|