From 5b237833b98347c3895a23fd47aed0ea096c0a03 Mon Sep 17 00:00:00 2001 From: ChibiMango <32205345+ChibiMango@users.noreply.github.com> Date: Wed, 13 Jul 2022 22:41:17 +0100 Subject: [PATCH] Update swoop_attack.json Updated descriptions Removed undocumented comments Updated example --- .../entities/format/behaviors/swoop_attack.json | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/source/behavior/entities/format/behaviors/swoop_attack.json b/source/behavior/entities/format/behaviors/swoop_attack.json index a3c1cce9..6d0bf2c9 100644 --- a/source/behavior/entities/format/behaviors/swoop_attack.json +++ b/source/behavior/entities/format/behaviors/swoop_attack.json @@ -9,21 +9,22 @@ "priority": { "$ref": "types/priority.json" }, "speed_multiplier": { "$ref": "types/speed_multiplier.json" }, "damage_reach": { - "type": "number", "title": "Damage Reach", - "description": "Added onto the base size of this mob to determine the maximum distance this mob can deal damage", - "$comment": "UNDOCUMENTED" + "type": "number", + "default": 0.2, + "description": "Added to the base size of the entity, to determine the target's maximum allowable distance, when trying to deal attack damage." }, "delay_range": { "$ref": "../types/range_number_type.json", "default": [[10.0, 20.0]], - "description": "Range of time in seconds between uses of this goal.", + "description": "Minimum and maximum cooldown time-range (in seconds) between each attempted swoop attack.", "title": "Delay Range" } }, "examples": [ { - "damage_reach": 0.0 + "damage_reach": 0.2, + "delay_range": [10.0, 20.0] } ] }