Updated for 1.21.60 (#334)
* - Add crafting item catalogs * - Removed experimental warning for item visual * - Added renders_when_invisible entity component * - Removed experimental warning for liquid detection * - Added property inheritance to breedable * - Added min_looked_at_duration field to look_at component * - Added combine_parent_colors to breedable * - Update catalog file schema * - Split storage item components * - Added new entity filters * - Added surface opacity to water appearance biome component * - Remove actor_id loot table example as it is no longer the standard * - Add set_armor_trim trim loot table function * - Added match_tool loot table condition * - Added creature_spawn_probability component * - Added verticalFlySpeed to has_ability * - Update descriptions and default values * - Add base field to block_sounds * - Removed block sounds enum as creators can specify custom ones too * - Change default format version
This commit is contained in:
@@ -19,6 +19,7 @@
|
||||
"minecraft:capped_surface": { "$ref": "./components/capped_surface.json" },
|
||||
"minecraft:climate": { "$ref": "./components/climate.json" },
|
||||
"minecraft:consolidated_features": { "$ref": "./components/consolidated_features.json" },
|
||||
"minecraft:creature_spawn_probability": { "$ref": "./components/creature_spawn_probability.json" },
|
||||
"minecraft:frozen_ocean_surface": { "$ref": "./components/frozen_ocean_surface.json" },
|
||||
"minecraft:legacy_world_generation_rules": {
|
||||
"$ref": "./components/legacy_world_generation_rules.json"
|
||||
|
||||
@@ -0,0 +1,16 @@
|
||||
{
|
||||
"$id": "minecraft.behavior.biomes.components.minecraft.creature_spawn_probability",
|
||||
"title": "Creature Spawn Probability",
|
||||
"description": "Probability that creatures will spawn within the biome when a chunk is generated.",
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"probability": {
|
||||
"type": "number",
|
||||
"title": "Probability",
|
||||
"description": "Probabiltity between [0.0, 0.75] of creatures spawning within the biome on chunk generation.",
|
||||
"minimum": 0.0,
|
||||
"maximum": 0.75
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user