org.bukkit.entity.Chicken Java Examples

The following examples show how to use org.bukkit.entity.Chicken. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: ControllableOcelotBase.java    From EntityAPI with GNU Lesser General Public License v3.0 4 votes vote down vote up
@Override
public BehaviourItem[] getDefaultMovementBehaviours() {
    return new BehaviourItem[]{
            new BehaviourItem(1, new BehaviourRandomTargetNonTamed(this, Chicken.class, 750, false))
    };
}
 
Example #2
Source File: ChickenHandler.java    From EliteMobs with GNU General Public License v3.0 2 votes vote down vote up
public void dropEggs() {

        ItemStack eggStack = new ItemStack(Material.EGG, 1);
        ItemMeta eggMeta = eggStack.getItemMeta();
        eggMeta.setLore(lore);
        eggStack.setItemMeta(eggMeta);

        Iterator<LivingEntity> superChickenIterator = EntityTracker.getSuperMobs().iterator();

        while (superChickenIterator.hasNext()) {

            LivingEntity chicken = superChickenIterator.next();

            if (!(chicken instanceof Chicken)) continue;

            if (chicken == null || !chicken.isValid()) {

                superChickenIterator.remove();

            } else {

                Item droppedItem = chicken.getWorld().dropItem(chicken.getLocation(), eggStack);
                droppedItem.setVelocity(ItemDropVelocity.ItemDropVelocity());
                new BukkitRunnable() {

                    @Override
                    public void run() {

                        if (droppedItem.isValid()) {

                            droppedItem.remove();

                        }

                    }

                }.runTaskLater(MetadataHandler.PLUGIN, 20 * 60);

            }

        }

    }