Files
minecraft-bedrock-json-schemas/source/behavior/features/features/minecraft.partially_exposed_blob_feature.json
Xterionix e65c85ddfa Update features (#235)
* - Update features

* - Fix
2024-03-21 11:01:23 +01:00

46 lines
1.6 KiB
JSON

{
"type": "object",
"title": "Partially Exposed Blob Feature",
"description": "'minecraft:partially_exposed_blob_feature' generates a blob of the specified block with the specified dimensions For the most part the blob is embedded in the specified surface, however a single side is allowed to be exposed.",
"additionalProperties": false,
"required": ["places_block", "description", "placement_radius_around_floor", "placement_probability_per_valid_position"],
"properties": {
"description": {
"$ref": "../types/description.json"
},
"places_block": {
"title": "Places Block",
"description": "Reference to the block to be placed.",
"$ref": "../../../general/block/identifier.json"
},
"placement_radius_around_floor": {
"title": "Placement Radius Around Floor",
"description": "Defines the cubic radius of the blob.",
"type": "number",
"minimum": 1,
"maximum": 8
},
"placement_probability_per_valid_position": {
"title": "Placement Probability Per Valid Position",
"description": "The probability of trying to place a block at each position within the placement bounds.",
"type": "number",
"minimum": 0,
"maximum": 1
},
"exposed_face": {
"title": "Exposed Face",
"description": "Defines a block face that is allowed to be exposed to air and/or water. Other faces need to be embedded for blocks to be placed by this feature. Defaults to upwards face",
"default": "up",
"enum": [
"up",
"down",
"side",
"north",
"east",
"west",
"south"
]
}
}
}