Files
Jacob Vinding c4ad0f3e2e Added mod files
2025-12-26 21:38:55 +01:00

23 lines
711 B
JavaScript

if (Platform.isLoaded("dungeoncrawl")) {
ServerEvents.lowPriorityData(event => {
event.addJson("dungeoncrawl:worldgen/structure_set/dungeons", {
"structures": [
{
"structure": "dungeoncrawl:dungeon",
"weight": 1
}
],
"placement": {
"type": "integrated_api:advanced_random_spread",
"super_exclusion_zone": {
"chunk_count": 12,
"other_set": "#cabin:dungeon_crawl_avoid"
},
"salt": 10387313,
"spacing": 32,
"separation": 12
}
})
})
}