46 lines
1.6 KiB
JSON
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"
|
|
]
|
|
}
|
|
}
|
|
}
|