{
"pools": [
{
"rolls": 1,
"conditions": [
{
"condition": "match_tool",
"item": "ken:lumerium_pickaxe",
"count": 1,
"enchantments":[
{
"enchantement": "fortune",
"levels":{
"max_range" : 3
}
}
]
}
],
"entries": [
{
"type": "item",
"name": "minecraft:coal",
"count": {
"min": 1,
"max": 3
}
}
]
}
]
}
#Ore Loot Tables with fortune
1 messages · Page 1 of 1 (latest)
What is the current behaviour rn? Does it not work?
yes it doesn't work but I don't have any errors in the content log
Does it not drop the coal?
Are you using this in a custom block?
yes dosn't drop
yes
Your JSON is invalid first of all, I suggest using a linter to correct it
i correct it
https://learn.microsoft.com/en-us/minecraft/creator/documents/loottableconditions?view=minecraft-bedrock-stable#entry-conditions Try looking at this example. Copy/paste it into your loot table but change the condition. This way you can see if it drops coal or diamonds. Lets worry about that first
I come here asking because I didn't understand the wiki
Like I said, try copy pasting the example code I linked, replace the conditions with your own. This is just to test if your loot table works in the first place
{
"pools": [
{
"rolls": 1,
"conditions": [
{
"condition": "match_tool",
"count": 1,
"item": "ken:lumerium_pickaxe"
}
],
"entries": [
{
"type": "item",
"name": "minecraft:coal"
}
]
}
]
}