Minecraft:Biome definition: Difference between revisions
More actions
Remove broken links to missing pages |
Fix template calls: add MC/ prefix |
||
| Line 1: | Line 1: | ||
{{For|biome customization in resource packs {{ | {{For|biome customization in resource packs {{MC/In|be}}|Resource pack#Biomes}} | ||
[[Minecraft:Biome]]s are stored as [[Minecraft:JSON]] files within a data pack in the path {{ | [[Minecraft:Biome]]s are stored as [[Minecraft:JSON]] files within a data pack in the path {{MC/Cd|data/<namespace>/worldgen/biome}} {{MC/In|je}} or in a [[Minecraft:behavior pack]] in the folder {{MC/Cd|<behavior pack>/biomes}} {{MC/In|be}}. | ||
== JSON format == | == JSON format == | ||
| Line 7: | Line 7: | ||
<div class="treeview"> | <div class="treeview"> | ||
* {{ | * {{MC/Nbt|compound}}: The root object. | ||
**{{ | **{{MC/Nbt|boolean|has_precipitation}}: Determines whether or not the biome has precipitation. | ||
**{{ | **{{MC/Nbt|float|temperature}}: Controls gameplay features like grass and foliage color, and a height adjusted temperature (which controls whether raining or snowing occurs if {{MC/Nbt|boolean|has_precipitation}} is {{MC/Cd|true}}, and generation details of some features). | ||
** {{ | ** {{MC/Nbt|string|temperature_modifier}}: (optional, defaults to none) Either {{MC/Cd|none}} or {{MC/Cd|frozen}}. Modifies temperature before calculating the height adjusted temperature. If {{MC/Cd|frozen}}, makes some places' temperature high enough to rain (0.2). | ||
** {{ | ** {{MC/Nbt|float|downfall}}: Controls grass and foliage color. | ||
** {{ | ** {{MC/Nbt|compound|effects}}: Ambient effects in this biome. | ||
*** {{ | *** {{MC/Nbt|int|water_color}}: (Required, but the normal value is 4159204) Decimal value converted from Hex color to use for water blocks and cauldrons. | ||
*** {{ | *** {{MC/Nbt|int|foliage_color}}: (optional) Decimal value converted from Hex color to use for tree leaves and vines. If not present, the value depends on downfall and the temperature. | ||
*** {{ | *** {{MC/Nbt|int|dry_foliage_color}}: (optional) Decimal value converted from Hex color to use for leaf litter. | ||
*** {{ | *** {{MC/Nbt|int|grass_color}}: (optional) Decimal value converted from Hex color to use for grass blocks, short grass, tall grass, ferns, tall ferns, and sugar cane. If not present, the value depends on downfall and temperature. | ||
*** {{ | *** {{MC/Nbt|string|grass_color_modifier}}: (optional, defaults to none) Can be {{MC/Cd|none}}, {{MC/Cd|dark_forest}} or {{MC/Cd|swamp}}. | ||
** {{Nbt|compound|attributes}}: (optional) Map of environment attributes that apply when in this biome. | ** {{MC/Nbt|compound|attributes}}: (optional) Map of environment attributes that apply when in this biome. | ||
** {{Nbt|string}}{{ | ** {{MC/Nbt|string}}{{MC/Nbt|compound}}{{MC/Nbt|list|carvers}}: {{json_ref|carver|carver definition|tag=1|no_single=1}} (Required, but can be empty) | ||
** {{ | ** {{MC/Nbt|list|features}}: List of generation steps (Can be empty). Usually there are 11 steps, but any amount is possible. | ||
*** {{Nbt|string}}{{ | *** {{MC/Nbt|string}}{{MC/Nbt|compound}}{{MC/Nbt|list}} each entry of the list: {{MC/Json ref|placed feature|tag=1|inline=1|no_single=1}} — Features to place during that generation step. The same placed features in the same step in two biomes cannot be in different orders. In each step, all feature IDs need to be ordered consistently across biomes. For example, in the UNDERGROUND_ORES step of minecraft:plains, ore_dirt is before ore_gravel. In other biomes' UNDERGROUND_ORES step, if both ore_dirt and ore_gravel as present, ore_gravel cannot be before ore_dirt. | ||
**; These generation steps are also referred to by name for structure generation. They are, in order<nowiki>:</nowiki> | **; These generation steps are also referred to by name for structure generation. They are, in order<nowiki>:</nowiki> | ||
*** {{ | *** {{MC/Cd|RAW_GENERATION}}: Used by small end island features in vanilla. | ||
*** {{ | *** {{MC/Cd|LAKES}}: Used by lava lakes in vanilla. | ||
*** {{ | *** {{MC/Cd|LOCAL_MODIFICATIONS}}: Used for amethyst geodes and icebergs in vanilla. | ||
*** {{ | *** {{MC/Cd|UNDERGROUND_STRUCTURES}}: Used for dungeons and overworld fossils in vanilla. | ||
*** {{ | *** {{MC/Cd|SURFACE_STRUCTURES}}: Used for desert wells and blue ice patches in vanilla. | ||
*** {{ | *** {{MC/Cd|STRONGHOLDS}}: Not used for features in vanilla. | ||
*** {{ | *** {{MC/Cd|UNDERGROUND_ORES}}: Used for overworld ore blobs, overworld dirt/gravel/stone variant blobs, and sand/gravel/clay disks in vanilla. | ||
*** {{ | *** {{MC/Cd|UNDERGROUND_DECORATION}}: Used for infested block blobs, nether gravel and blackstone blobs, and all nether ore blobs in vanilla. | ||
*** {{ | *** {{MC/Cd|FLUID_SPRINGS}}: Used for water and lava springs in vanilla. | ||
*** {{ | *** {{MC/Cd|VEGETAL_DECORATION}}: Used for trees, bamboo, cacti, kelp, and other ground and ocean vegetation in vanilla. | ||
*** {{ | *** {{MC/Cd|TOP_LAYER_MODIFICATION}}: Used for surface freezing in vanilla. | ||
** {{ | ** {{MC/Nbt|float|creature_spawn_probability}}: (optional) Higher value results in more creatures spawned in world generation. Must be between 0.0 and 0.9999999 (both inclusive). | ||
** {{ | ** {{MC/Nbt|compound|spawners}}: (Required, but can be empty. If this object doesn't contain a certain category, mobs in this category do not spawn.) Entity spawning settings. | ||
*** {{ | *** {{MC/Nbt|list|<mob category>}}: (Can be empty. If empty, mobs in this category do not spawn.) The key must be one of {{MC/Cd|monster}}, {{MC/Cd|creature}}, {{MC/Cd|ambient}}, {{MC/Cd|water_creature}}, {{MC/Cd|underground_water_creature}}, {{MC/Cd|water_ambient}}, {{MC/Cd|misc}}, or {{MC/Cd|axolotls}}. A list of spawner data objects, one for each mob which should spawn in this biome. | ||
**** {{ | **** {{MC/Nbt|compound}}: The spawner data for a single mob. | ||
***** {{ | ***** {{MC/Nbt|string|type}}: The namespaced entity id of the mob. | ||
***** {{ | ***** {{MC/Nbt|int|weight}}: How often this mob should spawn, higher values produce more spawns. | ||
***** {{ | ***** {{MC/Nbt|int|minCount}}: The minimum count of mobs to spawn in a pack. Must be greater than 0. | ||
***** {{ | ***** {{MC/Nbt|int|maxCount}}: The maximum count of mobs to spawn in a pack. Must be greater than 0. And must be not less than {{MC/Nbt|int|minCount}}. | ||
** {{ | ** {{MC/Nbt|compound|spawn_costs}}: (Required, but can be empty. Only mobs listed here use the spawn cost mechanism) See {{slink|Mob spawning|Spawn costs}} for details. | ||
*** {{ | *** {{MC/Nbt|compound|<entity id>}}: The namespaced entity id of the mob. | ||
**** {{ | **** {{MC/Nbt|double|energy_budget}}: New mob's maximum potential. | ||
**** {{ | **** {{MC/Nbt|double|charge}}: New mob's charge. | ||
</div> | </div> | ||
| Line 51: | Line 51: | ||
=== ''Bedrock Edition'' === | === ''Bedrock Edition'' === | ||
{{WIP|section=1}} | {{MC/WIP|section=1}} | ||
<div class=treeview> | <div class=treeview> | ||
* {{ | * {{MC/Nbt|compound}}: The root object. | ||
** {{ | ** {{MC/Nbt|string|format_version}}: The format version of the file. This is a string representing a {{MC/BE}} version. It is recommended to use the latest version. For 26.0 and later, add a leading 1. For example: {{MC/Cd|"1.26.0"}} for 26.0. Preview versions should use the version that it is a preview for (Example: Preview 26.0.27 would be {{MC/Cd|"1.26.0"}}). | ||
** {{ | ** {{MC/Nbt|compound|minecraft:biome}}: The biome definition. | ||
*** {{ | *** {{MC/Nbt|compound|description}} | ||
**** {{ | **** {{MC/Nbt|string|identitfier}}: A namespaced identifier for the biome. | ||
*** {{ | *** {{MC/Nbt|compound|components}}: Components used to define the biome's generation. | ||
**** {{ | **** {{MC/Nbt|compound|minecraft:climate}}: Defines the climate properties of the biome. | ||
***** {{ | ***** {{MC/Nbt|float|downfall}}: How much precipitation affects colors and block changes. If set to 0, rain will not fall. | ||
***** {{ | ***** {{MC/Nbt|list|snow_accumulation}}: Minimum and maximum snow level. 0.125 is one snow layer. | ||
***** {{ | ***** {{MC/Nbt|float|temperature}}: {{MC/More info}} | ||
**** {{ | **** {{MC/Nbt|compound|minecraft:creature_spawn_probability}} | ||
***** {{ | ***** {{MC/Nbt|float|probability}}: Chance of creatures spawning when the chunk is generated. Must be ≤0.75. | ||
**** {{ | **** {{MC/Nbt|compound|minecraft:humidity}} | ||
***** {{ | ***** {{MC/Nbt|boolean|is_humid}}: Whether or not the biome is humid. | ||
**** {{ | **** {{MC/Nbt|compound|minecraft:map_tints}} | ||
***** {{ | ***** {{MC/Nbt|list}}{{MC/Nbt|string|foliage}}: The color foliage will be tinted by on a [[Minecraft:map]] in this biome for example {{MC/Cd|#6a7039}}. | ||
***** {{ | ***** {{MC/Nbt|compound|grass}}: The color grass will be tinted by on a [[Minecraft:map]] in this biome. | ||
****** {{ | ****** {{MC/Nbt|string|type}}: It could be {{MC/Cd|noise}} or {{MC/Cd|tint}}. | ||
****** {{ | ****** {{MC/Nbt|string|tint}}: Available only if the type is tint, it is used to define the fixed color of the grass on the map, for example {{MC/Cd|#aea42a}}. | ||
**** {{ | **** {{MC/Nbt|compound|minecraft:mountain_parameters}}: Parameters used to drive mountain terrain generation in the [[Minecraft:overworld]]. | ||
***** {{ | ***** {{MC/Nbt|boolean|east_slopes}}: Whether to have east-facing slopes. | ||
***** {{ | ***** {{MC/Nbt|boolean|west_slopes}}: Whether to have west-facing slopes. | ||
***** {{ | ***** {{MC/Nbt|boolean|north_slopes}}: Whether to have north-facing slopes. | ||
***** {{ | ***** {{MC/Nbt|boolean|south_slopes}}: Whether to have south-facing slopes. | ||
***** {{ | ***** {{MC/Nbt|compound|material}}: Block to use as steep material. | ||
****** {{ | ****** {{MC/Nbt|string|name}}: [[Minecraft:Identifier]] of the block. | ||
****** {{ | ****** {{MC/Nbt|compound|states}}: Block states for the block. | ||
***** {{ | ***** {{MC/Nbt|compound|top_slide}}: Controls the density tapering that happens at the top of the world to prevent terrain from reaching too high. | ||
****** {{ | ****** {{MC/Nbt|boolean|enabled}} | ||
***** {{ | ***** {{MC/Nbt|compound|steep_material_adjustment}}: Defines surface material for steep slopes. | ||
****** {{ | ****** {{MC/Nbt|boolean|east_slopes}}: Whether to have east-facing slopes. | ||
****** {{ | ****** {{MC/Nbt|boolean|west_slopes}}: Whether to have west-facing slopes. | ||
****** {{ | ****** {{MC/Nbt|boolean|north_slopes}}: Whether to have north-facing slopes. | ||
****** {{ | ****** {{MC/Nbt|boolean|south_slopes}}: Whether to have south-facing slopes. | ||
****** {{ | ****** {{MC/Nbt|compound|material}}: Block to use as steep material. | ||
******* {{ | ******* {{MC/Nbt|string|name}}: [[Minecraft:Identifier]] of the block. | ||
******* {{ | ******* {{MC/Nbt|compound|states}}: Block states for the block. | ||
**** {{ | **** {{MC/Nbt|compound|minecraft:overworld_height}}: ''Currently only affects map items.'' Specifies the noise parameters used to drive terrain height. | ||
***** {{ | ***** {{MC/Nbt|list|noise_params}}: 2 values, first is depth, and the second is scale. | ||
***** {{ | ***** {{MC/Nbt|string|noise_type}}: Uses a built-in preset instead of specifying values. Available presets are: <div class="collapsible collapsed collapsetoggle-inline"> | ||
****** {{ | ****** {{MC/Cd|d=*|list-level=******|beach|deep_ocean|default|default_mutated|extreme|highlands|less_extreme|lowlands|mountains|mushroom|ocean|river|stone_beach|swamp|taiga}}</div> | ||
***** {{ | ***** {{MC/Nbt|compound|minecraft:replace_biomes}}: Allows this biome to replace parts of one or more [[Minecraft:biome#List of biomes|vanilla biomes]]. | ||
****** {{ | ****** {{MC/Nbt|list|replacements}}: The list of replacements | ||
******* {{ | ******* {{MC/Nbt|compound}}: ''An replacement'' | ||
******** {{ | ******** {{MC/Nbt|float|amount}}: Chance that the replacement is attempted. Must be >0.0 and ≤1.0. | ||
******** {{ | ******** {{MC/Nbt|string|dimension}}: The dimension in which this replacement can occur. Can be either {{MC/Cd|d=or|minecraft:overworld|minecraft:nether}}. | ||
******** {{ | ******** {{MC/Nbt|float|noise_frequency_scale}}: Scale to alter the frequency of replacements. Lower values make bigger areas that are less common, and higher values make smaller areas that are more common. Must be >0.0 and ≤100.0. | ||
******** {{ | ******** {{MC/Nbt|list|targets}}: The biomes that can be replaced. | ||
********* {{ | ********* {{MC/Nbt|string}}: A biome ID ''without'' the namespace. | ||
***** {{ | ***** {{MC/Nbt|compound|minecraft:surface_builder}} | ||
****** {{ | ****** {{MC/Nbt|compound|builder}}: Controls the blocks used for terrain generation. | ||
******* {{ | ******* {{MC/Nbt|string|type}}: The type of surface builder. Can be {{MC/Cd|d=or|minecraft:capped|minecraft:frozen_ocean|minecraft:mesa|minecraft:overworld|minecraft:swamp|minecraft:the_end}}. | ||
*******; If <code>type</code> is <code>minecraft:capped</code><nowiki>:</nowiki> | *******; If <code>type</code> is <code>minecraft:capped</code><nowiki>:</nowiki> | ||
******* {{ | ******* {{MC/Nbt|compound}}{{MC/Nbt|string|beach_material}}: Material used near sea level. | ||
******** {{ | ******** {{MC/Nbt|string|name}}: [[Minecraft:Identifier]] of the block. | ||
******** {{ | ******** {{MC/Nbt|compound|states}}: Block states for the block. | ||
******* {{ | ******* {{MC/Nbt|compound}}{{MC/Nbt|string|ceiling_materials}}: Material used for the surface ceiling. | ||
******** {{ | ******** {{MC/Nbt|string|name}}: Identifier of the block. | ||
******** {{ | ******** {{MC/Nbt|compound|states}}: Block states for the block. | ||
******* {{ | ******* {{MC/Nbt|compound}}{{MC/Nbt|string|floor_materials}}: Material used for the surface floor. | ||
******** {{ | ******** {{MC/Nbt|string|name}}: Identifier of the block. | ||
******** {{ | ******** {{MC/Nbt|compound|states}}: Block states for the block. | ||
******* {{ | ******* {{MC/Nbt|compound}}{{MC/Nbt|string|foundation_material}}: Material used to replace solid blocks that are not surface blocks. | ||
******** {{ | ******** {{MC/Nbt|string|name}}: Identifier of the block. | ||
******** {{ | ******** {{MC/Nbt|compound|states}}: Block states for the block. | ||
******* {{ | ******* {{MC/Nbt|compound}}{{MC/Nbt|string|sea_material}}: Material used to replace air below sea level. | ||
******** {{ | ******** {{MC/Nbt|string|name}}: Identifier of the block. | ||
******** {{ | ******** {{MC/Nbt|compound|states}}: Block states for the block. | ||
*******; If <code>type</code> is <code>minecraft:frozen_ocean</code> or <code>minecraft:overworld</code><nowiki>:</nowiki> | *******; If <code>type</code> is <code>minecraft:frozen_ocean</code> or <code>minecraft:overworld</code><nowiki>:</nowiki> | ||
******* {{ | ******* {{MC/Nbt|compound}}{{MC/Nbt|string|foundation_material}}: Material used to replace solid blocks that are not surface blocks. | ||
******** {{ | ******** {{MC/Nbt|string|name}}: Identifier of the block. | ||
******** {{ | ******** {{MC/Nbt|compound|states}}: Block states for the block. | ||
******* {{ | ******* {{MC/Nbt|compound}}{{MC/Nbt|string|mid_material}}: Material used a layer below the surface of the biome. | ||
******** {{ | ******** {{MC/Nbt|string|name}}: Identifier of the block. | ||
******** {{ | ******** {{MC/Nbt|compound|states}}: Block states for the block. | ||
******* {{ | ******* {{MC/Nbt|integer|sea_floor_depth}}: How deep below sea level the sea floor should be. Must be ≤127. | ||
******* {{ | ******* {{MC/Nbt|compound}}{{MC/Nbt|string|sea_floor_material}}: Material used as a floor for bodies of water. | ||
******** {{ | ******** {{MC/Nbt|string|name}}: Identifier of the block. | ||
******** {{ | ******** {{MC/Nbt|compound|states}}: Block states for the block. | ||
******* {{ | ******* {{MC/Nbt|compound}}{{MC/Nbt|string|sea_material}}: Material used to replace air below sea level. | ||
******** {{ | ******** {{MC/Nbt|string|name}}: Identifier of the block. | ||
******** {{ | ******** {{MC/Nbt|compound|states}}: Block states for the block. | ||
******* {{ | ******* {{MC/Nbt|compound}}{{MC/Nbt|string|top_material}}: Material used for the surface of the biome. | ||
******** {{ | ******** {{MC/Nbt|string|name}}: Identifier of the block. | ||
******** {{ | ******** {{MC/Nbt|compound|states}}: Block states for the block. | ||
*******; If <code>type</code> is <code>minecraft:mesa</code><nowiki>:</nowiki> | *******; If <code>type</code> is <code>minecraft:mesa</code><nowiki>:</nowiki> | ||
******* {{ | ******* {{MC/Nbt|boolean|bryce_pillars}}: Whether the mesa generates with pillars. | ||
******* {{ | ******* {{MC/Nbt|compound}}{{MC/Nbt|string|clay_material}}: Base clay material. | ||
******** {{ | ******** {{MC/Nbt|string|name}}: Identifier of the block. | ||
******** {{ | ******** {{MC/Nbt|compound|states}}: Block states for the block. | ||
******* {{ | ******* {{MC/Nbt|compound}}{{MC/Nbt|string|foundation_material}}: Material used to replace solid blocks that are not surface blocks. | ||
******** {{ | ******** {{MC/Nbt|string|name}}: Identifier of the block. | ||
******** {{ | ******** {{MC/Nbt|compound|states}}: Block states for the block. | ||
******* {{ | ******* {{MC/Nbt|compound}}{{MC/Nbt|string|hard_clay_material}}: Hardened clay material. | ||
******** {{ | ******** {{MC/Nbt|string|name}}: Identifier of the block. | ||
******** {{ | ******** {{MC/Nbt|compound|states}}: Block states for the block. | ||
******* {{ | ******* {{MC/Nbt|boolean|has_forest}}: Adds coarse dirt and grass at high altitudes. | ||
******* {{ | ******* {{MC/Nbt|compound}}{{MC/Nbt|string|mid_material}}: Material used a layer below the surface of the biome. | ||
******** {{ | ******** {{MC/Nbt|string|name}}: Identifier of the block. | ||
******** {{ | ******** {{MC/Nbt|compound|states}}: Block states for the block. | ||
******* {{ | ******* {{MC/Nbt|integer|sea_floor_depth}}: How deep below sea level the sea floor should be. Must be ≤127. | ||
******* {{ | ******* {{MC/Nbt|compound}}{{MC/Nbt|string|sea_floor_material}}: Material used as a floor for bodies of water. | ||
******** {{ | ******** {{MC/Nbt|string|name}}: Identifier of the block. | ||
******** {{ | ******** {{MC/Nbt|compound|states}}: Block states for the block. | ||
******* {{ | ******* {{MC/Nbt|compound}}{{MC/Nbt|string|sea_material}}: Material used to replace air below sea level. | ||
******** {{ | ******** {{MC/Nbt|string|name}}: Identifier of the block. | ||
******** {{ | ******** {{MC/Nbt|compound|states}}: Block states for the block. | ||
******* {{ | ******* {{MC/Nbt|compound}}{{MC/Nbt|string|top_material}}: Material used for the surface of the biome. | ||
******** {{ | ******** {{MC/Nbt|string|name}}: Identifier of the block. | ||
******** {{ | ******** {{MC/Nbt|compound|states}}: Block states for the block. | ||
*******; If <code>type</code> is <code>minecraft:swamp</code><nowiki>:</nowiki> | *******; If <code>type</code> is <code>minecraft:swamp</code><nowiki>:</nowiki> | ||
******* {{ | ******* {{MC/Nbt|compound}}{{MC/Nbt|string|foundation_material}}: Material used to replace solid blocks that are not surface blocks. | ||
******** {{ | ******** {{MC/Nbt|string|name}}: Identifier of the block. | ||
******** {{ | ******** {{MC/Nbt|compound|states}}: Block states for the block. | ||
******* {{ | ******* {{MC/Nbt|integer|max_puddle_depth_below_sea_level}}: The depth at which surface blocks can be replaced with water for puddles. Must be ≤127. | ||
******* {{ | ******* {{MC/Nbt|compound}}{{MC/Nbt|string|mid_material}}: Material used a layer below the surface of the biome. | ||
******** {{ | ******** {{MC/Nbt|string|name}}: Identifier of the block. | ||
******** {{ | ******** {{MC/Nbt|compound|states}}: Block states for the block. | ||
******* {{ | ******* {{MC/Nbt|integer|sea_floor_depth}}: How deep below sea level the sea floor should be. Must be ≤127. | ||
******* {{ | ******* {{MC/Nbt|compound}}{{MC/Nbt|string|sea_floor_material}}: Material used as a floor for bodies of water. | ||
******** {{ | ******** {{MC/Nbt|string|name}}: Identifier of the block. | ||
******** {{ | ******** {{MC/Nbt|compound|states}}: Block states for the block. | ||
******* {{ | ******* {{MC/Nbt|compound}}{{MC/Nbt|string|sea_material}}: Material used to replace air below sea level. | ||
******** {{ | ******** {{MC/Nbt|string|name}}: Identifier of the block. | ||
******** {{ | ******** {{MC/Nbt|compound|states}}: Block states for the block. | ||
******* {{ | ******* {{MC/Nbt|compound}}{{MC/Nbt|string|top_material}}: Material used for the surface of the biome. | ||
******** {{ | ******** {{MC/Nbt|string|name}}: Identifier of the block. | ||
******** {{ | ******** {{MC/Nbt|compound|states}}: Block states for the block. | ||
***** {{ | ***** {{MC/Nbt|compound|minecraft:surface_material_adjustments}}: Specify fine changes to blocks used in terrain generation. | ||
****** {{ | ****** {{MC/Nbt|list|adjustments}} | ||
******* {{ | ******* {{MC/Nbt|compound}}: ''An adjustment'' | ||
******** {{ | ******** {{MC/Nbt|string}}{{MC/Nbt|boolean}}{{MC/Nbt|float|height_range}}: {{MC/More info}} | ||
******** {{ | ******** {{MC/Nbt|float|noise_frequency_scale}}: The scale to apply to the position when accessing the noise value. | ||
******** {{ | ******** {{MC/Nbt|list|noise_range}}: A range of noise values for which this adjustment should be applied. | ||
******** {{ | ******** {{MC/Nbt|compound|materials}}: Materials to use when this adjustment is active. | ||
********* {{ | ********* {{MC/Nbt|compound}}{{MC/Nbt|string|foundation_material}}: Material used to replace solid blocks that are not surface blocks. | ||
********** {{ | ********** {{MC/Nbt|string|name}}: [[Minecraft:Identifier]] of the block. | ||
********** {{ | ********** {{MC/Nbt|compound|states}}: Block states for the block. | ||
********* {{ | ********* {{MC/Nbt|compound}}{{MC/Nbt|string|mid_material}}: Material used a layer below the surface of the biome. | ||
********** {{ | ********** {{MC/Nbt|string|name}}: Identifier of the block. | ||
********** {{ | ********** {{MC/Nbt|compound|states}}: Block states for the block. | ||
********* {{ | ********* {{MC/Nbt|compound}}{{MC/Nbt|string|sea_floor_material}}: Material used as a floor for bodies of water. | ||
********** {{ | ********** {{MC/Nbt|string|name}}: Identifier of the block. | ||
********** {{ | ********** {{MC/Nbt|compound|states}}: Block states for the block. | ||
********* {{ | ********* {{MC/Nbt|compound}}{{MC/Nbt|string|sea_material}}: Material used to replace air below sea level. | ||
********** {{ | ********** {{MC/Nbt|string|name}}: Identifier of the block. | ||
********** {{ | ********** {{MC/Nbt|compound|states}}: Block states for the block. | ||
********* {{ | ********* {{MC/Nbt|compound}}{{MC/Nbt|string|top_material}}: Material used for the surface of the biome. | ||
********** {{ | ********** {{MC/Nbt|string|name}}: Identifier of the block. | ||
********** {{ | ********** {{MC/Nbt|compound|states}}: Block states for the block. | ||
***** {{ | ***** {{MC/Nbt|compound|minecraft:tags}} | ||
****** {{ | ****** {{MC/Nbt|list|tags}}: [[Minecraft:Biome tag (Bedrock Edition)|Tags]] for the biome. | ||
***** {{ | ***** {{MC/Nbt|compound|minecraft:village_type}} | ||
****** {{ | ****** {{MC/Nbt|string|type}}: The type of village for this biome. Valid values are {{MC/Cd|d=and|default|desert|ice|savanna|taiga}}. | ||
</div> | </div> | ||
| Line 213: | Line 213: | ||
=== ''Java Edition'' === | === ''Java Edition'' === | ||
{{HistoryTable | {{HistoryTable | ||
|{{HistoryLine|java}} | |{{MC/HistoryLine|java}} | ||
|{{HistoryLine||1.16.2|dev=20w28a|Added experimental support for biomes in data packs.}} | |{{MC/HistoryLine||1.16.2|dev=20w28a|Added experimental support for biomes in data packs.}} | ||
|{{HistoryLine|||dev=20w30a|Added the {{ | |{{HistoryLine|||dev=20w30a|Added the {{MC/Cd|grass_color}}, {{MC/Cd|foliage_color}}, {{MC/Cd|water_color}}, and {{MC/Cd|water_fog_color}} effects properties.}} | ||
|{{HistoryLine|||dev=pre2|Added the {{ | |{{HistoryLine|||dev=pre2|Added the {{MC/Cd|player_spawn_friendly}} property.}} | ||
|{{HistoryLine||1.19|dev=22w11a|Removed the {{ | |{{HistoryLine||1.19|dev=22w11a|Removed the {{MC/Cd|category}} field. Functionality has been moved to biome tags.}} | ||
|{{HistoryLine||1.19.3|dev=Pre-release 3|Now when specifying a sound event, a fixed audible range can be also specified within an object.}} | |{{MC/HistoryLine||1.19.3|dev=Pre-release 3|Now when specifying a sound event, a fixed audible range can be also specified within an object.}} | ||
|{{HistoryLine||1.19.4|dev=23w03a|Renamed the {{ | |{{HistoryLine||1.19.4|dev=23w03a|Renamed the {{MC/Cd|precipitation}} field to {{MC/Cd|has_precipitation}}. And now it is a boolean, and when it is true, whether it rains or snows are determined only by temperature. Before, it can be one of "none", "rain" and "snow".<ref>To fix {{bug|MC-230678}}, {{bug|MC-233893}}, {{bug|MC-238904}}, {{bug|MC-247836}}, {{bug|MC-254132}}, and {{bug|MC-255811}}.</ref>}} | ||
|{{HistoryLine|||dev=Pre-release 1|Now {{ | |{{HistoryLine|||dev=Pre-release 1|Now {{MC/Nbt|int|minCount}} and {{MC/Nbt|int|maxCount}} in {{MC/Nbt|compound|spawners}} must be a positive integer. And {{MC/Nbt|int|maxCount}} must be not less than {{MC/Nbt|int|minCount}}.}} | ||
|{{HistoryLine||1.21.2|dev=24w33a|Carver types have been removed. The carvers field now lists carvers directly instead of having to specify the type.}} | |{{MC/HistoryLine||1.21.2|dev=24w33a|Carver types have been removed. The carvers field now lists carvers directly instead of having to specify the type.}} | ||
|{{HistoryLine||1.21.4|dev=24w44a|Added {{ | |{{HistoryLine||1.21.4|dev=24w44a|Added {{MC/Nbt|float|music_volume}} field to {{MC/Nbt|compound|effects}}. | ||
|Changed the {{ | |Changed the {{MC/Nbt|list|music}} field to be a weighted list of music objects.}} | ||
|{{HistoryLine||1.21.5|dev=25w08a|Added {{ | |{{HistoryLine||1.21.5|dev=25w08a|Added {{MC/Nbt|int|dry_foliage_color}} field to {{MC/Nbt|compound|effects}}.}} | ||
|{{HistoryLine||1.21.11|dev=25w42a|Added {{ | |{{HistoryLine||1.21.11|dev=25w42a|Added {{MC/Nbt|compound|attributes}} field. | ||
|Removed {{ | |Removed {{MC/Nbt|int|fog_color}}, {{MC/Nbt|int|sky_color}}, {{MC/Nbt|int|water_fog_color}}, {{MC/Nbt|compound|particle}}, {{MC/Nbt|string}}{{MC/Nbt|compound|ambient_sound}}, {{MC/Nbt|compound|mood_sound}}, {{MC/Nbt|compound|additions_sounds}}, {{MC/Nbt|list|music}}, and {{MC/Nbt|float|music_volume}} fields in {{MC/Nbt|compound|effects}}.}} | ||
|{{HistoryLine|||dev=25w44a|The {{ | |{{HistoryLine|||dev=25w44a|The {{MC/Nbt|string}}{{MC/Nbt|list}}{{MC/Nbt|int|water_color}}, {{MC/Nbt|string}}{{MC/Nbt|list}}{{MC/Nbt|int|foliage_color}}, {{MC/Nbt|string}}{{MC/Nbt|list}}{{MC/Nbt|int|dry_foliage_color}}, and {{MC/Nbt|string}}{{MC/Nbt|list}}{{MC/Nbt|int|grass_color}} fields now accept a hex-string or array of red, green, blue floats in addition to the packed integer value.}} | ||
}} | }} | ||
=== ''Bedrock Edition'' === | === ''Bedrock Edition'' === | ||
{{HistoryTable | {{HistoryTable | ||
|{{HistoryLine|bedrock}} | |{{MC/HistoryLine|bedrock}} | ||
|{{HistoryLine||?|Custom biomes were added}} | |{{MC/HistoryLine||?|Custom biomes were added}} | ||
|{{HistoryLine||1.18|Custom biomes have become obsolete and impossible to create due to the world generation change.}} | |{{MC/HistoryLine||1.18|Custom biomes have become obsolete and impossible to create due to the world generation change.}} | ||
|{{HistoryLine||1.20.60|dev=Preview 1.20.60.24|Biome tags are now specified under an array within the <code>minecraft:tags</code> component rather than as loose JSON objects.}} | |{{MC/HistoryLine||1.20.60|dev=Preview 1.20.60.24|Biome tags are now specified under an array within the <code>minecraft:tags</code> component rather than as loose JSON objects.}} | ||
|{{HistoryLine||1.21.70|dev=Preview 1.21.70.23|Removed unused experimental json field {{ | |{{HistoryLine||1.21.70|dev=Preview 1.21.70.23|Removed unused experimental json field {{MC/Cd|peaks_factor}} from {{MC/Cd|minecraft:mountain_parameters}} in the behavior pack biome file.}} | ||
|{{HistoryLine||1.21.80|dev=Preview 1.21.80.27|exp=Custom biomes|Added {{ | |{{HistoryLine||1.21.80|dev=Preview 1.21.80.27|exp=Custom biomes|Added {{MC/Cd|minecraft:replace_biomes}} component to allow for custom biomes to replace portions of vanilla biomes. To use, add to custom biome files in behavior packs.}} | ||
|{{HistoryLine||1.21.100|dev=Preview 1.21.100.20|exp=Custom biomes|Custom biome names are no longer implied by their filenames. Biome names are explicitly specified via the {{ | |{{HistoryLine||1.21.100|dev=Preview 1.21.100.20|exp=Custom biomes|Custom biome names are no longer implied by their filenames. Biome names are explicitly specified via the {{MC/Cd|identifier}} property under the {{MC/Cd|description}} sub-object of their JSON definition.|Biome identifiers must now be namespaced (ex: {{MC/Cd|minecraft:plains}}). Biomes with a format version lower than 1.21.90 will have their identifier automatically prefixed {{MC/Cd|minecraft:}} when loaded if no namespace is already specified.}} | ||
|{{HistoryLine|||dev=Preview 1.21.100.22|Added a new server side biome component {{ | |{{HistoryLine|||dev=Preview 1.21.100.22|Added a new server side biome component {{MC/Cd|surface_builder}} that will combine the components {{MC/Cd|surface_parameters}}, {{MC/Cd|frozen_ocean_surface}}, {{MC/Cd|mesa_surface}}, {{MC/Cd|swamp_surface}}, {{MC/Cd|capped_surface}}, and {{MC/Cd|the_end_surface}} into one component. Each biome can only use one builder type. The component can be used for world generation settings such as foundation material and sea floor depth.|Added {{MC/Cd|minecraft:humidity}} component with {{MC/Cd|is_humid}} this forces a biome to either always be humid or never humid. Humidity effects the spread chance, and spread rate of fire in the biome.|Added {{MC/Cd|minecraft:partially_frozen}} This component will impact the temperature in a frozen biome, causing some areas to not be frozen. Ex: patchy ice, patchy snow.}} | ||
|{{HistoryLine||1.21.111|dev=Preview 1.21.110.20|exp=Custom biomes|Added {{ | |{{HistoryLine||1.21.111|dev=Preview 1.21.110.20|exp=Custom biomes|Added {{MC/Cd|max_puddle_depth_below_sea_level}} to the {{MC/Cd|surface_builder}} biome component for the swamp builder type. The component will set the search depth for how far below sea level to search for a surface to add a puddle.|Removed support for loading custom biomes for base game versions 1.21.100 and below.}} | ||
|{{HistoryLine||1.21.111|dev=Preview 1.21.110.25|Custom biomes were released from experimental.}} | |{{MC/HistoryLine||1.21.111|dev=Preview 1.21.110.25|Custom biomes were released from experimental.}} | ||
|{{HistoryLine||26.0|dev=Preview 26.0.25|Added {{ | |{{HistoryLine||26.0|dev=Preview 26.0.25|Added {{MC/Cd|minecraft:village_type}} biome component that determines the type of the village in the biome. This also allows for the generation of villages in the biome; not using this component means the village will never be generated in the biome.|Enabled the Biome Replacement feature in the Nether, however, currently it doesn't work as well as it should.}} | ||
}} | }} | ||
| Line 252: | Line 252: | ||
== Navigation == | == Navigation == | ||
{{Navbox Java Edition technical|datapack}} | {{MC/Navbox Java Edition technical|datapack}} | ||
{{Navbox Bedrock Edition}} | {{MC/Navbox Bedrock Edition}} | ||
[[Category:Java Edition]] | [[Category:Java Edition]] | ||
Latest revision as of 19:54, 9 April 2026
Template:For Minecraft:Biomes are stored as Minecraft:JSON files within a data pack in the path
- REDIRECT Template:Code
Template:Redr in Template:Editions or in a Minecraft:behavior pack in the folder
- REDIRECT Template:Code
JSON format
Java Edition
- Template:Nbt/sprite: The root object.
- Template:Nbt/sprite has_precipitation: Determines whether or not the biome has precipitation.
- Template:Nbt/sprite temperature: Controls gameplay features like grass and foliage color, and a height adjusted temperature (which controls whether raining or snowing occurs if Template:Nbt/sprite has_precipitation is
- REDIRECT Template:Code
Template:Redr, and generation details of some features).
- Template:Nbt/sprite temperature_modifier: (optional, defaults to none) Either
- REDIRECT Template:Code
- REDIRECT Template:Code
Template:Redr. Modifies temperature before calculating the height adjusted temperature. If
- REDIRECT Template:Code
Template:Redr, makes some places' temperature high enough to rain (0.2).
- Template:Nbt/sprite downfall: Controls grass and foliage color.
- Template:Nbt/sprite effects: Ambient effects in this biome.
- Template:Nbt/sprite water_color: (Required, but the normal value is 4159204) Decimal value converted from Hex color to use for water blocks and cauldrons.
- Template:Nbt/sprite foliage_color: (optional) Decimal value converted from Hex color to use for tree leaves and vines. If not present, the value depends on downfall and the temperature.
- Template:Nbt/sprite dry_foliage_color: (optional) Decimal value converted from Hex color to use for leaf litter.
- Template:Nbt/sprite grass_color: (optional) Decimal value converted from Hex color to use for grass blocks, short grass, tall grass, ferns, tall ferns, and sugar cane. If not present, the value depends on downfall and temperature.
- Template:Nbt/sprite grass_color_modifier: (optional, defaults to none) Can be
- REDIRECT Template:Code
- REDIRECT Template:Code
- REDIRECT Template:Code
- Template:Nbt/sprite attributes: (optional) Map of environment attributes that apply when in this biome.
- Template:Nbt/spriteTemplate:Nbt/spriteTemplate:Nbt/sprite carvers: Template:Json ref (Required, but can be empty)
- Template:Nbt/sprite features: List of generation steps (Can be empty). Usually there are 11 steps, but any amount is possible.
- Template:Nbt/spriteTemplate:Nbt/spriteTemplate:Nbt/sprite each entry of the list: Any number of placed feature(s) (a Template:Nbt tag with
#, or an Template:Nbt array containing either Template:Nbt IDs or new Template:Nbt definitions in the same data type) — Features to place during that generation step. The same placed features in the same step in two biomes cannot be in different orders. In each step, all feature IDs need to be ordered consistently across biomes. For example, in the UNDERGROUND_ORES step of minecraft:plains, ore_dirt is before ore_gravel. In other biomes' UNDERGROUND_ORES step, if both ore_dirt and ore_gravel as present, ore_gravel cannot be before ore_dirt.
- These generation steps are also referred to by name for structure generation. They are, in order:
- Template:Nbt/spriteTemplate:Nbt/spriteTemplate:Nbt/sprite each entry of the list: Any number of placed feature(s) (a Template:Nbt tag with
- REDIRECT Template:Code
Template:Redr: Used by small end island features in vanilla.
- REDIRECT Template:Code
Template:Redr: Used by lava lakes in vanilla.
- REDIRECT Template:Code
Template:Redr: Used for amethyst geodes and icebergs in vanilla.
- REDIRECT Template:Code
Template:Redr: Used for dungeons and overworld fossils in vanilla.
- REDIRECT Template:Code
Template:Redr: Used for desert wells and blue ice patches in vanilla.
- REDIRECT Template:Code
Template:Redr: Not used for features in vanilla.
- REDIRECT Template:Code
Template:Redr: Used for overworld ore blobs, overworld dirt/gravel/stone variant blobs, and sand/gravel/clay disks in vanilla.
- REDIRECT Template:Code
Template:Redr: Used for infested block blobs, nether gravel and blackstone blobs, and all nether ore blobs in vanilla.
- REDIRECT Template:Code
Template:Redr: Used for water and lava springs in vanilla.
- REDIRECT Template:Code
Template:Redr: Used for trees, bamboo, cacti, kelp, and other ground and ocean vegetation in vanilla.
- REDIRECT Template:Code
Template:Redr: Used for surface freezing in vanilla.
- Template:Nbt/sprite creature_spawn_probability: (optional) Higher value results in more creatures spawned in world generation. Must be between 0.0 and 0.9999999 (both inclusive).
- Template:Nbt/sprite spawners: (Required, but can be empty. If this object doesn't contain a certain category, mobs in this category do not spawn.) Entity spawning settings.
- Template:Nbt/sprite <mob category>: (Can be empty. If empty, mobs in this category do not spawn.) The key must be one of
- REDIRECT Template:Code
- REDIRECT Template:Code
- REDIRECT Template:Code
- REDIRECT Template:Code
- REDIRECT Template:Code
- REDIRECT Template:Code
- REDIRECT Template:Code
Template:Redr, or
- REDIRECT Template:Code
Template:Redr. A list of spawner data objects, one for each mob which should spawn in this biome.
- Template:Nbt/sprite: The spawner data for a single mob.
- Template:Nbt/sprite type: The namespaced entity id of the mob.
- Template:Nbt/sprite weight: How often this mob should spawn, higher values produce more spawns.
- Template:Nbt/sprite minCount: The minimum count of mobs to spawn in a pack. Must be greater than 0.
- Template:Nbt/sprite maxCount: The maximum count of mobs to spawn in a pack. Must be greater than 0. And must be not less than Template:Nbt/sprite minCount.
- Template:Nbt/sprite: The spawner data for a single mob.
- Template:Nbt/sprite spawn_costs: (Required, but can be empty. Only mobs listed here use the spawn cost mechanism) See Template:Slink for details.
- Template:Nbt/sprite <entity id>: The namespaced entity id of the mob.
- Template:Nbt/sprite energy_budget: New mob's maximum potential.
- Template:Nbt/sprite charge: New mob's charge.
- Template:Nbt/sprite <entity id>: The namespaced entity id of the mob.
Bedrock Edition
- REDIRECT Template:Work in progress
- Template:Nbt/sprite: The root object.
- Template:Nbt/sprite format_version: The format version of the file. This is a string representing a Bedrock Edition version. It is recommended to use the latest version. For 26.0 and later, add a leading 1. For example:
- REDIRECT Template:Code
Template:Redr for 26.0. Preview versions should use the version that it is a preview for (Example: Preview 26.0.27 would be
- REDIRECT Template:Code
- Template:Nbt/sprite minecraft:biome: The biome definition.
- Template:Nbt/sprite description
- Template:Nbt/sprite identitfier: A namespaced identifier for the biome.
- Template:Nbt/sprite components: Components used to define the biome's generation.
- Template:Nbt/sprite minecraft:climate: Defines the climate properties of the biome.
- Template:Nbt/sprite downfall: How much precipitation affects colors and block changes. If set to 0, rain will not fall.
- Template:Nbt/sprite snow_accumulation: Minimum and maximum snow level. 0.125 is one snow layer.
- Template:Nbt/sprite temperature:
- Template:Nbt/sprite minecraft:climate: Defines the climate properties of the biome.
- Template:Nbt/sprite description
- Template:Nbt/sprite minecraft:biome: The biome definition.
- REDIRECT Template:Info needed
- Template:Nbt/sprite minecraft:creature_spawn_probability
- Template:Nbt/sprite probability: Chance of creatures spawning when the chunk is generated. Must be ≤0.75.
- Template:Nbt/sprite minecraft:humidity
- Template:Nbt/sprite is_humid: Whether or not the biome is humid.
- Template:Nbt/sprite minecraft:map_tints
- Template:Nbt/spriteTemplate:Nbt/sprite foliage: The color foliage will be tinted by on a Minecraft:map in this biome for example
- Template:Nbt/sprite minecraft:creature_spawn_probability
- REDIRECT Template:Code
- Template:Nbt/sprite grass: The color grass will be tinted by on a Minecraft:map in this biome.
- Template:Nbt/sprite type: It could be
- Template:Nbt/sprite grass: The color grass will be tinted by on a Minecraft:map in this biome.
- REDIRECT Template:Code
- REDIRECT Template:Code
- Template:Nbt/sprite tint: Available only if the type is tint, it is used to define the fixed color of the grass on the map, for example
- REDIRECT Template:Code
- Template:Nbt/sprite minecraft:mountain_parameters: Parameters used to drive mountain terrain generation in the Minecraft:overworld.
- Template:Nbt/sprite east_slopes: Whether to have east-facing slopes.
- Template:Nbt/sprite west_slopes: Whether to have west-facing slopes.
- Template:Nbt/sprite north_slopes: Whether to have north-facing slopes.
- Template:Nbt/sprite south_slopes: Whether to have south-facing slopes.
- Template:Nbt/sprite material: Block to use as steep material.
- Template:Nbt/sprite name: Minecraft:Identifier of the block.
- Template:Nbt/sprite states: Block states for the block.
- Template:Nbt/sprite top_slide: Controls the density tapering that happens at the top of the world to prevent terrain from reaching too high.
- Template:Nbt/sprite enabled
- Template:Nbt/sprite steep_material_adjustment: Defines surface material for steep slopes.
- Template:Nbt/sprite east_slopes: Whether to have east-facing slopes.
- Template:Nbt/sprite west_slopes: Whether to have west-facing slopes.
- Template:Nbt/sprite north_slopes: Whether to have north-facing slopes.
- Template:Nbt/sprite south_slopes: Whether to have south-facing slopes.
- Template:Nbt/sprite material: Block to use as steep material.
- Template:Nbt/sprite name: Minecraft:Identifier of the block.
- Template:Nbt/sprite states: Block states for the block.
- Template:Nbt/sprite minecraft:overworld_height: Currently only affects map items. Specifies the noise parameters used to drive terrain height.
- Template:Nbt/sprite noise_params: 2 values, first is depth, and the second is scale.
- Template:Nbt/sprite noise_type: Uses a built-in preset instead of specifying values. Available presets are:
- Template:Nbt/sprite minecraft:mountain_parameters: Parameters used to drive mountain terrain generation in the Minecraft:overworld.
- REDIRECT Template:Code
- Template:Nbt/sprite minecraft:replace_biomes: Allows this biome to replace parts of one or more vanilla biomes.
- Template:Nbt/sprite replacements: The list of replacements
- Template:Nbt/sprite: An replacement
- Template:Nbt/sprite amount: Chance that the replacement is attempted. Must be >0.0 and ≤1.0.
- Template:Nbt/sprite dimension: The dimension in which this replacement can occur. Can be either
- Template:Nbt/sprite: An replacement
- Template:Nbt/sprite replacements: The list of replacements
- Template:Nbt/sprite minecraft:replace_biomes: Allows this biome to replace parts of one or more vanilla biomes.
- REDIRECT Template:Code
- Template:Nbt/sprite noise_frequency_scale: Scale to alter the frequency of replacements. Lower values make bigger areas that are less common, and higher values make smaller areas that are more common. Must be >0.0 and ≤100.0.
- Template:Nbt/sprite targets: The biomes that can be replaced.
- Template:Nbt/sprite: A biome ID without the namespace.
- Template:Nbt/sprite minecraft:surface_builder
- Template:Nbt/sprite builder: Controls the blocks used for terrain generation.
- Template:Nbt/sprite type: The type of surface builder. Can be
- Template:Nbt/sprite builder: Controls the blocks used for terrain generation.
- REDIRECT Template:Code
- If
typeisminecraft:capped:
- If
- Template:Nbt/spriteTemplate:Nbt/sprite beach_material: Material used near sea level.
- Template:Nbt/sprite name: Minecraft:Identifier of the block.
- Template:Nbt/sprite states: Block states for the block.
- Template:Nbt/spriteTemplate:Nbt/sprite ceiling_materials: Material used for the surface ceiling.
- Template:Nbt/sprite name: Identifier of the block.
- Template:Nbt/sprite states: Block states for the block.
- Template:Nbt/spriteTemplate:Nbt/sprite floor_materials: Material used for the surface floor.
- Template:Nbt/sprite name: Identifier of the block.
- Template:Nbt/sprite states: Block states for the block.
- Template:Nbt/spriteTemplate:Nbt/sprite foundation_material: Material used to replace solid blocks that are not surface blocks.
- Template:Nbt/sprite name: Identifier of the block.
- Template:Nbt/sprite states: Block states for the block.
- Template:Nbt/spriteTemplate:Nbt/sprite sea_material: Material used to replace air below sea level.
- Template:Nbt/sprite name: Identifier of the block.
- Template:Nbt/sprite states: Block states for the block.
- If
typeisminecraft:frozen_oceanorminecraft:overworld:
- Template:Nbt/spriteTemplate:Nbt/sprite foundation_material: Material used to replace solid blocks that are not surface blocks.
- Template:Nbt/sprite name: Identifier of the block.
- Template:Nbt/sprite states: Block states for the block.
- Template:Nbt/spriteTemplate:Nbt/sprite mid_material: Material used a layer below the surface of the biome.
- Template:Nbt/sprite name: Identifier of the block.
- Template:Nbt/sprite states: Block states for the block.
- Template:Nbt/sprite sea_floor_depth: How deep below sea level the sea floor should be. Must be ≤127.
- Template:Nbt/spriteTemplate:Nbt/sprite sea_floor_material: Material used as a floor for bodies of water.
- Template:Nbt/sprite name: Identifier of the block.
- Template:Nbt/sprite states: Block states for the block.
- Template:Nbt/spriteTemplate:Nbt/sprite sea_material: Material used to replace air below sea level.
- Template:Nbt/sprite name: Identifier of the block.
- Template:Nbt/sprite states: Block states for the block.
- Template:Nbt/spriteTemplate:Nbt/sprite top_material: Material used for the surface of the biome.
- Template:Nbt/sprite name: Identifier of the block.
- Template:Nbt/sprite states: Block states for the block.
- If
typeisminecraft:mesa:
- Template:Nbt/sprite bryce_pillars: Whether the mesa generates with pillars.
- Template:Nbt/spriteTemplate:Nbt/sprite clay_material: Base clay material.
- Template:Nbt/sprite name: Identifier of the block.
- Template:Nbt/sprite states: Block states for the block.
- Template:Nbt/spriteTemplate:Nbt/sprite foundation_material: Material used to replace solid blocks that are not surface blocks.
- Template:Nbt/sprite name: Identifier of the block.
- Template:Nbt/sprite states: Block states for the block.
- Template:Nbt/spriteTemplate:Nbt/sprite hard_clay_material: Hardened clay material.
- Template:Nbt/sprite name: Identifier of the block.
- Template:Nbt/sprite states: Block states for the block.
- Template:Nbt/sprite has_forest: Adds coarse dirt and grass at high altitudes.
- Template:Nbt/spriteTemplate:Nbt/sprite mid_material: Material used a layer below the surface of the biome.
- Template:Nbt/sprite name: Identifier of the block.
- Template:Nbt/sprite states: Block states for the block.
- Template:Nbt/sprite sea_floor_depth: How deep below sea level the sea floor should be. Must be ≤127.
- Template:Nbt/spriteTemplate:Nbt/sprite sea_floor_material: Material used as a floor for bodies of water.
- Template:Nbt/sprite name: Identifier of the block.
- Template:Nbt/sprite states: Block states for the block.
- Template:Nbt/spriteTemplate:Nbt/sprite sea_material: Material used to replace air below sea level.
- Template:Nbt/sprite name: Identifier of the block.
- Template:Nbt/sprite states: Block states for the block.
- Template:Nbt/spriteTemplate:Nbt/sprite top_material: Material used for the surface of the biome.
- Template:Nbt/sprite name: Identifier of the block.
- Template:Nbt/sprite states: Block states for the block.
- If
typeisminecraft:swamp:
- Template:Nbt/spriteTemplate:Nbt/sprite foundation_material: Material used to replace solid blocks that are not surface blocks.
- Template:Nbt/sprite name: Identifier of the block.
- Template:Nbt/sprite states: Block states for the block.
- Template:Nbt/sprite max_puddle_depth_below_sea_level: The depth at which surface blocks can be replaced with water for puddles. Must be ≤127.
- Template:Nbt/spriteTemplate:Nbt/sprite mid_material: Material used a layer below the surface of the biome.
- Template:Nbt/sprite name: Identifier of the block.
- Template:Nbt/sprite states: Block states for the block.
- Template:Nbt/sprite sea_floor_depth: How deep below sea level the sea floor should be. Must be ≤127.
- Template:Nbt/spriteTemplate:Nbt/sprite sea_floor_material: Material used as a floor for bodies of water.
- Template:Nbt/sprite name: Identifier of the block.
- Template:Nbt/sprite states: Block states for the block.
- Template:Nbt/spriteTemplate:Nbt/sprite sea_material: Material used to replace air below sea level.
- Template:Nbt/sprite name: Identifier of the block.
- Template:Nbt/sprite states: Block states for the block.
- Template:Nbt/spriteTemplate:Nbt/sprite top_material: Material used for the surface of the biome.
- Template:Nbt/sprite name: Identifier of the block.
- Template:Nbt/sprite states: Block states for the block.
- Template:Nbt/sprite minecraft:surface_material_adjustments: Specify fine changes to blocks used in terrain generation.
- Template:Nbt/sprite adjustments
- Template:Nbt/sprite: An adjustment
- Template:Nbt/sprite adjustments
- REDIRECT Template:Info needed
- Template:Nbt/sprite noise_frequency_scale: The scale to apply to the position when accessing the noise value.
- Template:Nbt/sprite noise_range: A range of noise values for which this adjustment should be applied.
- Template:Nbt/sprite materials: Materials to use when this adjustment is active.
- Template:Nbt/spriteTemplate:Nbt/sprite foundation_material: Material used to replace solid blocks that are not surface blocks.
- Template:Nbt/sprite name: Minecraft:Identifier of the block.
- Template:Nbt/sprite states: Block states for the block.
- Template:Nbt/spriteTemplate:Nbt/sprite mid_material: Material used a layer below the surface of the biome.
- Template:Nbt/sprite name: Identifier of the block.
- Template:Nbt/sprite states: Block states for the block.
- Template:Nbt/spriteTemplate:Nbt/sprite sea_floor_material: Material used as a floor for bodies of water.
- Template:Nbt/sprite name: Identifier of the block.
- Template:Nbt/sprite states: Block states for the block.
- Template:Nbt/spriteTemplate:Nbt/sprite sea_material: Material used to replace air below sea level.
- Template:Nbt/sprite name: Identifier of the block.
- Template:Nbt/sprite states: Block states for the block.
- Template:Nbt/spriteTemplate:Nbt/sprite top_material: Material used for the surface of the biome.
- Template:Nbt/sprite name: Identifier of the block.
- Template:Nbt/sprite states: Block states for the block.
- Template:Nbt/spriteTemplate:Nbt/sprite foundation_material: Material used to replace solid blocks that are not surface blocks.
- Template:Nbt/sprite minecraft:tags
- Template:Nbt/sprite tags: Tags for the biome.
- Template:Nbt/sprite minecraft:village_type
- Template:Nbt/sprite type: The type of village for this biome. Valid values are
- REDIRECT Template:Code
History
Java Edition
Bedrock Edition
External links
References
<references/>
| Editions |
| ||||||||
|---|---|---|---|---|---|---|---|---|---|
| Development |
| ||||||||
| Technical |
| ||||||||
| Multiplayer | |||||||||
| Exclusive features |
| ||||||||
| Removed |
de:Biomdefinition fr:Définition de biome ja:バイオームのカスタマイズ pt:Definição de biomas uk:Визначення біому zh:生物群系定义格式