auto: Formatted json files
This commit is contained in:
@@ -1,30 +1,30 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "minecraft.behavior.biomes.1.12.0",
|
||||
"type": "object",
|
||||
"title": "Biomes",
|
||||
"description": "The definition of a biome",
|
||||
"additionalProperties": {
|
||||
"title": "Tag",
|
||||
"type": "object",
|
||||
"description": "Components with no namespace are treated as 'tags': any name consisting of alphanumeric characters, '.' and '_' is permitted; the tag is attached to the biome so that either code or data may check for its existence; tag components may not have member fields.",
|
||||
"additionalProperties": false
|
||||
},
|
||||
"properties": {
|
||||
"minecraft:climate": { "$ref": "./components/minecraft.climate.json" },
|
||||
"minecraft:forced_features": { "$ref": "./components/minecraft.forced_features.json" },
|
||||
"minecraft:overworld_height": { "$ref": "./components/minecraft.overworld_height.json" },
|
||||
"minecraft:ignore_automatic_features": { "$ref": "./components/minecraft.ignore_automatic_features.json" },
|
||||
"minecraft:surface_parameters": { "$ref": "./components/minecraft.surface_parameters.json" },
|
||||
"minecraft:surface_material_adjustments": { "$ref": "./components/minecraft.surface_material_adjustments.json" },
|
||||
"minecraft:swamp_surface": { "$ref": "./components/minecraft.swamp_surface.json" },
|
||||
"minecraft:frozen_ocean_surface": { "$ref": "./components/minecraft.frozen_ocean_surface.json" },
|
||||
"minecraft:mesa_surface": { "$ref": "./components/minecraft.mesa_surface.json" },
|
||||
"minecraft:nether_surface": { "$ref": "./components/minecraft.nether_surface.json" },
|
||||
"minecraft:the_end_surface": { "$ref": "./components/minecraft.the_end_surface.json" },
|
||||
"minecraft:capped_surface": { "$ref": "./components/minecraft.capped_surface.json" },
|
||||
"minecraft:overworld_generation_rules": { "$ref": "./components/minecraft.overworld_generation_rules.json" },
|
||||
"minecraft:nether_generation_rules": { "$ref": "./components/minecraft.nether_generation_rules.json" },
|
||||
"minecraft:legacy_world_generation_rules": { "$ref": "./components/minecraft.legacy_world_generation_rules.json" }
|
||||
}
|
||||
}
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "minecraft.behavior.biomes.1.12.0",
|
||||
"type": "object",
|
||||
"title": "Biomes",
|
||||
"description": "The definition of a biome",
|
||||
"additionalProperties": {
|
||||
"title": "Tag",
|
||||
"type": "object",
|
||||
"description": "Components with no namespace are treated as 'tags': any name consisting of alphanumeric characters, '.' and '_' is permitted; the tag is attached to the biome so that either code or data may check for its existence; tag components may not have member fields.",
|
||||
"additionalProperties": false
|
||||
},
|
||||
"properties": {
|
||||
"minecraft:climate": { "$ref": "./components/minecraft.climate.json" },
|
||||
"minecraft:forced_features": { "$ref": "./components/minecraft.forced_features.json" },
|
||||
"minecraft:overworld_height": { "$ref": "./components/minecraft.overworld_height.json" },
|
||||
"minecraft:ignore_automatic_features": { "$ref": "./components/minecraft.ignore_automatic_features.json" },
|
||||
"minecraft:surface_parameters": { "$ref": "./components/minecraft.surface_parameters.json" },
|
||||
"minecraft:surface_material_adjustments": { "$ref": "./components/minecraft.surface_material_adjustments.json" },
|
||||
"minecraft:swamp_surface": { "$ref": "./components/minecraft.swamp_surface.json" },
|
||||
"minecraft:frozen_ocean_surface": { "$ref": "./components/minecraft.frozen_ocean_surface.json" },
|
||||
"minecraft:mesa_surface": { "$ref": "./components/minecraft.mesa_surface.json" },
|
||||
"minecraft:nether_surface": { "$ref": "./components/minecraft.nether_surface.json" },
|
||||
"minecraft:the_end_surface": { "$ref": "./components/minecraft.the_end_surface.json" },
|
||||
"minecraft:capped_surface": { "$ref": "./components/minecraft.capped_surface.json" },
|
||||
"minecraft:overworld_generation_rules": { "$ref": "./components/minecraft.overworld_generation_rules.json" },
|
||||
"minecraft:nether_generation_rules": { "$ref": "./components/minecraft.nether_generation_rules.json" },
|
||||
"minecraft:legacy_world_generation_rules": { "$ref": "./components/minecraft.legacy_world_generation_rules.json" }
|
||||
}
|
||||
}
|
||||
|
||||
@@ -30,17 +30,17 @@
|
||||
"sea_material": {
|
||||
"title": "Sea material",
|
||||
"description": "Material used to replace air blocks below sea level.",
|
||||
"type": "string"
|
||||
"type": "string"
|
||||
},
|
||||
"foundation_material": {
|
||||
"title": "Foundation material",
|
||||
"description": "Material used to repalce solid blocks that are not surface blocks.",
|
||||
"type": "string"
|
||||
"type": "string"
|
||||
},
|
||||
"beach_material": {
|
||||
"title": "Beach material",
|
||||
"description": "Material used to decorate surface near sea level.",
|
||||
"type": "string"
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,51 +1,48 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "minecraft.behavior.biomes.1.12.0.components.minecraft.climate",
|
||||
"title": "Climate",
|
||||
"description": "Describes temperature, humidity, precipitation, etc. Biomes without this component will have default values.",
|
||||
"type": "object",
|
||||
"minProperties": 0,
|
||||
"maxProperties": 7,
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"temperature" : {
|
||||
"title": "Temperature",
|
||||
"description": "UNDOCUMENATED",
|
||||
"type": "number"
|
||||
},
|
||||
"downfall" : {
|
||||
"title": "Downfall",
|
||||
"description": "UNDOCUMENATED",
|
||||
"type": "number"
|
||||
},
|
||||
"red_spores" : {
|
||||
"title": "Red spores",
|
||||
"description": "UNDOCUMENATED",
|
||||
"type": "number"
|
||||
},
|
||||
"blue_spores" : {
|
||||
"title": "Blue spores",
|
||||
"description": "UNDOCUMENATED",
|
||||
"type": "number"
|
||||
},
|
||||
"ash" : {
|
||||
"title": "Ash",
|
||||
"description": "UNDOCUMENATED",
|
||||
"type": "number"
|
||||
},
|
||||
"white_ash" : {
|
||||
"title": "White ash",
|
||||
"description": "UNDOCUMENATED",
|
||||
"type": "number"
|
||||
},
|
||||
"snow_accumulation": {
|
||||
"title": "Snow accumulation",
|
||||
"description": "UNDOCUMENATED",
|
||||
"type": "array",
|
||||
"items": [
|
||||
{ "type": "number"},
|
||||
{ "type": "number"}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "minecraft.behavior.biomes.1.12.0.components.minecraft.climate",
|
||||
"title": "Climate",
|
||||
"description": "Describes temperature, humidity, precipitation, etc. Biomes without this component will have default values.",
|
||||
"type": "object",
|
||||
"minProperties": 0,
|
||||
"maxProperties": 7,
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"temperature": {
|
||||
"title": "Temperature",
|
||||
"description": "UNDOCUMENATED",
|
||||
"type": "number"
|
||||
},
|
||||
"downfall": {
|
||||
"title": "Downfall",
|
||||
"description": "UNDOCUMENATED",
|
||||
"type": "number"
|
||||
},
|
||||
"red_spores": {
|
||||
"title": "Red spores",
|
||||
"description": "UNDOCUMENATED",
|
||||
"type": "number"
|
||||
},
|
||||
"blue_spores": {
|
||||
"title": "Blue spores",
|
||||
"description": "UNDOCUMENATED",
|
||||
"type": "number"
|
||||
},
|
||||
"ash": {
|
||||
"title": "Ash",
|
||||
"description": "UNDOCUMENATED",
|
||||
"type": "number"
|
||||
},
|
||||
"white_ash": {
|
||||
"title": "White ash",
|
||||
"description": "UNDOCUMENATED",
|
||||
"type": "number"
|
||||
},
|
||||
"snow_accumulation": {
|
||||
"title": "Snow accumulation",
|
||||
"description": "UNDOCUMENATED",
|
||||
"type": "array",
|
||||
"items": [{ "type": "number" }, { "type": "number" }]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -36,13 +36,13 @@
|
||||
"description": "UNDOCUMENTATED",
|
||||
"type": "array",
|
||||
"items": [
|
||||
{
|
||||
"title": "Lower bound",
|
||||
{
|
||||
"title": "Lower bound",
|
||||
"description": "Lower bound (inclusive) of the scatter range, as an offset from the input point to scatter around",
|
||||
"$ref": "../../../../molang/1.8.0/number.json"
|
||||
},
|
||||
{
|
||||
"title": "Upper bound",
|
||||
{
|
||||
"title": "Upper bound",
|
||||
"description": "Upper bound (inclusive) of the scatter range, as an offset from the input point to scatter around",
|
||||
"$ref": "../../../../molang/1.8.0/number.json"
|
||||
}
|
||||
|
||||
@@ -9,34 +9,34 @@
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"top_material": {
|
||||
"title": "Top material",
|
||||
"title": "Top material",
|
||||
"description": "Controls the block type used for the surface of this biome.",
|
||||
"string": "string"
|
||||
"string": "string"
|
||||
},
|
||||
"mid_material": {
|
||||
"title": "Mid material",
|
||||
"title": "Mid material",
|
||||
"description": "Controls the block type used in a layer below the surface of this biome.",
|
||||
"string": "string"
|
||||
"string": "string"
|
||||
},
|
||||
"sea_floor_material": {
|
||||
"title": "Sea floor material",
|
||||
"title": "Sea floor material",
|
||||
"description": "Controls the block type used as a floor for bodies of water in this biome.",
|
||||
"string": "boostringlean"
|
||||
"string": "boostringlean"
|
||||
},
|
||||
"foundation_material": {
|
||||
"title": "Foundation material",
|
||||
"title": "Foundation material",
|
||||
"description": "Controls the block type used deep underground in this biome.",
|
||||
"string": "string"
|
||||
"string": "string"
|
||||
},
|
||||
"sea_material": {
|
||||
"title": "Sea material",
|
||||
"title": "Sea material",
|
||||
"description": "Controls the block type used for the bodies of water in this biome.",
|
||||
"string": "string"
|
||||
"string": "string"
|
||||
},
|
||||
"sea_floor_depth": {
|
||||
"title": "Sea floor depth",
|
||||
"title": "Sea floor depth",
|
||||
"description": "Controls how deep below the world water level the floor should occur.",
|
||||
"type": "integer"
|
||||
"type": "integer"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "minecraft.behavior.biomes.1.12.0.components.minecraft.ignore_automatic_features",
|
||||
"title": "Ignore automatic features",
|
||||
"description": "No features will be automatically attached to this Biome, only features specified in the minecraft:forced_features component will appear.",
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": { }
|
||||
}
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "minecraft.behavior.biomes.1.12.0.components.minecraft.ignore_automatic_features",
|
||||
"title": "Ignore automatic features",
|
||||
"description": "No features will be automatically attached to this Biome, only features specified in the minecraft:forced_features component will appear.",
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {}
|
||||
}
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "minecraft.behavior.biomes.1.12.0.components.minecraft.legacy_world_generation_rules",
|
||||
"title": "Legacy world generation rules",
|
||||
"description": "Additional world generation control applicable only to legacy limited worlds.",
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": { }
|
||||
}
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "minecraft.behavior.biomes.1.12.0.components.minecraft.legacy_world_generation_rules",
|
||||
"title": "Legacy world generation rules",
|
||||
"description": "Additional world generation control applicable only to legacy limited worlds.",
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {}
|
||||
}
|
||||
|
||||
@@ -7,27 +7,27 @@
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"target_temperature": {
|
||||
"title": "Target temperature",
|
||||
"title": "Target temperature",
|
||||
"description": "Temperature with which this biome should selected, relative to other biomes.",
|
||||
"type": "number"
|
||||
},
|
||||
"target_humidity": {
|
||||
"title": "Target humidity",
|
||||
"title": "Target humidity",
|
||||
"description": "Humidity with which this biome should selected, relative to other biomes.",
|
||||
"type": "number"
|
||||
},
|
||||
"target_altitude": {
|
||||
"title": "Target altitude",
|
||||
"title": "Target altitude",
|
||||
"description": "Altitude with which this biome should selected, relative to other biomes.",
|
||||
"type": "number"
|
||||
},
|
||||
"target_weirdness": {
|
||||
"title": "Target weirdness",
|
||||
"title": "Target weirdness",
|
||||
"description": "Weirdness with which this biome should selected, relative to other biomes.",
|
||||
"type": "number"
|
||||
},
|
||||
"weight": {
|
||||
"title": "Weight",
|
||||
"title": "Weight",
|
||||
"description": "Weight with which this biome should selected, relative to other biomes.",
|
||||
"type": "number"
|
||||
}
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "minecraft.behavior.biomes.1.12.0.components.minecraft.nether_surface",
|
||||
"title": "Nether surface",
|
||||
"description": "Use default Minecraft Nether terrain generation.",
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": { }
|
||||
}
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "minecraft.behavior.biomes.1.12.0.components.minecraft.nether_surface",
|
||||
"title": "Nether surface",
|
||||
"description": "Use default Minecraft Nether terrain generation.",
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {}
|
||||
}
|
||||
|
||||
@@ -9,34 +9,34 @@
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"top_material": {
|
||||
"title": "Top material",
|
||||
"title": "Top material",
|
||||
"description": "Controls the block type used for the surface of this biome.",
|
||||
"string": "string"
|
||||
"string": "string"
|
||||
},
|
||||
"mid_material": {
|
||||
"title": "Mid material",
|
||||
"title": "Mid material",
|
||||
"description": "Controls the block type used in a layer below the surface of this biome.",
|
||||
"string": "string"
|
||||
"string": "string"
|
||||
},
|
||||
"sea_floor_material": {
|
||||
"title": "Sea floor material",
|
||||
"title": "Sea floor material",
|
||||
"description": "Controls the block type used as a floor for bodies of water in this biome.",
|
||||
"string": "boostringlean"
|
||||
"string": "boostringlean"
|
||||
},
|
||||
"foundation_material": {
|
||||
"title": "Foundation material",
|
||||
"title": "Foundation material",
|
||||
"description": "Controls the block type used deep underground in this biome.",
|
||||
"string": "string"
|
||||
"string": "string"
|
||||
},
|
||||
"sea_material": {
|
||||
"title": "Sea material",
|
||||
"title": "Sea material",
|
||||
"description": "Controls the block type used for the bodies of water in this biome.",
|
||||
"string": "string"
|
||||
"string": "string"
|
||||
},
|
||||
"sea_floor_depth": {
|
||||
"title": "Sea floor depth",
|
||||
"title": "Sea floor depth",
|
||||
"description": "Controls how deep below the world water level the floor should occur.",
|
||||
"type": "integer"
|
||||
"type": "integer"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -9,34 +9,34 @@
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"top_material": {
|
||||
"title": "Top material",
|
||||
"title": "Top material",
|
||||
"description": "Controls the block type used for the surface of this biome.",
|
||||
"string": "string"
|
||||
"string": "string"
|
||||
},
|
||||
"mid_material": {
|
||||
"title": "Mid material",
|
||||
"title": "Mid material",
|
||||
"description": "Controls the block type used in a layer below the surface of this biome.",
|
||||
"string": "string"
|
||||
"string": "string"
|
||||
},
|
||||
"sea_floor_material": {
|
||||
"title": "Sea floor material",
|
||||
"title": "Sea floor material",
|
||||
"description": "Controls the block type used as a floor for bodies of water in this biome.",
|
||||
"string": "boostringlean"
|
||||
"string": "boostringlean"
|
||||
},
|
||||
"foundation_material": {
|
||||
"title": "Foundation material",
|
||||
"title": "Foundation material",
|
||||
"description": "Controls the block type used deep underground in this biome.",
|
||||
"string": "string"
|
||||
"string": "string"
|
||||
},
|
||||
"sea_material": {
|
||||
"title": "Sea material",
|
||||
"title": "Sea material",
|
||||
"description": "Controls the block type used for the bodies of water in this biome.",
|
||||
"string": "string"
|
||||
"string": "string"
|
||||
},
|
||||
"sea_floor_depth": {
|
||||
"title": "Sea floor depth",
|
||||
"title": "Sea floor depth",
|
||||
"description": "Controls how deep below the world water level the floor should occur.",
|
||||
"type": "integer"
|
||||
"type": "integer"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "minecraft.behavior.biomes.1.12.0.components.minecraft.the_end_surface",
|
||||
"title": "The end surface",
|
||||
"description": "Use default Minecraft End terrain generation.",
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": { }
|
||||
}
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "minecraft.behavior.biomes.1.12.0.components.minecraft.the_end_surface",
|
||||
"title": "The end surface",
|
||||
"description": "Use default Minecraft End terrain generation.",
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {}
|
||||
}
|
||||
|
||||
@@ -309,7 +309,7 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
|
||||
|
||||
"override_previous_animation": {
|
||||
"title": "Override previous animation",
|
||||
"description": "Reset bones in this animation to the default pose before applying this animation.",
|
||||
|
||||
Reference in New Issue
Block a user