Search in sources :

Example 6 with TreeRTGPinusPonderosa

use of rtg.api.world.gen.feature.tree.rtg.TreeRTGPinusPonderosa in project Realistic-Terrain-Generation by Team-RTG.

the class RealisticBiomeVanillaSwampland method initDecos.

@Override
public void initDecos() {
    TreeRTG myrtilloidesTree = new TreeRTGSalixMyrtilloides();
    myrtilloidesTree.setLogBlock(Blocks.LOG.getDefaultState());
    myrtilloidesTree.setLeavesBlock(Blocks.LEAVES.getDefaultState());
    this.addTree(myrtilloidesTree);
    DecoTree decoTrees = new DecoTree(myrtilloidesTree);
    decoTrees.setStrengthNoiseFactorXForLoops(true);
    decoTrees.setStrengthFactorForLoops(1f);
    decoTrees.getDistribution().setNoiseDivisor(80f);
    decoTrees.getDistribution().setNoiseFactor(60f);
    decoTrees.getDistribution().setNoiseAddend(-15f);
    decoTrees.setTreeType(DecoTree.TreeType.RTG_TREE);
    decoTrees.setTreeCondition(DecoTree.TreeCondition.RANDOM_CHANCE);
    decoTrees.setTreeConditionChance(12);
    decoTrees.setMaxY(70);
    this.addDeco(decoTrees);
    TreeRTG ponderosaTree = new TreeRTGPinusPonderosa();
    ponderosaTree.setLogBlock(Blocks.LOG.getDefaultState());
    ponderosaTree.setLeavesBlock(Blocks.LEAVES.getDefaultState());
    ponderosaTree.setMinTrunkSize(3);
    ponderosaTree.setMaxTrunkSize(6);
    ponderosaTree.setMinCrownSize(6);
    ponderosaTree.setMaxCrownSize(14);
    ponderosaTree.setNoLeaves(true);
    this.addTree(ponderosaTree);
    DecoTree deadPineTree = new DecoTree(ponderosaTree);
    deadPineTree.setTreeType(DecoTree.TreeType.RTG_TREE);
    deadPineTree.setTreeCondition(DecoTree.TreeCondition.RANDOM_CHANCE);
    deadPineTree.setTreeConditionChance(18);
    deadPineTree.setMaxY(90);
    this.addDeco(deadPineTree);
    DecoShrub decoShrub = new DecoShrub();
    decoShrub.setMaxY(100);
    decoShrub.setStrengthFactor(3f);
    this.addDeco(decoShrub);
    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);
    this.addDeco(decoFallenTree, this.getConfig().ALLOW_LOGS.get());
    DecoBaseBiomeDecorations decoBaseBiomeDecorations = new DecoBaseBiomeDecorations();
    this.addDeco(decoBaseBiomeDecorations);
    DecoPumpkin decoPumpkin = new DecoPumpkin();
    decoPumpkin.setMaxY(90);
    decoPumpkin.setRandomType(DecoPumpkin.RandomType.X_DIVIDED_BY_STRENGTH);
    decoPumpkin.setRandomFloat(50f);
    this.addDeco(decoPumpkin);
    DecoGrass decoGrass = new DecoGrass();
    decoGrass.setMaxY(100);
    decoGrass.setStrengthFactor(12f);
    this.addDeco(decoGrass);
}
Also used : TreeRTGSalixMyrtilloides(rtg.api.world.gen.feature.tree.rtg.TreeRTGSalixMyrtilloides) TreeRTG(rtg.api.world.gen.feature.tree.rtg.TreeRTG) TreeRTGPinusPonderosa(rtg.api.world.gen.feature.tree.rtg.TreeRTGPinusPonderosa)

Aggregations

TreeRTG (rtg.api.world.gen.feature.tree.rtg.TreeRTG)6 TreeRTGPinusPonderosa (rtg.api.world.gen.feature.tree.rtg.TreeRTGPinusPonderosa)6 DecoHelper5050 (rtg.api.world.deco.helper.DecoHelper5050)2 TreeRTGSalixMyrtilloides (rtg.api.world.gen.feature.tree.rtg.TreeRTGSalixMyrtilloides)2 IBlockState (net.minecraft.block.state.IBlockState)1 DecoTree (rtg.api.world.deco.DecoTree)1 DecoCollectionSmallPineTreesForest (rtg.api.world.deco.collection.DecoCollectionSmallPineTreesForest)1 TreeRTGBetulaPapyrifera (rtg.api.world.gen.feature.tree.rtg.TreeRTGBetulaPapyrifera)1 TreeRTGPinusNigra (rtg.api.world.gen.feature.tree.rtg.TreeRTGPinusNigra)1