1.21.80 (#343)
* - Updated old biome format * - Added biome tags component * - Added dismount mode, and rider enter/exit event * - Made surface_color not required * - Update float wander goal * - Update follow mob behavior * - Added music def field * - Added camera fields to rideable * - Add array snippet * - Updated leashable component with presets * - Made texture field optional in destruction particles * - Marked isotropic as stable * - Moved can_be_stolen back * - Updated tempt goal * - Added float tempt behavior * - Made heightmap project optional * - Added distance based render methods * - Marked tint method as stable * - Added droop item y offset * - Added has_equipment_tag filter * - Remove unnused test.json * - Allow for custom components * - Add new block culling support * - Removed enum for biome tags in support of custom biomes * - Added replace_biomes component * - Fix errors
This commit is contained in:
41
source/behavior/biomes/format/components/capped_surface.json
Normal file
41
source/behavior/biomes/format/components/capped_surface.json
Normal file
@@ -0,0 +1,41 @@
|
||||
{
|
||||
"$id": "blockception.minecraft.behavior.biomes.minecraft.capped_surface",
|
||||
"title": "Capped Surface",
|
||||
"description": "Generates surface on blocks with non-solid blocks above or below.",
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"required": ["floor_materials", "ceiling_materials", "sea_material", "foundation_material"],
|
||||
"properties": {
|
||||
"ceiling_materials": {
|
||||
"title": "Ceiling Materials",
|
||||
"description": "Materials used for the surface ceiling.",
|
||||
"minItems": 1,
|
||||
"items": {
|
||||
"$ref": "../../../../general/block/reference.json"
|
||||
}
|
||||
},
|
||||
"floor_materials": {
|
||||
"title": "Floor Materials",
|
||||
"description": "Materials used for the surface floor.",
|
||||
"minItems": 1,
|
||||
"items": {
|
||||
"$ref": "../../../../general/block/reference.json"
|
||||
}
|
||||
},
|
||||
"sea_material": {
|
||||
"title": "Sea Material",
|
||||
"description": "Material used to replace air blocks below sea level.",
|
||||
"$ref": "../../../../general/block/reference.json"
|
||||
},
|
||||
"foundation_material": {
|
||||
"title": "Foundation Material",
|
||||
"description": "Material used to repalce solid blocks that are not surface blocks.",
|
||||
"$ref": "../../../../general/block/reference.json"
|
||||
},
|
||||
"beach_material": {
|
||||
"title": "Beach Material",
|
||||
"description": "Material used to decorate surface near sea level.",
|
||||
"$ref": "../../../../general/block/reference.json"
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user