Examples of DeadBushDecorator


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

    final MushroomDecorator mushrooms = new MushroomDecorator();
    mushrooms.setBaseAmount(3);
    final SugarCaneDecorator sugarCane = new SugarCaneDecorator();
    sugarCane.setClusterPlaceAttempts(15);
    sugarCane.setNumberOfClusters(2);
    addDecorators(new SandAndClayDecorator(), trees, tallGrass, new DeadBushDecorator(),
        new LilyPadDecorator(), mushrooms, sugarCane, new PumpkinDecorator());
    setElevation(60, 66);
    setGrassColorMultiplier(new Color(92, 105, 78));
    setFoliageColorMultiplier(new Color(73, 97, 55));
    setWaterColorMultiplier(new Color(224, 255, 174));
View Full Code Here

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

import org.spout.vanilla.world.generator.normal.decorator.WellDecorator;

public class DesertBiome extends SandyBiome {
  public DesertBiome(int biomeId) {
    super(biomeId);
    final DeadBushDecorator deadBushes = new DeadBushDecorator();
    deadBushes.setOdd(8);
    deadBushes.setBaseAmount(2);
    final SugarCaneDecorator sugarCane = new SugarCaneDecorator();
    sugarCane.setClusterPlaceAttempts(20);
    sugarCane.setNumberOfClusters(3);
    addDecorators(new SandAndClayDecorator(), new CactusDecorator(), deadBushes,
        new MushroomDecorator(), sugarCane, new WellDecorator());
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.