This commit is contained in:
DaanV2
2021-04-05 14:17:08 +02:00
parent b4eff4ceee
commit 659442fefd
2 changed files with 17 additions and 9 deletions

View File

@@ -87,7 +87,11 @@
} }
}, },
"properties": { "properties": {
"format_version": { "title": "Format Version", "description": "TODO: format_version", "type": "string" }, "format_version": {
"title": "Format Version",
"description": "A version that tells minecraft what type of data format can be expected when reading this file.",
"type": "string"
},
"minecraft:fog_settings": { "minecraft:fog_settings": {
"title": "Fog Settings", "title": "Fog Settings",
"description": "The definition of a single fog", "description": "The definition of a single fog",

View File

@@ -1,36 +1,40 @@
{ {
"$schema": "http://json-schema.org/draft-07/schema", "$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.resource.1.10.0.items", "$id": "blockception.minecraft.resource.1.10.0.items",
"description": "Minecraft items 1.10.0",
"required": ["format_version", "minecraft:item"], "required": ["format_version", "minecraft:item"],
"title": "Item", "title": "Item",
"description": "Minecraft items 1.10.0",
"properties": { "properties": {
"format_version": { "type": "string", "description": "TODO description", "title": "TODO Title" }, "format_version": {
"title": "Format Version",
"description": "A version that tells minecraft what type of data format can be expected when reading this file.",
"type": "string"
},
"minecraft:item": { "minecraft:item": {
"title": "Item", "title": "Item",
"description": "TODO", "description": "A resource pack definition of an item",
"required": ["description", "components"], "required": ["description", "components"],
"type": "object", "type": "object",
"additionalProperties": false, "additionalProperties": false,
"properties": { "properties": {
"description": { "description": {
"title": "Description", "title": "Description",
"description": "TODO", "description": "The description of an item",
"required": ["identifier"], "required": ["identifier"],
"type": "object", "type": "object",
"additionalProperties": false, "additionalProperties": false,
"properties": { "properties": {
"identifier": { "title": "Identifier", "description": "TODO", "$ref": "../../../general/item/identifier.json" }, "identifier": { "title": "Identifier", "description": "The item identifier", "$ref": "../../../general/item/identifier.json", "examples": ["namespace:example"] },
"category": { "title": "Category", "description": "TODO", "type": "string" } "category": { "title": "Category", "description": "The category this item belongs in", "type": "string" }
} }
}, },
"components": { "components": {
"title": "Components", "title": "Components",
"description": "TODO", "description": "The components that describe this item",
"additionalProperties": false, "additionalProperties": false,
"properties": { "properties": {
"minecraft:icon": { "title": "Icon", "description": "The texture defined in `textures/item_texture.json`", "type": "string" }, "minecraft:icon": { "title": "Icon", "description": "The texture defined in `textures/item_texture.json`", "type": "string" },
"minecraft:render_offsets": { "type": "string", "description": "TODO", "title": "Render Offsets", "enum": ["apple"] } "minecraft:render_offsets": { "type": "string", "description": "The render offset used for the item", "title": "Render Offsets", "enum": ["apple"] }
} }
} }
} }