70 lines
3.1 KiB
JSON
70 lines
3.1 KiB
JSON
{
|
|
"title": "Multiface Feature",
|
|
"description": "`minecraft:multiface_feature` places one or a few multiface blocks on floors/walls/ceilings. Despite the name, any block can be placed by this feature. During placement, existing world blocks are checked to see if this feature can be placed on them based on the list provided in the `can_place_on` field. If no `can_replace_on` field is specified, the `place_block` block can be placed on any existing block.\nThis feature will also try to spread the `place_block` block around the location in world the feature is placed.\nSucceeds if: At least one block is successfully placed.\nFails if: All block placements fail.",
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"required": ["description", "places_block", "search_range", "can_place_on_floor", "can_place_on_ceiling", "can_place_on_wall", "chance_of_spreading"],
|
|
"properties": {
|
|
"description": {
|
|
"title": "Description",
|
|
"description": "UNDOCUMENTED",
|
|
"type": "object",
|
|
"required": ["identifier"],
|
|
"properties": {
|
|
"identifier": {
|
|
"title": "Identifier",
|
|
"description": "The name of this feature in the form `namespace_name:feature_name`. `feature_name` must match the filename.",
|
|
"type": "string",
|
|
"$ref": "../../../../general/feature/identifier.json"
|
|
}
|
|
}
|
|
},
|
|
"places_block": {
|
|
"title": "Places Block",
|
|
"description": "Reference to the block to be placed.",
|
|
"type": "string",
|
|
"$ref": "../../../../general/block/identifier.json"
|
|
},
|
|
"search_range": {
|
|
"title": "Search Range",
|
|
"description": "How far, in blocks, this feature can search for a valid position to place.",
|
|
"type": "integer",
|
|
"minimum": 1,
|
|
"maximum": 64
|
|
},
|
|
"can_place_on_floor": {
|
|
"title": "Can Place On Floor",
|
|
"description": "Can this feature be placed on the ground (top face of a block)?",
|
|
"type": "boolean"
|
|
},
|
|
"can_place_on_ceiling": {
|
|
"title": "Can Place On Ceiling",
|
|
"description": "Can this feature be placed on the ceiling (bottom face of a block)?",
|
|
"type": "boolean"
|
|
},
|
|
"can_place_on_wall": {
|
|
"title": "Can Place On Wall",
|
|
"description": "Can this feature be placed on the wall (side faces of a block)?",
|
|
"type": "boolean"
|
|
},
|
|
"chance_of_spreading": {
|
|
"title": "Chance of Spreading",
|
|
"description": "For each block placed by this feature, how likely will that block spread to another?",
|
|
"type": "number",
|
|
"minimum": 0.0,
|
|
"maximum": 1.0
|
|
},
|
|
"can_place_on": {
|
|
"title": "Can Place On",
|
|
"description": " How far, in blocks, this feature can search for a valid position to place.",
|
|
"type": "array",
|
|
"minItems": 1,
|
|
"items": {
|
|
"title": "Block",
|
|
"description": " A list of blocks that the block in this feature can be placed on. Omit this field to allow any block to be placed on.",
|
|
"$ref": "../../../../general/block/identifier.json"
|
|
}
|
|
}
|
|
}
|
|
}
|