Custom Nether generator plugin for Allay.
This project is currently in beta.
- Terrain and populators are still being tuned.
- The generator is designed to feel closer to vanilla Nether generation, but it is not a 1:1 vanilla implementation.
- Noise behavior, populate rates, and biome behavior may change in future versions.
The generator type name is:
NETHER_WORLD
- Put the plugin jar into the
plugins/folder. - Set the Nether generator type to
NETHER_WORLDinworlds/world-settings.yml. - If you want to test the latest changes, generate new Nether chunks or recreate the world.
worlds:
world:
nether:
generator-type: NETHER_WORLD
generator-preset: "seed=123456;modern-biomes=true"worlds:
world:
storage-type: LEVELDB
use-virtual-thread: true
overworld:
generator-type: FLAT
generator-preset: ""
enable-light-calculation: true
nether:
generator-type: NETHER_WORLD
generator-preset: "seed=123456;lava-level=31;modern-biomes=true;glowstone=true;fire=true;quartz=true;gold=true;ancient-debris=true;fungi=true;biome-decorations=true"
enable-light-calculation: true
the-end: null
default-world: worldseed=0;lava-level=31;modern-biomes=true;glowstone=true;fire=true;quartz=true;gold=true;ancient-debris=true;fungi=true;biome-decorations=true
All of the following values can be configured through generator-preset:
seed: Generator seed value. Default:0lava-level: Lava ocean level. Default:31modern-biomes: Enables or disables modern Nether biome selection. If set tofalse, onlyHELLis used. Default:trueglowstone: Enables or disables glowstone cluster generation. Default:truefire: Enables or disables fire, soul fire, and lava spring populators. Default:truequartz: Enables or disables Nether quartz ore generation. Default:truegold: Enables or disables Nether gold ore generation. Default:trueancient-debris: Enables or disables ancient debris generation. Default:truefungi: Enables or disables huge crimson fungus and huge warped fungus features. Default:truebiome-decorations: Enables or disables biome-specific decorative populators. Default:true
HELLSOUL_SAND_VALLEYCRIMSON_FORESTWARPED_FORESTBASALT_DELTAS
If modern-biomes=false, only the HELL biome will be generated.
- Netherrack terrain
- Bedrock floor and ceiling
- Lava ocean
- Quartz ore
- Nether gold ore
- Ancient debris
- Glowstone clusters
- Fire and soul fire
- Lava springs
- Crimson / warped huge fungi
- Crimson roots / fungus
- Warped roots / fungus / sprouts
- Twisting vines
- Weeping vines
- Soul Sand Valley bone structures
- Basalt Delta pillars and magma details
- No fortress generation
- No fossil generation
- No ruined portal generation
- The project does not aim to match vanilla noise and population behavior exactly
- Populate rates may still change while the project remains in beta