198 lines
10 KiB
JSON
198 lines
10 KiB
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema",
|
|
"$id": "blockception.minecraft.resource.1.10.0.entity",
|
|
"type": "object",
|
|
"title": "Resourcepack Actor Animation 1.10.0",
|
|
"description": "TODO description",
|
|
"required": ["format_version", "minecraft:client_entity"],
|
|
"properties": {
|
|
"format_version": {
|
|
"title": "1.10.0 Format Version",
|
|
"type": "string",
|
|
"pattern": "^1.10.0$",
|
|
"description": "A version that tells minecraft what type of data format can be expected when reading this file."
|
|
},
|
|
"minecraft:client_entity": {
|
|
"type": "object",
|
|
"title": "Client Entity",
|
|
"description": "The client entity definition",
|
|
"required": ["description"],
|
|
"properties": {
|
|
"description": {
|
|
"title": "Description",
|
|
"type": "object",
|
|
"required": ["identifier"],
|
|
"description": "The entity description for clientside rendering, animations and models",
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"animations": {
|
|
"title": "Animations",
|
|
"description": "The collection of animations and animations controllers",
|
|
"type": "object",
|
|
"minProperties": 1,
|
|
"additionalProperties": {
|
|
"type": "string",
|
|
"description": "A reference to an animation or animation controller",
|
|
"title": "Animation Reference",
|
|
"examples": [{ "basic": "controller.generic.basic" }]
|
|
}
|
|
},
|
|
"enable_attachables": { "type": "boolean", "description": "TODO description: enable attachables", "title": "Enable Attachables" },
|
|
"geometry": {
|
|
"title": "Geometry",
|
|
"description": "The reference to defined geometries in '<resource pack>/models/'",
|
|
"type": "object",
|
|
"propertyNames": { "pattern": "[a-zA-Z0-9_\\.\\-]+" },
|
|
"minProperties": 1,
|
|
"additionalProperties": { "type": "string", "description": "The reference to the geometry", "title": "Geometry Reference" }
|
|
},
|
|
"identifier": { "type": "string", "description": "The entity indentifier", "title": "Identifier", "$ref": "../../../general/item/identifier.json" },
|
|
"materials": {
|
|
"type": "object",
|
|
"additionalProperties": { "type": "string", "description": "TODO description: additionalProperties", "title": "TODO" },
|
|
"description": "TODO description: materials",
|
|
"title": "Materials"
|
|
},
|
|
"min_engine_version": { "type": "string", "pattern": "[0-9]+\\.[0-9]+\\.[0-9]+", "description": "TODO description: min engine version", "title": "Min Engine Version" },
|
|
"particle_effects": {
|
|
"type": "object",
|
|
"minProperties": 1,
|
|
"additionalProperties": { "type": "string", "description": "TODO description: additionalProperties", "title": "TODO" },
|
|
"description": "TODO description: particle effects",
|
|
"title": "Particle Effects"
|
|
},
|
|
"particle_emitters": {
|
|
"type": "object",
|
|
"minProperties": 1,
|
|
"additionalProperties": { "type": "string", "description": "TODO description: additionalProperties", "title": "TODO" },
|
|
"description": "TODO description: particle emitters",
|
|
"title": "Particle Emitters"
|
|
},
|
|
"render_controllers": {
|
|
"type": "array",
|
|
"description": "TODO description: render controllers",
|
|
"title": "Render Controllers",
|
|
"minItems": 1,
|
|
"items": {
|
|
"oneOf": [
|
|
{ "type": "string" },
|
|
{ "type": "object", "additionalProperties": { "type": "string", "description": "A render controller", "title": "Render Controller" } }
|
|
]
|
|
}
|
|
},
|
|
"scripts": {
|
|
"additionalProperties": false,
|
|
"type": "object",
|
|
"title": "Scripts",
|
|
"description": "TODO",
|
|
"properties": {
|
|
"animate": {
|
|
"type": "array",
|
|
"title": "Animate",
|
|
"description": "The array of items to animate",
|
|
"minItems": 1,
|
|
"items": {
|
|
"oneOf": [
|
|
{ "type": "string", "description": "A single animation or animation controller to run", "title": "Animation (Controller)" },
|
|
{
|
|
"type": "object",
|
|
"minProperties": 1,
|
|
"maxProperties": 1,
|
|
"title": "Animation (Controller) Condition",
|
|
"description": "A single animation or animation controller to run on condition",
|
|
"additionalProperties": {
|
|
"type": "string",
|
|
"description": "A molang condition",
|
|
"title": "Molang"
|
|
}
|
|
}
|
|
]
|
|
}
|
|
},
|
|
"initialize": {
|
|
"type": "array",
|
|
"description": "Clientside molang variables that are to be evualated during the creation of the entity",
|
|
"title": "Initialize",
|
|
"items": {
|
|
"pattern": ";$",
|
|
"$ref": "../../../molang/1.8.0/string.json",
|
|
"description": "Clientside molang variables that are to be evualated during the creation of the entity",
|
|
"title": "Initialize"
|
|
}
|
|
},
|
|
"pre_animation": {
|
|
"type": "array",
|
|
"description": "Clientside molang variables that are to be evualated during the animation",
|
|
"title": "Pre Animation",
|
|
"items": {
|
|
"pattern": ";$",
|
|
"$ref": "../../../molang/1.8.0/string.json",
|
|
"description": "Clientside molang variables that are to be evualated during the animation",
|
|
"title": "Pre Animation"
|
|
}
|
|
},
|
|
"parent_setup": { "type": "string", "description": "TODO description: parent setup", "title": "Parent Setup", "$ref": "../../../molang/1.8.0/number.json" },
|
|
"scale": { "type": "string", "description": "TODO description: scale", "title": "Scale", "$ref": "../../../molang/1.8.0/number.json" },
|
|
"scalex": { "$ref": "../../../molang/1.8.0/number.json", "title": "Scale X" },
|
|
"scaley": { "$ref": "../../../molang/1.8.0/number.json", "title": "Scale Y" },
|
|
"scalez": { "$ref": "../../../molang/1.8.0/number.json", "title": "Scale Z" },
|
|
"should_update_bones_and_effects_offscreen": {
|
|
"title": "Should Update Bones And Effects Offscreen",
|
|
"description": "Bones and effects will still be updated if the entity is off screen if this expression returns anything other than 0.0.",
|
|
"$ref": "../../../molang/1.8.0/string.json"
|
|
},
|
|
"should_update_effects_offscreen": {
|
|
"title": "Should Update Effects Offscreen",
|
|
"description": "Effects will still be updated if the entity is off screen if this expression or `should_update_bones_and_effects_offscreen` returns anything other than 0.0.",
|
|
"$ref": "../../../molang/1.8.0/string.json"
|
|
},
|
|
"variables": {
|
|
"title": "Variables",
|
|
"description": " A list of variables that need certain settings applied to them. Currently, for the client, only \"public\" is supported.",
|
|
"type": "object",
|
|
"minProperties": 1,
|
|
"propertyNames": { "pattern": "variable.[a-zA-Z_][a-zA-Z0-9_]*" },
|
|
"additionalProperties": {
|
|
"title": "Variable",
|
|
"description": " If a variable is public, it can be read by other mobs. See the molang `->` operator for details.",
|
|
"type": "string",
|
|
"enum": ["public"]
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"sound_effects": {
|
|
"title": "Sound Effects",
|
|
"description": "TODO description: sound effects",
|
|
"type": "object",
|
|
"minProperties": 1,
|
|
"additionalProperties": { "type": "string", "description": "TODO description: additionalProperties", "title": "Sound Effect" }
|
|
},
|
|
"spawn_egg": {
|
|
"additionalProperties": false,
|
|
"type": "object",
|
|
"description": "The definition of how the spawn_egg icon looks like",
|
|
"title": "Spawn Egg",
|
|
"dependencies": { "texture_index": ["texture"], "base_colour": ["overlay_color"], "overlay_color": ["base_color"] },
|
|
"properties": {
|
|
"base_color": { "type": "string", "description": "The basic color of the egg", "title": "Base Color", "format": "color-hex" },
|
|
"overlay_color": { "type": "string", "description": "The colors of the dots on the egg", "title": "Overlay Color", "format": "color-hex" },
|
|
"texture": { "type": "string", "description": "The texture reference in item_texture.json", "title": "Texture" },
|
|
"texture_index": { "type": "integer", "description": "The index of the texture", "title": "Texture Index", "default": 0 }
|
|
}
|
|
},
|
|
"textures": {
|
|
"type": "object",
|
|
"additionalProperties": { "type": "string", "description": "A reference to a texture in the resourcepack", "title": "Texture" },
|
|
"description": "A collection of references to textures in the resourcepack",
|
|
"title": "Textures"
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"additionalProperties": false
|
|
}
|
|
},
|
|
"additionalProperties": false
|
|
}
|