mirror of
https://github.com/Jacobwasbeast/LegacyWeaveLoader.git
synced 2026-05-25 07:04:34 +00:00
wip(loot): snapshot runtime loot hook refactor and diagnostics
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
{
|
||||
"type": "minecraft:block",
|
||||
"pools": [
|
||||
{
|
||||
"rolls": 1,
|
||||
"entries": [
|
||||
{
|
||||
"type": "minecraft:item",
|
||||
"name": "examplemod:debug_item"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
47
ExampleMod/data/minecraft/loot_tables/entities/chicken.json
Normal file
47
ExampleMod/data/minecraft/loot_tables/entities/chicken.json
Normal 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
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user