Search in sources :

Example 1 with FireFieldDecorator

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

the class LandAspectHeat method getDecorators.

@Override
public List<ILandDecorator> getDecorators() {
    ArrayList<ILandDecorator> list = new ArrayList<ILandDecorator>();
    list.add(new FireFieldDecorator(7, BiomeMinestuck.mediumNormal));
    list.add(new FireFieldDecorator(10, BiomeMinestuck.mediumRough));
    list.add(new SurfaceDecoratorVein(Blocks.SOUL_SAND.getDefaultState(), 15, 32, BiomeMinestuck.mediumRough));
    list.add(new SurfaceDecoratorVein(Blocks.SOUL_SAND.getDefaultState(), 8, 32, BiomeMinestuck.mediumNormal));
    list.add(new SurfaceDecoratorVein(Blocks.GLOWSTONE.getDefaultState(), 5, 8, BiomeMinestuck.mediumNormal));
    list.add(new UndergroundDecoratorVein(Blocks.GRAVEL.getDefaultState(), 8, 33, 256));
    list.add(new UndergroundDecoratorVein(MinestuckBlocks.coalOreNetherrack.getDefaultState(), 26, 17, 128));
    list.add(new UndergroundDecoratorVein(Blocks.QUARTZ_ORE.getDefaultState(), 13, 8, 64));
    return list;
}
Also used : UndergroundDecoratorVein(com.mraof.minestuck.world.lands.decorator.UndergroundDecoratorVein) FireFieldDecorator(com.mraof.minestuck.world.lands.decorator.FireFieldDecorator) SurfaceDecoratorVein(com.mraof.minestuck.world.lands.decorator.SurfaceDecoratorVein) ILandDecorator(com.mraof.minestuck.world.lands.decorator.ILandDecorator) ArrayList(java.util.ArrayList)

Aggregations

FireFieldDecorator (com.mraof.minestuck.world.lands.decorator.FireFieldDecorator)1 ILandDecorator (com.mraof.minestuck.world.lands.decorator.ILandDecorator)1 SurfaceDecoratorVein (com.mraof.minestuck.world.lands.decorator.SurfaceDecoratorVein)1 UndergroundDecoratorVein (com.mraof.minestuck.world.lands.decorator.UndergroundDecoratorVein)1 ArrayList (java.util.ArrayList)1