-
Notifications
You must be signed in to change notification settings - Fork 6
Ore Node Definition
BeeIsYou edited this page Dec 8, 2024
·
1 revision
Ore node definitions are placed in ore_nodes (i.e. your_datapack/ore_nodes/your_node.json)
The json structure determines what block is an ore node and what items it drops
-
block: The resource location of the block -
loot_tables: An object with three loot table references. See Ore Node Drops Definition-
earth: The lowest tier of drops to roll -
common: The middle tier of drops to roll -
rare: The highest tier of drops to roll
-
For example, deepdrilling/ore_nodes/copper.json is
{
"block": "deepdrilling:veridium_node",
"loot_tables": {
"earth": "deepdrilling:ore_nodes/veridium/earth",
"common": "deepdrilling:ore_nodes/veridium/common",
"rare": "deepdrilling:ore_nodes/veridium/rare"
}
}