Files
minecraft-bedrock-json-schemas/source/behavior/items/1.16.100/components/minecraft.entity_placer.json

24 lines
1.0 KiB
JSON
Raw Normal View History

2021-01-03 18:59:21 +01:00
{
2021-04-04 13:52:35 +02:00
"$id": "blockception.minecraft.behavior.1.16.100.items.minecraft:entity_placer",
2021-03-21 15:18:38 +01:00
"title": "Entity Placer",
2021-01-05 00:06:46 +01:00
"description": "Entity placer item component. You can specifiy allowed blocks that the item is restricted to.",
2021-01-03 18:59:21 +01:00
"type": "object",
"additionalProperties": false,
2021-01-05 00:06:46 +01:00
"required": ["entity"],
"properties": {
2021-03-21 15:18:38 +01:00
"entity": { "type": "string", "title": "Entity", "description": "The entity to be placed in the world." },
2021-01-05 00:06:46 +01:00
"dispense_on": {
"type": "array",
2021-03-21 15:18:38 +01:00
"title": "Dispense On",
2021-01-05 00:06:46 +01:00
"description": "List of block descriptors that contain blocks that this item can be dispensed on. If left empty, all blocks will be allowed.",
2021-03-21 15:18:38 +01:00
"items": { "title": "UNDOCUMENTATED", "description": "UNDOCUMENTATED" }
2021-01-05 00:06:46 +01:00
},
"use_on": {
"type": "array",
2021-03-21 15:18:38 +01:00
"title": "Use On",
2021-01-05 00:06:46 +01:00
"description": "List of block descriptors that contain blocks that this item can be used on. If left empty, all blocks will be allowed.",
2021-03-21 15:18:38 +01:00
"items": { "title": "UNDOCUMENTATED", "description": "UNDOCUMENTATED" }
2021-01-05 00:06:46 +01:00
}
}
2021-01-04 11:46:10 +01:00
}