Files
Xterionix 5503ea5612 1.21.100 (#363)
* - Added replacements for enderman block place/take behaviors
* - Added transport items goal
* - Added grass_is_shaded property
* - Removed experimental tag for movable component
* - Remove experimental tag from random offset
* - Added can_wear_armor field
* - Added "none" heightmap projection
* - Improved descriptions for jigsaw rule
* - Added blockstate and random block state predicates
* - Improve rule descriptions
* - Added min and max values for terrain texture variations
* - Update template pool with empty pool
* - Improved surface builder component
* - Added humidity biome component
* - Added partially frozen biome component
* - Renamed to rotation_axis_aligned
* - Added map_tints biome component
2025-08-08 15:59:24 +02:00

26 lines
793 B
JSON

{
"$id": "blockception.minecraft.behavior.entities.minecraft.equip_item",
"type": "object",
"title": "Equip Item",
"description": "The entity puts on the desired equipment.",
"additionalProperties": false,
"properties": {
"excluded_items": {
"title": "Excluded Items",
"type": "array",
"description": "List of items that the entity should not equip.",
"items": {
"$ref": "../../../../general/item/descriptor.json",
"description": "Item that the entity should not equip.",
"title": "Excluded Items"
}
},
"can_wear_armor": {
"title": "Can Wear Armor",
"description": "Specifies if equipped armor should be added to the armor slot or hand slot",
"type": "boolean",
"default": false
}
}
}