34 lines
1.2 KiB
TOML
34 lines
1.2 KiB
TOML
|
|
#General settings
|
|
[general]
|
|
#Use config instead of datapack
|
|
use_config = true
|
|
|
|
#List settings
|
|
#Syntax: ["modid:block|weight"]
|
|
#Example: ["minecraft:stone|2","minecraft:dirt|1"]
|
|
#Forge tags are supported
|
|
[general.lists]
|
|
#Basalt gen
|
|
block_list_basalt = ["minecraft:basalt|100"]
|
|
#Cobble gen
|
|
block_list_cobble = ["minecraft:cobblestone|100"]
|
|
#Stone gen
|
|
block_list_stone = ["minecraft:stone|100"]
|
|
|
|
#Custom settings
|
|
[general.lists.custom]
|
|
#Custom generators
|
|
#Syntax: [gen]
|
|
#Gen: [type, block, list]
|
|
#Type: cobblestone, stone
|
|
#Block: resource location of the block below the generated block
|
|
#List: see List settings
|
|
#Examples:
|
|
#custom_generators = [
|
|
# ["cobblestone", "minecraft:diamond_block", ["minecraft:diamond_block"]],
|
|
# ["cobblestone", "minecraft:dirt", ["forge:dirt"]],
|
|
# ["cobblestone", "minecraft:white_wool", ["minecraft:wool"]]]
|
|
custom_generators = [["cobblestone", "minecraft:bedrock", ["minecraft:andesite|34", "minecraft:diorite|33", "minecraft:granite|33"]], ["stone", "minecraft:bedrock", ["minecraft:andesite|34", "minecraft:granite|33", "minecraft:diorite|33"]], ["stone", "minecraft:magma_block", ["minecraft:deepslate|100"]]]
|
|
|