auto: Formatted json files
This commit is contained in:
@@ -5,6 +5,6 @@
|
|||||||
"type": "string",
|
"type": "string",
|
||||||
"title": "Breathability 1.10.0",
|
"title": "Breathability 1.10.0",
|
||||||
"description": "Property describing the breathability of this block and whether it is treated as a solid or as air.",
|
"description": "Property describing the breathability of this block and whether it is treated as a solid or as air.",
|
||||||
"enum": [ "solid", "air" ],
|
"enum": ["solid", "air"],
|
||||||
"default": "solid"
|
"default": "solid"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"$schema": "http://json-schema.org/draft-07/schema",
|
"$schema": "http://json-schema.org/draft-07/schema",
|
||||||
"$id": "blockception.minecraft.behaviour.blocks.1.10.0.minecraft.material_instances",
|
"$id": "blockception.minecraft.behaviour.blocks.1.10.0.minecraft.material_instances",
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"title": "Material instances 1.10.0",
|
"title": "Material instances 1.10.0",
|
||||||
"description": "Maps face or material_instance names in a geometry file to an actual material instance. Material instance can either be a full material instance or a name to another already defined instance",
|
"description": "Maps face or material_instance names in a geometry file to an actual material instance. Material instance can either be a full material instance or a name to another already defined instance",
|
||||||
@@ -17,7 +17,7 @@
|
|||||||
},
|
},
|
||||||
"face_dimming": {
|
"face_dimming": {
|
||||||
"title": "Face dimming",
|
"title": "Face dimming",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"description": "UNDOCUMENTATED"
|
"description": "UNDOCUMENTATED"
|
||||||
},
|
},
|
||||||
"render_method": {
|
"render_method": {
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"$schema": "http://json-schema.org/draft-07/schema",
|
"$schema": "http://json-schema.org/draft-07/schema",
|
||||||
"$id": "blockception.minecraft.behaviour.blocks.1.10.0.minecraft.onlypistonpush",
|
"$id": "blockception.minecraft.behaviour.blocks.1.10.0.minecraft.onlypistonpush",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"title": "Only piston push 1.10.0",
|
"title": "Only piston push 1.10.0",
|
||||||
"description": "Blocks with those components won't stick to stickyPistons"
|
"description": "Blocks with those components won't stick to stickyPistons"
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"$schema": "http://json-schema.org/draft-07/schema",
|
"$schema": "http://json-schema.org/draft-07/schema",
|
||||||
"$id": "blockception.minecraft.behaviour.blocks.1.10.0.minecraft.pick_collision",
|
"$id": "blockception.minecraft.behaviour.blocks.1.10.0.minecraft.pick_collision",
|
||||||
"title": "Pick collision 1.10.0",
|
"title": "Pick collision 1.10.0",
|
||||||
"description": "Can only be set to false, it disables the collision of the block with entities",
|
"description": "Can only be set to false, it disables the collision of the block with entities",
|
||||||
"oneOf": [
|
"oneOf": [
|
||||||
|
|||||||
@@ -25,10 +25,7 @@
|
|||||||
"range": {
|
"range": {
|
||||||
"title": "Range",
|
"title": "Range",
|
||||||
"type": "array",
|
"type": "array",
|
||||||
"items": [
|
"items": [{ "type": "integer" }, { "type": "integer" }]
|
||||||
{ "type": "integer" },
|
|
||||||
{ "type": "integer" }
|
|
||||||
]
|
|
||||||
},
|
},
|
||||||
"target": {
|
"target": {
|
||||||
"title": "Target",
|
"title": "Target",
|
||||||
|
|||||||
@@ -6,8 +6,8 @@
|
|||||||
"type": "array",
|
"type": "array",
|
||||||
"additionalProperties": false,
|
"additionalProperties": false,
|
||||||
"items": [
|
"items": [
|
||||||
{ "type": "number", "title": "X"},
|
{ "type": "number", "title": "X" },
|
||||||
{ "type": "number", "title": "Y"},
|
{ "type": "number", "title": "Y" },
|
||||||
{ "type": "number", "title": "Z"}
|
{ "type": "number", "title": "Z" }
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -15,10 +15,7 @@
|
|||||||
"title": "Range",
|
"title": "Range",
|
||||||
"description": "The Range between which the component will trigger his event.",
|
"description": "The Range between which the component will trigger his event.",
|
||||||
"type": "array",
|
"type": "array",
|
||||||
"items": [
|
"items": [{ "type": "integer" }, { "type": "integer" }]
|
||||||
{ "type": "integer" },
|
|
||||||
{ "type": "integer" }
|
|
||||||
]
|
|
||||||
},
|
},
|
||||||
"on_tick": {
|
"on_tick": {
|
||||||
"type": "object",
|
"type": "object",
|
||||||
|
|||||||
Reference in New Issue
Block a user