Examples of SandAndClayDecorator


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

    super(biomeId);
    final TreeDecorator trees = new TreeDecorator();
    trees.setFactory(new TaigaTreeWGOFactory());
    final TallGrassDecorator tallGrass = new TallGrassDecorator();
    tallGrass.setFactory(new NormalTallGrassFactory());
    addDecorators(new SandAndClayDecorator(), trees, new FlowerDecorator(), tallGrass,
        new MushroomDecorator(), new SugarCaneDecorator(), new PumpkinDecorator());
    setElevation(63, 83);
    setGrassColorMultiplier(new Color(130, 181, 147));
    setFoliageColorMultiplier(new Color(99, 162, 119));
  }
View Full Code Here

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

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

public class FrozenOceanBiome extends SnowyBiome {
  public FrozenOceanBiome(int biomeId) {
    super(biomeId);
    addDecorators(new SandAndClayDecorator());
    setElevation(46, 58);
    setGrassColorMultiplier(new Color(128, 180, 151));
    setFoliageColorMultiplier(new Color(96, 161, 123));
  }
View Full Code Here

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

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

public class FrozenRiverBiome extends SnowyBiome {
  public FrozenRiverBiome(int biomeId) {
    super(biomeId);
    addDecorators(new SandAndClayDecorator());
    setElevation(58, 62);
    setGrassColorMultiplier(new Color(128, 180, 151));
    setFoliageColorMultiplier(new Color(96, 161, 123));
  }
View Full Code Here

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

public class TundraBiome extends SnowyBiome {
  public TundraBiome(int biomeId) {
    super(biomeId);
    final TreeDecorator trees = new TreeDecorator();
    trees.setFactory(new NormalTreeWGOFactory());
    addDecorators(new SandAndClayDecorator(), trees, new MushroomDecorator());
    setElevation(63, 79);
    setGrassColorMultiplier(new Color(128, 180, 151));
    setFoliageColorMultiplier(new Color(96, 161, 123));
  }
View Full Code Here

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

    super(biomeId);
    final TreeDecorator trees = new TreeDecorator();
    trees.setFactory(new NormalTreeWGOFactory());
    final TallGrassDecorator tallGrass = new TallGrassDecorator();
    tallGrass.setFactory(new NormalTallGrassFactory());
    addDecorators(new SandAndClayDecorator(), trees, new FlowerDecorator(), tallGrass,
        new MushroomDecorator(), new SugarCaneDecorator(), new PumpkinDecorator());
    setElevation(46, 58);
    setGrassColorMultiplier(new Color(142, 185, 113));
    setFoliageColorMultiplier(new Color(113, 167, 77));
  }
View Full Code Here

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

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

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

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

public class BeachBiome extends SandyBiome {
  public BeachBiome(int biomeId) {
    super(biomeId);
    addDecorators(new SandAndClayDecorator(), new MushroomDecorator(), new SugarCaneDecorator());
    setElevation(62, 65);
    setGrassColorMultiplier(new Color(145, 189, 89));
    setFoliageColorMultiplier(new Color(119, 171, 47));
  }
View Full Code Here

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

    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.SandAndClayDecorator

    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());
    setElevation(63, 74);
    setGrassColorMultiplier(new Color(191, 183, 85));
    setFoliageColorMultiplier(new Color(174, 164, 42));
  }
View Full Code Here

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

    tallGrass.setFactory(new NormalTallGrassFactory());
    tallGrass.setBaseAmount(5);
    final FlowerDecorator flowers = new FlowerDecorator();
    flowers.setOdd(5);
    flowers.setBaseAmount(8);
    addDecorators(new SandAndClayDecorator(), flowers, tallGrass, new MushroomDecorator(),
        new SugarCaneDecorator(), new PumpkinDecorator());
    setElevation(63, 74);
    setGrassColorMultiplier(new Color(145, 189, 89));
    setFoliageColorMultiplier(new Color(119, 171, 47));
  }
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.