Search in sources :

Example 1 with LeaflessTreeDecorator

use of com.mraof.minestuck.world.lands.decorator.LeaflessTreeDecorator in project Minestuck by mraof.

the class LandAspectShade method getDecorators.

@Override
public List<ILandDecorator> getDecorators() {
    ArrayList<ILandDecorator> list = new ArrayList<ILandDecorator>();
    list.add(new SurfaceMushroomGenerator(10, 64, BiomeMinestuck.mediumNormal));
    list.add(new SurfaceMushroomGenerator(5, 32, BiomeMinestuck.mediumRough));
    list.add(new LeaflessTreeDecorator(MinestuckBlocks.glowingLog.getDefaultState(), 0.5F, BiomeMinestuck.mediumNormal));
    list.add(new LeaflessTreeDecorator(MinestuckBlocks.glowingLog.getDefaultState(), 2, BiomeMinestuck.mediumRough));
    list.add(new UndergroundDecoratorVein(Blocks.GRAVEL.getDefaultState(), 8, 33, 256));
    list.add(new UndergroundDecoratorVein(Blocks.IRON_ORE.getDefaultState(), 24, 9, 64));
    list.add(new UndergroundDecoratorVein(Blocks.LAPIS_ORE.getDefaultState(), 6, 7, 35));
    return list;
}
Also used : UndergroundDecoratorVein(com.mraof.minestuck.world.lands.decorator.UndergroundDecoratorVein) ILandDecorator(com.mraof.minestuck.world.lands.decorator.ILandDecorator) LeaflessTreeDecorator(com.mraof.minestuck.world.lands.decorator.LeaflessTreeDecorator) ArrayList(java.util.ArrayList) SurfaceMushroomGenerator(com.mraof.minestuck.world.lands.decorator.SurfaceMushroomGenerator)

Aggregations

ILandDecorator (com.mraof.minestuck.world.lands.decorator.ILandDecorator)1 LeaflessTreeDecorator (com.mraof.minestuck.world.lands.decorator.LeaflessTreeDecorator)1 SurfaceMushroomGenerator (com.mraof.minestuck.world.lands.decorator.SurfaceMushroomGenerator)1 UndergroundDecoratorVein (com.mraof.minestuck.world.lands.decorator.UndergroundDecoratorVein)1 ArrayList (java.util.ArrayList)1