Files
minecraft-bedrock-json-schemas/source/behavior/loot_tables/conditions/entity_killed.json
Piotr Brzozowski cbd0262612 Update loot table schemas (#391)
* update loot table schemas

* remove entity_properties and use new int_or_range definition

* remove entity_properties from conditions.json as well
2025-10-15 19:48:05 +02:00

16 lines
476 B
JSON

{
"$id": "blockception.minecraft.behavior.condition.entity_killed",
"type": "object",
"title": "Entity Killed",
"description": "Checks whether the source entity matches the supplied identifier.",
"additionalProperties": false,
"required": ["condition", "entity_type"],
"properties": {
"condition": { "const": "entity_killed" },
"entity_type": {
"type": "string",
"description": "Entity identifier expected for the killer/victim."
}
}
}