use of rtg.api.world.deco.DecoReed in project Realistic-Terrain-Generation by Team-RTG.
the class RealisticBiomeVanillaMesaPlateauM method initDecos.
@Override
public void initDecos() {
this.addDecoCollection(new DecoCollectionDesertRiver(this.getConfig().ALLOW_CACTUS.get()));
DecoCactus decoCactus = new DecoCactus();
decoCactus.setStrengthFactor(25f);
decoCactus.setSoilBlock(BlockUtil.getStateClay(1));
decoCactus.setSandOnly(false);
decoCactus.setMaxRiver(0.8f);
addDeco(decoCactus, this.getConfig().ALLOW_CACTUS.get());
DecoReed decoReed = new DecoReed();
decoReed.setLoops(5);
decoReed.setMaxRiver(0.8f);
addDeco(decoReed);
DecoDeadBush decoDeadBush = new DecoDeadBush();
decoDeadBush.setStrengthFactor(5f);
addDeco(decoDeadBush);
}
Aggregations