wip(loot): snapshot runtime loot hook refactor and diagnostics

This commit is contained in:
Jacobwasbeast
2026-03-13 20:23:01 -05:00
parent faada7fbc4
commit aa71a81de8
34 changed files with 2842 additions and 193 deletions

View File

@@ -0,0 +1,14 @@
{
"type": "minecraft:block",
"pools": [
{
"rolls": 1,
"entries": [
{
"type": "minecraft:item",
"name": "examplemod:debug_item"
}
]
}
]
}

View File

@@ -0,0 +1,47 @@
{
"type": "minecraft:entity",
"pools": [
{
"rolls": 1,
"entries": [
{
"type": "minecraft:empty",
"weight": 50
},
{
"type": "minecraft:item",
"name": "examplemod:ruby",
"weight": 30,
"functions": [
{
"function": "minecraft:set_count",
"count": 1
}
]
},
{
"type": "minecraft:item",
"name": "examplemod:ruby",
"weight": 15,
"functions": [
{
"function": "minecraft:set_count",
"count": 2
}
]
},
{
"type": "minecraft:item",
"name": "examplemod:ruby",
"weight": 5,
"functions": [
{
"function": "minecraft:set_count",
"count": 3
}
]
}
]
}
]
}