* update loot table schemas * remove entity_properties and use new int_or_range definition * remove entity_properties from conditions.json as well
16 lines
476 B
JSON
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."
|
|
}
|
|
}
|
|
}
|