Added blocks 1.17
This commit is contained in:
@@ -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": {
|
||||
|
||||
@@ -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",
|
||||
|
||||
@@ -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 }
|
||||
|
||||
@@ -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.",
|
||||
|
||||
@@ -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",
|
||||
|
||||
@@ -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": {
|
||||
|
||||
@@ -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": {
|
||||
|
||||
Reference in New Issue
Block a user