* - Added replacements for enderman block place/take behaviors
* - Added transport items goal
* - Added grass_is_shaded property
* - Removed experimental tag for movable component
* - Remove experimental tag from random offset
* - Added can_wear_armor field
* - Added "none" heightmap projection
* - Improved descriptions for jigsaw rule
* - Added blockstate and random block state predicates
* - Improve rule descriptions
* - Added min and max values for terrain texture variations
* - Update template pool with empty pool
* - Improved surface builder component
* - Added humidity biome component
* - Added partially frozen biome component
* - Renamed to rotation_axis_aligned
* - Added map_tints biome component
This commit is contained in:
Xterionix
2025-08-08 18:59:24 +05:00
committed by GitHub
parent b2f33a0ca9
commit 5503ea5612
25 changed files with 662 additions and 345 deletions

View File

@@ -5,28 +5,26 @@
"description": "A custom biome definition.",
"type": "object",
"additionalProperties": false,
"required": ["description", "components"],
"required": [ "description", "components" ],
"definitions": {
"components_ref": {
"type": "object",
"title": "Components",
"additionalProperties": false,
"properties": {
"minecraft:capped_surface": { "$ref": "./components/capped_surface.json" },
"minecraft:climate": { "$ref": "./components/climate.json" },
"minecraft:creature_spawn_probability": { "$ref": "./components/creature_spawn_probability.json" },
"minecraft:frozen_ocean_surface": { "$ref": "./components/frozen_ocean_surface.json" },
"minecraft:mesa_surface": { "$ref": "./components/mesa_surface.json" },
"minecraft:humidity": { "$ref": "./components/humidity.json" },
"minecraft:map_tints": { "$ref": "./components/map_tints.json" },
"minecraft:mountain_parameters": { "$ref": "./components/mountain_parameters.json" },
"minecraft:multinoise_generation_rules": { "$ref": "./components/multinoise_generation_rules.json" },
"minecraft:overworld_generation_rules": { "$ref": "./components/overworld_generation_rules.json" },
"minecraft:overworld_height": { "$ref": "./components/overworld_height.json" },
"minecraft:partially_frozen": { "$ref": "./components/partially_frozen.json" },
"minecraft:replace_biomes": { "$ref": "./components/replace_biomes.json" },
"minecraft:surface_material_adjustments": { "$ref": "./components/surface_material_adjustments.json" },
"minecraft:surface_builder": { "$ref": "./components/surface_builder.json" },
"minecraft:swamp_surface": { "$ref": "./components/swamp_surface.json" },
"minecraft:tags": { "$ref": "./components/tags.json" },
"minecraft:the_end_surface": { "$ref": "./components/the_end_surface.json" }
"minecraft:tags": { "$ref": "./components/tags.json" }
}
}
},
@@ -36,7 +34,7 @@
"description": "The description for this biome.",
"type": "object",
"additionalProperties": false,
"required": ["identifier"],
"required": [ "identifier" ],
"properties": {
"identifier": {
"title": "Identifier",