Added blocks 1.17

This commit is contained in:
DaanV2
2021-08-22 00:15:58 +02:00
parent 286794dae0
commit 5e465f3220
56 changed files with 943 additions and 9 deletions

View File

@@ -50,7 +50,7 @@
}
}
},
"colorhex": { "description": "The colouration of this object", "title": "Colorhex", "format": "color-hex" }
"colorhex": { "description": "The colouration of this object", "title": "Colorhex", "format": "color-hex", "examples": ["#FFFFFF"] }
},
"properties": {
"biomes": {

View File

@@ -205,7 +205,13 @@
"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" },
"base_color": {
"type": "string",
"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",

View File

@@ -163,12 +163,19 @@
"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" },
"base_color": {
"type": "string",
"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",
"title": "Overlay Color",
"format": "color-hex"
"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 }

View File

@@ -38,7 +38,13 @@
"type": "number",
"minimum": 0
},
"fog_color": { "title": "Fog Color", "description": "The color that the fog will take on.", "type": "string", "format": "color-hex" },
"fog_color": {
"title": "Fog Color",
"description": "The color that the fog will take on.",
"type": "string",
"format": "color-hex",
"examples": ["#FFFFFF"]
},
"render_distance_type": {
"title": "Render Distance Type",
"description": "Determines how distance value is used. Fixed distance is measured in blocks. Dynamic distance is multiplied by the current render distance.",

View File

@@ -21,13 +21,13 @@
{
"description": "An array of colors",
"type": "array",
"items": { "type": "string", "description": "Color", "title": "Color", "format": "color-hex" }
"items": { "type": "string", "description": "Color", "title": "Color", "format": "color-hex", "examples": ["#FFFFFF"] }
},
{
"description": "An object of colors",
"type": "object",
"propertyNames": { "pattern": "(^[\\-0-9]+$|^[\\-0-9]+\\.[\\-0-9]+$)" },
"additionalProperties": { "type": "string", "description": "Color", "format": "color-hex" }
"additionalProperties": { "type": "string", "description": "Color", "format": "color-hex", "examples": ["#FFFFFF"] }
},
{
"description": "An array of colors",

View File

@@ -15,13 +15,19 @@
"description": "A collection of texture files",
"title": "Texture",
"properties": {
"overlay_color": { "description": "The color to apply to the texture", "title": "overlay_color", "format": "color-hex" },
"overlay_color": {
"description": "The color to apply to the texture",
"title": "Overlay Color",
"format": "color-hex",
"examples": ["#FFFFFF"]
},
"path": { "description": "A texture file", "type": "string", "pattern": "^textures/.+$", "title": "Path" },
"tint_color": {
"title": "Tint Color",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"format": "color-hex",
"examples": ["#FFFFFF"],
"type": "string"
},
"variations": {

View File

@@ -15,13 +15,19 @@
"description": "A collection of texture files",
"title": "Texture",
"properties": {
"overlay_color": { "description": "The color to apply to the texture", "title": "overlay_color", "format": "color-hex" },
"overlay_color": {
"description": "The color to apply to the texture",
"title": "Overlay Color",
"format": "color-hex",
"examples": ["#FFFFFF"]
},
"path": { "description": "A texture file", "type": "string", "pattern": "^textures/.+$", "title": "Path" },
"tint_color": {
"title": "Tint Color",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"format": "color-hex",
"examples": ["#FFFFFF"],
"type": "string"
},
"variations": {