Package net.minecraft.world.biome.BiomeGenBase

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


       
        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

       
        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

       
        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

    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

        //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

    @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

    setColor(0x68C474);
    setBiomeName("Green Swamplands");
    temperature = BiomeGenBase.swampland.temperature - 0.1F;
    rainfall = BiomeGenBase.swampland.rainfall;
    this.setHeight(new Height(-0.05F, 0.15F));
    spawnableMonsterList.add(new SpawnListEntry(EntitySlime.class, 1, 1, 1));
  }
View Full Code Here

       
        setColor(0x338277);
        setBiomeName("Snowy Rainforest");
        temperature = BiomeGenBase.taigaHills.temperature;
        rainfall = 1.3F;
        this.setHeight(new Height(0.95F, 0.55F));
        setEnableSnow();
       
        spawnableCreatureList.add(new SpawnListEntry(net.minecraft.entity.passive.EntityWolf.class, 5, 4, 4));
    }
View Full Code Here

       
        setColor(0x51B57D);
        setBiomeName("Shrubland");
        temperature = 0.4F;
        rainfall = 0.6F;
        this.setHeight(new Height(0.2F, 0.1F));
       
        spawnableCreatureList.add(new SpawnListEntry(EntityHorse.class, 6, 1, 5));
    }
View Full Code Here

TOP

Related Classes of net.minecraft.world.biome.BiomeGenBase.Height

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.