use of rtg.api.world.deco.DecoBoulder in project Realistic-Terrain-Generation by Team-RTG.
the class RealisticBiomeBOPDeadForest method initDecos.
@Override
public void initDecos() {
DecoBoulder decoBoulder = new DecoBoulder();
decoBoulder.setBoulderBlock(Blocks.COBBLESTONE.getDefaultState());
decoBoulder.setChance(16);
decoBoulder.setMaxY(95);
decoBoulder.setStrengthFactor(1f);
this.addDeco(decoBoulder);
DecoFallenTree decoFallenTree1 = new DecoFallenTree();
decoFallenTree1.setLoops(1);
decoFallenTree1.getDistribution().setNoiseDivisor(100f);
decoFallenTree1.getDistribution().setNoiseFactor(6f);
decoFallenTree1.getDistribution().setNoiseAddend(0.8f);
decoFallenTree1.setLogCondition(NOISE_GREATER_AND_RANDOM_CHANCE);
decoFallenTree1.setLogConditionNoise(0f);
decoFallenTree1.setLogConditionChance(10);
decoFallenTree1.setMaxY(100);
decoFallenTree1.setLogBlock(BOPBlocks.log_3.getStateFromMeta(2));
decoFallenTree1.setLeavesBlock(Blocks.LEAVES.getDefaultState());
decoFallenTree1.setMinSize(3);
decoFallenTree1.setMaxSize(5);
DecoFallenTree decoFallenTree2 = new DecoFallenTree();
decoFallenTree2.setLoops(1);
decoFallenTree2.getDistribution().setNoiseDivisor(100f);
decoFallenTree2.getDistribution().setNoiseFactor(6f);
decoFallenTree2.getDistribution().setNoiseAddend(0.8f);
decoFallenTree2.setLogCondition(NOISE_GREATER_AND_RANDOM_CHANCE);
decoFallenTree2.setLogConditionNoise(0f);
decoFallenTree2.setLogConditionChance(10);
decoFallenTree2.setMaxY(100);
decoFallenTree2.setLogBlock(BlockUtil.getStateLog(1));
decoFallenTree2.setLeavesBlock(BlockUtil.getStateLeaf(1));
decoFallenTree2.setMinSize(3);
decoFallenTree2.setMaxSize(5);
DecoHelperRandomSplit decoHelperRandomSplit = new DecoHelperRandomSplit();
decoHelperRandomSplit.decos = new DecoBase[] { decoFallenTree2, decoFallenTree1 };
decoHelperRandomSplit.chances = new int[] { 12, 1 };
this.addDeco(decoHelperRandomSplit, this.getConfig().ALLOW_LOGS.get());
DecoBaseBiomeDecorations decoBaseBiomeDecorations = new DecoSingleBiomeDecorations();
this.addDeco(decoBaseBiomeDecorations);
}
use of rtg.api.world.deco.DecoBoulder in project Realistic-Terrain-Generation by Team-RTG.
the class RealisticBiomeMCMLoessPlateau method initDecos.
@Override
public void initDecos() {
DecoFallenTree decoFallenTree = new DecoFallenTree();
decoFallenTree.getDistribution().setNoiseDivisor(100f);
decoFallenTree.getDistribution().setNoiseFactor(6f);
decoFallenTree.getDistribution().setNoiseAddend(0.8f);
decoFallenTree.setLogCondition(NOISE_GREATER_AND_RANDOM_CHANCE);
decoFallenTree.setLogConditionNoise(0f);
decoFallenTree.setLogConditionChance(24);
decoFallenTree.setLogBlock(BlockUtil.getStateLog(1));
decoFallenTree.setLeavesBlock(BlockUtil.getStateLeaf(1));
decoFallenTree.setMinSize(3);
decoFallenTree.setMaxSize(6);
this.addDeco(decoFallenTree, this.getConfig().ALLOW_LOGS.get());
DecoShrub decoShrub = new DecoShrub();
decoShrub.setLogBlock(BlockUtil.getStateLog(1));
decoShrub.setLeavesBlock(BlockUtil.getStateLeaf(1));
decoShrub.setMaxY(90);
decoShrub.setStrengthFactor(2f);
decoShrub.setChance(12);
this.addDeco(decoShrub);
DecoBoulder decoBoulder = new DecoBoulder();
decoBoulder.setBoulderBlock(Blocks.COBBLESTONE.getDefaultState());
decoBoulder.setChance(30);
decoBoulder.setMaxY(80);
decoBoulder.setStrengthFactor(2f);
this.addDeco(decoBoulder);
DecoBaseBiomeDecorations decoBaseBiomeDecorations = new DecoBaseBiomeDecorations();
this.addDeco(decoBaseBiomeDecorations);
}
use of rtg.api.world.deco.DecoBoulder in project Realistic-Terrain-Generation by Team-RTG.
the class RealisticBiomeMCMWarmTaiga method initDecos.
@Override
public void initDecos() {
DecoFallenTree decoFallenTree = new DecoFallenTree();
decoFallenTree.getDistribution().setNoiseDivisor(100f);
decoFallenTree.getDistribution().setNoiseFactor(6f);
decoFallenTree.getDistribution().setNoiseAddend(0.8f);
decoFallenTree.setLogCondition(NOISE_GREATER_AND_RANDOM_CHANCE);
decoFallenTree.setLogConditionNoise(0f);
decoFallenTree.setLogConditionChance(24);
decoFallenTree.setLogBlock(BlockUtil.getStateLog(1));
decoFallenTree.setLeavesBlock(BlockUtil.getStateLeaf(1));
decoFallenTree.setMinSize(3);
decoFallenTree.setMaxSize(6);
this.addDeco(decoFallenTree, this.getConfig().ALLOW_LOGS.get());
DecoShrub decoShrub = new DecoShrub();
decoShrub.setLogBlock(BlockUtil.getStateLog(1));
decoShrub.setLeavesBlock(BlockUtil.getStateLeaf(1));
decoShrub.setMaxY(90);
decoShrub.setStrengthFactor(2f);
decoShrub.setChance(12);
this.addDeco(decoShrub);
DecoBoulder decoBoulder = new DecoBoulder();
decoBoulder.setBoulderBlock(Blocks.COBBLESTONE.getDefaultState());
decoBoulder.setChance(30);
decoBoulder.setMaxY(80);
decoBoulder.setStrengthFactor(2f);
this.addDeco(decoBoulder);
DecoBaseBiomeDecorations decoBaseBiomeDecorations = new DecoBaseBiomeDecorations();
this.addDeco(decoBaseBiomeDecorations);
}
use of rtg.api.world.deco.DecoBoulder in project Realistic-Terrain-Generation by Team-RTG.
the class RealisticBiomeVanillaMesaBryce method initDecos.
@Override
public void initDecos() {
this.addDecoCollection(new DecoCollectionDesertRiver(this.getConfig().ALLOW_CACTUS.get()));
DecoBoulder decoBoulder = new DecoBoulder();
decoBoulder.setBoulderBlock(Blocks.COBBLESTONE.getDefaultState());
decoBoulder.setMaxY(83);
this.addDeco(decoBoulder);
DecoShrub decoShrub = new DecoShrub();
decoShrub.setLoops(3);
decoShrub.setMaxY(90);
addDeco(decoShrub);
DecoDeadBush decoDeadBush = new DecoDeadBush();
decoDeadBush.setMaxY(100);
decoDeadBush.setLoops(3);
this.addDeco(decoDeadBush);
DecoCactus decoCactus = new DecoCactus();
decoCactus.setSoilBlock(BlockUtil.getStateSand(1));
decoCactus.setLoops(18);
decoCactus.setMaxY(100);
this.addDeco(decoCactus, this.getConfig().ALLOW_CACTUS.get());
}
use of rtg.api.world.deco.DecoBoulder in project Realistic-Terrain-Generation by Team-RTG.
the class RealisticBiomeBOPCherryBlossomGrove method initDecos.
@Override
public void initDecos() {
DecoBoulder decoBoulder = new DecoBoulder();
decoBoulder.setBoulderBlock(Blocks.COBBLESTONE.getDefaultState());
decoBoulder.setChance(16);
decoBoulder.setMaxY(95);
this.addDeco(decoBoulder);
DecoFallenTree decoFallenTree1 = new DecoFallenTree();
decoFallenTree1.getDistribution().setNoiseDivisor(100f);
decoFallenTree1.getDistribution().setNoiseFactor(6f);
decoFallenTree1.getDistribution().setNoiseAddend(0.8f);
decoFallenTree1.setLogCondition(NOISE_GREATER_AND_RANDOM_CHANCE);
decoFallenTree1.setLogConditionNoise(0f);
decoFallenTree1.setLogConditionChance(16);
decoFallenTree1.setMaxY(100);
decoFallenTree1.setLogBlock(BOPBlocks.log_1.getStateFromMeta(1));
decoFallenTree1.setLeavesBlock(Blocks.LEAVES.getDefaultState());
decoFallenTree1.setMinSize(3);
decoFallenTree1.setMaxSize(5);
DecoFallenTree decoFallenTree2 = new DecoFallenTree();
decoFallenTree1.getDistribution().setNoiseDivisor(100f);
decoFallenTree1.getDistribution().setNoiseFactor(6f);
decoFallenTree1.getDistribution().setNoiseAddend(0.8f);
decoFallenTree2.setLogCondition(NOISE_GREATER_AND_RANDOM_CHANCE);
decoFallenTree2.setLogConditionNoise(0f);
decoFallenTree2.setLogConditionChance(16);
decoFallenTree2.setMaxY(100);
decoFallenTree2.setLogBlock(Blocks.LOG.getDefaultState());
decoFallenTree2.setLeavesBlock(Blocks.LEAVES.getDefaultState());
decoFallenTree2.setMinSize(3);
decoFallenTree2.setMaxSize(5);
DecoHelperRandomSplit decoHelperRandomSplit = new DecoHelperRandomSplit();
decoHelperRandomSplit.decos = new DecoBase[] { decoFallenTree2, decoFallenTree1 };
decoHelperRandomSplit.chances = new int[] { 15, 1 };
this.addDeco(decoHelperRandomSplit, this.getConfig().ALLOW_LOGS.get());
DecoBaseBiomeDecorations decoBaseBiomeDecorations = new DecoSingleBiomeDecorations();
this.addDeco(decoBaseBiomeDecorations);
}
Aggregations