playerheads/src/main/resources/data/playerheads/loot_table/player.json
2025-07-12 14:40:48 +02:00

38 lines
882 B
JSON

{
"type": "minecraft:entity",
"pools": [
{
"rolls": 1,
"entries": [
{
"type": "minecraft:item",
"name": "minecraft:player_head",
"functions": [
{
"function": "playerheads:copy_player_head",
"entity": "this"
}
],
"conditions": [
{
"condition": "minecraft:any_of",
"terms": [
{
"condition": "minecraft:damage_source_properties",
"predicate": {
"direct_entity": {
"type": "#minecraft:arrows"
}
}
},
{
"condition": "minecraft:killed_by_player"
}
]
}
]
}
]
}
]
}