Biome Definition Features (Section) — SkNMS

Addon: SkNMS · Category: Section · Since: 1.1.0

Syntax

raw_generation

Description

Apply features to biomes. Refer to [**BiomeDefinition**](https://minecraft.wiki/w/Biome_definition) and [**Placed Feature**](https://minecraft.wiki/w/Placed_feature) on McWiki for full details.

Examples

register new biome:
	id: "my_biomes:colorful_coast"
	has_precipitation: true
	temperature: 0.7
	downfall: 0.8
	features:
		underground_ores:
			apply feature "minecraft:ore_dirt"
			apply feature "minecraft:ore_coal_upper"
			apply feature "minecraft:ore_coal_lower"
		vegetal_decoration:
			apply feature "wythers:vegetation/bushes_mediterranean"
			apply feature "wythers:vegetation/trees_mediterranean_woods"
			apply feature "wythers:vegetation/placed_random_patch/mediterranean_lilacs"
			apply feature "minecraft:glow_lichen"
			apply feature "minecraft:patch_grass_savanna"
			apply feature "minecraft:patch_tall_grass_2"
			apply feature "minecraft:brown_mushroom_normal"
			apply feature "minecraft:red_mushroom_normal"
			apply feature "minecraft:patch_sugar_cane"

View source