Search in sources :

Example 26 with DecoFallenTree

use of rtg.api.world.deco.DecoFallenTree in project Realistic-Terrain-Generation by Team-RTG.

the class RealisticBiomeBOPOrchard method initDecos.

@Override
public void initDecos() {
    DecoBaseBiomeDecorations decoBaseBiomeDecorations = new DecoSingleBiomeDecorations();
    this.addDeco(decoBaseBiomeDecorations);
    DecoFallenTree decoFallenTree = new DecoFallenTree();
    decoFallenTree.getDistribution().setNoiseDivisor(80f);
    decoFallenTree.getDistribution().setNoiseFactor(60f);
    decoFallenTree.getDistribution().setNoiseAddend(-15f);
    decoFallenTree.setLogCondition(RANDOM_CHANCE);
    decoFallenTree.setLogConditionChance(10);
    decoFallenTree.setLogBlock(Blocks.LOG.getDefaultState());
    decoFallenTree.setLeavesBlock(Blocks.LEAVES.getDefaultState());
    decoFallenTree.setMinSize(2);
    decoFallenTree.setMaxSize(3);
    this.addDeco(decoFallenTree, this.getConfig().ALLOW_LOGS.get());
}
Also used : DecoBaseBiomeDecorations(rtg.api.world.deco.DecoBaseBiomeDecorations) DecoSingleBiomeDecorations(rtg.api.world.deco.DecoSingleBiomeDecorations) DecoFallenTree(rtg.api.world.deco.DecoFallenTree)

Example 27 with DecoFallenTree

use of rtg.api.world.deco.DecoFallenTree in project Realistic-Terrain-Generation by Team-RTG.

the class RealisticBiomeACDarklandsForest method initDecos.

@Override
public void initDecos() {
    DecoFallenTree decoFallenTree = new DecoFallenTree();
    decoFallenTree.setLogCondition(NOISE_GREATER_AND_RANDOM_CHANCE);
    decoFallenTree.setLogConditionNoise(0f);
    decoFallenTree.setLogConditionChance(12);
    decoFallenTree.setLogBlock(ACBlocks.darklands_oak_wood.getDefaultState());
    decoFallenTree.setLeavesBlock(ACBlocks.darklands_oak_leaves.getDefaultState());
    decoFallenTree.setMinSize(2);
    decoFallenTree.setMaxSize(3);
    this.addDeco(decoFallenTree, this.getConfig().ALLOW_LOGS.get());
    DecoShrub decoShrubCustom = new DecoShrub();
    decoShrubCustom.setLogBlock(ACBlocks.darklands_oak_wood.getDefaultState());
    decoShrubCustom.setLeavesBlock(ACBlocks.darklands_oak_leaves.getDefaultState());
    decoShrubCustom.setMaxY(110);
    decoShrubCustom.setNotEqualsZeroChance(3);
    decoShrubCustom.setStrengthFactor(3f);
    this.addDeco(decoShrubCustom);
    DecoGrass decoGrass = new DecoGrass();
    decoGrass.setMaxY(128);
    decoGrass.setStrengthFactor(8f);
    this.addDeco(decoGrass);
    DecoBaseBiomeDecorations decoBaseBiomeDecorations = new DecoBaseBiomeDecorations();
    this.addDeco(decoBaseBiomeDecorations);
}
Also used : DecoBaseBiomeDecorations(rtg.api.world.deco.DecoBaseBiomeDecorations) DecoShrub(rtg.api.world.deco.DecoShrub) DecoFallenTree(rtg.api.world.deco.DecoFallenTree) DecoGrass(rtg.api.world.deco.DecoGrass)

Example 28 with DecoFallenTree

use of rtg.api.world.deco.DecoFallenTree in project Realistic-Terrain-Generation by Team-RTG.

the class RealisticBiomeVanillaMegaSpruceTaiga method initDecos.

@Override
public void initDecos() {
    DecoBaseBiomeDecorations decoBaseBiomeDecorations = new DecoBaseBiomeDecorations();
    this.addDeco(decoBaseBiomeDecorations);
    DecoFallenTree decoFallenTree = new DecoFallenTree();
    decoFallenTree.setLoops(1);
    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(6);
    decoFallenTree.setLogBlock(BlockUtil.getStateLog(1));
    decoFallenTree.setLeavesBlock(BlockUtil.getStateLeaf(1));
    decoFallenTree.setMinSize(3);
    decoFallenTree.setMaxSize(6);
    this.addDeco(decoFallenTree, this.getConfig().ALLOW_LOGS.get());
}
Also used : DecoBaseBiomeDecorations(rtg.api.world.deco.DecoBaseBiomeDecorations) DecoFallenTree(rtg.api.world.deco.DecoFallenTree)

Example 29 with DecoFallenTree

use of rtg.api.world.deco.DecoFallenTree in project Realistic-Terrain-Generation by Team-RTG.

the class RealisticBiomeBYGWillowSwamps method initDecos.

@Override
public void initDecos() {
    DecoBaseBiomeDecorations decoBaseBiomeDecorations = new DecoBaseBiomeDecorations();
    decoBaseBiomeDecorations.setMaxY(82);
    this.addDeco(decoBaseBiomeDecorations);
    TreeRTG myrtilloidesTree = new TreeRTGSalixMyrtilloides();
    myrtilloidesTree.setLogBlock(Blocks.LOG.getDefaultState());
    myrtilloidesTree.setLeavesBlock(Blocks.LEAVES.getDefaultState());
    this.addTree(myrtilloidesTree);
    DecoTree decoTrees = new DecoTree(myrtilloidesTree);
    decoTrees.getDistribution().setNoiseDivisor(80f);
    decoTrees.getDistribution().setNoiseFactor(60f);
    decoTrees.getDistribution().setNoiseAddend(-15f);
    decoTrees.setTreeType(DecoTree.TreeType.RTG_TREE);
    decoTrees.setTreeCondition(DecoTree.TreeCondition.NOISE_GREATER_AND_RANDOM_CHANCE);
    decoTrees.setTreeConditionNoise(0f);
    decoTrees.setTreeConditionChance(16);
    decoTrees.setMaxY(70);
    this.addDeco(decoTrees);
    DecoFallenTree decoFallenTree = new DecoFallenTree();
    decoFallenTree.getDistribution().setNoiseDivisor(80f);
    decoFallenTree.getDistribution().setNoiseFactor(60f);
    decoFallenTree.getDistribution().setNoiseAddend(-15f);
    decoFallenTree.setLogCondition(NOISE_GREATER_AND_RANDOM_CHANCE);
    decoFallenTree.setLogConditionNoise(0f);
    decoFallenTree.setLogConditionChance(6);
    decoFallenTree.setLogBlock(BlockUtil.getStateLog2(1));
    decoFallenTree.setLeavesBlock(BlockUtil.getStateLeaf2(1));
    decoFallenTree.setMinSize(3);
    decoFallenTree.setMaxSize(6);
    decoFallenTree.setMaxY(76);
    this.addDeco(decoFallenTree, this.getConfig().ALLOW_LOGS.get());
    TreeRTG deadWillowTree = new TreeRTGSalixMyrtilloides();
    deadWillowTree.setLogBlock(Blocks.LOG.getDefaultState());
    deadWillowTree.setLeavesBlock(Blocks.LEAVES.getDefaultState());
    deadWillowTree.setNoLeaves(true);
    this.addTree(deadWillowTree);
    DecoTree deadWillow = new DecoTree(deadWillowTree);
    deadWillow.setTreeType(DecoTree.TreeType.RTG_TREE);
    deadWillow.setTreeCondition(DecoTree.TreeCondition.RANDOM_CHANCE);
    deadWillow.setTreeConditionChance(18);
    deadWillow.setMaxY(84);
    this.addDeco(deadWillow);
    DecoShrub decoShrub = new DecoShrub();
    decoShrub.setMaxY(88);
    decoShrub.setStrengthFactor(6f);
    this.addDeco(decoShrub);
    DecoShrub decoShrubBYG = new DecoShrub();
    decoShrubBYG.setLogBlock(willowLogBlock);
    decoShrubBYG.setLeavesBlock(willowLeavesBlock);
    decoShrubBYG.setMaxY(88);
    decoShrubBYG.setStrengthFactor(3f);
    this.addDeco(decoShrubBYG);
}
Also used : DecoBaseBiomeDecorations(rtg.api.world.deco.DecoBaseBiomeDecorations) DecoTree(rtg.api.world.deco.DecoTree) TreeRTGSalixMyrtilloides(rtg.api.world.gen.feature.tree.rtg.TreeRTGSalixMyrtilloides) DecoShrub(rtg.api.world.deco.DecoShrub) TreeRTG(rtg.api.world.gen.feature.tree.rtg.TreeRTG) DecoFallenTree(rtg.api.world.deco.DecoFallenTree)

Example 30 with DecoFallenTree

use of rtg.api.world.deco.DecoFallenTree in project Realistic-Terrain-Generation by Team-RTG.

the class RealisticBiomeBYGLushForest 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(2));
    decoFallenTree.setLeavesBlock(BlockUtil.getStateLeaf(2));
    decoFallenTree.setMinSize(3);
    decoFallenTree.setMaxSize(6);
    this.addDeco(decoFallenTree, this.getConfig().ALLOW_LOGS.get());
    DecoBaseBiomeDecorations decoBaseBiomeDecorations = new DecoBaseBiomeDecorations();
    decoBaseBiomeDecorations.setMaxY(100);
    this.addDeco(decoBaseBiomeDecorations);
    DecoShrub decoShrubBirch = new DecoShrub();
    decoShrubBirch.setLogBlock(BlockUtil.getStateLog(2));
    decoShrubBirch.setLeavesBlock(BlockUtil.getStateLeaf(2));
    decoShrubBirch.setMaxY(90);
    decoShrubBirch.setStrengthFactor(6f);
    decoShrubBirch.setChance(4);
    this.addDeco(decoShrubBirch);
    DecoGrass decoGrass = new DecoGrass();
    decoGrass.setMaxY(100);
    decoGrass.setStrengthFactor(6f);
    this.addDeco(decoGrass);
}
Also used : DecoBaseBiomeDecorations(rtg.api.world.deco.DecoBaseBiomeDecorations) DecoShrub(rtg.api.world.deco.DecoShrub) DecoFallenTree(rtg.api.world.deco.DecoFallenTree) DecoGrass(rtg.api.world.deco.DecoGrass)

Aggregations

DecoBaseBiomeDecorations (rtg.api.world.deco.DecoBaseBiomeDecorations)31 DecoFallenTree (rtg.api.world.deco.DecoFallenTree)31 DecoSingleBiomeDecorations (rtg.api.world.deco.DecoSingleBiomeDecorations)17 DecoBoulder (rtg.api.world.deco.DecoBoulder)15 DecoShrub (rtg.api.world.deco.DecoShrub)8 DecoGrass (rtg.api.world.deco.DecoGrass)5 DecoHelper5050 (rtg.api.world.deco.helper.DecoHelper5050)4 DecoHelperRandomSplit (rtg.api.world.deco.helper.DecoHelperRandomSplit)4 DecoJungleCacti (rtg.api.world.deco.DecoJungleCacti)1 DecoTree (rtg.api.world.deco.DecoTree)1 TreeRTG (rtg.api.world.gen.feature.tree.rtg.TreeRTG)1 TreeRTGSalixMyrtilloides (rtg.api.world.gen.feature.tree.rtg.TreeRTGSalixMyrtilloides)1