Examples of TreeDecorator


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

import org.spout.vanilla.world.generator.normal.object.tree.TreeObject;

public class TaigaBiome extends SnowyBiome {
  public TaigaBiome(int biomeId) {
    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);
View Full Code Here

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

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

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

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

public class OceanBiome extends GrassyBiome {
  public OceanBiome(int biomeId) {
    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);
View Full Code Here

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

import org.spout.vanilla.world.generator.normal.object.tree.TreeObject;

public class SwampBiome extends GrassyBiome {
  public SwampBiome(int biomeId) {
    super(biomeId);
    final TreeDecorator trees = new TreeDecorator();
    trees.setFactory(new SwampTreeWGOFactory());
    final TallGrassDecorator tallGrass = new TallGrassDecorator();
    tallGrass.setFactory(new NormalTallGrassFactory());
    final MushroomDecorator mushrooms = new MushroomDecorator();
    mushrooms.setBaseAmount(3);
    final SugarCaneDecorator sugarCane = new SugarCaneDecorator();
View Full Code Here

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

      new GroundCoverVariableLayer(VanillaMaterials.DIRT, VanillaMaterials.DIRT, (byte) 1, (byte) 4)
  };

  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);
View Full Code Here

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

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

public class MountainsBiome extends GrassyBiome {
  public MountainsBiome(int biomeId) {
    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(),
        new EmeraldOreDecorator());
View Full Code Here

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

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

public class RiverBiome extends GrassyBiome {
  public RiverBiome(int biomeId) {
    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(58, 62);
View Full Code Here

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

import org.spout.vanilla.world.generator.normal.object.tree.TreeObject.TreeType;

public class ForestBiome extends GrassyBiome {
  public ForestBiome(int biomeId) {
    super(biomeId);
    final TreeDecorator trees = new TreeDecorator();
    trees.setFactory(new ForestTreeWGOFactory());
    final TallGrassDecorator tallGrass = new TallGrassDecorator();
    tallGrass.setFactory(new NormalTallGrassFactory());
    tallGrass.setBaseAmount(3);
    addDecorators(new SandAndClayDecorator(), trees, new FlowerDecorator(), tallGrass,
        new MushroomDecorator(), new SugarCaneDecorator(), new PumpkinDecorator());
View Full Code Here

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

import org.spout.vanilla.world.generator.normal.object.tree.TreeObject;

public class JungleBiome extends GrassyBiome {
  public JungleBiome(int biomeId) {
    super(biomeId);
    final TreeDecorator trees = new TreeDecorator();
    trees.setFactory(new JungleTreeWGOFactory());
    final TallGrassDecorator tallGrass = new TallGrassDecorator();
    tallGrass.setFactory(new JungleBiome.JungleTallGrassFactory());
    tallGrass.setBaseAmount(15);
    final FlowerDecorator flowers = new FlowerDecorator();
    flowers.setBaseAmount(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.