Package net.minecraft.src

Examples of net.minecraft.src.EntityAIHurtByTarget


    // net.minecraft.src.EntityVillager.class,
    // moveSpeed, true));
    tasks.addTask(6, new EntityAIWander(this, moveSpeed));
    tasks.addTask(6, new EntityAIWatchClosest(this, net.minecraft.src.EntityPlayer.class, 8F));
    tasks.addTask(6, new EntityAILookIdle(this));
    targetTasks.addTask(1, new EntityAIHurtByTarget(this, false));
    targetTasks.addTask(2, new EntityAINearestAttackableTarget(this,
        net.minecraft.src.EntityPlayer.class, 16F, 0, true));
    targetTasks.addTask(2, new EntityAINearestAttackableTarget(this,
        net.minecraft.src.EntityVillager.class, 16F, 0, false));
    // tasks.addTask(2, new EntityAIArrowAttack(this, moveSpeed, 3, 60));
View Full Code Here

TOP

Related Classes of net.minecraft.src.EntityAIHurtByTarget

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.