Hi !
I tried to apply a loot table only for snow fox so i added an entity_properties condition
{
"pools": [
{
"rolls": 1,
"entries": [
{
"type": "item",
"name": "corruption:snow_fox_fur",
"weight": 100,
"functions": [
{
"function": "set_count",
"count": {
"min": 1,
"max": 2
},
"conditions": [
{
"condition": "random_chance",
"chance": 1
},
{
"condition": "entity_properties",
"entity": "this",
"predicate": {
"fox_type": 1
}
}
]
}
]
},
{
"type": "empty",
"weight": 0
}
]
}
]
}
but it didn't work.
Can someone help me? Thank you