From 3193b0dfbca1bb32b4f64ec9d29df1fb03c8ad90 Mon Sep 17 00:00:00 2001 From: ChibiMango <32205345+ChibiMango@users.noreply.github.com> Date: Wed, 20 Jul 2022 21:14:28 +0100 Subject: [PATCH 01/32] Update knockback_resistance.json originally was referencing item component. properties found using vanilla pack: armor_stand --- .../format/components/knockback_resistance.json | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/source/behavior/entities/format/components/knockback_resistance.json b/source/behavior/entities/format/components/knockback_resistance.json index 12207428..9fdbe5f6 100644 --- a/source/behavior/entities/format/components/knockback_resistance.json +++ b/source/behavior/entities/format/components/knockback_resistance.json @@ -3,19 +3,22 @@ "type": "object", "title": "Knockback Resistance", "additionalProperties": false, - "description": "Sets the knockback resistance item component. Determines the amount of knockback resistance that the item has.", + "description": "Determines the amount of knockback resistance that the item has.", + "$comment": "UNDOCUMENTED", "required": [], "properties": { - "protection": { - "title": "Protection", + "value": { + "title": "Value", "type": "number", - "description": "Amount of knockback resistance provided with the total maximum protection being 1.0", + "default": 1.0, + "description": "Percentage of knockback to reduce with 1.0 being 100% reduction.", + "$comment": "UNDOCUMENTED", "maximum": 1 } }, "examples": [ { - "protection": 0.5 + "value": 1.0 } ] } From 72af63af1fa8a077a2125a58ede91496988f9997 Mon Sep 17 00:00:00 2001 From: ChibiMango <32205345+ChibiMango@users.noreply.github.com> Date: Wed, 20 Jul 2022 21:21:49 +0100 Subject: [PATCH 02/32] Update navigation.walk.json found in documentation and vanilla packs --- .../entities/format/components/navigation.walk.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/source/behavior/entities/format/components/navigation.walk.json b/source/behavior/entities/format/components/navigation.walk.json index 26deb4f2..fa34a612 100644 --- a/source/behavior/entities/format/components/navigation.walk.json +++ b/source/behavior/entities/format/components/navigation.walk.json @@ -57,6 +57,12 @@ "description": "Tells the pathfinder whether or not it can jump up blocks", "title": "Can Jump" }, + "can_float": { + "type": "boolean", + "default": false, + "description": "Tells the pathfinder whether or not it float.", + "title": "Can Jump" + }, "can_open_doors": { "type": "boolean", "default": false, From 6a1f65abeb07dd2849727395bdf73fb2473b3736 Mon Sep 17 00:00:00 2001 From: ChibiMango <32205345+ChibiMango@users.noreply.github.com> Date: Tue, 26 Jul 2022 14:44:40 +0100 Subject: [PATCH 03/32] Update go_home.json minecraft only allows an array of events. just a string throws an error --- source/behavior/entities/format/behaviors/go_home.json | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/source/behavior/entities/format/behaviors/go_home.json b/source/behavior/entities/format/behaviors/go_home.json index 8dba9c49..a454b6ce 100644 --- a/source/behavior/entities/format/behaviors/go_home.json +++ b/source/behavior/entities/format/behaviors/go_home.json @@ -22,12 +22,18 @@ "on_home": { "description": "Event(s) to run when this mob gets home.", "title": "On Home", - "oneOf": [{ "$ref": "../types/trigger.json" }, { "type": "array", "items": { "$ref": "../types/trigger.json" } }] + "type": "array", + "items": { + "$ref": "../types/trigger.json" + } }, "on_failed": { "title": "On Failed", "description": "Event(s) to run when this goal fails.", - "oneOf": [{ "$ref": "../types/event.json" }, { "type": "array", "items": { "$ref": "../types/event.json" } }] + "type": "array", + "items": { + "$ref": "../types/event.json" + } }, "calculate_new_path_radius": { "title": "Calculate New Path Radius", From 33de32897d4718123546ec758c3136b36e59704c Mon Sep 17 00:00:00 2001 From: ChibiMango <32205345+ChibiMango@users.noreply.github.com> Date: Tue, 26 Jul 2022 14:45:28 +0100 Subject: [PATCH 04/32] Update croak.json corrected name --- source/behavior/entities/format/behaviors/croak.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/behavior/entities/format/behaviors/croak.json b/source/behavior/entities/format/behaviors/croak.json index df0f6d33..98405a73 100644 --- a/source/behavior/entities/format/behaviors/croak.json +++ b/source/behavior/entities/format/behaviors/croak.json @@ -1,7 +1,7 @@ { "$id": "blockception.minecraft.behavior.entities.minecraft.behavior.croak", "type": "object", - "title": "Eat Block", + "title": "Croak", "description": "[EXPERIMENTAL BEHAVIOR] Allows the entity to croak at a random time interval with configurable conditions.", "additionalProperties": false, "required": [], From 3a7cea366d0b3510f94bef7d88f96de63099ab19 Mon Sep 17 00:00:00 2001 From: ChibiMango <32205345+ChibiMango@users.noreply.github.com> Date: Tue, 26 Jul 2022 14:46:29 +0100 Subject: [PATCH 05/32] Update drink_potion.json corrected name --- source/behavior/entities/format/behaviors/drink_potion.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/behavior/entities/format/behaviors/drink_potion.json b/source/behavior/entities/format/behaviors/drink_potion.json index d7c086b0..3b493df9 100644 --- a/source/behavior/entities/format/behaviors/drink_potion.json +++ b/source/behavior/entities/format/behaviors/drink_potion.json @@ -1,7 +1,7 @@ { "$id": "blockception.minecraft.behavior.entities.minecraft.behavior.drink_potion", "type": "object", - "title": "Beg", + "title": "Drink Potion", "description": "Allows the mob to drink potions based on specified environment conditions.", "additionalProperties": false, "properties": { From aa5db190b973fd7643e0eb4673e740ae4d9d2bd1 Mon Sep 17 00:00:00 2001 From: ChibiMango <32205345+ChibiMango@users.noreply.github.com> Date: Tue, 26 Jul 2022 14:46:50 +0100 Subject: [PATCH 06/32] Update emerge.json corrected name --- source/behavior/entities/format/behaviors/emerge.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/behavior/entities/format/behaviors/emerge.json b/source/behavior/entities/format/behaviors/emerge.json index cc764e50..03a07ef1 100644 --- a/source/behavior/entities/format/behaviors/emerge.json +++ b/source/behavior/entities/format/behaviors/emerge.json @@ -1,7 +1,7 @@ { "$id": "blockception.minecraft.behavior.entities.minecraft.behavior.emerge", "type": "object", - "title": "Eat Mob", + "title": "Emerge", "description": "[EXPERIMENTAL BEHAVIOR] Activates the `EMERGING` actor flag during the specified duration and triggers `on_done` at the end", "additionalProperties": false, "required": [], From 12d1cc1d1a0a0f13351a08fe0cf331a6c1998a28 Mon Sep 17 00:00:00 2001 From: ChibiMango <32205345+ChibiMango@users.noreply.github.com> Date: Tue, 26 Jul 2022 14:47:37 +0100 Subject: [PATCH 07/32] Update follow_parent.json corrected name and id --- source/behavior/entities/format/behaviors/follow_parent.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/behavior/entities/format/behaviors/follow_parent.json b/source/behavior/entities/format/behaviors/follow_parent.json index 7b4af5d8..bb59cd78 100644 --- a/source/behavior/entities/format/behaviors/follow_parent.json +++ b/source/behavior/entities/format/behaviors/follow_parent.json @@ -1,7 +1,7 @@ { - "$id": "blockception.minecraft.behavior.entities.minecraft.behavior.float", + "$id": "blockception.minecraft.behavior.entities.minecraft.behavior.follow_parent", "type": "object", - "title": "Float", + "title": "Follow Parent", "description": "Allows the mob to follow their parent around.", "additionalProperties": false, "required": [], From 54274907cb2189ed95280c8951ec3b0110511575 Mon Sep 17 00:00:00 2001 From: ChibiMango <32205345+ChibiMango@users.noreply.github.com> Date: Tue, 26 Jul 2022 14:49:27 +0100 Subject: [PATCH 08/32] Update go_and_give_items_to_noteblock.json corrected name, captialised title and fixed default values --- .../go_and_give_items_to_noteblock.json | 22 +++++++++---------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/source/behavior/entities/format/behaviors/go_and_give_items_to_noteblock.json b/source/behavior/entities/format/behaviors/go_and_give_items_to_noteblock.json index 617c1965..029038a2 100644 --- a/source/behavior/entities/format/behaviors/go_and_give_items_to_noteblock.json +++ b/source/behavior/entities/format/behaviors/go_and_give_items_to_noteblock.json @@ -1,7 +1,7 @@ { "$id": "blockception.minecraft.behavior.entities.minecraft.behavior.go_and_give_items_to_noteblock", "type": "object", - "title": "Barter", + "title": "Go And Give Items To Noteblock", "description": "[EXPERIMENTAL BEHAVIOR] The entity will attempt to toss the items from its inventory to a nearby recently played noteblock.", "additionalProperties": false, "properties": { @@ -9,13 +9,13 @@ "$ref": "types/priority.json" }, "listen_time": { - "title": "listen time", + "title": "Listen Time", "type": "integer", "default": 0.0, "description": "Sets the time an entity should continue delivering items to a noteblock after hearing it." }, "on_item_throw": { - "title": "on item throw", + "title": "On Item Throw", "description": "Event(s) to run when this mob throws items.", "oneOf": [ { "$ref": "../types/trigger.json" }, @@ -26,33 +26,33 @@ ] }, "reach_block_distance": { - "title": "reach block distance", + "title": "Reach Block Distance", "type": "number", - "default": 3000000, + "default": 3.0, "description": "Sets the desired distance to be reached before throwing the items towards the block." }, "run_speed": { - "title": "run speed", + "title": "Run Speed", "type": "number", - "default": 1000000, + "default": 1.0, "description": "Sets the entity's speed when running toward the block." }, "throw_force": { - "title": "throw force", + "title": "Throw Force", "type": "number", "default": 0.2, "description": "Sets the throw force." }, "throw_sound": { - "title": "throw sound", + "title": "Throw Sound", "type": "string", "default": "", "description": "Sound to play when this mob throws an item." }, "vertical_throw_mul": { - "title": "vertical throw mul", + "title": "Vertical Throw Mul", "type": "number", - "default": 1500000, + "default": 1.5, "description": "Sets the vertical throw multiplier that is applied on top of the throw force in the vertical direction." } } From 9a27d15368c1d1646e0fa502243d8cb7f6d6e336 Mon Sep 17 00:00:00 2001 From: ChibiMango <32205345+ChibiMango@users.noreply.github.com> Date: Tue, 26 Jul 2022 14:50:50 +0100 Subject: [PATCH 09/32] Update go_and_give_items_to_owner.json corrected name, captialised titles and corrected default values --- .../behaviors/go_and_give_items_to_owner.json | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/source/behavior/entities/format/behaviors/go_and_give_items_to_owner.json b/source/behavior/entities/format/behaviors/go_and_give_items_to_owner.json index 0c5682c2..8daf854c 100644 --- a/source/behavior/entities/format/behaviors/go_and_give_items_to_owner.json +++ b/source/behavior/entities/format/behaviors/go_and_give_items_to_owner.json @@ -1,7 +1,7 @@ { "$id": "blockception.minecraft.behavior.entities.minecraft.behavior.go_and_give_items_to_owner", "type": "object", - "title": "Barter", + "title": "Go And Give Items To Owner", "description": "[EXPERIMENTAL BEHAVIOR] The entity will attempt to toss the items from its inventory to its owner.", "additionalProperties": false, "properties": { @@ -9,7 +9,7 @@ "$ref": "types/priority.json" }, "on_item_throw": { - "title": "on item throw", + "title": "On Item Throw", "$ref": "../types/trigger.json", "description": "Event(s) to run when this mob throws items.", "oneOf": [ @@ -21,33 +21,33 @@ ] }, "reach_mob_distance": { - "title": "reach mob distance", + "title": "Reach Mob Distance", "type": "number", - "default": 3000000, + "default": 3.0, "description": "Sets the desired distance to be reached before giving items to owner." }, "run_speed": { - "title": "run speed", + "title": "Run Speed", "type": "number", - "default": 1000000, + "default": 1.0, "description": "Sets the entity's speed when running toward the owner." }, "throw_force": { - "title": "throw force", + "title": "Throw Force", "type": "number", "default": 0.2, "description": "Sets the throw force." }, "throw_sound": { - "title": "throw sound", + "title": "Throw Sound", "type": "string", "default": "item_thrown", "description": "Sound to play when this mob throws an item." }, "vertical_throw_mul": { - "title": "vertical throw mul", + "title": "Vertical Throw Mul", "type": "number", - "default": 1500000, + "default": 1.5, "description": "Sets the vertical throw multiplier that is applied on top of the throw force in the vertical direction." } } From 0f21b18e5ec9791eef3e011b01e8212c7f45b192 Mon Sep 17 00:00:00 2001 From: ChibiMango <32205345+ChibiMango@users.noreply.github.com> Date: Tue, 26 Jul 2022 14:51:18 +0100 Subject: [PATCH 10/32] Update hurt_by_target.json corrected title --- source/behavior/entities/format/behaviors/hurt_by_target.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/behavior/entities/format/behaviors/hurt_by_target.json b/source/behavior/entities/format/behaviors/hurt_by_target.json index af2a0d74..c38fec33 100644 --- a/source/behavior/entities/format/behaviors/hurt_by_target.json +++ b/source/behavior/entities/format/behaviors/hurt_by_target.json @@ -1,7 +1,7 @@ { "$id": "blockception.minecraft.behavior.entities.minecraft.behavior.hurt_by_target", "type": "object", - "title": "Guardian Attack", + "title": "Hurt By Target", "additionalProperties": false, "description": "Allows the mob to target another mob that hurts them.", "required": [], From dce75a42e0966bef82ffdc7d444269093a62b20c Mon Sep 17 00:00:00 2001 From: ChibiMango <32205345+ChibiMango@users.noreply.github.com> Date: Tue, 26 Jul 2022 14:51:34 +0100 Subject: [PATCH 11/32] Update jump_to_block.json corrected title --- source/behavior/entities/format/behaviors/jump_to_block.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/behavior/entities/format/behaviors/jump_to_block.json b/source/behavior/entities/format/behaviors/jump_to_block.json index d80ae9f1..55d00585 100644 --- a/source/behavior/entities/format/behaviors/jump_to_block.json +++ b/source/behavior/entities/format/behaviors/jump_to_block.json @@ -1,7 +1,7 @@ { "$id": "blockception.minecraft.behavior.entities.minecraft.behavior.jump_to_block", "type": "object", - "title": "Melee Attack", + "title": "Jump To Blokc", "description": "Allows an entity to jump to another random block.", "additionalProperties": false, "required": [], From 5f780bf8d7933a9b6e9dd9dc00c2bd5ec00a0f05 Mon Sep 17 00:00:00 2001 From: ChibiMango <32205345+ChibiMango@users.noreply.github.com> Date: Tue, 26 Jul 2022 14:52:43 +0100 Subject: [PATCH 12/32] Update move_towards_target.json corrected title and id --- .../entities/format/behaviors/move_towards_target.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/behavior/entities/format/behaviors/move_towards_target.json b/source/behavior/entities/format/behaviors/move_towards_target.json index 49abb809..d253d76e 100644 --- a/source/behavior/entities/format/behaviors/move_towards_target.json +++ b/source/behavior/entities/format/behaviors/move_towards_target.json @@ -1,7 +1,7 @@ { - "$id": "blockception.minecraft.behavior.entities.minecraft.behavior.guardian_attack", + "$id": "blockception.minecraft.behavior.entities.minecraft.behavior.move_towards_target", "type": "object", - "title": "Guardian Attack", + "title": "Move Towards Target", "additionalProperties": false, "description": "Allows mob to move towards its current target.", "required": [], From dc239a1ed8b444995cf6dbb8d12ae7982c9ee2d8 Mon Sep 17 00:00:00 2001 From: ChibiMango <32205345+ChibiMango@users.noreply.github.com> Date: Tue, 26 Jul 2022 14:53:29 +0100 Subject: [PATCH 13/32] Update open_door.json corrected title and id --- source/behavior/entities/format/behaviors/open_door.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/behavior/entities/format/behaviors/open_door.json b/source/behavior/entities/format/behaviors/open_door.json index 6d9beb15..309fa810 100644 --- a/source/behavior/entities/format/behaviors/open_door.json +++ b/source/behavior/entities/format/behaviors/open_door.json @@ -1,7 +1,7 @@ { - "$id": "blockception.minecraft.behavior.entities.minecraft.behavior.guardian_attack", + "$id": "blockception.minecraft.behavior.entities.minecraft.behavior.open_door", "type": "object", - "title": "Guardian Attack", + "title": "Open Door", "additionalProperties": false, "description": "Allows the mob to open doors. Requires the mob to be able to path through doors, otherwise the mob won't even want to try opening them.", "required": [], From 560e5c7ec5db822ce9e85837ffd78593ebb3e91b Mon Sep 17 00:00:00 2001 From: ChibiMango <32205345+ChibiMango@users.noreply.github.com> Date: Tue, 26 Jul 2022 14:54:01 +0100 Subject: [PATCH 14/32] Update pet_sleep_with_owner.json corrected title --- .../entities/format/behaviors/pet_sleep_with_owner.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/behavior/entities/format/behaviors/pet_sleep_with_owner.json b/source/behavior/entities/format/behaviors/pet_sleep_with_owner.json index d17e31ec..8ab1853b 100644 --- a/source/behavior/entities/format/behaviors/pet_sleep_with_owner.json +++ b/source/behavior/entities/format/behaviors/pet_sleep_with_owner.json @@ -2,7 +2,7 @@ "$id": "blockception.minecraft.behavior.entities.minecraft.behavior.pet_sleep_with_owner", "description": "Allows the mob to be tempted by food they like.", "type": "object", - "title": "Tempt", + "title": "Pet Sleep With Owner", "additionalProperties": false, "properties": { "priority": { "$ref": "types/priority.json" }, From 704c52d2cf4b8129fc2b198489f53bd7eadc0a20 Mon Sep 17 00:00:00 2001 From: ChibiMango <32205345+ChibiMango@users.noreply.github.com> Date: Tue, 26 Jul 2022 14:54:36 +0100 Subject: [PATCH 15/32] Update random_breach.json corrected title and id --- source/behavior/entities/format/behaviors/random_breach.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/behavior/entities/format/behaviors/random_breach.json b/source/behavior/entities/format/behaviors/random_breach.json index 46e2354d..3092e426 100644 --- a/source/behavior/entities/format/behaviors/random_breach.json +++ b/source/behavior/entities/format/behaviors/random_breach.json @@ -1,8 +1,8 @@ { - "$id": "blockception.minecraft.behavior.entities.minecraft.behavior.player_ride_tamed", + "$id": "blockception.minecraft.behavior.entities.minecraft.behavior.random_breach", "description": "Allows the mob to randomly break surface of the water.", "type": "object", - "title": "Player Ride Tamed", + "title": "Random Breach", "additionalProperties": false, "required": [], "properties": { From a9c69cf9be30097c66bd9e4853b627d2be110c71 Mon Sep 17 00:00:00 2001 From: ChibiMango <32205345+ChibiMango@users.noreply.github.com> Date: Tue, 26 Jul 2022 14:55:01 +0100 Subject: [PATCH 16/32] Update roar.json corrected title --- source/behavior/entities/format/behaviors/roar.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/behavior/entities/format/behaviors/roar.json b/source/behavior/entities/format/behaviors/roar.json index 4af0df8f..06c6bbfd 100644 --- a/source/behavior/entities/format/behaviors/roar.json +++ b/source/behavior/entities/format/behaviors/roar.json @@ -2,7 +2,7 @@ "$id": "blockception.minecraft.behavior.entities.minecraft.behavior.roar", "additionalProperties": false, "type": "object", - "title": "Dig", + "title": "Roar", "description": "[EXPERIMENTAL BEHAVIOR] Plays the provided sound and activates the `ROARING` actor flag during the specified duration", "properties": { "priority": { From e86c2952a14854f3ffd72ed978b87612bcfa9ae2 Mon Sep 17 00:00:00 2001 From: ChibiMango <32205345+ChibiMango@users.noreply.github.com> Date: Tue, 26 Jul 2022 14:55:29 +0100 Subject: [PATCH 17/32] Update run_around_like_crazy.json corrected title and id --- .../entities/format/behaviors/run_around_like_crazy.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/behavior/entities/format/behaviors/run_around_like_crazy.json b/source/behavior/entities/format/behaviors/run_around_like_crazy.json index ae07039f..4f55d14a 100644 --- a/source/behavior/entities/format/behaviors/run_around_like_crazy.json +++ b/source/behavior/entities/format/behaviors/run_around_like_crazy.json @@ -1,8 +1,8 @@ { - "$id": "blockception.minecraft.behavior.entities.minecraft.behavior.restrict_open_door", + "$id": "blockception.minecraft.behavior.entities.minecraft.behavior.run_around_like_crazy", "description": "Allows the mob to run around aimlessly.", "type": "object", - "title": "Restrict Open Door", + "title": "Run Around Like Crazy", "additionalProperties": false, "required": [], "properties": { From b999b1a7c4c37326d830a40103be35d440584a06 Mon Sep 17 00:00:00 2001 From: ChibiMango <32205345+ChibiMango@users.noreply.github.com> Date: Tue, 26 Jul 2022 14:55:53 +0100 Subject: [PATCH 18/32] Update sonic_boom.json corrected title --- source/behavior/entities/format/behaviors/sonic_boom.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/behavior/entities/format/behaviors/sonic_boom.json b/source/behavior/entities/format/behaviors/sonic_boom.json index 3b353b53..47077205 100644 --- a/source/behavior/entities/format/behaviors/sonic_boom.json +++ b/source/behavior/entities/format/behaviors/sonic_boom.json @@ -2,7 +2,7 @@ "$id": "blockception.minecraft.behavior.entities.minecraft.behavior.sonic_boom", "additionalProperties": false, "type": "object", - "title": "Dig", + "title": "Sonic Boom", "description": "[EXPERIMENTAL BEHAVIOR] Plays the provided sounds and activates the `SONIC BOOM` actor flag during the specified duration", "properties": { "priority": { "$ref": "./types/priority.json" }, From 7e909ef713db2e51989ed2881051bfdd9bf78352 Mon Sep 17 00:00:00 2001 From: ChibiMango <32205345+ChibiMango@users.noreply.github.com> Date: Tue, 26 Jul 2022 14:57:03 +0100 Subject: [PATCH 19/32] Update stay_near_noteblock.json corrected title, capitalised titles & corrected default values --- .../format/behaviors/stay_near_noteblock.json | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/source/behavior/entities/format/behaviors/stay_near_noteblock.json b/source/behavior/entities/format/behaviors/stay_near_noteblock.json index 939bfb08..d630db6e 100644 --- a/source/behavior/entities/format/behaviors/stay_near_noteblock.json +++ b/source/behavior/entities/format/behaviors/stay_near_noteblock.json @@ -1,7 +1,7 @@ { "$id": "blockception.minecraft.behavior.entities.minecraft.behavior.stay_near_noteblock", "type": "object", - "title": "Barter", + "title": "Stay Near Noteblock", "description": "[EXPERIMENTAL BEHAVIOR] The entity will attempt to toss the items from its inventory to a nearby recently played noteblock.", "additionalProperties": false, "properties": { @@ -9,27 +9,27 @@ "$ref": "types/priority.json" }, "listen_time": { - "title": "listen time", + "title": "Listen Time", "type": "integer", "default": 0.0, "description": "Sets the time an entity should stay near a noteblock after hearing it." }, "speed": { - "title": "speed", + "title": "Speed", "type": "number", - "default": 1000000, + "default": 1.0, "description": "Sets the entity's speed when moving toward the block." }, "start_distance": { - "title": "start distance", + "title": "Start Distance", "type": "number", - "default": 10000000, + "default": 10.0, "description": "Sets the distance the entity needs to be away from the block to attempt to start the goal." }, "stop_distance": { - "title": "stop distance", + "title": "Stop Distance", "type": "number", - "default": 2000000, + "default": 2.0, "description": "Sets the distance from the block the entity will attempt to reach." } } From d57e88ee2fa28d27b47b6aefa4b0e55b10b2ce87 Mon Sep 17 00:00:00 2001 From: ChibiMango <32205345+ChibiMango@users.noreply.github.com> Date: Tue, 26 Jul 2022 14:57:24 +0100 Subject: [PATCH 20/32] Update summon_entity.json corrected title --- source/behavior/entities/format/behaviors/summon_entity.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/behavior/entities/format/behaviors/summon_entity.json b/source/behavior/entities/format/behaviors/summon_entity.json index c91bc481..a7a10c3c 100644 --- a/source/behavior/entities/format/behaviors/summon_entity.json +++ b/source/behavior/entities/format/behaviors/summon_entity.json @@ -1,7 +1,7 @@ { "$id": "blockception.minecraft.behavior.entities.minecraft.behavior.summon_entity", "description": "Allows the mob to attack the player by summoning other entities.", - "title": "Stay While Sitting", + "title": "Summon Entity", "type": "object", "additionalProperties": false, "required": [], From 4b24f74aa6da57d977be7826786f461489ee3b48 Mon Sep 17 00:00:00 2001 From: ChibiMango <32205345+ChibiMango@users.noreply.github.com> Date: Tue, 26 Jul 2022 14:57:37 +0100 Subject: [PATCH 21/32] Update swell.json corrected title --- source/behavior/entities/format/behaviors/swell.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/behavior/entities/format/behaviors/swell.json b/source/behavior/entities/format/behaviors/swell.json index 82c7107c..d364d2b9 100644 --- a/source/behavior/entities/format/behaviors/swell.json +++ b/source/behavior/entities/format/behaviors/swell.json @@ -1,7 +1,7 @@ { - "$id": "blockception.minecraft.behavior.entities.minecraft.behavior.stay_while_sitting", + "$id": "blockception.minecraft.behavior.entities.minecraft.behavior.swell", "description": "Allows the creeper to swell up when a player is nearby. It can only be used by Creepers.", - "title": "Stay While Sitting", + "title": "Swell", "type": "object", "additionalProperties": false, "required": [], From b21bf1293f026102e82f8c40c9b5bb05511f28ba Mon Sep 17 00:00:00 2001 From: ChibiMango <32205345+ChibiMango@users.noreply.github.com> Date: Tue, 26 Jul 2022 14:57:54 +0100 Subject: [PATCH 22/32] Update swim_wander.json corrected title --- source/behavior/entities/format/behaviors/swim_wander.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/behavior/entities/format/behaviors/swim_wander.json b/source/behavior/entities/format/behaviors/swim_wander.json index 537ba818..552a448c 100644 --- a/source/behavior/entities/format/behaviors/swim_wander.json +++ b/source/behavior/entities/format/behaviors/swim_wander.json @@ -2,7 +2,7 @@ "$id": "blockception.minecraft.behavior.entities.minecraft.behavior.swim_wander", "description": "Has the fish swim around when they can't pathfind", "type": "object", - "title": "Swim Idle", + "title": "Swim Wander", "additionalProperties": false, "required": [], "properties": { From 8737f5422ab0c0fa5a5819d74c04b6500a68e691 Mon Sep 17 00:00:00 2001 From: ChibiMango <32205345+ChibiMango@users.noreply.github.com> Date: Tue, 26 Jul 2022 14:58:34 +0100 Subject: [PATCH 23/32] Update anger_level.json corrected title --- source/behavior/entities/format/components/anger_level.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/behavior/entities/format/components/anger_level.json b/source/behavior/entities/format/components/anger_level.json index 19ea4a27..807347bb 100644 --- a/source/behavior/entities/format/components/anger_level.json +++ b/source/behavior/entities/format/components/anger_level.json @@ -1,7 +1,7 @@ { "$id": "blockception.minecraft.behavior.entities.minecraft.anger_level", "type": "object", - "title": "Angry", + "title": "Anger Level", "description": "Allows this entity to track anger towards a set of nuisances", "additionalProperties": false, "required": [], From f781cfad0a164f700154d4f4e78f583223eead4d Mon Sep 17 00:00:00 2001 From: ChibiMango <32205345+ChibiMango@users.noreply.github.com> Date: Tue, 26 Jul 2022 15:02:09 +0100 Subject: [PATCH 24/32] Update heartbeat.json corrected title --- source/behavior/entities/format/components/heartbeat.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/behavior/entities/format/components/heartbeat.json b/source/behavior/entities/format/components/heartbeat.json index 945a5650..b4d047c3 100644 --- a/source/behavior/entities/format/components/heartbeat.json +++ b/source/behavior/entities/format/components/heartbeat.json @@ -3,7 +3,7 @@ "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "type": "object", - "title": "Health", + "title": "Heartbeat", "additionalProperties": false, "required": [], "properties": { From 01358f924f45726526be18aba7ec3fa7c5ac4539 Mon Sep 17 00:00:00 2001 From: ChibiMango <32205345+ChibiMango@users.noreply.github.com> Date: Tue, 26 Jul 2022 15:02:52 +0100 Subject: [PATCH 25/32] Update horse.jump_strength.json corrected title --- .../entities/format/components/horse.jump_strength.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/behavior/entities/format/components/horse.jump_strength.json b/source/behavior/entities/format/components/horse.jump_strength.json index 89758dcb..48be2ae8 100644 --- a/source/behavior/entities/format/components/horse.jump_strength.json +++ b/source/behavior/entities/format/components/horse.jump_strength.json @@ -1,7 +1,7 @@ { "$id": "blockception.minecraft.behavior.entities.minecraft.horse.jump_strength", "type": "object", - "title": "Horse.jump Strength", + "title": "Horse Jump Strength", "additionalProperties": false, "description": "Allows this mob to jump higher when being ridden by a player", "$comment": "UNDOCUMENTED", From edc4ee41455993a4b3c1cc5ec33a78be59ce6cdb Mon Sep 17 00:00:00 2001 From: ChibiMango <32205345+ChibiMango@users.noreply.github.com> Date: Tue, 26 Jul 2022 15:03:54 +0100 Subject: [PATCH 26/32] Update jump.dynamic.json corrected title --- source/behavior/entities/format/components/jump.dynamic.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/behavior/entities/format/components/jump.dynamic.json b/source/behavior/entities/format/components/jump.dynamic.json index 46753086..f5552af1 100644 --- a/source/behavior/entities/format/components/jump.dynamic.json +++ b/source/behavior/entities/format/components/jump.dynamic.json @@ -2,7 +2,7 @@ "$id": "blockception.minecraft.behavior.entities.minecraft.jump.dynamic", "description": "Defines a dynamic type jump control that will change jump properties based on the speed modifier of the mob.", "type": "object", - "title": "Jump.dynamic", + "title": "Jump Dynamic", "additionalProperties": false, "required": [], "properties": {} From 386bf54a41721559fd73f7b939580a727a3dcc37 Mon Sep 17 00:00:00 2001 From: ChibiMango <32205345+ChibiMango@users.noreply.github.com> Date: Tue, 26 Jul 2022 15:03:57 +0100 Subject: [PATCH 27/32] Update jump.static.json corrected title --- source/behavior/entities/format/components/jump.static.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/behavior/entities/format/components/jump.static.json b/source/behavior/entities/format/components/jump.static.json index ae956056..1e3014a4 100644 --- a/source/behavior/entities/format/components/jump.static.json +++ b/source/behavior/entities/format/components/jump.static.json @@ -2,7 +2,7 @@ "$id": "blockception.minecraft.behavior.entities.minecraft.jump.static", "description": "Gives the entity the ability to jump.", "type": "object", - "title": "Jump.static", + "title": "Jump Static", "additionalProperties": false, "required": [], "properties": { From 99f367a2a619c04afeb4f2f8d57f6283f5356283 Mon Sep 17 00:00:00 2001 From: ChibiMango <32205345+ChibiMango@users.noreply.github.com> Date: Tue, 26 Jul 2022 15:05:04 +0100 Subject: [PATCH 28/32] updated movement edited titles --- .../entities/format/components/movement.amphibious.json | 2 +- source/behavior/entities/format/components/movement.basic.json | 2 +- source/behavior/entities/format/components/movement.fly.json | 2 +- .../behavior/entities/format/components/movement.generic.json | 2 +- source/behavior/entities/format/components/movement.glide.json | 2 +- source/behavior/entities/format/components/movement.hover.json | 2 +- source/behavior/entities/format/components/movement.jump.json | 2 +- source/behavior/entities/format/components/movement.skip.json | 2 +- source/behavior/entities/format/components/movement.sway.json | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/source/behavior/entities/format/components/movement.amphibious.json b/source/behavior/entities/format/components/movement.amphibious.json index 1768e2cc..f0072485 100644 --- a/source/behavior/entities/format/components/movement.amphibious.json +++ b/source/behavior/entities/format/components/movement.amphibious.json @@ -1,7 +1,7 @@ { "$id": "blockception.minecraft.behavior.entities.minecraft.movement.amphibious", "type": "object", - "title": "Movement.amphibious", + "title": "Movement Amphibious", "additionalProperties": false, "required": [], "properties": { diff --git a/source/behavior/entities/format/components/movement.basic.json b/source/behavior/entities/format/components/movement.basic.json index 25def120..eb2559bc 100644 --- a/source/behavior/entities/format/components/movement.basic.json +++ b/source/behavior/entities/format/components/movement.basic.json @@ -1,7 +1,7 @@ { "$id": "blockception.minecraft.behavior.entities.minecraft.movement.basic", "type": "object", - "title": "Movement.basic", + "title": "Movement Basic", "description": "defines the movement of an entity.", "additionalProperties": false, "required": [], diff --git a/source/behavior/entities/format/components/movement.fly.json b/source/behavior/entities/format/components/movement.fly.json index 7685a109..bb77da26 100644 --- a/source/behavior/entities/format/components/movement.fly.json +++ b/source/behavior/entities/format/components/movement.fly.json @@ -1,7 +1,7 @@ { "$id": "blockception.minecraft.behavior.entities.minecraft.movement.fly", "type": "object", - "title": "Movement.fly", + "title": "Movement Fly", "description": "This move control causes the mob to fly.", "additionalProperties": false, "required": [], diff --git a/source/behavior/entities/format/components/movement.generic.json b/source/behavior/entities/format/components/movement.generic.json index 8b41b943..1e7a6e82 100644 --- a/source/behavior/entities/format/components/movement.generic.json +++ b/source/behavior/entities/format/components/movement.generic.json @@ -2,7 +2,7 @@ "$id": "blockception.minecraft.behavior.entities.minecraft.movement.generic", "description": "This move control allows a mob to fly, swim, climb, etc.", "type": "object", - "title": "Movement.generic", + "title": "Movement Generic", "additionalProperties": false, "required": [], "properties": { diff --git a/source/behavior/entities/format/components/movement.glide.json b/source/behavior/entities/format/components/movement.glide.json index 77f9e1dd..4f9018cb 100644 --- a/source/behavior/entities/format/components/movement.glide.json +++ b/source/behavior/entities/format/components/movement.glide.json @@ -1,7 +1,7 @@ { "$id": "blockception.minecraft.behavior.entities.minecraft.movement.glide", "type": "object", - "title": "Movement.glide", + "title": "Movement Glide", "description": "This is the move control for a flying mob that has a gliding movement.", "additionalProperties": false, "required": [], diff --git a/source/behavior/entities/format/components/movement.hover.json b/source/behavior/entities/format/components/movement.hover.json index 5380f4f0..8fed7029 100644 --- a/source/behavior/entities/format/components/movement.hover.json +++ b/source/behavior/entities/format/components/movement.hover.json @@ -1,6 +1,6 @@ { "$id": "blockception.minecraft.behavior.entities.minecraft.movement.hover", - "title": "Movement.hover", + "title": "Movement Hover", "description": "This move control causes the mob to hover.", "type": "object", "additionalProperties": false, diff --git a/source/behavior/entities/format/components/movement.jump.json b/source/behavior/entities/format/components/movement.jump.json index 12de2063..e073232a 100644 --- a/source/behavior/entities/format/components/movement.jump.json +++ b/source/behavior/entities/format/components/movement.jump.json @@ -1,7 +1,7 @@ { "$id": "blockception.minecraft.behavior.entities.minecraft.movement.jump", "type": "object", - "title": "Movement.jump", + "title": "Movement Jump", "description": "Move control that causes the mob to jump as it moves with a specified delay between jumps.", "additionalProperties": false, "properties": { diff --git a/source/behavior/entities/format/components/movement.skip.json b/source/behavior/entities/format/components/movement.skip.json index e52d0534..7639e1cf 100644 --- a/source/behavior/entities/format/components/movement.skip.json +++ b/source/behavior/entities/format/components/movement.skip.json @@ -1,7 +1,7 @@ { "$id": "blockception.minecraft.behavior.entities.minecraft.movement.skip", "type": "object", - "title": "Movement.skip", + "title": "Movement Skip", "additionalProperties": false, "required": [], "description": "This move control causes the mob to hop as it moves.", diff --git a/source/behavior/entities/format/components/movement.sway.json b/source/behavior/entities/format/components/movement.sway.json index 1c620239..1c54aa29 100644 --- a/source/behavior/entities/format/components/movement.sway.json +++ b/source/behavior/entities/format/components/movement.sway.json @@ -1,6 +1,6 @@ { "$id": "blockception.minecraft.behavior.entities.minecraft.movement.sway", - "title": "Movement.sway", + "title": "Movement Sway", "description": "This move control causes the mob to sway side to side giving the impression it is swimming.", "type": "object", "additionalProperties": false, From ae333a8be05f9e48eec13344778f90f3eeb2439e Mon Sep 17 00:00:00 2001 From: ChibiMango <32205345+ChibiMango@users.noreply.github.com> Date: Tue, 26 Jul 2022 15:05:38 +0100 Subject: [PATCH 29/32] updated navigation edited titles --- .../behavior/entities/format/components/navigation.climb.json | 2 +- .../behavior/entities/format/components/navigation.float.json | 2 +- source/behavior/entities/format/components/navigation.fly.json | 2 +- .../behavior/entities/format/components/navigation.generic.json | 2 +- .../behavior/entities/format/components/navigation.hover.json | 2 +- source/behavior/entities/format/components/navigation.swim.json | 2 +- source/behavior/entities/format/components/navigation.walk.json | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/source/behavior/entities/format/components/navigation.climb.json b/source/behavior/entities/format/components/navigation.climb.json index fb44c91c..6bea834e 100644 --- a/source/behavior/entities/format/components/navigation.climb.json +++ b/source/behavior/entities/format/components/navigation.climb.json @@ -1,6 +1,6 @@ { "$id": "blockception.minecraft.behavior.entities.minecraft.navigation.climb", - "title": "Navigation.climb", + "title": "Navigation Climb", "description": "Allows this entity to generate paths that include vertical walls like the vanilla Spiders do.", "type": "object", "additionalProperties": false, diff --git a/source/behavior/entities/format/components/navigation.float.json b/source/behavior/entities/format/components/navigation.float.json index b860b52f..0190ed04 100644 --- a/source/behavior/entities/format/components/navigation.float.json +++ b/source/behavior/entities/format/components/navigation.float.json @@ -1,6 +1,6 @@ { "$id": "blockception.minecraft.behavior.entities.minecraft.navigation.float", - "title": "Navigation.float", + "title": "Navigation Float", "description": "Allows this entity to generate paths by flying around the air like the regular Ghast.", "type": "object", "additionalProperties": false, diff --git a/source/behavior/entities/format/components/navigation.fly.json b/source/behavior/entities/format/components/navigation.fly.json index 5505dfa7..0ca239dc 100644 --- a/source/behavior/entities/format/components/navigation.fly.json +++ b/source/behavior/entities/format/components/navigation.fly.json @@ -1,6 +1,6 @@ { "$id": "blockception.minecraft.behavior.entities.minecraft.navigation.fly", - "title": "Navigation.fly", + "title": "Navigation Fly", "description": "Allows this entity to generate paths in the air like the vanilla Bees do. Keeps them from falling out of the skies and doing predictive movement.", "type": "object", "additionalProperties": false, diff --git a/source/behavior/entities/format/components/navigation.generic.json b/source/behavior/entities/format/components/navigation.generic.json index b02db343..a5a46a0f 100644 --- a/source/behavior/entities/format/components/navigation.generic.json +++ b/source/behavior/entities/format/components/navigation.generic.json @@ -1,6 +1,6 @@ { "$id": "blockception.minecraft.behavior.entities.minecraft.navigation.generic", - "title": "Navigation.generic", + "title": "Navigation Generic", "description": "Allows this entity to generate paths by walking, swimming, flying and/or climbing around and jumping up and down a block.", "type": "object", "additionalProperties": false, diff --git a/source/behavior/entities/format/components/navigation.hover.json b/source/behavior/entities/format/components/navigation.hover.json index eca6d6b2..3e8cdffc 100644 --- a/source/behavior/entities/format/components/navigation.hover.json +++ b/source/behavior/entities/format/components/navigation.hover.json @@ -1,6 +1,6 @@ { "$id": "blockception.minecraft.behavior.entities.minecraft.navigation.hover", - "title": "Navigation.hover", + "title": "Navigation Hover", "description": "Allows this entity to generate paths in the air like the vanilla Bees do. Keeps them from falling out of the skies and doing predictive movement.", "type": "object", "additionalProperties": false, diff --git a/source/behavior/entities/format/components/navigation.swim.json b/source/behavior/entities/format/components/navigation.swim.json index 53400cab..f570f14f 100644 --- a/source/behavior/entities/format/components/navigation.swim.json +++ b/source/behavior/entities/format/components/navigation.swim.json @@ -1,6 +1,6 @@ { "$id": "blockception.minecraft.behavior.entities.minecraft.navigation.swim", - "title": "Navigation.swim", + "title": "Navigation Swim", "description": "Allows this entity to generate paths that include water.", "type": "object", "additionalProperties": false, diff --git a/source/behavior/entities/format/components/navigation.walk.json b/source/behavior/entities/format/components/navigation.walk.json index fa34a612..791a8ca7 100644 --- a/source/behavior/entities/format/components/navigation.walk.json +++ b/source/behavior/entities/format/components/navigation.walk.json @@ -1,6 +1,6 @@ { "$id": "blockception.minecraft.behavior.entities.minecraft.navigation.walk", - "title": "Navigation.walk", + "title": "Navigation Walk", "description": "Allows this entity to generate paths by walking around and jumping up and down a block like regular mobs.", "type": "object", "additionalProperties": false, From 18d94f0a566eeb8a085b177cd9248b08d0442009 Mon Sep 17 00:00:00 2001 From: ChibiMango <32205345+ChibiMango@users.noreply.github.com> Date: Tue, 26 Jul 2022 15:06:12 +0100 Subject: [PATCH 30/32] Update projectile.json corrected title and id --- source/behavior/entities/format/components/projectile.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/behavior/entities/format/components/projectile.json b/source/behavior/entities/format/components/projectile.json index 498cacac..550c573f 100644 --- a/source/behavior/entities/format/components/projectile.json +++ b/source/behavior/entities/format/components/projectile.json @@ -1,7 +1,7 @@ { - "$id": "blockception.minecraft.behavior.entities.minecraft.interact", + "$id": "blockception.minecraft.behavior.entities.minecraft.projectile", "type": "object", - "title": "Interact", + "title": "Projectile", "description": "Allows the entity to be a thrown entity.", "additionalProperties": false, "properties": { From e442cc6c6e5a24d9c6bc46bdb21be4a57b3ad170 Mon Sep 17 00:00:00 2001 From: ChibiMango <32205345+ChibiMango@users.noreply.github.com> Date: Tue, 26 Jul 2022 17:48:06 +0100 Subject: [PATCH 31/32] Update jump_to_block.json fixed typo --- source/behavior/entities/format/behaviors/jump_to_block.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/behavior/entities/format/behaviors/jump_to_block.json b/source/behavior/entities/format/behaviors/jump_to_block.json index 55d00585..981de377 100644 --- a/source/behavior/entities/format/behaviors/jump_to_block.json +++ b/source/behavior/entities/format/behaviors/jump_to_block.json @@ -1,7 +1,7 @@ { "$id": "blockception.minecraft.behavior.entities.minecraft.behavior.jump_to_block", "type": "object", - "title": "Jump To Blokc", + "title": "Jump To Block", "description": "Allows an entity to jump to another random block.", "additionalProperties": false, "required": [], From fb7c9471af6c8d11f8e7c5275c3dcf7cfb21f05f Mon Sep 17 00:00:00 2001 From: ChibiMango <32205345+ChibiMango@users.noreply.github.com> Date: Tue, 26 Jul 2022 17:55:15 +0100 Subject: [PATCH 32/32] Update roar.json fixed error with resolving conflicts --- source/behavior/entities/format/behaviors/roar.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/behavior/entities/format/behaviors/roar.json b/source/behavior/entities/format/behaviors/roar.json index 3bc24358..3814bfab 100644 --- a/source/behavior/entities/format/behaviors/roar.json +++ b/source/behavior/entities/format/behaviors/roar.json @@ -1,7 +1,7 @@ { "$id": "blockception.minecraft.behavior.entities.minecraft.behavior.roar", "additionalProperties": false, - "type": "object + "type": "object", "title": "Roar", "description": "[EXPERIMENTAL BEHAVIOR] Plays the provided sound and activates the `ROARING` actor flag during the specified duration", "properties": {