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] } ] }