Examples of Creeper


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

Examples of com.mojang.minecraft.mob.Creeper$1

   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

Examples of org.bukkit.entity.Creeper

        if (toSpawn == EntityType.PIG_ZOMBIE){
          PigZombie pigzombie = (PigZombie) entity1;
          pigzombie.setAngry(true);
        }
      } else if (type.equalsIgnoreCase("charged")){
        Creeper creep = (Creeper) entity1;
        creep.setPowered(true);
      } else if (toSpawn == EntityType.ENDERMAN && ClosestMatches.material(type).size() > 0){
        Enderman enderman = (Enderman) entity1;
        enderman.setCarriedMaterial(new MaterialData(ClosestMatches.material(type).get(0)));
      } else if (toSpawn == EntityType.VILLAGER && ClosestMatches.villagerProfessions(type).size() > 0){
        Villager villager = (Villager) entity1;
View Full Code Here

Examples of org.bukkit.entity.Creeper

             if (toSpawn == EntityType.PIG_ZOMBIE){
               PigZombie pigzombie = (PigZombie) entity1;
               pigzombie.setAngry(true);
             }
          } else if (type.equalsIgnoreCase("charged")){
            Creeper creep = (Creeper) entity1;
            creep.setPowered(true);
          } else if (type.equalsIgnoreCase("saddle")){
            Pig pig = (Pig) entity1;
            pig.setSaddle(true);
          } else if (toSpawn == EntityType.ENDERMAN && ClosestMatches.material(type).size() > 0){
            Enderman enderman = (Enderman) entity1;
View Full Code Here

Examples of org.bukkit.entity.Creeper

          Wolf wolf = (Wolf) entity;
          wolf.setAngry(true);
        }
       
        if (type.equalsIgnoreCase("charged")){
          Creeper creep = (Creeper) entity;
          creep.setPowered(true);
        }
       
        if (type.startsWith("ocelottype:")){
          type = type.replaceFirst("ocelottype:", "");
          Ocelot oce = (Ocelot) entity;
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.