All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.nukkit.level.biome.impl.nether.WarpedForestBiome Maven / Gradle / Ivy

There is a newer version: 1.20.40-r1
Show newest version
package cn.nukkit.level.biome.impl.nether;

import cn.nukkit.level.generator.populator.impl.nether.WarpedFungiTreePopulator;
import cn.nukkit.level.generator.populator.impl.nether.WarpedGrassesPopulator;
import cn.nukkit.level.generator.populator.impl.nether.WarpedTwistingVinesPopulator;

public class WarpedForestBiome extends NetherBiome {

    public WarpedForestBiome() {
        this.addPopulator(new WarpedFungiTreePopulator());
        this.addPopulator(new WarpedGrassesPopulator());
        this.addPopulator(new WarpedTwistingVinesPopulator());
    }

    @Override
    public String getName() {
        return "Warped Forest";
    }

    @Override
    public int getCoverBlock() {
        return WARPED_NYLIUM;
    }

    @Override
    public int getMiddleBlock() {
        return NETHERRACK;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy