@desht THANK YOU! Finaly it works. First of yes the data.... folder is the right one. And I finally found the problem
I've had
{
"type": "cockmod:block",
"pools": [
{
"name": "cockmod:cockpool",
"rolls": 1,
"entries": [
{
"type": "cockmod:item",
"name": "cockmod:cockingot"
}
],
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
]
}
]
}
but I need
{
"type": "minecraft:block",
"pools": [
{
"name": "cockmod:cockpool",
"rolls": 1,
"entries": [
{
"type": "minecraft:item",
"name": "cockmod:cockblock"
}
],
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
]
}
]
}
just change the types to minecraft:item and minecraft:block and then it works.
I have only one more question. Can I keep the cockpool for all my items or do I have to change it to something else for each one?