Files
minecraft-bedrock-json-schemas/source/behavior/entities/entities.json
Xterionix 822ed538f9 Some more misc fixes (#295)
* - Add mob effects enum

* - Add biome and biome tags to enum

* - Fix feature rules only showing with 1.13.0 format version

* - Replace 1.20.41 -> 1.20.80
- Make certain format versions restricted to 1.10.0

* - Remove example stick (having this here was annoying)

* - Fix

* - Remove empty sounds example

* - Misc fixes for entity components
2024-06-28 21:06:53 +02:00

42 lines
1.2 KiB
JSON

{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behavior.entities",
"defaultSnippets": [
{
"label": "New entity",
"body": {
"format_version": "${1:1.20.80}",
"minecraft:entity": {
"description": {
"identifier": "$2:${3:${TM_FILENAME/[\\.].*//}}",
"is_spawnable": "^{4:true}",
"is_summonable": "^{5:true}",
"is_experimental": "^{6:false}"
},
"components": "^{$7}"
}
}
}
],
"examples": [
{
"format_version": "1.20.80",
"minecraft:entity": {
"description": { "identifier": "namespace:entity", "is_spawnable": true, "is_summonable": true },
"component_groups": {},
"components": {},
"events": {}
}
}
],
"type": "object",
"title": "Entity Behavior",
"description": "The minecraft entity behavior specification.",
"required": ["format_version", "minecraft:entity"],
"additionalProperties": false,
"properties": {
"format_version": { "$ref": "../../general/format_version.json" },
"minecraft:entity": { "$ref": "./format/minecraft.entity.json" }
}
}