Update swoop_attack.json

Updated descriptions
Removed undocumented comments
Updated example
This commit is contained in:
ChibiMango
2022-07-13 22:41:17 +01:00
parent fa373d4d88
commit 5b237833b9

View File

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