1
0
mirror of https://github.com/Mojang/bedrock-samples.git synced 2025-10-17 09:56:00 +00:00
Files
bedrock-samples/metadata/json_schemas/server/biome/1.21.100/Custom Map Tint Component.json
2025-09-09 10:02:11 -07:00

97 lines
2.5 KiB
JSON

{
"$id": "333666056",
"$schema": "http://json-schema.org/draft-07/schema#",
"definitions": {
"1703738264": {
"description": "Makes grass use the noise based colors for tinting in this biome on the map.",
"properties": {
"type": {
"const": "noise",
"description": "Controls the type of grass tint to use.",
"enum": [
"tint",
"noise"
],
"title": "GrassType",
"type": "string"
}
},
"required": [
"type"
],
"title": "custom_map_tint_grass_noise",
"type": "object"
},
"3915697282": {
"$metaProperties": {
"CEREAL_EDITOR_SCHEMA_TAG": "type:color"
},
"oneOf": [
{
"pattern": "^#[a-fA-F0-9]{6}$",
"type": "string"
},
{
"items": {
"type": "integer"
},
"maxItems": 3,
"minItems": 3,
"type": "array"
}
],
"title": "Color255RGB"
},
"3937875407": {
"description": "Sets the color grass will be tinted by in this biome on the map.",
"properties": {
"tint": {
"$ref": "#/definitions/3915697282",
"description": "Tint color used in this biome on the map."
},
"type": {
"const": "tint",
"description": "Controls the type of grass tint to use.",
"enum": [
"tint",
"noise"
],
"title": "GrassType",
"type": "string"
}
},
"required": [
"tint",
"type"
],
"title": "custom_map_tint_grass_tint",
"type": "object"
}
},
"description": "Sets the color grass and foliage will be tinted by in this biome on the map.",
"properties": {
"foliage": {
"$ref": "#/definitions/3915697282",
"description": "Sets the color foliage will be tinted by in this biome on the map."
},
"grass": {
"description": "Controls whether the grass will use a custom tint color or a noise based tint color.",
"oneOf": [
{
"$ref": "#/definitions/3937875407",
"description": "Sets the color grass will be tinted by in this biome on the map."
},
{
"$ref": "#/definitions/1703738264",
"description": "Makes grass use the noise based colors for tinting in this biome on the map."
}
]
}
},
"required": [
"grass"
],
"title": "minecraft:map_tints",
"type": "object",
"x-format-version": "1.21.100"
}