CCBG
  • Custom Cobblestone and Basalt Generator
  • Download
  • Discord
  • installations
    • Enabling Beta APIs
    • Configuration File
    • Installing the pack
  • Configuration
    • Generator
    • Generator Event
    • Tools
    • Block Spawn Delay
    • Teleport Items and XP
    • Particles
    • Sounds
    • Players and Tags
    • Generator Blocks and Chances
    • Summon Mobs
    • Per Dimension Generator
    • Custom Generator
  • additional information
    • Adding Blocks from Addons
    • Adding Tools from Addons
    • Adding Mobs from Addons
Powered by GitBook
On this page
  • Enabling Per Dimension Generator
  • Customizing Dimension Generator
  1. Configuration

Per Dimension Generator

PreviousSummon MobsNextCustom Generator

Last updated 11 months ago

You can also create a per-dimension generator, so each dimension has its own generator configuration.

Enabling Per Dimension Generator

You can enable it by changing

config.enablePerDimensionGenerator = false

to

config.enablePerDimensionGenerator = true

Customizing Dimension Generator

For more information adding, changing and removing block from generator:

Overworld

config.overworld = [
	{ 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: 5 }
]

Nether

config.nether = [
	{ identifier: "basalt", chance: 40 },
	{ identifier: "quartz_ore", chance: 30 },
	{ identifier: "nether_gold_ore", chance: 20 },
	{ identifier: "ancient_debris", chance: 10 },
]

The End

config.the_end = [
	{ identifier: "end_stone", chance: 14 },
	{ identifier: "deepslate_coal_ore", chance: 13 },
	{ identifier: "deepslate_iron_ore", chance: 13 },
	{ identifier: "deepslate_copper_ore", chance: 12 },
	{ identifier: "deepslate_gold_ore", chance: 11 },
	{ identifier: "deepslate_redstone_ore", chance: 11 },
	{ identifier: "deepslate_lapis_ore", chance: 11 },
	{ identifier: "deepslate_diamond_ore", chance: 10 },
	{ identifier: "deepslate_emerald_ore", chance: 4 },
	{ identifier: "ancient_debris", chance: 1 }
]
Generator Blocks and Chances