1
0
mirror of https://github.com/LZStealth/armor-statues.git synced 2025-10-21 15:22:14 +01:00
Files
armor-statues/data/armor_statues/predicates/book.json
2023-06-12 21:12:56 -07:00

30 lines
581 B
JSON

{
"condition": "minecraft:any_of",
"terms": [
{
"condition": "minecraft:entity_properties",
"entity": "this",
"predicate": {
"equipment": {
"mainhand": {
"items": ["minecraft:written_book"],
"nbt": "{datapack:ArmorStatuesV2}"
}
}
}
},
{
"condition": "minecraft:entity_properties",
"entity": "this",
"predicate": {
"equipment": {
"offhand": {
"items": ["minecraft:written_book"],
"nbt": "{datapack:ArmorStatuesV2}"
}
}
}
}
]
}