Package net.minecraft.src

Examples of net.minecraft.src.EntityAIOpenDoor


    name = "Stormcloak";
    texture = "/mob/stormcloak.png";
      moveSpeed = 0.3F;
    
      tasks.addTask(1, new EntityAIRandomEvent(this, moveSpeed, world));
       tasks.addTask(1, new EntityAIOpenDoor(this, true));
      tasks.addTask(0, new EntityAISoldier(this, EntityMob.class, Imperial.class,moveSpeed));
       
       tasks.addTask(5, new EntityAIMoveThroughVillage(this, moveSpeed, true));
      targetTasks.addTask(2, new EntityAINearestAttackableTarget(this,
          me.ashtheking.dragons.mob.SabreTooth.class, 16F, 0, false));
View Full Code Here


    attackStrength = 4;
    name = "Imperial";
      moveSpeed = 0.3F;
    texture = "/mob/imperial.png";
    tasks.addTask(1, new EntityAIRandomEvent(this, moveSpeed, world));
     tasks.addTask(1, new EntityAIOpenDoor(this, true));
    tasks.addTask(0, new EntityAISoldier(this, EntityMob.class, Stormcloak.class,moveSpeed));
     
     tasks.addTask(5, new EntityAIMoveThroughVillage(this, moveSpeed, true));
    targetTasks.addTask(2, new EntityAINearestAttackableTarget(this,
        me.ashtheking.dragons.mob.SabreTooth.class, 16F, 0, false));
View Full Code Here

    super(par1World);
    attackStrength = 4;
      moveSpeed = 0.3F;
    name = "Imperial";
    texture = "/mob/imperial.png";
     tasks.addTask(1, new EntityAIOpenDoor(this, true));
    tasks.addTask(1, new EntityAIRandomEvent(this, moveSpeed, par1World));
    tasks.addTask(0, new EntityAISoldier(this, EntityMob.class, Stormcloak.class,moveSpeed));
     tasks.addTask(5, new EntityAIMoveThroughVillage(this, moveSpeed, true));
    targetTasks.addTask(2, new EntityAINearestAttackableTarget(this,
        me.ashtheking.dragons.mob.SabreTooth.class, 16F, 0, false));
View Full Code Here

TOP

Related Classes of net.minecraft.src.EntityAIOpenDoor

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.