Package com.mojang.minecraft.mob.ai

Examples of com.mojang.minecraft.mob.ai.BasicAttackAI


   public Zombie(Level var1, float var2, float var3, float var4) {
      super(var1, var2, var3, var4);
      this.modelName = "zombie";
      this.textureName = "/mob/zombie.png";
      this.heightOffset = 1.62F;
      BasicAttackAI var5 = new BasicAttackAI();
      this.deathScore = 80;
      var5.defaultLookAngle = 30;
      var5.runSpeed = 1.0F;
      this.ai = var5;
   }
View Full Code Here

TOP

Related Classes of com.mojang.minecraft.mob.ai.BasicAttackAI

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.