![]() |
VOOZH | about |
| Biomes | |||
|---|---|---|---|
| Generates in existing chunks |
Yes | ||
| Consists of |
|
{
"title": "Vegetation Patch",
"rows": [
{
"field": "\n* <span class=\"nowrap\"><span class=\"sprite-file\" style=\"\">(link to File:BiomeSprite lush-caves.png article, displayed as 16x16px|link=Lush Caves|alt=|class=pixel-image|)</span>(link to Lush Caves article, displayed as <span class=\"sprite-text\">Lush Caves</span>)</span>",
"label": "(link to Biome article, displayed as Biomes)"
},
{
"field": "Yes",
"label": "Generates in<br>existing chunks "
},
{
"field": "(values exceeds 1000 characters...)",
"label": "Consists of"
}
],
"invimages": [],
"images": [
"Underground vegetation ground.png",
"Underground vegetation ceiling.png"
]
}
Vegetation patch is a feature that places some vegetation in the lush caves biome.
| Feature type | Identifier |
|---|---|
| [No displayed name] | vegetation_patch |
| [No displayed name] | waterlogged_vegetation_patch |
| Configured feature | Identifier |
|---|---|
| 👁 BlockSprite clay.png: Sprite image for clay in Minecraft [No displayed name] | clay_with_dripleaves |
| 👁 BlockSprite moss-block.png: Sprite image for moss-block in Minecraft [No displayed name] | moss_patch |
| 👁 BlockSprite moss-block.png: Sprite image for moss-block in Minecraft [No displayed name] | moss_patch_bonemeal |
| 👁 BlockSprite moss-block.png: Sprite image for moss-block in Minecraft [No displayed name] | moss_patch_ceiling |
| Feature | Identifier |
|---|---|
| 👁 BlockSprite clay.png: Sprite image for clay in Minecraft [No displayed name] | clay_with_dripleaves_feature |
| 👁 BlockSprite moss-block.png: Sprite image for moss-block in Minecraft [No displayed name] | moss_patch_feature |
| 👁 BlockSprite moss-block.png: Sprite image for moss-block in Minecraft [No displayed name] | moss_patch_bonemeal_feature |
| 👁 BlockSprite moss-block.png: Sprite image for moss-block in Minecraft [No displayed name] | moss_patch_snap_to_floor_feature |
| 👁 BlockSprite moss-block.png: Sprite image for moss-block in Minecraft [No displayed name] | moss_ceiling_feature |
| 👁 BlockSprite moss-block.png: Sprite image for moss-block in Minecraft [No displayed name] | moss_ceiling_snap_to_ceiling_feature |
Vegetation patch is placed in columns, one column for each XZ position, placed separately. Rectangle of available XZ positions is defined by [Int][NBT Compound / JSON Object] xz_radius. For each XZ position feature starts searching for [Int] vertical_range blocks either up or down for closest available position, starting from Y, where feature has been placed. It can fail to generate only if all columns fail to generate.
Depending on [String] surface feature will change direction of its search and available position:
floor - available position is air 1 block above the block from [String] replaceable tag. If search starts in air, feature will search down, otherwise - up.ceiling - available position is air 1 block below the block from [String] replaceable tag. If search starts in air, feature will search up, otherwise - down.After search is completed and available position is found, column of blocks is placed. It replaces blocks from [String] replaceable tag for either amount of blocks set in [Int][NBT Compound / JSON Object] depth or until the first instance of non replacable, or same block, that is chosen by [NBT Compound / JSON Object] ground_state (state of block is ignored).
After that feature, defined in [String][NBT Compound / JSON Object] vegetation_feature is generated on the found available position.
floor, or ceilinguniform type integer provider is used for the [Int][NBT Compound / JSON Object] xz_radius with a min of 2 and a max of 8, the x radius could be 6 while the z radius could be 3. Specifying unique X and Z values isn't possible.
# specifying which blocks can be replaced by the column.{ "type":"minecraft:vegetation_patch", "config":{ "depth":1, "extra_bottom_block_chance":0.0, "extra_edge_column_chance":0.3, "ground_state":{ "type":"minecraft:simple_state_provider", "state":{ "Name":"minecraft:moss_block" } }, "replaceable":"#minecraft:moss_replaceable", "surface":"floor", "vegetation_chance":0.8, "vegetation_feature":{ "feature":"minecraft:moss_vegetation", "placement":[] }, "vertical_range":5, "xz_radius":{ "type":"minecraft:uniform", "value":{ "max_inclusive":7, "min_inclusive":4 } } } }
Issues relating to "Vegetation Patch" are maintained on the bug tracker. Issues should be reported and viewed there.