Examples of Height


Examples of net.minecraft.world.biome.BiomeGenBase.Height

       
        setColor(0xFA9418);
        setBiomeName("Mountainous Desert");
        temperature = BiomeGenBase.desertHills.temperature;
        rainfall = BiomeGenBase.desertHills.rainfall;
        this.setHeight(new Height(0.9F, 0.5F));
        topBlock = Blocks.sand;
        fillerBlock = Blocks.sand;
        spawnableCreatureList.clear();
        setDisableRain();
    }
View Full Code Here

Examples of net.minecraft.world.biome.BiomeGenBase.Height

       
        setColor(0x469C7E);
        setBiomeName("Pine Forest");
        temperature = BiomeGenBase.forest.temperature;
        rainfall = BiomeGenBase.forest.rainfall;
        this.setHeight(new Height(0.2F, 0.1F));
       
        spawnableCreatureList.add(new SpawnListEntry(EntityWolf.class, 5, 4, 4));
    }
View Full Code Here

Examples of net.minecraft.world.biome.BiomeGenBase.Height

       
        setColor(0xBFA243);
        setBiomeName("Savanna");
        temperature = BiomeGenBase.desert.temperature;
        rainfall = BiomeGenBase.desert.rainfall;
        this.setHeight(new Height(0.1F, 0.05F));
       
        spawnableCreatureList.add(new SpawnListEntry(EntityHorse.class, 3, 2, 4));
    }
View Full Code Here

Examples of net.minecraft.world.biome.BiomeGenBase.Height

       
        setColor(0x0BD626);
        setBiomeName("Redwood Forest");
        temperature = 1.1F;
        rainfall = 1.4F;
        this.setHeight(new Height(1.2F, 0.3F));
    }
View Full Code Here

Examples of net.minecraft.world.biome.BiomeGenBase.Height

       
        setColor(0x41D923);
        setBiomeName("Mini Jungle");
        temperature = BiomeGenBase.jungle.temperature;
        rainfall = BiomeGenBase.jungle.rainfall;
        this.setHeight(new Height(0.4F, 0.2F));
        waterColorMultiplier = 0x24b01c;
       
        spawnableMonsterList.add(new SpawnListEntry(EntityOcelot.class, 2, 1, 1));
        spawnableCreatureList.add(new SpawnListEntry(EntityChicken.class, 10, 4, 4));
    }
View Full Code Here

Examples of net.minecraft.world.biome.BiomeGenBase.Height

       
        setColor(0x338235);
        setBiomeName("Temperate Rainforest");
        temperature = 0.6F;
        rainfall = 0.9F;
        this.setHeight(new Height(0.95F, 0.55F));
       
        spawnableCreatureList.add(new SpawnListEntry(net.minecraft.entity.passive.EntityWolf.class, 5, 4, 4));
    }
View Full Code Here

Examples of net.minecraft.world.biome.BiomeGenBase.Height

       
        setColor(0x68C474);
        setBiomeName("Green Hills");
        temperature = BiomeGenBase.forest.temperature - 0.1F;
        rainfall = BiomeGenBase.forest.rainfall + 0.1F;
        this.setHeight(new Height(0.9F, 0.3F));
    }
View Full Code Here

Examples of net.minecraft.world.biome.BiomeGenBase.Height

    setColor(0xC4722F);
    setBiomeName("Red Rock Mountains");
    temperature = BiomeGenBase.desert.temperature;
    rainfall = BiomeGenBase.desert.rainfall;
    // TODO: Check height
    this.setHeight(new Height(1.7F, -0.1F));
    setDisableRain();
    spawnableCreatureList.clear();
    spawnableCreatureList.add(new SpawnListEntry(EntityHorse.class, 3, 1, 3));
  }
View Full Code Here

Examples of net.minecraft.world.biome.BiomeGenBase.Height

        //setColor(0x056621);
        setColor(0x85B53E);
        setBiomeName("Woodlands");
        temperature = BiomeGenBase.forest.temperature;
        rainfall = BiomeGenBase.forest.rainfall;
        this.setHeight(new Height(0.3F, 0.1F));
       
        spawnableCreatureList.add(new SpawnListEntry(net.minecraft.entity.passive.EntityWolf.class, 5, 4, 4));
    }
View Full Code Here

Examples of net.minecraft.world.biome.BiomeGenBase.Height

    @SuppressWarnings("unchecked")
    public BiomeMeadow()
    {
    super(BiomeSettings.MEADOW, Type.PLAINS);
    this.setHeight(new Height(0.0F, 0.0F));
        setBiomeName("Meadow");
       
        this.setHeight(new Height(0.1F, 0.03125F));
       
        spawnableCreatureList.add(new SpawnListEntry(EntityHorse.class, 6, 2, 6));
    }
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.