Search in sources :

Example 1 with EntityAIPanic

use of net.minecraft.entity.ai.EntityAIPanic in project Almura by AlmuraDev.

the class MixinEntityChicken method initEntityAI.

/**
 * @author Dockter
 * Purpose: overwrite the AT init method to customize the temptations list.
 */
@Overwrite
protected void initEntityAI() {
    final Set<Item> TEMPTATION_ITEMS = Sets.newHashSet(Items.WHEAT_SEEDS, Items.MELON_SEEDS, Items.PUMPKIN_SEEDS, Items.BEETROOT_SEEDS);
    Item soyBeanItem = GameRegistry.makeItemStack("almura:food/food/soybean", 0, 1, null).getItem();
    Item cornItem = GameRegistry.makeItemStack("almura:food/food/corn", 0, 1, null).getItem();
    if (soyBeanItem != ItemStack.EMPTY.getItem())
        TEMPTATION_ITEMS.add(soyBeanItem);
    if (cornItem != ItemStack.EMPTY.getItem())
        TEMPTATION_ITEMS.add(cornItem);
    this.tasks.addTask(0, new EntityAISwimming(this));
    this.tasks.addTask(1, new EntityAIPanic(this, 1.4D));
    this.tasks.addTask(2, new EntityAIMate(this, 1.0D));
    this.tasks.addTask(3, new EntityAITempt(this, 1.0D, false, TEMPTATION_ITEMS));
    this.tasks.addTask(4, new EntityAIFollowParent(this, 1.1D));
    this.tasks.addTask(5, new EntityAIWanderAvoidWater(this, 1.0D));
    this.tasks.addTask(6, new EntityAIWatchClosest(this, EntityPlayer.class, 6.0F));
    this.tasks.addTask(7, new EntityAILookIdle(this));
}
Also used : Item(net.minecraft.item.Item) EntityAIWatchClosest(net.minecraft.entity.ai.EntityAIWatchClosest) EntityAIFollowParent(net.minecraft.entity.ai.EntityAIFollowParent) EntityAISwimming(net.minecraft.entity.ai.EntityAISwimming) EntityAITempt(net.minecraft.entity.ai.EntityAITempt) EntityPlayer(net.minecraft.entity.player.EntityPlayer) EntityAIMate(net.minecraft.entity.ai.EntityAIMate) EntityAILookIdle(net.minecraft.entity.ai.EntityAILookIdle) EntityAIPanic(net.minecraft.entity.ai.EntityAIPanic) EntityAIWanderAvoidWater(net.minecraft.entity.ai.EntityAIWanderAvoidWater) Overwrite(org.spongepowered.asm.mixin.Overwrite)

Example 2 with EntityAIPanic

use of net.minecraft.entity.ai.EntityAIPanic in project KalStuff by TEAMModding.

the class EntityDuck method initEntityAI.

protected void initEntityAI() {
    this.tasks.addTask(0, new EntityAISwimming(this));
    this.tasks.addTask(1, new EntityAIPanic(this, 1.4D));
    this.tasks.addTask(3, new EntityAITempt(this, 1.0D, false, TEMPTATION_ITEMS));
    this.tasks.addTask(4, new EntityAIFollowParent(this, 1.1D));
    this.tasks.addTask(7, new EntityAILookIdle(this));
}
Also used : EntityAIFollowParent(net.minecraft.entity.ai.EntityAIFollowParent) EntityAISwimming(net.minecraft.entity.ai.EntityAISwimming) EntityAITempt(net.minecraft.entity.ai.EntityAITempt) EntityAILookIdle(net.minecraft.entity.ai.EntityAILookIdle) EntityAIPanic(net.minecraft.entity.ai.EntityAIPanic)

Example 3 with EntityAIPanic

use of net.minecraft.entity.ai.EntityAIPanic in project Almura by AlmuraDev.

the class MixinEntityPig method initEntityAI.

/**
 * @author Dockter
 * Purpose: overwrite the AT init method to customize the temptations list.
 */
@Overwrite
protected void initEntityAI() {
    final Set<Item> TEMPTATION_ITEMS = Sets.newHashSet(Items.CARROT, Items.POTATO, Items.BEETROOT);
    Item soyBeanItem = GameRegistry.makeItemStack("almura:food/food/soybean", 0, 1, null).getItem();
    Item cornItem = GameRegistry.makeItemStack("almura:food/food/corn", 0, 1, null).getItem();
    if (soyBeanItem != ItemStack.EMPTY.getItem())
        TEMPTATION_ITEMS.add(soyBeanItem);
    if (cornItem != ItemStack.EMPTY.getItem())
        TEMPTATION_ITEMS.add(cornItem);
    this.tasks.addTask(0, new EntityAISwimming(this));
    this.tasks.addTask(1, new EntityAIPanic(this, 1.25D));
    this.tasks.addTask(3, new EntityAIMate(this, 1.0D));
    this.tasks.addTask(4, new EntityAITempt(this, 1.2D, Items.CARROT_ON_A_STICK, false));
    this.tasks.addTask(4, new EntityAITempt(this, 1.2D, false, TEMPTATION_ITEMS));
    this.tasks.addTask(5, new EntityAIFollowParent(this, 1.1D));
    this.tasks.addTask(6, new EntityAIWanderAvoidWater(this, 1.0D));
    this.tasks.addTask(7, new EntityAIWatchClosest(this, EntityPlayer.class, 6.0F));
    this.tasks.addTask(8, new EntityAILookIdle(this));
}
Also used : Item(net.minecraft.item.Item) EntityAIWatchClosest(net.minecraft.entity.ai.EntityAIWatchClosest) EntityAIFollowParent(net.minecraft.entity.ai.EntityAIFollowParent) EntityAISwimming(net.minecraft.entity.ai.EntityAISwimming) EntityAITempt(net.minecraft.entity.ai.EntityAITempt) EntityPlayer(net.minecraft.entity.player.EntityPlayer) EntityAIMate(net.minecraft.entity.ai.EntityAIMate) EntityAILookIdle(net.minecraft.entity.ai.EntityAILookIdle) EntityAIPanic(net.minecraft.entity.ai.EntityAIPanic) EntityAIWanderAvoidWater(net.minecraft.entity.ai.EntityAIWanderAvoidWater) Overwrite(org.spongepowered.asm.mixin.Overwrite)

Example 4 with EntityAIPanic

use of net.minecraft.entity.ai.EntityAIPanic in project Almura by AlmuraDev.

the class MixinEntityCow method initEntityAI.

/**
 * @author Dockter
 * Purpose: overwrite the AT init method to customize the temptations list.
 */
@Overwrite
protected void initEntityAI() {
    final Set<Item> TEMPTATION_ITEMS = Sets.newHashSet(Items.WHEAT);
    Item soyBeanItem = GameRegistry.makeItemStack("almura:food/food/soybean", 0, 1, null).getItem();
    Item cornItem = GameRegistry.makeItemStack("almura:food/food/corn", 0, 1, null).getItem();
    Item alfalfaItem = GameRegistry.makeItemStack("almura:normal/crop/alfalfa_item", 0, 1, null).getItem();
    if (soyBeanItem != ItemStack.EMPTY.getItem())
        TEMPTATION_ITEMS.add(soyBeanItem);
    if (cornItem != ItemStack.EMPTY.getItem())
        TEMPTATION_ITEMS.add(cornItem);
    if (alfalfaItem != ItemStack.EMPTY.getItem())
        TEMPTATION_ITEMS.add(alfalfaItem);
    this.tasks.addTask(0, new EntityAISwimming(this));
    this.tasks.addTask(1, new EntityAIPanic(this, 2.0D));
    this.tasks.addTask(2, new EntityAIMate(this, 1.0D));
    this.tasks.addTask(3, new EntityAITempt(this, 1.25D, false, TEMPTATION_ITEMS));
    this.tasks.addTask(4, new EntityAIFollowParent(this, 1.25D));
    this.tasks.addTask(5, new EntityAIWanderAvoidWater(this, 1.0D));
    this.tasks.addTask(6, new EntityAIWatchClosest(this, EntityPlayer.class, 6.0F));
    this.tasks.addTask(7, new EntityAILookIdle(this));
}
Also used : Item(net.minecraft.item.Item) EntityAIWatchClosest(net.minecraft.entity.ai.EntityAIWatchClosest) EntityAIFollowParent(net.minecraft.entity.ai.EntityAIFollowParent) EntityAISwimming(net.minecraft.entity.ai.EntityAISwimming) EntityAITempt(net.minecraft.entity.ai.EntityAITempt) EntityPlayer(net.minecraft.entity.player.EntityPlayer) EntityAIMate(net.minecraft.entity.ai.EntityAIMate) EntityAILookIdle(net.minecraft.entity.ai.EntityAILookIdle) EntityAIPanic(net.minecraft.entity.ai.EntityAIPanic) EntityAIWanderAvoidWater(net.minecraft.entity.ai.EntityAIWanderAvoidWater) Overwrite(org.spongepowered.asm.mixin.Overwrite)

Aggregations

EntityAIFollowParent (net.minecraft.entity.ai.EntityAIFollowParent)4 EntityAILookIdle (net.minecraft.entity.ai.EntityAILookIdle)4 EntityAIPanic (net.minecraft.entity.ai.EntityAIPanic)4 EntityAISwimming (net.minecraft.entity.ai.EntityAISwimming)4 EntityAITempt (net.minecraft.entity.ai.EntityAITempt)4 EntityAIMate (net.minecraft.entity.ai.EntityAIMate)3 EntityAIWanderAvoidWater (net.minecraft.entity.ai.EntityAIWanderAvoidWater)3 EntityAIWatchClosest (net.minecraft.entity.ai.EntityAIWatchClosest)3 EntityPlayer (net.minecraft.entity.player.EntityPlayer)3 Item (net.minecraft.item.Item)3 Overwrite (org.spongepowered.asm.mixin.Overwrite)3