Examples of HugeMushroomDecorator


Examples of org.spout.vanilla.world.generator.normal.decorator.HugeMushroomDecorator

public class MushroomBiome extends GrassyBiome {
  public MushroomBiome(int biomeId) {
    super(biomeId);
    final MushroomDecorator mushrooms = new MushroomDecorator();
    mushrooms.setOdd(1);
    addDecorators(new SandAndClayDecorator(), new HugeMushroomDecorator(), mushrooms);
    setElevation(63, 87);
    setTopCover(new GroundCoverPopulator.GroundCoverLayer[] {
        new GroundCoverPopulator.GroundCoverUniformLayer(VanillaMaterials.MYCELIUM, VanillaMaterials.DIRT, (byte) 1),
        new GroundCoverPopulator.GroundCoverVariableLayer(VanillaMaterials.DIRT, VanillaMaterials.DIRT, (byte) 1, (byte) 4)
    });
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.