Files
minecraft-bedrock-json-schemas/source/behavior/entities/1.8.0/components/minecraft.spawn_entity.json

65 lines
2.4 KiB
JSON
Raw Normal View History

2021-06-06 10:07:19 +00:00
{
"$id": "blockception.minecraft.behavior.entities.1.8.0.minecraft.spawn_entity",
"type": "object",
"title": "Spawn Entity 1.8.0",
"additionalProperties": false,
"required": [],
2021-06-24 17:46:39 +02:00
"description": "Adds a timer after which this entity will spawn another entity or item (similar to vanilla's chicken's egg-laying behavior).",
2021-06-06 10:07:19 +00:00
"properties": {
"should_leash": {
"type": "boolean",
"default": false,
"description": "If true, this the spawned entity will be leashed to the parent",
2021-06-24 17:46:39 +02:00
"title": "Should Leash"
2021-06-06 10:07:19 +00:00
},
"num_to_spawn": {
"type": "integer",
"default": 1,
"description": "The number of entities of this type to spawn each time that this triggers",
2021-06-24 17:46:39 +02:00
"title": "Number To Spawn"
2021-06-06 10:07:19 +00:00
},
"min_wait_time": {
"type": "integer",
"default": 300,
"description": "Minimum amount of time to randomly wait in seconds before another entity is spawned",
2021-06-24 17:46:39 +02:00
"title": "Minimum Wait Time"
2021-06-06 10:07:19 +00:00
},
"max_wait_time": {
"type": "integer",
"default": 600,
"description": "Maximum amount of time to randomly wait in seconds before another entity is spawned",
2021-06-24 17:46:39 +02:00
"title": "Maximum Wait Time"
2021-06-06 10:07:19 +00:00
},
"spawn_sound": {
"type": "string",
"default": "plop",
"description": "Identifier of the sound effect to play when the entity is spawned",
2021-06-24 17:46:39 +02:00
"title": "Spawn Sound"
2021-06-06 10:07:19 +00:00
},
2021-06-24 17:46:39 +02:00
"spawn_item": { "type": "string", "default": "egg", "description": "Item identifier of the item to spawn", "title": "Spawn Item" },
2021-06-06 10:07:19 +00:00
"spawn_entity": {
"type": "string",
"default": "",
"description": "Identifier of the entity to spawn, leave empty to spawn the item defined above instead",
2021-06-24 17:46:39 +02:00
"title": "Spawn Entity"
2021-06-06 10:07:19 +00:00
},
2021-06-24 17:46:39 +02:00
"spawn_method": { "type": "string", "default": "born", "description": "Method to use to spawn the entity", "title": "Spawn Method" },
2021-06-06 10:07:19 +00:00
"spawn_event": {
"type": "string",
"default": "minecraft:entity_born",
"description": "Event to call when the entity is spawned",
2021-06-24 17:46:39 +02:00
"title": "Spawn Event"
2021-06-06 10:07:19 +00:00
},
"filters": {
"description": "If present, the specified entity will only spawn if the filter evaluates to true",
2021-07-01 16:56:10 +02:00
"$ref": "../../filters/filters.json"
2021-06-06 10:07:19 +00:00
},
"single_use": {
"type": "boolean",
"default": false,
"description": "If true, this component will only ever spawn the specified entity once",
2021-06-24 17:46:39 +02:00
"title": "Single Use"
2021-06-06 10:07:19 +00:00
}
2021-06-24 17:46:39 +02:00
}
2021-06-06 10:07:19 +00:00
}