Package org.spout.vanilla.world.generator.normal.biome.NormalBiome

Examples of org.spout.vanilla.world.generator.normal.biome.NormalBiome.NormalTallGrassFactory


  public SkylandsBiome(int biomeId) {
    super(biomeId);
    final TreeDecorator trees = new TreeDecorator();
    trees.setFactory(new NormalTreeWGOFactory());
    final TallGrassDecorator tallGrass = new TallGrassDecorator();
    tallGrass.setFactory(new NormalTallGrassFactory());
    final EmeraldOreDecorator emeraldOre = new EmeraldOreDecorator();
    emeraldOre.setMinimumElevation(SkylandsGenerator.MINIMUM);
    emeraldOre.setElevationRandomness(12);
    emeraldOre.setBaseAmount(2);
    emeraldOre.setRandomAmount(4);
View Full Code Here

TOP

Related Classes of org.spout.vanilla.world.generator.normal.biome.NormalBiome.NormalTallGrassFactory

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.