Some more misc fixes (#295)

* - Add mob effects enum

* - Add biome and biome tags to enum

* - Fix feature rules only showing with 1.13.0 format version

* - Replace 1.20.41 -> 1.20.80
- Make certain format versions restricted to 1.10.0

* - Remove example stick (having this here was annoying)

* - Fix

* - Remove empty sounds example

* - Misc fixes for entity components
This commit is contained in:
Xterionix
2024-06-29 00:06:53 +05:00
committed by GitHub
parent 39d1280d5c
commit 822ed538f9
50 changed files with 412 additions and 304 deletions

View File

@@ -7,7 +7,6 @@
"properties": {
"priority": { "$ref": "types/priority.json" },
"celebration_sound": {
"default": "",
"description": "The sound event to trigger during the celebration.",
"title": "Celebration Sound",
"$ref": "../../../../general/sound_event.json"

View File

@@ -33,8 +33,7 @@
"loot_table": {
"title": "Loot Table",
"type": "string",
"description": "The loot table that contains the possible loot the entity can drop with this goal.",
"examples": ["loot_tables/"]
"description": "The loot table that contains the possible loot the entity can drop with this goal."
},
"max_head_look_at_height": {
"title": "Max Head Look At Height",

View File

@@ -16,13 +16,11 @@
"eat_mob_sound": {
"title": "Eat Mob Sound",
"$ref": "../../../../general/sound_event.json",
"default": "",
"description": "Sets the sound that should play when eating a mob."
},
"loot_table": {
"title": "Loot Table",
"type": "string",
"default": "",
"description": "The loot table for loot to be dropped when eating a mob."
},
"pull_in_force": {

View File

@@ -31,13 +31,13 @@
"title": "Lay Egg Sound",
"$ref": "../../../../general/sound_event.json",
"default": "lay_egg",
"description": "[EXPERIMENTAL] Sound event name for laying egg. Defaulted to lay_egg which is used for Turtles."
"description": "Sound event name for laying egg. Defaulted to lay_egg which is used for Turtles."
},
"lay_seconds": {
"title": "Lay Seconds",
"type": "number",
"default": 10.0,
"description": "[EXPERIMENTAL] Duration of the laying egg process in seconds."
"description": "Duration of the laying egg process in seconds."
},
"on_lay": {
"title": "On Lay",
@@ -61,20 +61,20 @@
"type": "array",
"default": ["minecraft:sand"],
"items": { "title": "Block ID", "$ref": "../../../../general/item/descriptor.json" },
"description": "[EXPERIMENTAL] Blocks that the mob can lay its eggs on top of."
"description": "Blocks that the mob can lay its eggs on top of."
},
"target_materials_above_block": {
"title": "Target Materials Above Block",
"type": "array",
"default": ["Air"],
"enum": ["Air", "Any", "Lava", "Water"],
"description": "[EXPERIMENTAL] Types of materials that can exist above the target block. Valid types are Air, Water, and Lava."
"description": "Types of materials that can exist above the target block. Valid types are Air, Water, and Lava."
},
"use_default_animation": {
"title": "Use Default Animation",
"type": "boolean",
"default": true,
"description": "[EXPERIMENTAL] Specifies if the default lay-egg animation should be played when the egg is placed or not."
"description": "Specifies if the default lay-egg animation should be played when the egg is placed or not."
}
},
"examples": [

View File

@@ -45,8 +45,7 @@
"item_table": {
"title": "Item Table",
"type": "string",
"default": "",
"description": "File path relative to the resource pack root for items to spawn list (loot table format)."
"description": "File path relative to the behavior pack root for items to spawn list (loot table format)."
},
"on_digging_start": {
"title": "On Digging Start",

View File

@@ -3,7 +3,7 @@
"additionalProperties": false,
"type": "object",
"title": "Sonic Boom",
"description": "[EXPERIMENTAL BEHAVIOR] Plays the provided sounds and activates the `SONIC BOOM` actor flag during the specified duration",
"description": "Plays the provided sounds and activates the `SONIC BOOM` actor flag during the specified duration",
"properties": {
"priority": { "$ref": "./types/priority.json" },
"speed_multiplier": { "$ref": "types/speed_multiplier.json" },

View File

@@ -25,7 +25,7 @@
"type": "number",
"default": 45,
"description": "The Maximum time in seconds that the trader will be interested with showing it's trade items.",
"title": "Interest_time"
"title": "Interest Time"
},
"remove_item_time": {
"type": "number",