Updated UNDOCUMENTED

This commit is contained in:
DaanV2
2021-07-01 11:35:53 +02:00
parent 6ac62d15e7
commit ba94cceb50
367 changed files with 2266 additions and 640 deletions

View File

@@ -9,10 +9,16 @@
"description": "A single material instance",
"additionalProperties": false,
"properties": {
"ambient_occlusion": { "title": "Ambient Occlusion", "type": "boolean", "description": "UNDOCUMENTED" },
"face_dimming": { "title": "Face Dimming", "type": "boolean", "description": "UNDOCUMENTED" },
"render_method": { "type": "string", "title": "Render Method", "description": "UNDOCUMENTED", "enum": ["blend", "opaque", "alpha_test"] },
"texture": { "type": "string", "title": "Texture", "description": "UNDOCUMENTED" }
"ambient_occlusion": { "title": "Ambient Occlusion", "type": "boolean", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED" },
"face_dimming": { "title": "Face Dimming", "type": "boolean", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED" },
"render_method": {
"type": "string",
"title": "Render Method",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"enum": ["blend", "opaque", "alpha_test"]
},
"texture": { "type": "string", "title": "Texture", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED" }
}
}
},

View File

@@ -12,6 +12,7 @@
"type": "object",
"title": "Condition",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"properties": {
"allowed_faces": {
"title": "Allowed Faces",
@@ -23,7 +24,7 @@
"title": "Block Filter",
"description": "List of blocks (can use tags to specify them) that this block can be placed against in the allowed_faces direction",
"type": "array",
"items": { "type": "string", "title": "Block Identifier", "description": "UNDOCUMENTED" }
"items": { "type": "string", "title": "Block Identifier", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED" }
}
}
}

View File

@@ -10,6 +10,7 @@
"type": "object",
"title": "Component",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"propertyNames": { "examples": ["tag:foo"] },
"properties": {
"minecraft:block_light_absorption": { "$ref": "./components/minecraft.block_light_absorption.json" },

View File

@@ -9,10 +9,16 @@
"description": "A single material instance",
"additionalProperties": false,
"properties": {
"ambient_occlusion": { "title": "Ambient Occlusion", "type": "boolean", "description": "UNDOCUMENTED" },
"face_dimming": { "title": "Face Dimming", "type": "boolean", "description": "UNDOCUMENTED" },
"render_method": { "type": "string", "title": "Render Method", "description": "UNDOCUMENTED", "enum": ["blend", "opaque", "alpha_test"] },
"texture": { "type": "string", "title": "Texture", "description": "UNDOCUMENTED" }
"ambient_occlusion": { "title": "Ambient Occlusion", "type": "boolean", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED" },
"face_dimming": { "title": "Face Dimming", "type": "boolean", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED" },
"render_method": {
"type": "string",
"title": "Render Method",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"enum": ["blend", "opaque", "alpha_test"]
},
"texture": { "type": "string", "title": "Texture", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED" }
}
}
},

View File

@@ -12,6 +12,7 @@
"type": "object",
"title": "Condition",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"properties": {
"allowed_faces": {
"title": "Allowed Faces",
@@ -23,7 +24,7 @@
"title": "Block Filter",
"description": "List of blocks (can use tags to specify them) that this block can be placed against in the allowed_faces direction",
"type": "array",
"items": { "type": "string", "title": "Block Identifier", "description": "UNDOCUMENTED" }
"items": { "type": "string", "title": "Block Identifier", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED" }
}
}
}

View File

@@ -2,6 +2,7 @@
"$id": "blockception.minecraft.behavior.1.16.100.block.events",
"title": "Events",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"type": "object",
"properties": {
"minecraft:on_interact": { "$ref": "#/definitions/event_base" },
@@ -19,6 +20,7 @@
"event_base": {
"title": "Event",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"type": "object",
"additionalProperties": false,
"$ref": "#/definitions/event_functions",
@@ -26,20 +28,31 @@
"sequence": {
"title": "Sequence",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"type": "array",
"items": { "title": "Sequence", "description": "UNDOCUMENTED", "type": "object", "$ref": "#/definitions/event_functions" }
"items": {
"title": "Sequence",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"type": "object",
"$ref": "#/definitions/event_functions"
}
},
"randomize": {
"title": "Randomize",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"type": "array",
"items": {
"title": "Randomize",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"type": "object",
"$ref": "#/definitions/event_functions",
"required": ["weight"],
"properties": { "weight": { "title": "Weight", "description": "UNDOCUMENTED", "type": "integer", "minimum": 0 } }
"properties": {
"weight": { "title": "Weight", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "type": "integer", "minimum": 0 }
}
}
},
"add_mob_effect": { "$ref": "./events/add_mob_effect.json" },
@@ -62,6 +75,7 @@
"event_functions": {
"title": "Event",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"type": "object",
"additionalProperties": true,
"properties": {

View File

@@ -10,6 +10,7 @@
"type": "object",
"title": "Component",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"additionalProperties": false,
"properties": {
"minecraft:block_light_absorption": { "$ref": "./components/minecraft.block_light_absorption.json" },

View File

@@ -9,10 +9,16 @@
"description": "A single material instance",
"additionalProperties": false,
"properties": {
"ambient_occlusion": { "title": "Ambient Occlusion", "type": "boolean", "description": "UNDOCUMENTED" },
"face_dimming": { "title": "Face Dimming", "type": "boolean", "description": "UNDOCUMENTED" },
"render_method": { "type": "string", "title": "Render Method", "description": "UNDOCUMENTED", "enum": ["blend", "opaque", "alpha_test"] },
"texture": { "type": "string", "title": "Texture", "description": "UNDOCUMENTED" }
"ambient_occlusion": { "title": "Ambient Occlusion", "type": "boolean", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED" },
"face_dimming": { "title": "Face Dimming", "type": "boolean", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED" },
"render_method": {
"type": "string",
"title": "Render Method",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"enum": ["blend", "opaque", "alpha_test"]
},
"texture": { "type": "string", "title": "Texture", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED" }
}
}
},

View File

@@ -12,6 +12,7 @@
"type": "object",
"title": "Condition",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"properties": {
"allowed_faces": {
"title": "Allowed Faces",
@@ -23,7 +24,7 @@
"title": "Block Filter",
"description": "List of blocks (can use tags to specify them) that this block can be placed against in the allowed_faces direction",
"type": "array",
"items": { "type": "string", "title": "Block Identifier", "description": "UNDOCUMENTED" }
"items": { "type": "string", "title": "Block Identifier", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED" }
}
}
}

View File

@@ -2,6 +2,7 @@
"$id": "blockception.minecraft.behavior.1.16.200.block.events",
"title": "Events",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"type": "object",
"properties": {
"minecraft:on_interact": { "$ref": "#/definitions/event_base" },
@@ -19,6 +20,7 @@
"event_base": {
"title": "Event",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"type": "object",
"additionalProperties": false,
"$ref": "#/definitions/event_functions",
@@ -26,20 +28,31 @@
"sequence": {
"title": "Sequence",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"type": "array",
"items": { "title": "Sequence", "description": "UNDOCUMENTED", "type": "object", "$ref": "#/definitions/event_functions" }
"items": {
"title": "Sequence",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"type": "object",
"$ref": "#/definitions/event_functions"
}
},
"randomize": {
"title": "Randomize",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"type": "array",
"items": {
"title": "Randomize",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"type": "object",
"$ref": "#/definitions/event_functions",
"required": ["weight"],
"properties": { "weight": { "title": "Weight", "description": "UNDOCUMENTED", "type": "integer", "minimum": 0 } }
"properties": {
"weight": { "title": "Weight", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "type": "integer", "minimum": 0 }
}
}
},
"add_mob_effect": { "$ref": "./events/add_mob_effect.json" },
@@ -62,6 +75,7 @@
"event_functions": {
"title": "Event",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"type": "object",
"additionalProperties": true,
"properties": {