43 lines
1.5 KiB
TOML
43 lines
1.5 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]
|
||
|
#Cobble gen
|
||
|
block_list_cobble = ["minecraft:cobblestone"]
|
||
|
#Stone gen
|
||
|
block_list_stone = ["minecraft:stone"]
|
||
|
#Basalt gen
|
||
|
block_list_basalt = ["minecraft:basalt"]
|
||
|
|
||
|
#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:coal_block", ["minecraft:blackstone"]],
|
||
|
["stone", "minecraft:coal_block", ["minecraft:blackstone|100","minecraft:glided_blackstone|5"]],
|
||
|
["cobblestone", "minecraft:quartz_block", ["minecraft:granite"]],
|
||
|
["stone", "minecraft:quartz_block", ["minecraft:granite"]],
|
||
|
["cobblestone", "minecraft:polished_deepslate", ["minecraft:cobbled_deeplsate"]],
|
||
|
["stone", "minecraft:polished_deepslate", ["minecraft:deepslate"]],
|
||
|
["cobblestone", "create:limestone", ["minecraft:calcite"]],
|
||
|
["stone", "create:limestone", ["minecraft:calcite"]]
|
||
|
]
|
||
|
|