Package org.spout.vanilla.world.generator.nether.decorator

Examples of org.spout.vanilla.world.generator.nether.decorator.LavaFallDecorator


import org.spout.vanilla.world.generator.nether.decorator.NetherMushroomDecorator;

public class NetherrackBiome extends VanillaBiome {
  public NetherrackBiome(int biomeId) {
    super(biomeId);
    addDecorators(new LavaFallDecorator(), new FireDecorator(), new GlowstoneDecorator(),
        new NetherMushroomDecorator());
    setGrassColorMultiplier(new Color(191, 183, 85));
    setFoliageColorMultiplier(new Color(174, 164, 42));
  }
View Full Code Here

TOP

Related Classes of org.spout.vanilla.world.generator.nether.decorator.LavaFallDecorator

Copyright © 2018 www.massapicom. 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.