Adding dots to description

This commit is contained in:
DaanV2
2022-07-22 19:41:04 +02:00
parent 61327eac6e
commit 8b3778de6d
457 changed files with 2337 additions and 2406 deletions

View File

@@ -2,7 +2,7 @@
"$id": "blockception.minecraft.resource.1.10.0.entity",
"type": "object",
"title": "Actor Entity 1.10.0",
"description": "A client side entity definition",
"description": "A client side entity definition.",
"additionalProperties": false,
"required": ["format_version", "minecraft:client_entity"],
"properties": {
@@ -11,13 +11,13 @@
"type": "object",
"additionalProperties": false,
"title": "Client Entity",
"description": "The entity description for clientside rendering, animations and models",
"description": "The entity description for clientside rendering, animations and models.",
"required": ["description"],
"properties": {
"description": {
"additionalProperties": false,
"title": "Description",
"description": "The entity description for clientside rendering, animations and models",
"description": "The entity description for clientside rendering, animations and models.",
"type": "object",
"required": ["identifier"],
"properties": {
@@ -34,25 +34,25 @@
"examples": ["controller.", "animation."]
}
},
"enable_attachables": { "type": "boolean", "description": "Whether or not attachables are enaboled", "title": "Enable Attachables" },
"enable_attachables": { "type": "boolean", "description": "Whether or not attachables are enaboled.", "title": "Enable Attachables" },
"geometry": {
"title": "Geometry",
"description": "The reference to defined geometries in `<resource pack>/models/'",
"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" }
"additionalProperties": { "type": "string", "description": "The reference to the geometry.", "title": "Geometry Reference" }
},
"queryable_geometry": {
"title": "Queryable Geometry",
"description": "UNDOCUMENTED",
"description": "UNDOCUMENTED.",
"type": "string"
},
"hide_armor": {
"type": "boolean",
"default": true,
"title": "Hide Armor",
"description": "Hides or shows the possible armor"
"description": "Hides or shows the possible armor."
},
"held_item_ignores_lighting": {
"type": "boolean",
@@ -62,7 +62,7 @@
},
"identifier": {
"type": "string",
"description": "The entity indentifier",
"description": "The entity indentifier.",
"title": "Identifier",
"$ref": "../../../general/entity/identifier.json"
},
@@ -70,7 +70,7 @@
"type": "object",
"additionalProperties": {
"type": "string",
"description": "Material reference",
"description": "Material reference.",
"title": "Material",
"examples": [
"agent",
@@ -438,42 +438,42 @@
"zombie_villager_v2_masked"
]
},
"description": "A collection of material definitions",
"description": "A collection of material definitions.",
"title": "Materials"
},
"min_engine_version": {
"type": "string",
"pattern": "[0-9]+\\.[0-9]+\\.[0-9]+",
"description": "The minimum engine version to be used",
"description": "The minimum engine version to be used.",
"title": "Minimum Engine Version"
},
"particle_effects": {
"type": "object",
"minProperties": 1,
"additionalProperties": { "type": "string", "description": "Particle reference", "title": "Particle" },
"description": "A collection of particle definitions",
"additionalProperties": { "type": "string", "description": "Particle reference.", "title": "Particle" },
"description": "A collection of particle definitions.",
"title": "Particle Effects"
},
"particle_emitters": {
"type": "object",
"minProperties": 1,
"additionalProperties": { "type": "string", "description": "Particle emitter reference", "title": "Particle Emitter" },
"description": "A collection of particle emitters definitions",
"additionalProperties": { "type": "string", "description": "Particle emitter reference.", "title": "Particle Emitter" },
"description": "A collection of particle emitters definitions.",
"title": "Particle Emitters"
},
"render_controllers": {
"type": "array",
"description": "A collection of Render controller definitions",
"description": "A collection of Render controller definitions.",
"title": "Render Controllers",
"minItems": 1,
"items": {
"oneOf": [
{ "type": "string", "title": "Render Controller", "description": "A single render controller definition" },
{ "type": "string", "title": "Render Controller", "description": "A single render controller definition." },
{
"type": "object",
"additionalProperties": {
"type": "string",
"description": "A render controller activate on conditional",
"description": "A render controller activate on conditional.",
"title": "Render Controller"
}
}
@@ -484,26 +484,26 @@
"additionalProperties": false,
"type": "object",
"title": "Scripts",
"description": "The place where variables, and animations / controller to be run is specified",
"description": "The place where variables, and animations / controller to be run is specified.",
"properties": {
"animate": {
"type": "array",
"title": "Animate",
"description": "The array of items to 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": "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",
"description": "A single animation or animation controller to run on condition.",
"additionalProperties": {
"oneOf": [
{ "type": "string", "description": "A molang condition", "title": "Molang" },
{ "type": "number", "description": "Blend weight", "title": "Blend Weight" }
{ "type": "string", "description": "A molang condition.", "title": "Molang" },
{ "type": "number", "description": "Blend weight.", "title": "Blend Weight" }
]
}
}
@@ -512,30 +512,30 @@
},
"initialize": {
"type": "array",
"description": "Clientside molang variables that are to be evualated during the creation of the entity",
"description": "Clientside molang variables that are to be evualated during the creation of the entity.",
"title": "Initialize",
"minItems": 1,
"items": {
"pattern": ";$",
"$ref": "../../../molang/string.json",
"description": "Clientside molang variables that are to be evualated during the creation of the entity",
"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",
"description": "Clientside molang variables that are to be evualated during the animation.",
"title": "Pre Animation",
"items": {
"pattern": ";$",
"$ref": "../../../molang/string.json",
"description": "Clientside molang variables that are to be evualated during the animation",
"description": "Clientside molang variables that are to be evualated during the animation.",
"title": "Pre Animation"
}
},
"parent_setup": {
"type": "string",
"description": "UNDOCUMENTED: parent setup",
"description": "UNDOCUMENTED: parent setup.",
"title": "Parent Setup",
"$ref": "../../../molang/number.json"
},
@@ -575,15 +575,15 @@
},
"sound_effects": {
"title": "Sound Effects",
"description": "A collection of sound effect definition",
"description": "A collection of sound effect definition.",
"type": "object",
"minProperties": 1,
"additionalProperties": { "type": "string", "description": "A sound effect definition", "title": "Sound Effect" }
"additionalProperties": { "type": "string", "description": "A sound effect definition.", "title": "Sound Effect" }
},
"spawn_egg": {
"additionalProperties": false,
"type": "object",
"description": "The definition of how the spawn_egg icon looks like",
"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"] },
"examples": [
@@ -593,26 +593,26 @@
"properties": {
"base_color": {
"type": "string",
"description": "The basic color of the egg",
"description": "The basic color of the egg.",
"title": "Base Color",
"format": "color-hex",
"examples": ["#FFFFFF"]
},
"overlay_color": {
"type": "string",
"description": "The colors of the dots on the egg",
"description": "The colors of the dots on the egg.",
"title": "Overlay Color",
"format": "color-hex",
"examples": ["#FFFFFF"]
},
"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 }
"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",
"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"
}
}