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:
Xterionix
2025-02-13 18:38:27 +05:00
committed by GitHub
parent 968d0c70d2
commit 40569873a8
38 changed files with 453 additions and 252 deletions

View File

@@ -11,7 +11,7 @@
"listen_time": {
"title": "Listen Time",
"type": "integer",
"default": 0.0,
"default": 30,
"description": "Sets the time an entity should continue delivering items to a noteblock after hearing it."
},
"on_item_throw": {

View File

@@ -17,19 +17,19 @@
"search_count": {
"title": "Search Count",
"type": "integer",
"default": 0.0,
"default": 10,
"description": "The amount of times to try finding a random outdoors position before failing."
},
"search_height": {
"title": "Search Height",
"type": "integer",
"default": 0.0,
"default": 5,
"description": "The y range to search for an outdoors position for."
},
"search_range": {
"title": "Search Range",
"type": "integer",
"default": 0.0,
"default": 15,
"description": "The x and z range to search for an outdoors position for."
},
"timeout_cooldown": {

View File

@@ -36,7 +36,7 @@
"min_ram_distance": {
"title": "Min Ram Distance",
"type": "number",
"default": 0.0,
"default": 4.0,
"description": "The minimum distance at which the mob can start a ram attack."
},
"on_start": {
@@ -53,7 +53,7 @@
"ram_distance": {
"title": "Ram Distance",
"type": "number",
"default": 0.0,
"default": 7.0,
"description": "The distance at which the mob start to run with ram speed."
},
"ram_impact_sound": {

View File

@@ -27,13 +27,13 @@
"title": "Digging Duration Range",
"$ref": "../../../../general/vectors/number2.json",
"default": [0.0, 0.0],
"default": [8.0, 10.0],
"description": "Digging duration in seconds."
},
"find_valid_position_retries": {
"title": "Find Valid Position Retries",
"type": "number",
"default": 0.0,
"default": 5.0,
"description": "Amount of retries to find a valid target position within search range."
},
"goal_radius": {
@@ -80,13 +80,13 @@
"search_range_xz": {
"title": "Search Range XZ",
"type": "number",
"default": 0.0,
"default": 10.0,
"description": "Width and length of the volume around the entity used to find a valid target position"
},
"search_range_y": {
"title": "Search Range Y",
"type": "number",
"default": 0.0,
"default": 7.0,
"description": "Height of the volume around the entity used to find a valid target position"
},
"spawn_item_after_seconds": {

View File

@@ -11,7 +11,7 @@
"listen_time": {
"title": "Listen Time",
"type": "integer",
"default": 0.0,
"default": 30.0,
"description": "Sets the time an entity should stay near a noteblock after hearing it."
},
"speed": {