Package com.mojang.minecraft.mob

Examples of com.mojang.minecraft.mob.Creeper


                     if(var6 == 2) {
                        var21 = new Pig(this.level, var15, var16, var17);
                     }

                     if(var6 == 3) {
                        var21 = new Creeper(this.level, var15, var16, var17);
                     }

                     if(var6 == 4) {
                        var21 = new Spider(this.level, var15, var16, var17);
                     }
View Full Code Here


   public Creeper(Level var1, float var2, float var3, float var4) {
      super(var1);
      this.heightOffset = 1.62F;
      this.modelName = "creeper";
      this.textureName = "/mob/creeper.png";
      this.ai = new Creeper$1(this);
      this.ai.defaultLookAngle = 45;
      this.deathScore = 200;
      this.setPos(var2, var3, var4);
   }
View Full Code Here

TOP

Related Classes of com.mojang.minecraft.mob.Creeper

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.