For the complete documentation index, see llms.txt. This page is also available as Markdown.

Generator Blocks and Chances

You can add or remove which blocks will spawn in this configuration. To find block identifier you can use /setblock command

config.blocks = [
	{ identifier: "cobblestone", chance: 14 },
	{ identifier: "coal_ore", chance: 13 },
	{ identifier: "iron_ore", chance: 13 },
	{ identifier: "copper_ore", chance: 12 },
	{ identifier: "gold_ore", chance: 11 },
	{ identifier: "redstone_ore", chance: 11 },
	{ identifier: "lapis_ore", chance: 11 },
	{ identifier: "diamond_ore", chance: 10 },
	{ identifier: "emerald_ore", chance: 4 },
	{ identifier: "ancient_debris", chance: 1 }
]

Example

Make the generator only spawn dirt, grass block, cobblestone and stone

Make dirt more higher chance to spawn by increasing the chance

Last updated