Apply Biome Definition Carver (Effect) — SkNMS

Addon: SkNMS · Category: Effect · Since: 1.5.0

Syntax

apply [biome] carver[s] %strings%

Description

Used in a `carvers` section of the biome registration section, you can apply different carvers to carve caves in the biome. You can optionally apply the default ("cave", "cave_extra_underground", "canyon") cave carvers. Refer to [**BiomeDefinition**](https://minecraft.wiki/w/Biome_definition) and [**Carver Definition**](https://minecraft.wiki/w/Carver_definition) on McWiki for full details.

Examples

set {-biomes::colorful_coast} to register new biome:
	id: "my_biomes:colorful_coast"
	has_precipitation: true
	temperature: 0.7
	downfall: 0.8
	carvers:
		apply default carvers
		# OR
		apply carver "minecraft:cave"
		apply carver "minecraft:cave_extra_underground"
		apply carver "minecraft:canyon"

View source