This commit is contained in:
DaanV2
2021-08-14 21:25:49 +02:00
parent 0e5246343e
commit d606e18320
3 changed files with 209 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
{
"$id": "blockception.minecraft.behavior.entity.1.17.0",
"type": "object",
"title": "Entity Behavior 1.17.0",
"description": "The minecraft entity behavior specification",
"required": ["format_version", "minecraft:entity"],
"additionalProperties": false,
"properties": {
"format_version": {
"title": "1.17.0 Format Version",
"description": "A version that tells minecraft what type of data format can be expected when reading this file.",
"type": "string",
"const": "1.17.0"
},
"minecraft:entity": { "$ref": "./minecraft.entity.json" }
}
}