Skip to content

Structure Loot Wiki

benbenlaw edited this page Jul 20, 2026 · 2 revisions

Welcome to the Structure-Loot wiki!

Recipes are fully data driven allowing for full customization of the mod. Below is a example recipe from the mod. duration is the time the recipe takes to run. loot_tables is a list of chests loot tables only block and entity loot tables will not work here. rf_per_tick is rf needed per tick. rolls is the amount of loot table loot will run eg if you have 5 possible loot tables setting rolls to 3 will run 3 of those loot tables to produce loot. structure is the data component needed on an item to run the recipe

Custom added structure recipes will add a Structure Token automatically to chests from that strucuture

{
  "type": "structureloot:structure_loot",
  "duration": 400, 
  "loot_tables": [
    "minecraft:chests/abandoned_mineshaft"
  ],
  "rf_per_tick": 600,
  "rolls": 2,
  "structure": "minecraft:mineshaft"
}

Clone this wiki locally