final TallGrassDecorator tallGrass = new TallGrassDecorator();
tallGrass.setFactory(new JungleBiome.JungleTallGrassFactory());
tallGrass.setBaseAmount(15);
final FlowerDecorator flowers = new FlowerDecorator();
flowers.setBaseAmount(4);
addDecorators(new SandAndClayDecorator(), trees, flowers, tallGrass, new MushroomDecorator(),
new SugarCaneDecorator(), new PumpkinDecorator(), new VineDecorator());
setElevation(63, 92);
setGrassColorMultiplier(new Color(83, 202, 55));
setFoliageColorMultiplier(new Color(41, 188, 5));
}