
WorldJS
KubeJS addon for changing world generation features
- Загрузки
- 726
- Подписчики
- 12
- Обновлён
- 12 июля 2026 г.
- Лицензия
- MIT
Опубликован 4 апреля 2024 г.
World generation integration for KubeJS. Allows for the addition of configured features, placed features, and biome modifiers using KubeJS's ServerEvents.registry
Supports:
- All vanilla configured feature types (+ a WorldJS custom type)
- All vanilla placement modifier types (+ placed features)
- All NeoForge biome modifiers
Additionally, support for other placement modifier types can be added with the provided PlacedFeatureModifierEvent
Example
ServerEvents.registry('worldgen/configured_feature', event => {
event.create('delta_feature', 'delta_feature')
.size([11, 15])
.rimSize([1, 3])
.rim('minecraft:calcite')
.contents('minecraft:lava')
.withPlacement('minecraft:delta', p => { // Overwrite the vanilla placed feature
p.modifiers(modifiers => {
let { minecraft } = modifiers
minecraft
.countOnEveryLayer(40)
.biome()
})
})
})

Ченджлог
1.0.1Релиз1.21.1 · 12 июля 2026 г.
- Fix compat fix ProbeJS 8.0.2, which is the new required minimum version if present
- Add ability to define custom feature types
- Fix worldgen-registry
HolderSetparams not functioning with lists of ids
1.0.0Релиз1.21.1 · 29 мая 2026 г.
Inital release! See the main description, update post, or wiki for a full list of features
Комментарии
Загружаем…