Search in sources :

Example 1 with SurfaceMushroomGenerator

use of com.mraof.minestuck.world.lands.decorator.SurfaceMushroomGenerator 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)

Example 2 with SurfaceMushroomGenerator

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

the class LandAspectWood method getDecorators.

@Override
public List<ILandDecorator> getDecorators() {
    ArrayList<ILandDecorator> list = new ArrayList<ILandDecorator>();
    list.add(new SurfaceDecoratorVein(Blocks.LEAVES.getDefaultState(), 15, 32, BiomeMinestuck.mediumRough));
    list.add(new SurfaceDecoratorVein(MinestuckBlocks.log.getDefaultState().withProperty(BlockLog.LOG_AXIS, BlockLog.EnumAxis.NONE), 8, 32, BiomeMinestuck.mediumNormal));
    list.add(new SurfaceDecoratorVein(Blocks.NETHERRACK.getDefaultState(), 6, 8, BiomeMinestuck.mediumNormal));
    list.add(new SurfaceMushroomGenerator(Blocks.BROWN_MUSHROOM, true, 10, 64, BiomeMinestuck.mediumNormal));
    list.add(new SurfaceMushroomGenerator(Blocks.BROWN_MUSHROOM, true, 5, 32, BiomeMinestuck.mediumRough));
    list.add(new SurfaceMushroomGenerator(Blocks.RED_MUSHROOM, true, 10, 64, BiomeMinestuck.mediumNormal));
    list.add(new SurfaceMushroomGenerator(Blocks.RED_MUSHROOM, true, 5, 32, BiomeMinestuck.mediumRough));
    list.add(new UndergroundDecoratorVein(Blocks.GRAVEL.getDefaultState(), 8, 33, 256));
    list.add(new UndergroundDecoratorVein(Blocks.DIRT.getDefaultState(), 18, 17, 128));
    list.add(new UndergroundDecoratorVein(Blocks.REDSTONE_ORE.getDefaultState(), 8, 7, 32));
    list.add(new UndergroundDecoratorVein(Blocks.IRON_ORE.getDefaultState(), 12, 9, 32));
    list.add(new UndergroundDecoratorVein(Blocks.EMERALD_ORE.getDefaultState(), 8, 3, 24));
    return list;
}
Also used : UndergroundDecoratorVein(com.mraof.minestuck.world.lands.decorator.UndergroundDecoratorVein) SurfaceDecoratorVein(com.mraof.minestuck.world.lands.decorator.SurfaceDecoratorVein) ILandDecorator(com.mraof.minestuck.world.lands.decorator.ILandDecorator) ArrayList(java.util.ArrayList) SurfaceMushroomGenerator(com.mraof.minestuck.world.lands.decorator.SurfaceMushroomGenerator)

Aggregations

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