- Some misc tweaks (#301)
* - Remove molang examples * - Update has damage because apparently not every value is accepted * - Add materials enum and adjust entity/attachable accordingly * - Update damage source list * - Change to example --------- Co-authored-by: Daan Verstraten <daanverstraten@hotmail.com>
This commit is contained in:
@@ -4,7 +4,7 @@
|
||||
"title": "Actor Animation 1.10.0",
|
||||
"description": "UNDOCUMENTED.",
|
||||
"$comment": "UNDOCUMENTED",
|
||||
"required": ["format_version", "minecraft:attachable"],
|
||||
"required": [ "format_version", "minecraft:attachable" ],
|
||||
"properties": {
|
||||
"format_version": {
|
||||
"title": "1.10.0 Format Version",
|
||||
@@ -16,12 +16,12 @@
|
||||
"type": "object",
|
||||
"title": "Attachables",
|
||||
"description": "The attachables definition.",
|
||||
"required": ["description"],
|
||||
"required": [ "description" ],
|
||||
"properties": {
|
||||
"description": {
|
||||
"title": "Description",
|
||||
"type": "object",
|
||||
"required": ["identifier"],
|
||||
"required": [ "identifier" ],
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"animations": {
|
||||
@@ -74,7 +74,13 @@
|
||||
},
|
||||
"materials": {
|
||||
"type": "object",
|
||||
"additionalProperties": { "type": "string", "description": "A single material reference.", "title": "Material" },
|
||||
"additionalProperties": {
|
||||
"type": "string",
|
||||
"description":
|
||||
"A single material reference.",
|
||||
"title": "Material",
|
||||
"$ref": "../../../general/vanilla/material.json"
|
||||
},
|
||||
"description": "A collection of material references.",
|
||||
"title": "Materials"
|
||||
},
|
||||
@@ -174,10 +180,10 @@
|
||||
"description": "UNDOCUMENTED: spawn egg.",
|
||||
"title": "Spawn Egg",
|
||||
"dependencies": {
|
||||
"texture": ["texture_index"],
|
||||
"texture_index": ["texture"],
|
||||
"base_colour": ["overlay_color"],
|
||||
"overlay_color": ["base_colour"]
|
||||
"texture": [ "texture_index" ],
|
||||
"texture_index": [ "texture" ],
|
||||
"base_colour": [ "overlay_color" ],
|
||||
"overlay_color": [ "base_colour" ]
|
||||
},
|
||||
"properties": {
|
||||
"base_colour": { "type": "string", "description": "UNDOCUMENTED: base colour.", "title": "Base Colour" },
|
||||
|
||||
@@ -72,9 +72,11 @@
|
||||
},
|
||||
"materials": {
|
||||
"type": "object",
|
||||
"description": "UNDOCUMENTED: materials.",
|
||||
"title": "Materials",
|
||||
"additionalProperties": { "type": "string", "description": "UNDOCUMENTED: additionalProperties.", "title": "Material" }
|
||||
"additionalProperties": {
|
||||
"type": "string", "description": "Material Reference.", "title": "Material",
|
||||
"$ref": "../../../general/vanilla/material.json"
|
||||
}
|
||||
},
|
||||
"min_engine_version": {
|
||||
"type": "string",
|
||||
|
||||
Reference in New Issue
Block a user