From e742ec81c3b71a9679a2d56d9af0fff92b9fe0df Mon Sep 17 00:00:00 2001 From: August Johnson Date: Wed, 9 Oct 2024 11:18:33 -0500 Subject: [PATCH 01/11] Data type change first. --- ...tureactionattack_distance_unit_and_more.py | 39 + api_v2/models/creature.py | 29 +- .../mmenag/CreatureActionAttack.json | 3451 +++++++++++------ .../tdcs/CreatureActionAttack.json | 16 +- .../bfrd/CreatureActionAttack.json | 2211 +++++++---- .../ccdx/CreatureActionAttack.json | 2034 ++++++---- .../tob-2023/CreatureActionAttack.json | 2461 ++++++++---- .../tob/CreatureActionAttack.json | 2177 +++++++---- .../tob2/CreatureActionAttack.json | 2124 ++++++---- .../srd/CreatureActionAttack.json | 16 +- 10 files changed, 9452 insertions(+), 5106 deletions(-) create mode 100644 api_v2/migrations/0002_creatureactionattack_distance_unit_and_more.py diff --git a/api_v2/migrations/0002_creatureactionattack_distance_unit_and_more.py b/api_v2/migrations/0002_creatureactionattack_distance_unit_and_more.py new file mode 100644 index 00000000..2d18d849 --- /dev/null +++ b/api_v2/migrations/0002_creatureactionattack_distance_unit_and_more.py @@ -0,0 +1,39 @@ +# Generated by Django 5.1.1 on 2024-10-09 16:17 + +import django.core.validators +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('api_v2', '0001_initial'), + ] + + operations = [ + migrations.AddField( + model_name='creatureactionattack', + name='distance_unit', + field=models.CharField(blank=True, choices=[('feet', 'feet'), ('miles', 'miles')], help_text='What distance unit the relevant field uses.', max_length=20, null=True), + ), + migrations.AlterField( + model_name='creatureaction', + name='legendary_cost', + field=models.SmallIntegerField(blank=True, default=None, help_text='null if not legendary, else, the number of legendary actions this costs.', null=True), + ), + migrations.AlterField( + model_name='creatureactionattack', + name='long_range_ft', + field=models.FloatField(blank=True, help_text='Used to measure distance.', null=True, validators=[django.core.validators.MinValueValidator(0)]), + ), + migrations.AlterField( + model_name='creatureactionattack', + name='range_ft', + field=models.FloatField(blank=True, help_text='Used to measure distance.', null=True, validators=[django.core.validators.MinValueValidator(0)]), + ), + migrations.AlterField( + model_name='creatureactionattack', + name='reach_ft', + field=models.FloatField(blank=True, help_text='Used to measure distance.', null=True, validators=[django.core.validators.MinValueValidator(0)]), + ), + ] diff --git a/api_v2/models/creature.py b/api_v2/models/creature.py index 526cfa77..9d99e238 100644 --- a/api_v2/models/creature.py +++ b/api_v2/models/creature.py @@ -8,6 +8,7 @@ from .abstracts import HasDescription, HasName, Modification from .abstracts import damage_die_count_field, damage_die_type_field from .abstracts import damage_bonus_field, key_field +from .abstracts import distance_field, distance_unit_field from .object import Object from .condition import Condition from .damagetype import DamageType @@ -202,7 +203,7 @@ class CreatureAction(HasName, HasDescription): blank=True, null=True, default=None, - help_text='0 if not legendary, else, the number of legendary actions this costs.' + help_text='null if not legendary, else, the number of legendary actions this costs.' ) @@ -234,26 +235,16 @@ class CreatureActionAttack(HasName): help_text='Attack roll modifier.' ) - reach_ft = models.SmallIntegerField( - blank=True, - null=True, - validators=[MinValueValidator(0)], - help_text='Reach for melee attacks, in feet.' - ) + reach_ft = distance_field() + range_ft = distance_field() + long_range_ft = distance_field() + distance_unit = distance_unit_field() - range_ft = models.SmallIntegerField( - blank=True, - null=True, - validators=[MinValueValidator(0)], - help_text='Normal range for ranged attacks, in feet.' - ) + def get_distance_unit(self): + if self.distance_unit is None: + return self.document.distance_unit + return self.distance_unit - long_range_ft = models.SmallIntegerField( - blank=True, - null=True, - validators=[MinValueValidator(0)], - help_text='Long range for ranged attacks, in feet.' - ) target_creature_only = models.BooleanField( help_text='If an attack can target creatures only and not objects.' diff --git a/data/v2/en-publishing/mmenag/CreatureActionAttack.json b/data/v2/en-publishing/mmenag/CreatureActionAttack.json index 26cbf631..48874466 100644 --- a/data/v2/en-publishing/mmenag/CreatureActionAttack.json +++ b/data/v2/en-publishing/mmenag/CreatureActionAttack.json @@ -7,9 +7,10 @@ "parent": "mmenag_aboleth-thrall_poison-ink-knife", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -29,9 +30,10 @@ "parent": "mmenag_aboleth_tentacle", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6", @@ -51,9 +53,10 @@ "parent": "mmenag_abominable-snowman_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -73,9 +76,10 @@ "parent": "mmenag_accursed-guardian-naga_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -96,8 +100,9 @@ "attack_type": "WEAPON", "to_hit_mod": 8, "reach_ft": null, - "range_ft": 20, - "long_range_ft": 60, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 10, "damage_die_type": "D6) poison", @@ -117,9 +122,10 @@ "parent": "mmenag_accursed-spirit-naga_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -139,9 +145,10 @@ "parent": "mmenag_acolyte_club", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4) blu", @@ -161,9 +168,10 @@ "parent": "mmenag_adult-amethyst-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -183,9 +191,10 @@ "parent": "mmenag_adult-amethyst-dragon_claws", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -205,9 +214,10 @@ "parent": "mmenag_adult-black-dragon-lich_bite", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -227,9 +237,10 @@ "parent": "mmenag_adult-black-dragon-lich_claw", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -249,9 +260,10 @@ "parent": "mmenag_adult-black-dragon-lich_tail", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -271,9 +283,10 @@ "parent": "mmenag_adult-black-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -293,9 +306,10 @@ "parent": "mmenag_adult-black-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -315,9 +329,10 @@ "parent": "mmenag_adult-black-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -337,9 +352,10 @@ "parent": "mmenag_adult-blue-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -359,9 +375,10 @@ "parent": "mmenag_adult-blue-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -381,9 +398,10 @@ "parent": "mmenag_adult-blue-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -403,9 +421,10 @@ "parent": "mmenag_adult-brass-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -425,9 +444,10 @@ "parent": "mmenag_adult-brass-dragon_claws", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -447,9 +467,10 @@ "parent": "mmenag_adult-brass-dragon_staff", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -469,9 +490,10 @@ "parent": "mmenag_adult-brass-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -491,9 +513,10 @@ "parent": "mmenag_adult-bronze-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -513,9 +536,10 @@ "parent": "mmenag_adult-bronze-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -535,9 +559,10 @@ "parent": "mmenag_adult-bronze-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -557,9 +582,10 @@ "parent": "mmenag_adult-bronze-dragon_trident", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -579,9 +605,10 @@ "parent": "mmenag_adult-copper-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -601,9 +628,10 @@ "parent": "mmenag_adult-copper-dragon_claws", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -623,9 +651,10 @@ "parent": "mmenag_adult-copper-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -645,9 +674,10 @@ "parent": "mmenag_adult-copper-dragon_war-pick", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -667,9 +697,10 @@ "parent": "mmenag_adult-earth-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D10", @@ -689,9 +720,10 @@ "parent": "mmenag_adult-earth-dragon_slam", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -711,9 +743,10 @@ "parent": "mmenag_adult-emerald-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -733,9 +766,10 @@ "parent": "mmenag_adult-emerald-dragon_claws", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -755,9 +789,10 @@ "parent": "mmenag_adult-gold-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 18, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D10", @@ -777,9 +812,10 @@ "parent": "mmenag_adult-gold-dragon_claws", "attack_type": "WEAPON", "to_hit_mod": 18, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D8", @@ -799,9 +835,10 @@ "parent": "mmenag_adult-gold-dragon_greatsword", "attack_type": "WEAPON", "to_hit_mod": 18, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -821,9 +858,10 @@ "parent": "mmenag_adult-gold-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 18, - "reach_ft": 20, + "reach_ft": 20.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -843,9 +881,10 @@ "parent": "mmenag_adult-green-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -865,9 +904,10 @@ "parent": "mmenag_adult-green-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -887,9 +927,10 @@ "parent": "mmenag_adult-green-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -909,9 +950,10 @@ "parent": "mmenag_adult-red-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -931,9 +973,10 @@ "parent": "mmenag_adult-red-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -953,9 +996,10 @@ "parent": "mmenag_adult-red-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -975,9 +1019,10 @@ "parent": "mmenag_adult-river-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -997,9 +1042,10 @@ "parent": "mmenag_adult-river-dragon_claws", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -1019,9 +1065,10 @@ "parent": "mmenag_adult-sapphire-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -1041,9 +1088,10 @@ "parent": "mmenag_adult-sapphire-dragon_claws", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -1063,9 +1111,10 @@ "parent": "mmenag_adult-shadow-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -1085,9 +1134,10 @@ "parent": "mmenag_adult-shadow-dragon_claws", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -1107,9 +1157,10 @@ "parent": "mmenag_adult-silver-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -1129,9 +1180,10 @@ "parent": "mmenag_adult-silver-dragon_claws", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -1151,9 +1203,10 @@ "parent": "mmenag_adult-silver-dragon_rapier", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -1173,9 +1226,10 @@ "parent": "mmenag_adult-silver-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -1195,9 +1249,10 @@ "parent": "mmenag_adult-white-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -1217,9 +1272,10 @@ "parent": "mmenag_adult-white-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -1239,9 +1295,10 @@ "parent": "mmenag_adult-white-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -1261,9 +1318,10 @@ "parent": "mmenag_air-elemental_slam", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -1283,9 +1341,10 @@ "parent": "mmenag_aklea_maul", "attack_type": "WEAPON", "to_hit_mod": 17, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 8, "damage_die_type": "D6", @@ -1305,9 +1364,10 @@ "parent": "mmenag_alchemist_dagger", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -1327,9 +1387,10 @@ "parent": "mmenag_allosaurus_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -1349,9 +1410,10 @@ "parent": "mmenag_alpha-werewolf_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -1371,9 +1433,10 @@ "parent": "mmenag_alpha-werewolf_claw", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -1393,9 +1456,10 @@ "parent": "mmenag_alpha-werewolf_greatclub", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -1415,9 +1479,10 @@ "parent": "mmenag_amethyst-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -1437,9 +1502,10 @@ "parent": "mmenag_ancient-aboleth_tentacle", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6", @@ -1459,9 +1525,10 @@ "parent": "mmenag_ancient-amethyst-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D10", @@ -1481,9 +1548,10 @@ "parent": "mmenag_ancient-amethyst-dragon_claws", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -1503,9 +1571,10 @@ "parent": "mmenag_ancient-black-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D10", @@ -1525,9 +1594,10 @@ "parent": "mmenag_ancient-black-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -1547,9 +1617,10 @@ "parent": "mmenag_ancient-black-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 20, + "reach_ft": 20.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -1569,9 +1640,10 @@ "parent": "mmenag_ancient-blue-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 17, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D10", @@ -1591,9 +1663,10 @@ "parent": "mmenag_ancient-blue-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 17, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -1613,9 +1686,10 @@ "parent": "mmenag_ancient-blue-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 17, - "reach_ft": 20, + "reach_ft": 20.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -1635,9 +1709,10 @@ "parent": "mmenag_ancient-brass-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D10", @@ -1657,9 +1732,10 @@ "parent": "mmenag_ancient-brass-dragon_claws", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -1679,9 +1755,10 @@ "parent": "mmenag_ancient-brass-dragon_staff", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -1701,9 +1778,10 @@ "parent": "mmenag_ancient-brass-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 20, + "reach_ft": 20.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -1723,9 +1801,10 @@ "parent": "mmenag_ancient-bronze-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 16, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D10", @@ -1745,9 +1824,10 @@ "parent": "mmenag_ancient-bronze-dragon_claws", "attack_type": "WEAPON", "to_hit_mod": 16, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -1767,9 +1847,10 @@ "parent": "mmenag_ancient-bronze-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 16, - "reach_ft": 20, + "reach_ft": 20.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -1789,9 +1870,10 @@ "parent": "mmenag_ancient-bronze-dragon_trident", "attack_type": "WEAPON", "to_hit_mod": 16, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -1811,9 +1893,10 @@ "parent": "mmenag_ancient-copper-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D10", @@ -1833,9 +1916,10 @@ "parent": "mmenag_ancient-copper-dragon_claws", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -1855,9 +1939,10 @@ "parent": "mmenag_ancient-copper-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 20, + "reach_ft": 20.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -1877,9 +1962,10 @@ "parent": "mmenag_ancient-copper-dragon_war-pick", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -1899,9 +1985,10 @@ "parent": "mmenag_ancient-earth-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, "damage_die_type": "D10", @@ -1921,9 +2008,10 @@ "parent": "mmenag_ancient-earth-dragon_slam", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -1943,9 +2031,10 @@ "parent": "mmenag_ancient-emerald-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D10", @@ -1965,9 +2054,10 @@ "parent": "mmenag_ancient-emerald-dragon_claws", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -1987,9 +2077,10 @@ "parent": "mmenag_ancient-gold-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 18, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D10", @@ -2009,9 +2100,10 @@ "parent": "mmenag_ancient-gold-dragon_claws", "attack_type": "WEAPON", "to_hit_mod": 18, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D8", @@ -2031,9 +2123,10 @@ "parent": "mmenag_ancient-gold-dragon_greatsword", "attack_type": "WEAPON", "to_hit_mod": 18, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -2053,9 +2146,10 @@ "parent": "mmenag_ancient-gold-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 18, - "reach_ft": 20, + "reach_ft": 20.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -2075,9 +2169,10 @@ "parent": "mmenag_ancient-green-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D10", @@ -2097,9 +2192,10 @@ "parent": "mmenag_ancient-green-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -2119,9 +2215,10 @@ "parent": "mmenag_ancient-green-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 20, + "reach_ft": 20.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -2141,9 +2238,10 @@ "parent": "mmenag_ancient-red-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 18, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D10", @@ -2163,9 +2261,10 @@ "parent": "mmenag_ancient-red-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 18, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D8", @@ -2185,9 +2284,10 @@ "parent": "mmenag_ancient-red-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 18, - "reach_ft": 20, + "reach_ft": 20.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -2207,9 +2307,10 @@ "parent": "mmenag_ancient-river-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D10", @@ -2229,9 +2330,10 @@ "parent": "mmenag_ancient-river-dragon_claws", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -2251,9 +2353,10 @@ "parent": "mmenag_ancient-sapphire-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D10", @@ -2273,9 +2376,10 @@ "parent": "mmenag_ancient-sapphire-dragon_claws", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -2295,9 +2399,10 @@ "parent": "mmenag_ancient-shadow-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D10", @@ -2317,9 +2422,10 @@ "parent": "mmenag_ancient-shadow-dragon_claws", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -2339,9 +2445,10 @@ "parent": "mmenag_ancient-silver-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 17, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D10", @@ -2361,9 +2468,10 @@ "parent": "mmenag_ancient-silver-dragon_claws", "attack_type": "WEAPON", "to_hit_mod": 17, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -2383,9 +2491,10 @@ "parent": "mmenag_ancient-silver-dragon_rapier", "attack_type": "WEAPON", "to_hit_mod": 17, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -2405,9 +2514,10 @@ "parent": "mmenag_ancient-silver-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 17, - "reach_ft": 20, + "reach_ft": 20.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -2427,9 +2537,10 @@ "parent": "mmenag_ancient-white-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D10", @@ -2449,9 +2560,10 @@ "parent": "mmenag_ancient-white-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -2471,9 +2583,10 @@ "parent": "mmenag_ancient-white-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 20, + "reach_ft": 20.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -2493,9 +2606,10 @@ "parent": "mmenag_animated-armor_weapon", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -2515,9 +2629,10 @@ "parent": "mmenag_ankheg-queen_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -2537,9 +2652,10 @@ "parent": "mmenag_ankheg-queen_claws", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -2560,8 +2676,9 @@ "attack_type": "WEAPON", "to_hit_mod": 3, "reach_ft": null, - "range_ft": 30, + "range_ft": 30.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8) aci", @@ -2581,9 +2698,10 @@ "parent": "mmenag_ankheg-spawn_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -2603,9 +2721,10 @@ "parent": "mmenag_ankheg-spawn_claws", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -2625,9 +2744,10 @@ "parent": "mmenag_ankheg_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -2647,9 +2767,10 @@ "parent": "mmenag_ankheg_claws", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -2669,9 +2790,10 @@ "parent": "mmenag_ankylosaurus_tail", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -2691,9 +2813,10 @@ "parent": "mmenag_ape_fists", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -2714,8 +2837,9 @@ "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": null, - "range_ft": 25, - "long_range_ft": 50, + "range_ft": 25.0, + "long_range_ft": 50.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -2735,9 +2859,10 @@ "parent": "mmenag_apprentice-mage_dagger", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4) piercing", @@ -2758,8 +2883,9 @@ "attack_type": "SPELL", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 120, + "range_ft": 120.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10) fire", @@ -2780,8 +2906,9 @@ "attack_type": "WEAPON", "to_hit_mod": 11, "reach_ft": null, - "range_ft": 150, - "long_range_ft": 600, + "range_ft": 150.0, + "long_range_ft": 600.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -2802,8 +2929,9 @@ "attack_type": "SPELL", "to_hit_mod": 11, "reach_ft": null, - "range_ft": 120, + "range_ft": 120.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D10) fire", @@ -2823,9 +2951,10 @@ "parent": "mmenag_arcane-blademaster_longsword", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -2845,9 +2974,10 @@ "parent": "mmenag_arcane-blademaster_shocking-grasp", "attack_type": "SPELL", "to_hit_mod": 11, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D8) lightning", @@ -2868,8 +2998,9 @@ "attack_type": "WEAPON", "to_hit_mod": 9, "reach_ft": null, - "range_ft": 150, - "long_range_ft": 600, + "range_ft": 150.0, + "long_range_ft": 600.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -2889,9 +3020,10 @@ "parent": "mmenag_archfey_glittering-scimitar", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -2911,9 +3043,10 @@ "parent": "mmenag_archmage_dagger", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -2934,8 +3067,9 @@ "attack_type": "SPELL", "to_hit_mod": 9, "reach_ft": null, - "range_ft": 120, + "range_ft": 120.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D10) fire", @@ -2955,9 +3089,10 @@ "parent": "mmenag_archpriest_mace", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -2977,9 +3112,10 @@ "parent": "mmenag_ascetic-grandmaster_unarmed-strike", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -3000,8 +3136,9 @@ "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": null, - "range_ft": 30, - "long_range_ft": 120, + "range_ft": 30.0, + "long_range_ft": 120.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -3021,9 +3158,10 @@ "parent": "mmenag_assassin_shortsword", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -3043,9 +3181,10 @@ "parent": "mmenag_awakened-shrub_rake", "attack_type": "WEAPON", "to_hit_mod": 1, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": null, "damage_die_type": null, @@ -3065,9 +3204,10 @@ "parent": "mmenag_awakened-tree_slam", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -3087,9 +3227,10 @@ "parent": "mmenag_axe-beak_beak", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -3109,9 +3250,10 @@ "parent": "mmenag_azer-forgemaster_returning-hammer", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": 20, + "reach_ft": 5.0, + "range_ft": 20.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -3131,9 +3273,10 @@ "parent": "mmenag_azer_hammer", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -3154,8 +3297,9 @@ "attack_type": "SPELL", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 60, + "range_ft": 60.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8) fire", @@ -3175,9 +3319,10 @@ "parent": "mmenag_baboon_bite", "attack_type": "WEAPON", "to_hit_mod": 1, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": null, "damage_die_type": null, @@ -3197,9 +3342,10 @@ "parent": "mmenag_badger_bite", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": null, "damage_die_type": null, @@ -3219,9 +3365,10 @@ "parent": "mmenag_balor-general_fire-whip", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 45, + "reach_ft": 45.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -3241,9 +3388,10 @@ "parent": "mmenag_balor-general_lightning-sword", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -3263,9 +3411,10 @@ "parent": "mmenag_balor_fire-whip", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 45, + "reach_ft": 45.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -3285,9 +3434,10 @@ "parent": "mmenag_balor_lightning-sword", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -3307,9 +3457,10 @@ "parent": "mmenag_bandit-captain_dagger", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": 20, + "reach_ft": 5.0, + "range_ft": 20.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -3329,9 +3480,10 @@ "parent": "mmenag_bandit-captain_scimitar", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -3352,8 +3504,9 @@ "attack_type": "WEAPON", "to_hit_mod": 2, "reach_ft": null, - "range_ft": 80, - "long_range_ft": 320, + "range_ft": 80.0, + "long_range_ft": 320.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8) piercing", @@ -3373,9 +3526,10 @@ "parent": "mmenag_bandit_scimitar", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -3395,9 +3549,10 @@ "parent": "mmenag_barbed-devil_claws", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -3418,8 +3573,9 @@ "attack_type": "SPELL", "to_hit_mod": 6, "reach_ft": null, - "range_ft": 150, + "range_ft": 150.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6) fire", @@ -3439,9 +3595,10 @@ "parent": "mmenag_barbed-devil_tail", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -3461,9 +3618,10 @@ "parent": "mmenag_basilisk_venomous-bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -3483,9 +3641,10 @@ "parent": "mmenag_bat_bite", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": null, "damage_die_type": null, @@ -3505,9 +3664,10 @@ "parent": "mmenag_bearded-devil_beard", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -3527,9 +3687,10 @@ "parent": "mmenag_bearded-devil_glaive", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -3549,9 +3710,10 @@ "parent": "mmenag_behir-magus_bite", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D12", @@ -3571,9 +3733,10 @@ "parent": "mmenag_behir-magus_constrict", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -3593,9 +3756,10 @@ "parent": "mmenag_behir_bite", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D12", @@ -3615,9 +3779,10 @@ "parent": "mmenag_behir_constrict", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -3637,9 +3802,10 @@ "parent": "mmenag_berserker_greataxe", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D12", @@ -3659,9 +3825,10 @@ "parent": "mmenag_berserker_handaxe", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -3681,9 +3848,10 @@ "parent": "mmenag_black-bear_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -3703,9 +3871,10 @@ "parent": "mmenag_black-bear_claws", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -3725,9 +3894,10 @@ "parent": "mmenag_black-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -3747,9 +3917,10 @@ "parent": "mmenag_black-pudding_pseudopod", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -3769,9 +3940,10 @@ "parent": "mmenag_blackguard_greatsword", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -3792,8 +3964,9 @@ "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 100, - "long_range_ft": 400, + "range_ft": 100.0, + "long_range_ft": 400.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -3813,9 +3986,10 @@ "parent": "mmenag_blackguard_lance", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D12", @@ -3835,9 +4009,10 @@ "parent": "mmenag_blink-dog_bite", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -3857,9 +4032,10 @@ "parent": "mmenag_blood-hawk_beak", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -3879,9 +4055,10 @@ "parent": "mmenag_blue-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -3901,9 +4078,10 @@ "parent": "mmenag_boar_tusk", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -3923,9 +4101,10 @@ "parent": "mmenag_boggard-bravo_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -3945,9 +4124,10 @@ "parent": "mmenag_boggard-bravo_spear", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -3967,9 +4147,10 @@ "parent": "mmenag_boggard-sovereign_parting-bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -3989,9 +4170,10 @@ "parent": "mmenag_boggard_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -4011,9 +4193,10 @@ "parent": "mmenag_boggard_spear", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -4034,8 +4217,9 @@ "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": null, - "range_ft": 100, - "long_range_ft": 400, + "range_ft": 100.0, + "long_range_ft": 400.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -4056,8 +4240,9 @@ "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": null, - "range_ft": 80, - "long_range_ft": 320, + "range_ft": 80.0, + "long_range_ft": 320.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -4077,9 +4262,10 @@ "parent": "mmenag_bone-devil_barbed-spear", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 10.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -4099,9 +4285,10 @@ "parent": "mmenag_bone-devil_claw", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D12", @@ -4121,9 +4308,10 @@ "parent": "mmenag_brass-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -4143,9 +4331,10 @@ "parent": "mmenag_bronze-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -4165,9 +4354,10 @@ "parent": "mmenag_brown-bear_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -4187,9 +4377,10 @@ "parent": "mmenag_brown-bear_claws", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -4209,9 +4400,10 @@ "parent": "mmenag_bugbear-chief_javelin", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": 30, - "long_range_ft": 120, + "reach_ft": 5.0, + "range_ft": 30.0, + "long_range_ft": 120.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -4231,9 +4423,10 @@ "parent": "mmenag_bugbear-chief_maul", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -4253,9 +4446,10 @@ "parent": "mmenag_bugbear_javelin", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": 30, - "long_range_ft": 120, + "reach_ft": 5.0, + "range_ft": 30.0, + "long_range_ft": 120.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -4275,9 +4469,10 @@ "parent": "mmenag_bugbear_maul", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -4297,9 +4492,10 @@ "parent": "mmenag_bugbear_strangle", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -4319,9 +4515,10 @@ "parent": "mmenag_bulette_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D12", @@ -4341,9 +4538,10 @@ "parent": "mmenag_bunyip_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D12", @@ -4363,9 +4561,10 @@ "parent": "mmenag_bunyip_slam", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -4385,9 +4584,10 @@ "parent": "mmenag_cambion_black-iron-blade", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -4408,8 +4608,9 @@ "attack_type": "SPELL", "to_hit_mod": 7, "reach_ft": null, - "range_ft": 60, + "range_ft": 60.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8) fire", @@ -4429,9 +4630,10 @@ "parent": "mmenag_camel_bite", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4) blu", @@ -4451,9 +4653,10 @@ "parent": "mmenag_cat_claws", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": null, "damage_die_type": null, @@ -4473,9 +4676,10 @@ "parent": "mmenag_cave-bear_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -4495,9 +4699,10 @@ "parent": "mmenag_cave-bear_claws", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -4517,9 +4722,10 @@ "parent": "mmenag_cave-ogre_greatclub", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -4539,9 +4745,10 @@ "parent": "mmenag_cave-ogre_javelin", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": 30, - "long_range_ft": 120, + "reach_ft": 5.0, + "range_ft": 30.0, + "long_range_ft": 120.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -4561,9 +4768,10 @@ "parent": "mmenag_cave-ogre_sweeping-strike", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -4583,9 +4791,10 @@ "parent": "mmenag_cave-troll_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -4605,9 +4814,10 @@ "parent": "mmenag_cave-troll_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -4628,8 +4838,9 @@ "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": null, - "range_ft": 20, - "long_range_ft": 60, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -4649,9 +4860,10 @@ "parent": "mmenag_centaur_hooves", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -4671,9 +4883,10 @@ "parent": "mmenag_centaur_pike", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -4694,8 +4907,9 @@ "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": null, - "range_ft": 80, - "long_range_ft": 320, + "range_ft": 80.0, + "long_range_ft": 320.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -4715,9 +4929,10 @@ "parent": "mmenag_chain-devil_chain", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -4737,9 +4952,10 @@ "parent": "mmenag_champion-warrior_greataxe", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D12", @@ -4759,9 +4975,10 @@ "parent": "mmenag_chimera_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -4781,9 +4998,10 @@ "parent": "mmenag_chimera_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -4803,9 +5021,10 @@ "parent": "mmenag_chimera_headbutt", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -4825,9 +5044,10 @@ "parent": "mmenag_chuul_pincer", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -4847,9 +5067,10 @@ "parent": "mmenag_clay-guardian_slam", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -4869,9 +5090,10 @@ "parent": "mmenag_cloaker_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -4891,9 +5113,10 @@ "parent": "mmenag_cloaker_tail", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -4913,9 +5136,10 @@ "parent": "mmenag_clockwork-sentinel_halberd", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -4935,9 +5159,10 @@ "parent": "mmenag_cloud-giant-noble_glaive", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -4958,8 +5183,9 @@ "attack_type": "WEAPON", "to_hit_mod": 12, "reach_ft": null, - "range_ft": 60, - "long_range_ft": 240, + "range_ft": 60.0, + "long_range_ft": 240.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 9, "damage_die_type": "D6", @@ -4979,9 +5205,10 @@ "parent": "mmenag_cloud-giant_glaive", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -5002,8 +5229,9 @@ "attack_type": "WEAPON", "to_hit_mod": 12, "reach_ft": null, - "range_ft": 60, - "long_range_ft": 240, + "range_ft": 60.0, + "long_range_ft": 240.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 9, "damage_die_type": "D6", @@ -5023,9 +5251,10 @@ "parent": "mmenag_cockatrice_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -5045,9 +5274,10 @@ "parent": "mmenag_commoner-mob_clubs", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D4) blu", @@ -5068,8 +5298,9 @@ "attack_type": "WEAPON", "to_hit_mod": 2, "reach_ft": null, - "range_ft": 10, - "long_range_ft": 30, + "range_ft": 10.0, + "long_range_ft": 30.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D4) blu", @@ -5089,9 +5320,10 @@ "parent": "mmenag_commoner_club", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4) blu", @@ -5112,8 +5344,9 @@ "attack_type": "WEAPON", "to_hit_mod": 2, "reach_ft": null, - "range_ft": 10, - "long_range_ft": 30, + "range_ft": 10.0, + "long_range_ft": 30.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4) blu", @@ -5133,9 +5366,10 @@ "parent": "mmenag_constrictor-snake_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -5155,9 +5389,10 @@ "parent": "mmenag_constrictor-snake_constrict", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -5177,9 +5412,10 @@ "parent": "mmenag_copper-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -5199,9 +5435,10 @@ "parent": "mmenag_coralfish_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -5221,9 +5458,10 @@ "parent": "mmenag_corrupted-unicorn_hooves", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -5243,9 +5481,10 @@ "parent": "mmenag_corrupted-unicorn_horn", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -5265,9 +5504,10 @@ "parent": "mmenag_cosmopolitan-alchemist_dagger", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -5287,9 +5527,10 @@ "parent": "mmenag_couatl_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -5309,9 +5550,10 @@ "parent": "mmenag_couatl_constrict", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -5331,9 +5573,10 @@ "parent": "mmenag_coven-green-hag_claws", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -5353,9 +5596,10 @@ "parent": "mmenag_coven-night-hag_claws", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -5375,9 +5619,10 @@ "parent": "mmenag_coven-night-hag_sleep-touch", "attack_type": "SPELL", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": null, "damage_die_type": null, @@ -5397,9 +5642,10 @@ "parent": "mmenag_coven-sea-hag_claws", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -5419,9 +5665,10 @@ "parent": "mmenag_coven-winter-hag_claws", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -5442,8 +5689,9 @@ "attack_type": "SPELL", "to_hit_mod": 7, "reach_ft": null, - "range_ft": 60, + "range_ft": 60.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -5463,9 +5711,10 @@ "parent": "mmenag_crab_claws", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": null, "damage_die_type": null, @@ -5485,9 +5734,10 @@ "parent": "mmenag_crime-boss_dagger", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -5507,9 +5757,10 @@ "parent": "mmenag_crime-boss_shortsword", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -5529,9 +5780,10 @@ "parent": "mmenag_crocodile_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -5551,9 +5803,10 @@ "parent": "mmenag_crusher_ram", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D8", @@ -5573,9 +5826,10 @@ "parent": "mmenag_cult-fanatic_dagger", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -5595,9 +5849,10 @@ "parent": "mmenag_cult-fanatic_inflict-wounds", "attack_type": "SPELL", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10) necrotic", @@ -5617,9 +5872,10 @@ "parent": "mmenag_cultist_dagger", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -5640,8 +5896,9 @@ "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 30, - "long_range_ft": 120, + "range_ft": 30.0, + "long_range_ft": 120.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -5661,9 +5918,10 @@ "parent": "mmenag_cutthroat_shortsword", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -5683,9 +5941,10 @@ "parent": "mmenag_cyclops-myrmidon_maul", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, "damage_die_type": "D6", @@ -5706,8 +5965,9 @@ "attack_type": "WEAPON", "to_hit_mod": 8, "reach_ft": null, - "range_ft": 120, + "range_ft": 120.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, "damage_die_type": "D10", @@ -5727,9 +5987,10 @@ "parent": "mmenag_cyclops_club", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -5750,8 +6011,9 @@ "attack_type": "WEAPON", "to_hit_mod": 8, "reach_ft": null, - "range_ft": 120, + "range_ft": 120.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, "damage_die_type": "D10", @@ -5771,9 +6033,10 @@ "parent": "mmenag_darkmantle_crush", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -5793,9 +6056,10 @@ "parent": "mmenag_dead-mans-fingers_tendril-ethereal-or-material-plane", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 20, + "reach_ft": 20.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -5815,9 +6079,10 @@ "parent": "mmenag_death-dog_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -5838,8 +6103,9 @@ "attack_type": "WEAPON", "to_hit_mod": 3, "reach_ft": null, - "range_ft": 100, - "long_range_ft": 400, + "range_ft": 100.0, + "long_range_ft": 400.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -5859,9 +6125,10 @@ "parent": "mmenag_deep-dwarf-soldier_war-pick", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -5881,9 +6148,10 @@ "parent": "mmenag_deep-gnome-scout_war-pick", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -5903,9 +6171,10 @@ "parent": "mmenag_deer_bite", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": null, "damage_die_type": null, @@ -5925,9 +6194,10 @@ "parent": "mmenag_deer_headbutt", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4) piercing", @@ -5947,9 +6217,10 @@ "parent": "mmenag_deva_celestial-hammer", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -5970,8 +6241,9 @@ "attack_type": "SPELL", "to_hit_mod": 8, "reach_ft": null, - "range_ft": 60, + "range_ft": 60.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, "damage_die_type": "D8) ra", @@ -5991,9 +6263,10 @@ "parent": "mmenag_diplodocus_stomp", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6", @@ -6013,9 +6286,10 @@ "parent": "mmenag_diplodocus_tail", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -6035,9 +6309,10 @@ "parent": "mmenag_dire-centipede_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -6057,9 +6332,10 @@ "parent": "mmenag_dire-tyrannosaurus-rex_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D12", @@ -6079,9 +6355,10 @@ "parent": "mmenag_dire-tyrannosaurus-rex_tail", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -6101,9 +6378,10 @@ "parent": "mmenag_dire-wolf_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -6123,9 +6401,10 @@ "parent": "mmenag_diseased-giant-rat_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -6145,9 +6424,10 @@ "parent": "mmenag_divi-noble_crushing-hand", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -6167,9 +6447,10 @@ "parent": "mmenag_divi-noble_stone-club", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D8", @@ -6189,9 +6470,10 @@ "parent": "mmenag_divi_crushing-hand", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -6211,9 +6493,10 @@ "parent": "mmenag_divi_stone-club", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D8", @@ -6234,8 +6517,9 @@ "attack_type": "SPELL", "to_hit_mod": 9, "reach_ft": null, - "range_ft": 90, + "range_ft": 90.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 10, "damage_die_type": "D6) lightning", @@ -6255,9 +6539,10 @@ "parent": "mmenag_djinni-noble_scimitar", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -6278,8 +6563,9 @@ "attack_type": "SPELL", "to_hit_mod": 9, "reach_ft": null, - "range_ft": 90, + "range_ft": 90.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 10, "damage_die_type": "D6) lightning", @@ -6299,9 +6585,10 @@ "parent": "mmenag_djinni_scimitar", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -6321,9 +6608,10 @@ "parent": "mmenag_doppelganger_precise-strike", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -6343,9 +6631,10 @@ "parent": "mmenag_draft-horse_hooves", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6) blu", @@ -6365,9 +6654,10 @@ "parent": "mmenag_dragon-cultist_dagger", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -6387,9 +6677,10 @@ "parent": "mmenag_dragon-cultist_inflict-wounds", "attack_type": "SPELL", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10) necrotic", @@ -6409,9 +6700,10 @@ "parent": "mmenag_dragon-turtle_bite", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 7, "damage_die_type": "D12", @@ -6431,9 +6723,10 @@ "parent": "mmenag_dragon-turtle_ram", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, "damage_die_type": "D12", @@ -6453,9 +6746,10 @@ "parent": "mmenag_dragon-turtle_tail", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, "damage_die_type": "D12", @@ -6475,9 +6769,10 @@ "parent": "mmenag_dragonbound-warrior_spear", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -6497,9 +6792,10 @@ "parent": "mmenag_drainpipe-gargoyle_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -6519,9 +6815,10 @@ "parent": "mmenag_drainpipe-gargoyle_claws", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -6542,8 +6839,9 @@ "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 20, - "long_range_ft": 60, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -6563,9 +6861,10 @@ "parent": "mmenag_dread-knight-champion_cursed-greatsword", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -6585,9 +6884,10 @@ "parent": "mmenag_dread-knight_cursed-greatsword", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -6607,9 +6907,10 @@ "parent": "mmenag_dretch_bite", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -6629,9 +6930,10 @@ "parent": "mmenag_drider_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4) piercing", @@ -6651,9 +6953,10 @@ "parent": "mmenag_drider_claws", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -6674,8 +6977,9 @@ "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": null, - "range_ft": 120, - "long_range_ft": 600, + "range_ft": 120.0, + "long_range_ft": 600.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -6695,9 +6999,10 @@ "parent": "mmenag_drider_longsword-wielded-two-handed", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -6717,9 +7022,10 @@ "parent": "mmenag_drop-bear_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -6739,9 +7045,10 @@ "parent": "mmenag_drop-bear_claws", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -6761,9 +7068,10 @@ "parent": "mmenag_druid_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -6784,8 +7092,9 @@ "attack_type": "SPELL", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 30, + "range_ft": 30.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8) fire", @@ -6805,9 +7114,10 @@ "parent": "mmenag_druid_shillelagh", "attack_type": "SPELL", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -6827,9 +7137,10 @@ "parent": "mmenag_dryad_club", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -6849,9 +7160,10 @@ "parent": "mmenag_duelist_rapier", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -6871,9 +7183,10 @@ "parent": "mmenag_dust-mephit_claws", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -6893,9 +7206,10 @@ "parent": "mmenag_eagle_talons", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": null, "damage_die_type": null, @@ -6915,9 +7229,10 @@ "parent": "mmenag_earth-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -6937,9 +7252,10 @@ "parent": "mmenag_earth-elemental_earths-embrace", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D12", @@ -6960,8 +7276,9 @@ "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": null, - "range_ft": 30, - "long_range_ft": 90, + "range_ft": 30.0, + "long_range_ft": 90.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -6981,9 +7298,10 @@ "parent": "mmenag_earth-elemental_slam", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -7003,9 +7321,10 @@ "parent": "mmenag_efreeti-noble_brass-sword", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -7026,8 +7345,9 @@ "attack_type": "SPELL", "to_hit_mod": 7, "reach_ft": null, - "range_ft": 120, + "range_ft": 120.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, "damage_die_type": "D6) fire", @@ -7047,9 +7367,10 @@ "parent": "mmenag_efreeti-noble_kick", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -7069,9 +7390,10 @@ "parent": "mmenag_efreeti_brass-sword", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -7092,8 +7414,9 @@ "attack_type": "SPELL", "to_hit_mod": 7, "reach_ft": null, - "range_ft": 120, + "range_ft": 120.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, "damage_die_type": "D6) fire", @@ -7113,9 +7436,10 @@ "parent": "mmenag_efreeti_kick", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -7135,9 +7459,10 @@ "parent": "mmenag_elder-black-pudding_pseudopod", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -7157,9 +7482,10 @@ "parent": "mmenag_elder-vampire_grab", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -7179,9 +7505,10 @@ "parent": "mmenag_elephant_gore", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -7201,9 +7528,10 @@ "parent": "mmenag_elephant_stomp", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -7223,9 +7551,10 @@ "parent": "mmenag_elk_ram", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -7245,9 +7574,10 @@ "parent": "mmenag_emerald-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -7267,9 +7597,10 @@ "parent": "mmenag_empyrean_maul", "attack_type": "WEAPON", "to_hit_mod": 17, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 8, "damage_die_type": "D6", @@ -7289,9 +7620,10 @@ "parent": "mmenag_erinyes_lasso", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": null, "damage_die_type": null, @@ -7312,8 +7644,9 @@ "attack_type": "WEAPON", "to_hit_mod": 8, "reach_ft": null, - "range_ft": 150, - "long_range_ft": 600, + "range_ft": 150.0, + "long_range_ft": 600.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -7333,9 +7666,10 @@ "parent": "mmenag_erinyes_longsword", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -7355,9 +7689,10 @@ "parent": "mmenag_ettercap_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -7377,9 +7712,10 @@ "parent": "mmenag_ettercap_claws", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -7399,9 +7735,10 @@ "parent": "mmenag_ettercap_strangle", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -7421,9 +7758,10 @@ "parent": "mmenag_ettin_battleaxe", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -7443,9 +7781,10 @@ "parent": "mmenag_ettin_club", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -7466,8 +7805,9 @@ "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": null, - "range_ft": 30, - "long_range_ft": 90, + "range_ft": 30.0, + "long_range_ft": 90.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -7487,9 +7827,10 @@ "parent": "mmenag_faerie-dragon-familiar_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": null, "damage_die_type": null, @@ -7509,9 +7850,10 @@ "parent": "mmenag_faerie-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": null, "damage_die_type": null, @@ -7531,9 +7873,10 @@ "parent": "mmenag_faerie-eater-troll_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -7553,9 +7896,10 @@ "parent": "mmenag_faerie-eater-troll_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -7576,8 +7920,9 @@ "attack_type": "WEAPON", "to_hit_mod": 9, "reach_ft": null, - "range_ft": 150, - "long_range_ft": 600, + "range_ft": 150.0, + "long_range_ft": 600.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -7597,9 +7942,10 @@ "parent": "mmenag_faerie-noble_glittering-scimitar", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -7619,9 +7965,10 @@ "parent": "mmenag_fallen-deva_celestial-hammer", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -7642,8 +7989,9 @@ "attack_type": "SPELL", "to_hit_mod": 8, "reach_ft": null, - "range_ft": 60, + "range_ft": 60.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, "damage_die_type": "D8) ra", @@ -7663,9 +8011,10 @@ "parent": "mmenag_fallen-planetar_flaming-sword", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6", @@ -7685,9 +8034,10 @@ "parent": "mmenag_fallen-solar_holy-sword", "attack_type": "WEAPON", "to_hit_mod": 16, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6", @@ -7707,9 +8057,10 @@ "parent": "mmenag_fell-nightmare_hooves", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -7729,9 +8080,10 @@ "parent": "mmenag_fey-knight_glittering-scimitar", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -7752,8 +8104,9 @@ "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": null, - "range_ft": 150, - "long_range_ft": 600, + "range_ft": 150.0, + "long_range_ft": 600.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -7773,9 +8126,10 @@ "parent": "mmenag_fire-elemental_slam", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -7795,9 +8149,10 @@ "parent": "mmenag_fire-giant-war-priest_greatsword", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, "damage_die_type": "D6", @@ -7818,8 +8173,9 @@ "attack_type": "WEAPON", "to_hit_mod": 11, "reach_ft": null, - "range_ft": 60, - "long_range_ft": 240, + "range_ft": 60.0, + "long_range_ft": 240.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 10, "damage_die_type": "D6", @@ -7839,9 +8195,10 @@ "parent": "mmenag_fire-giant_greatsword", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, "damage_die_type": "D6", @@ -7862,8 +8219,9 @@ "attack_type": "WEAPON", "to_hit_mod": 11, "reach_ft": null, - "range_ft": 60, - "long_range_ft": 240, + "range_ft": 60.0, + "long_range_ft": 240.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 10, "damage_die_type": "D6", @@ -7884,8 +8242,9 @@ "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": null, - "range_ft": 20, - "long_range_ft": 60, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6", @@ -7905,9 +8264,10 @@ "parent": "mmenag_flesh-guardian_slam", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -7927,9 +8287,10 @@ "parent": "mmenag_flumph_tendrils", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "Damage plus 3 (1", @@ -7949,9 +8310,10 @@ "parent": "mmenag_flying-lion_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -7971,9 +8333,10 @@ "parent": "mmenag_flying-lion_talons", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -7993,9 +8356,10 @@ "parent": "mmenag_flying-snake_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "Damage plus 3 (1", @@ -8015,9 +8379,10 @@ "parent": "mmenag_flying-sword_longsword", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -8037,9 +8402,10 @@ "parent": "mmenag_fomorian_warhammer", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -8059,9 +8425,10 @@ "parent": "mmenag_forest-gnome-illusionist_dagger", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -8082,8 +8449,9 @@ "attack_type": "SPELL", "to_hit_mod": 6, "reach_ft": null, - "range_ft": 120, + "range_ft": 120.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10) fire", @@ -8104,8 +8472,9 @@ "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": null, - "range_ft": 150, - "long_range_ft": 600, + "range_ft": 150.0, + "long_range_ft": 600.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -8125,9 +8494,10 @@ "parent": "mmenag_forest-gnome-scout_shortsword", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -8147,9 +8517,10 @@ "parent": "mmenag_forgotten-god_divine-weapon", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -8169,9 +8540,10 @@ "parent": "mmenag_frost-giant-jarl_battleaxe", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -8192,8 +8564,9 @@ "attack_type": "WEAPON", "to_hit_mod": 10, "reach_ft": null, - "range_ft": 60, - "long_range_ft": 240, + "range_ft": 60.0, + "long_range_ft": 240.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 9, "damage_die_type": "D6", @@ -8213,9 +8586,10 @@ "parent": "mmenag_frost-giant_battleaxe", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -8236,8 +8610,9 @@ "attack_type": "WEAPON", "to_hit_mod": 10, "reach_ft": null, - "range_ft": 60, - "long_range_ft": 240, + "range_ft": 60.0, + "long_range_ft": 240.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 9, "damage_die_type": "D6", @@ -8257,9 +8632,10 @@ "parent": "mmenag_gargoyle_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -8279,9 +8655,10 @@ "parent": "mmenag_gargoyle_claws", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -8302,8 +8679,9 @@ "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 20, - "long_range_ft": 60, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -8323,9 +8701,10 @@ "parent": "mmenag_gear-spider_claw", "attack_type": "WEAPON", "to_hit_mod": 0, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": null, "damage_die_type": null, @@ -8345,9 +8724,10 @@ "parent": "mmenag_gear-spider_needle", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -8367,9 +8747,10 @@ "parent": "mmenag_gelatinous-cube_pseudopod", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6) aci", @@ -8389,9 +8770,10 @@ "parent": "mmenag_gelatinous-wall_pseudopod", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6) aci", @@ -8411,9 +8793,10 @@ "parent": "mmenag_ghast_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -8433,9 +8816,10 @@ "parent": "mmenag_ghast_paralyzing-claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -8455,9 +8839,10 @@ "parent": "mmenag_ghost_withering-touch", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6", @@ -8477,9 +8862,10 @@ "parent": "mmenag_ghoul_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -8499,9 +8885,10 @@ "parent": "mmenag_ghoul_paralyzing-claw", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -8521,9 +8908,10 @@ "parent": "mmenag_giant-air-elemental_slam", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, "damage_die_type": "D6", @@ -8543,9 +8931,10 @@ "parent": "mmenag_giant-ape_fists", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -8566,8 +8955,9 @@ "attack_type": "WEAPON", "to_hit_mod": 8, "reach_ft": null, - "range_ft": 50, - "long_range_ft": 100, + "range_ft": 50.0, + "long_range_ft": 100.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, "damage_die_type": "D6", @@ -8587,9 +8977,10 @@ "parent": "mmenag_giant-badger_bite", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -8609,9 +9000,10 @@ "parent": "mmenag_giant-bat_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -8631,9 +9023,10 @@ "parent": "mmenag_giant-boar_tusk", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -8653,9 +9046,10 @@ "parent": "mmenag_giant-centipede_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "Damage an", @@ -8675,9 +9069,10 @@ "parent": "mmenag_giant-constrictor-snake_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -8697,9 +9092,10 @@ "parent": "mmenag_giant-constrictor-snake_constrict", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -8719,9 +9115,10 @@ "parent": "mmenag_giant-crab_claw", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -8741,9 +9138,10 @@ "parent": "mmenag_giant-crocodile_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -8763,9 +9161,10 @@ "parent": "mmenag_giant-crocodile_tail", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -8785,9 +9184,10 @@ "parent": "mmenag_giant-eagle_talons", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -8807,9 +9207,10 @@ "parent": "mmenag_giant-earth-elemental_earths-embrace", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D12", @@ -8830,8 +9231,9 @@ "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": null, - "range_ft": 30, - "long_range_ft": 90, + "range_ft": 30.0, + "long_range_ft": 90.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -8851,9 +9253,10 @@ "parent": "mmenag_giant-earth-elemental_slam", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D8", @@ -8873,9 +9276,10 @@ "parent": "mmenag_giant-elk_ram", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -8895,9 +9299,10 @@ "parent": "mmenag_giant-fire-beetle_bite", "attack_type": "WEAPON", "to_hit_mod": 1, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": null, "damage_die_type": null, @@ -8917,9 +9322,10 @@ "parent": "mmenag_giant-fire-elemental_slam", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D8", @@ -8939,9 +9345,10 @@ "parent": "mmenag_giant-frog_bite", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -8961,9 +9368,10 @@ "parent": "mmenag_giant-goat_ram", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -8983,9 +9391,10 @@ "parent": "mmenag_giant-grick_tentacles", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 20, + "reach_ft": 20.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D8", @@ -9005,9 +9414,10 @@ "parent": "mmenag_giant-hyena_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -9027,9 +9437,10 @@ "parent": "mmenag_giant-lanternfish_claws", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6", @@ -9049,9 +9460,10 @@ "parent": "mmenag_giant-lanternfish_dagger", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -9071,9 +9483,10 @@ "parent": "mmenag_giant-lanternfish_dizzying-touch", "attack_type": "SPELL", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": null, "damage_die_type": null, @@ -9093,9 +9506,10 @@ "parent": "mmenag_giant-lizard_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -9115,9 +9529,10 @@ "parent": "mmenag_giant-octopus_tentacles", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -9137,9 +9552,10 @@ "parent": "mmenag_giant-owl_talons", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -9159,9 +9575,10 @@ "parent": "mmenag_giant-poisonous-snake_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "Damage an", @@ -9181,9 +9598,10 @@ "parent": "mmenag_giant-rat_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -9203,9 +9621,10 @@ "parent": "mmenag_giant-scorpion_claws", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -9225,9 +9644,10 @@ "parent": "mmenag_giant-scorpion_sting", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -9247,9 +9667,10 @@ "parent": "mmenag_giant-seahorse_ram", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -9269,9 +9690,10 @@ "parent": "mmenag_giant-shark_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -9291,9 +9713,10 @@ "parent": "mmenag_giant-shark_tail", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -9313,9 +9736,10 @@ "parent": "mmenag_giant-spider_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -9335,9 +9759,10 @@ "parent": "mmenag_giant-toad_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -9357,9 +9782,10 @@ "parent": "mmenag_giant-vulture_beak", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -9379,9 +9805,10 @@ "parent": "mmenag_giant-vulture_talons", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -9401,9 +9828,10 @@ "parent": "mmenag_giant-wasp_sting", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -9423,9 +9851,10 @@ "parent": "mmenag_giant-water-elemental_slam", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D8", @@ -9445,9 +9874,10 @@ "parent": "mmenag_giant-weasel_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -9467,9 +9897,10 @@ "parent": "mmenag_giant-weasel_grab", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": null, "damage_die_type": null, @@ -9489,9 +9920,10 @@ "parent": "mmenag_giant-wolf-spider_bite", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -9511,9 +9943,10 @@ "parent": "mmenag_gibbering-mouther_bite", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6) piercing", @@ -9533,9 +9966,10 @@ "parent": "mmenag_glabrezu_pincer", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -9555,9 +9989,10 @@ "parent": "mmenag_gladiator_javelin", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, - "range_ft": 30, - "long_range_ft": 120, + "reach_ft": 5.0, + "range_ft": 30.0, + "long_range_ft": 120.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -9577,9 +10012,10 @@ "parent": "mmenag_gladiator_shield", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -9599,9 +10035,10 @@ "parent": "mmenag_gladiator_spear", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -9621,9 +10058,10 @@ "parent": "mmenag_gnoll-demonfang_charging-claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -9643,9 +10081,10 @@ "parent": "mmenag_gnoll-pack-leader_spear", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -9665,9 +10104,10 @@ "parent": "mmenag_gnoll_spear", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -9687,9 +10127,10 @@ "parent": "mmenag_goat_ram", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4) blu", @@ -9710,8 +10151,9 @@ "attack_type": "WEAPON", "to_hit_mod": 3, "reach_ft": null, - "range_ft": 80, - "long_range_ft": 320, + "range_ft": 80.0, + "long_range_ft": 320.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -9731,9 +10173,10 @@ "parent": "mmenag_goblin-alchemist_shortsword", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -9754,8 +10197,9 @@ "attack_type": "WEAPON", "to_hit_mod": 3, "reach_ft": null, - "range_ft": 20, - "long_range_ft": 40, + "range_ft": 20.0, + "long_range_ft": 40.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6) ongoing fire", @@ -9775,9 +10219,10 @@ "parent": "mmenag_goblin-boss_scimitar", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -9798,8 +10243,9 @@ "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 80, - "long_range_ft": 320, + "range_ft": 80.0, + "long_range_ft": 320.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -9819,9 +10265,10 @@ "parent": "mmenag_goblin-dreadnought_sabre", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -9842,8 +10289,9 @@ "attack_type": "WEAPON", "to_hit_mod": 3, "reach_ft": null, - "range_ft": 80, - "long_range_ft": 320, + "range_ft": 80.0, + "long_range_ft": 320.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -9864,8 +10312,9 @@ "attack_type": "WEAPON", "to_hit_mod": 3, "reach_ft": null, - "range_ft": 60, - "long_range_ft": 180, + "range_ft": 60.0, + "long_range_ft": 180.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -9885,9 +10334,10 @@ "parent": "mmenag_goblin-musketeer_shortsword", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -9908,8 +10358,9 @@ "attack_type": "WEAPON", "to_hit_mod": 3, "reach_ft": null, - "range_ft": 80, - "long_range_ft": 320, + "range_ft": 80.0, + "long_range_ft": 320.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -9929,9 +10380,10 @@ "parent": "mmenag_goblin-shieldbearer_shortsword", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -9952,8 +10404,9 @@ "attack_type": "WEAPON", "to_hit_mod": 3, "reach_ft": null, - "range_ft": 80, - "long_range_ft": 320, + "range_ft": 80.0, + "long_range_ft": 320.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -9973,9 +10426,10 @@ "parent": "mmenag_goblin-skulker_shortsword", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -9995,9 +10449,10 @@ "parent": "mmenag_goblin-warlock_dagger", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -10018,8 +10473,9 @@ "attack_type": "SPELL", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 60, + "range_ft": 60.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6) fire", @@ -10040,8 +10496,9 @@ "attack_type": "WEAPON", "to_hit_mod": 3, "reach_ft": null, - "range_ft": 80, - "long_range_ft": 320, + "range_ft": 80.0, + "long_range_ft": 320.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -10061,9 +10518,10 @@ "parent": "mmenag_goblin_shortsword", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -10083,9 +10541,10 @@ "parent": "mmenag_gold-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -10105,9 +10564,10 @@ "parent": "mmenag_gorgon_gore", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D12", @@ -10127,9 +10587,10 @@ "parent": "mmenag_gorgon_hooves", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -10149,9 +10610,10 @@ "parent": "mmenag_gray-ooze_pseudopod", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -10171,9 +10633,10 @@ "parent": "mmenag_great-wyrm-black-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D10", @@ -10193,9 +10656,10 @@ "parent": "mmenag_great-wyrm-black-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -10215,9 +10679,10 @@ "parent": "mmenag_great-wyrm-black-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 20, + "reach_ft": 20.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -10237,9 +10702,10 @@ "parent": "mmenag_great-wyrm-blue-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 17, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D10", @@ -10259,9 +10725,10 @@ "parent": "mmenag_great-wyrm-blue-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 17, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -10281,9 +10748,10 @@ "parent": "mmenag_great-wyrm-blue-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 17, - "reach_ft": 20, + "reach_ft": 20.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -10303,9 +10771,10 @@ "parent": "mmenag_great-wyrm-gold-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 18, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D10", @@ -10325,9 +10794,10 @@ "parent": "mmenag_great-wyrm-gold-dragon_claws", "attack_type": "WEAPON", "to_hit_mod": 18, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D8", @@ -10347,9 +10817,10 @@ "parent": "mmenag_great-wyrm-gold-dragon_greatsword", "attack_type": "WEAPON", "to_hit_mod": 18, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -10369,9 +10840,10 @@ "parent": "mmenag_great-wyrm-gold-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 18, - "reach_ft": 20, + "reach_ft": 20.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -10391,9 +10863,10 @@ "parent": "mmenag_great-wyrm-green-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D10", @@ -10413,9 +10886,10 @@ "parent": "mmenag_great-wyrm-green-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -10435,9 +10909,10 @@ "parent": "mmenag_great-wyrm-green-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 20, + "reach_ft": 20.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -10457,9 +10932,10 @@ "parent": "mmenag_great-wyrm-red-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 18, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D10", @@ -10479,9 +10955,10 @@ "parent": "mmenag_great-wyrm-red-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 18, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D8", @@ -10501,9 +10978,10 @@ "parent": "mmenag_great-wyrm-red-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 18, - "reach_ft": 20, + "reach_ft": 20.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -10523,9 +11001,10 @@ "parent": "mmenag_great-wyrm-white-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D10", @@ -10545,9 +11024,10 @@ "parent": "mmenag_great-wyrm-white-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -10567,9 +11047,10 @@ "parent": "mmenag_great-wyrm-white-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 20, + "reach_ft": 20.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -10589,9 +11070,10 @@ "parent": "mmenag_greater-sphinx_claw", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -10611,9 +11093,10 @@ "parent": "mmenag_green-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -10633,9 +11116,10 @@ "parent": "mmenag_green-hag_claws", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -10655,9 +11139,10 @@ "parent": "mmenag_grick_tentacles", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -10677,9 +11162,10 @@ "parent": "mmenag_griffon_beak", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -10699,9 +11185,10 @@ "parent": "mmenag_griffon_talons", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -10721,9 +11208,10 @@ "parent": "mmenag_grimalkin_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -10743,9 +11231,10 @@ "parent": "mmenag_grimalkin_claws", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -10765,9 +11254,10 @@ "parent": "mmenag_grimlock-technical_lightning-stick", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -10788,8 +11278,9 @@ "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 30, - "long_range_ft": 120, + "range_ft": 30.0, + "long_range_ft": 120.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -10810,8 +11301,9 @@ "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 30, - "long_range_ft": 120, + "range_ft": 30.0, + "long_range_ft": 120.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -10831,9 +11323,10 @@ "parent": "mmenag_grimlock-technical_throttle", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -10854,8 +11347,9 @@ "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 30, - "long_range_ft": 120, + "range_ft": 30.0, + "long_range_ft": 120.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -10875,9 +11369,10 @@ "parent": "mmenag_grimlock_spiked-club", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -10897,9 +11392,10 @@ "parent": "mmenag_grimlock_throttle", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -10919,9 +11415,10 @@ "parent": "mmenag_guard-squad_spears", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": 5, - "range_ft": 20, + "reach_ft": 5.0, + "range_ft": 20.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, "damage_die_type": "D6) piercing", @@ -10941,9 +11438,10 @@ "parent": "mmenag_guard_spear", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6) piercing", @@ -10963,9 +11461,10 @@ "parent": "mmenag_guardian-naga_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -10986,8 +11485,9 @@ "attack_type": "WEAPON", "to_hit_mod": 8, "reach_ft": null, - "range_ft": 20, - "long_range_ft": 60, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 10, "damage_die_type": "D6) poison", @@ -11008,8 +11508,9 @@ "attack_type": "WEAPON", "to_hit_mod": 3, "reach_ft": null, - "range_ft": 100, - "long_range_ft": 400, + "range_ft": 100.0, + "long_range_ft": 400.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -11029,9 +11530,10 @@ "parent": "mmenag_half-red-dragon-veteran_longsword", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -11051,9 +11553,10 @@ "parent": "mmenag_half-red-dragon-veteran_shortsword", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -11074,8 +11577,9 @@ "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": null, - "range_ft": 30, - "long_range_ft": 120, + "range_ft": 30.0, + "long_range_ft": 120.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -11095,9 +11599,10 @@ "parent": "mmenag_half-shadow-dragon-assassin_shortsword", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -11117,9 +11622,10 @@ "parent": "mmenag_harpy_claw", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -11139,9 +11645,10 @@ "parent": "mmenag_hawk_talons", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": null, "damage_die_type": null, @@ -11161,9 +11668,10 @@ "parent": "mmenag_hell-hound_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -11183,9 +11691,10 @@ "parent": "mmenag_hezrou_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -11205,9 +11714,10 @@ "parent": "mmenag_hezrou_claws", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D8", @@ -11227,9 +11737,10 @@ "parent": "mmenag_high-elf-noble_rapier", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -11250,8 +11761,9 @@ "attack_type": "SPELL", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 60, + "range_ft": 60.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8) col", @@ -11271,9 +11783,10 @@ "parent": "mmenag_high-priest_mace", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -11293,9 +11806,10 @@ "parent": "mmenag_hill-dwarf-wrestler_body-slam", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, "damage_die_type": "D6", @@ -11315,9 +11829,10 @@ "parent": "mmenag_hill-dwarf-wrestler_fists", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -11337,9 +11852,10 @@ "parent": "mmenag_hill-dwarf-wrestler_grab", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -11359,9 +11875,10 @@ "parent": "mmenag_hill-dwarf-wrestler_pin", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -11381,9 +11898,10 @@ "parent": "mmenag_hill-giant-chief_greatclub", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -11404,8 +11922,9 @@ "attack_type": "WEAPON", "to_hit_mod": 8, "reach_ft": null, - "range_ft": 60, - "long_range_ft": 240, + "range_ft": 60.0, + "long_range_ft": 240.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, "damage_die_type": "D6", @@ -11425,9 +11944,10 @@ "parent": "mmenag_hill-giant_greatclub", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -11448,8 +11968,9 @@ "attack_type": "WEAPON", "to_hit_mod": 8, "reach_ft": null, - "range_ft": 60, - "long_range_ft": 240, + "range_ft": 60.0, + "long_range_ft": 240.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, "damage_die_type": "D6", @@ -11469,9 +11990,10 @@ "parent": "mmenag_hippogriff_claws", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -11491,9 +12013,10 @@ "parent": "mmenag_hobgoblin-captain_greatsword", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -11513,9 +12036,10 @@ "parent": "mmenag_hobgoblin-captain_javelin", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": 30, - "long_range_ft": 120, + "reach_ft": 5.0, + "range_ft": 30.0, + "long_range_ft": 120.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -11535,9 +12059,10 @@ "parent": "mmenag_hobgoblin-warlord_greatsword", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -11557,9 +12082,10 @@ "parent": "mmenag_hobgoblin-warlord_javelin", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": 30, - "long_range_ft": 120, + "reach_ft": 5.0, + "range_ft": 30.0, + "long_range_ft": 120.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -11580,8 +12106,9 @@ "attack_type": "WEAPON", "to_hit_mod": 3, "reach_ft": null, - "range_ft": 150, - "long_range_ft": 600, + "range_ft": 150.0, + "long_range_ft": 600.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -11601,9 +12128,10 @@ "parent": "mmenag_hobgoblin_longsword", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -11623,9 +12151,10 @@ "parent": "mmenag_holy-knight_greatsword", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -11645,9 +12174,10 @@ "parent": "mmenag_holy-knight_lance", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D12", @@ -11667,9 +12197,10 @@ "parent": "mmenag_homunculus_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": null, "damage_die_type": null, @@ -11689,9 +12220,10 @@ "parent": "mmenag_horde-demon-band_mob-attack", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 10, "damage_die_type": "D6", @@ -11711,9 +12243,10 @@ "parent": "mmenag_horde-of-shadows_claw", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6", @@ -11733,9 +12266,10 @@ "parent": "mmenag_horned-devil_fork", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -11756,8 +12290,9 @@ "attack_type": "SPELL", "to_hit_mod": 7, "reach_ft": null, - "range_ft": 150, + "range_ft": 150.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6) fire", @@ -11777,9 +12312,10 @@ "parent": "mmenag_horned-devil_tail", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -11799,9 +12335,10 @@ "parent": "mmenag_horned-tauric_gore", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -11821,9 +12358,10 @@ "parent": "mmenag_horned-tauric_hooves", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -11844,8 +12382,9 @@ "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": null, - "range_ft": 80, - "long_range_ft": 320, + "range_ft": 80.0, + "long_range_ft": 320.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -11865,9 +12404,10 @@ "parent": "mmenag_hound-guardian_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -11887,9 +12427,10 @@ "parent": "mmenag_hunter-shark_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -11909,9 +12450,10 @@ "parent": "mmenag_hydra_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -11931,9 +12473,10 @@ "parent": "mmenag_hyena_bite", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4) piercing", @@ -11953,9 +12496,10 @@ "parent": "mmenag_ice-devil_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -11975,9 +12519,10 @@ "parent": "mmenag_ice-devil_claws", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -11997,9 +12542,10 @@ "parent": "mmenag_ice-devil_spear", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -12019,9 +12565,10 @@ "parent": "mmenag_ice-mephit_claws", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -12041,9 +12588,10 @@ "parent": "mmenag_ice-worm_bite", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -12063,9 +12611,10 @@ "parent": "mmenag_ice-worm_tail-stinger", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -12085,9 +12634,10 @@ "parent": "mmenag_imp-familiar_sting-bite-while-shapeshifted", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -12107,9 +12657,10 @@ "parent": "mmenag_imp_sting-bite-while-shapeshifted", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -12129,9 +12680,10 @@ "parent": "mmenag_intellect-devourer_claws", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -12151,9 +12703,10 @@ "parent": "mmenag_invisible-stalker_slam", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -12173,9 +12726,10 @@ "parent": "mmenag_iron-guardian_sword", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D10", @@ -12195,9 +12749,10 @@ "parent": "mmenag_jackal_bite", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": null, "damage_die_type": null, @@ -12217,9 +12772,10 @@ "parent": "mmenag_jackalope_gore", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -12239,9 +12795,10 @@ "parent": "mmenag_jackalwere-pack-leader_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -12261,9 +12818,10 @@ "parent": "mmenag_jackalwere-pack-leader_scimitar", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -12283,9 +12841,10 @@ "parent": "mmenag_jackalwere_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -12305,9 +12864,10 @@ "parent": "mmenag_jackalwere_scimitar", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -12327,9 +12887,10 @@ "parent": "mmenag_kech_claw", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -12349,9 +12910,10 @@ "parent": "mmenag_kech_strangle", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -12371,9 +12933,10 @@ "parent": "mmenag_khalkos-spawn_sting", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -12393,9 +12956,10 @@ "parent": "mmenag_khalkos_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -12415,9 +12979,10 @@ "parent": "mmenag_killer-whale_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -12437,9 +13002,10 @@ "parent": "mmenag_king-fomor_maul", "attack_type": "WEAPON", "to_hit_mod": 17, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 8, "damage_die_type": "D6", @@ -12460,8 +13026,9 @@ "attack_type": "WEAPON", "to_hit_mod": 10, "reach_ft": null, - "range_ft": 150, - "long_range_ft": 600, + "range_ft": 150.0, + "long_range_ft": 600.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -12481,9 +13048,10 @@ "parent": "mmenag_knight-captain_longsword", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -12503,9 +13071,10 @@ "parent": "mmenag_knight_greatsword", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -12526,8 +13095,9 @@ "attack_type": "WEAPON", "to_hit_mod": 3, "reach_ft": null, - "range_ft": 100, - "long_range_ft": 400, + "range_ft": 100.0, + "long_range_ft": 400.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -12547,9 +13117,10 @@ "parent": "mmenag_knight_lance", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D12", @@ -12569,9 +13140,10 @@ "parent": "mmenag_kobold-broodguard-dragon-servitor_bill-hook", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -12592,8 +13164,9 @@ "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 30, - "long_range_ft": 120, + "range_ft": 30.0, + "long_range_ft": 120.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -12613,9 +13186,10 @@ "parent": "mmenag_kobold-broodguard-dragon-servitor_spiked-shield", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -12635,9 +13209,10 @@ "parent": "mmenag_kobold-broodguard_bill-hook", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -12658,8 +13233,9 @@ "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 30, - "long_range_ft": 120, + "range_ft": 30.0, + "long_range_ft": 120.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -12679,9 +13255,10 @@ "parent": "mmenag_kobold-broodguard_spiked-shield", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -12701,9 +13278,10 @@ "parent": "mmenag_kobold-dragon-servitor_shiv", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D3", @@ -12724,8 +13302,9 @@ "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 30, - "long_range_ft": 120, + "range_ft": 30.0, + "long_range_ft": 120.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -12746,8 +13325,9 @@ "attack_type": "SPELL", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 120, + "range_ft": 120.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -12767,9 +13347,10 @@ "parent": "mmenag_kobold-sorcerer-dragon-servitor_shiv", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -12790,8 +13371,9 @@ "attack_type": "SPELL", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 120, + "range_ft": 120.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10) fire", @@ -12811,9 +13393,10 @@ "parent": "mmenag_kobold-sorcerer_shiv", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -12833,9 +13416,10 @@ "parent": "mmenag_kobold_shiv", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D3", @@ -12856,8 +13440,9 @@ "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 30, - "long_range_ft": 120, + "range_ft": 30.0, + "long_range_ft": 120.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -12877,9 +13462,10 @@ "parent": "mmenag_kraken_bite", "attack_type": "WEAPON", "to_hit_mod": 18, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D12", @@ -12899,9 +13485,10 @@ "parent": "mmenag_kraken_tentacle", "attack_type": "WEAPON", "to_hit_mod": 18, - "reach_ft": 30, + "reach_ft": 30.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D8", @@ -12921,9 +13508,10 @@ "parent": "mmenag_lacedon_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -12943,9 +13531,10 @@ "parent": "mmenag_lacedon_paralyzing-claw", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -12965,9 +13554,10 @@ "parent": "mmenag_lamia_claws", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6", @@ -12987,9 +13577,10 @@ "parent": "mmenag_lamia_dagger", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -13009,9 +13600,10 @@ "parent": "mmenag_lamia_dizzying-touch", "attack_type": "SPELL", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": null, "damage_die_type": null, @@ -13031,9 +13623,10 @@ "parent": "mmenag_lemure-band_fists", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, "damage_die_type": "D4) blu", @@ -13053,9 +13646,10 @@ "parent": "mmenag_lemure_fist", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4) blu", @@ -13076,8 +13670,9 @@ "attack_type": "SPELL", "to_hit_mod": 12, "reach_ft": null, - "range_ft": 120, + "range_ft": 120.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10) fire", @@ -13097,9 +13692,10 @@ "parent": "mmenag_lich_paralyzing-touch", "attack_type": "SPELL", "to_hit_mod": 12, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6", @@ -13119,9 +13715,10 @@ "parent": "mmenag_lion_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -13141,9 +13738,10 @@ "parent": "mmenag_lion_claws", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -13163,9 +13761,10 @@ "parent": "mmenag_lizard_bite", "attack_type": "WEAPON", "to_hit_mod": 0, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": null, "damage_die_type": null, @@ -13185,9 +13784,10 @@ "parent": "mmenag_lizardfolk-chosen-one_shield", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -13207,9 +13807,10 @@ "parent": "mmenag_lizardfolk-chosen-one_trident", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -13229,9 +13830,10 @@ "parent": "mmenag_lizardfolk_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -13251,9 +13853,10 @@ "parent": "mmenag_lizardfolk_club", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -13273,9 +13876,10 @@ "parent": "mmenag_lizardfolk_javelin", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": 30, - "long_range_ft": 120, + "reach_ft": 5.0, + "range_ft": 30.0, + "long_range_ft": 120.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -13295,9 +13899,10 @@ "parent": "mmenag_lizardfolk_shield", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -13317,9 +13922,10 @@ "parent": "mmenag_mage_dagger", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -13340,8 +13946,9 @@ "attack_type": "SPELL", "to_hit_mod": 6, "reach_ft": null, - "range_ft": 120, + "range_ft": 120.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10) fire", @@ -13361,9 +13968,10 @@ "parent": "mmenag_magma-mephit_claws", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -13384,8 +13992,9 @@ "attack_type": "SPELL", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 60, + "range_ft": 60.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8) fire", @@ -13406,8 +14015,9 @@ "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": null, - "range_ft": 30, + "range_ft": 30.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -13427,9 +14037,10 @@ "parent": "mmenag_magmin_touch", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -13449,9 +14060,10 @@ "parent": "mmenag_malcubus_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -13471,9 +14083,10 @@ "parent": "mmenag_mammoth_gore", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -13493,9 +14106,10 @@ "parent": "mmenag_mammoth_stomp", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -13515,9 +14129,10 @@ "parent": "mmenag_manticore_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -13537,9 +14152,10 @@ "parent": "mmenag_manticore_claws", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -13559,9 +14175,10 @@ "parent": "mmenag_manticore_tail", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -13582,8 +14199,9 @@ "attack_type": "WEAPON", "to_hit_mod": 10, "reach_ft": null, - "range_ft": 5, - "long_range_ft": 15, + "range_ft": 5.0, + "long_range_ft": 15.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": null, "damage_die_type": null, @@ -13603,9 +14221,10 @@ "parent": "mmenag_marid-noble_trident", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 10.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -13626,8 +14245,9 @@ "attack_type": "WEAPON", "to_hit_mod": 10, "reach_ft": null, - "range_ft": 5, - "long_range_ft": 15, + "range_ft": 5.0, + "long_range_ft": 15.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": null, "damage_die_type": null, @@ -13647,9 +14267,10 @@ "parent": "mmenag_marid_trident", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 10.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -13669,9 +14290,10 @@ "parent": "mmenag_marilith_longsword", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -13692,8 +14314,9 @@ "attack_type": "WEAPON", "to_hit_mod": 11, "reach_ft": null, - "range_ft": 80, - "long_range_ft": 320, + "range_ft": 80.0, + "long_range_ft": 320.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -13713,9 +14336,10 @@ "parent": "mmenag_master-assassin_shortsword", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -13736,8 +14360,9 @@ "attack_type": "WEAPON", "to_hit_mod": 11, "reach_ft": null, - "range_ft": 80, - "long_range_ft": 320, + "range_ft": 80.0, + "long_range_ft": 320.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -13757,9 +14382,10 @@ "parent": "mmenag_master-thief_shortsword", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -13779,9 +14405,10 @@ "parent": "mmenag_mastiff_bite", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -13802,8 +14429,9 @@ "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": null, - "range_ft": 150, - "long_range_ft": 600, + "range_ft": 150.0, + "long_range_ft": 600.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -13823,9 +14451,10 @@ "parent": "mmenag_medusa-queen_snake-hair", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -13846,8 +14475,9 @@ "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": null, - "range_ft": 150, - "long_range_ft": 600, + "range_ft": 150.0, + "long_range_ft": 600.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -13867,9 +14497,10 @@ "parent": "mmenag_medusa_snake-hair", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -13889,9 +14520,10 @@ "parent": "mmenag_merclops_club", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -13911,9 +14543,10 @@ "parent": "mmenag_merclops_harpoon", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, - "range_ft": 90, + "reach_ft": 10.0, + "range_ft": 90.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D10", @@ -13933,9 +14566,10 @@ "parent": "mmenag_merfolk-knight_lance", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D12", @@ -13955,9 +14589,10 @@ "parent": "mmenag_merfolk-knight_trident", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -13977,9 +14612,10 @@ "parent": "mmenag_merfolk_trident", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8) piercing", @@ -13999,9 +14635,10 @@ "parent": "mmenag_merrow-mage_claws", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -14021,9 +14658,10 @@ "parent": "mmenag_merrow-mage_harpoon", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 10.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -14043,9 +14681,10 @@ "parent": "mmenag_merrow_claws", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -14065,9 +14704,10 @@ "parent": "mmenag_merrow_harpoon", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 10.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -14087,9 +14727,10 @@ "parent": "mmenag_mimic_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -14109,9 +14750,10 @@ "parent": "mmenag_mimic_pseudopod", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -14131,9 +14773,10 @@ "parent": "mmenag_minotaur-champion_gore", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -14153,9 +14796,10 @@ "parent": "mmenag_minotaur-champion_greataxe", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D12", @@ -14175,9 +14819,10 @@ "parent": "mmenag_minotaur_gore", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -14197,9 +14842,10 @@ "parent": "mmenag_minotaur_greataxe", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D12", @@ -14219,9 +14865,10 @@ "parent": "mmenag_minstrel_rapier", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -14241,9 +14888,10 @@ "parent": "mmenag_mirage-monster_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -14263,9 +14911,10 @@ "parent": "mmenag_mirage-monster_pseudopod", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -14285,9 +14934,10 @@ "parent": "mmenag_miremuck-goblin-king_rapier", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -14308,8 +14958,9 @@ "attack_type": "WEAPON", "to_hit_mod": 3, "reach_ft": null, - "range_ft": 100, - "long_range_ft": 400, + "range_ft": 100.0, + "long_range_ft": 400.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -14329,9 +14980,10 @@ "parent": "mmenag_mountain-dwarf-defender_lance", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D12", @@ -14351,9 +15003,10 @@ "parent": "mmenag_mountain-dwarf-defender_warhammer", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -14373,9 +15026,10 @@ "parent": "mmenag_mountain-dwarf-lord_battleaxe", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -14396,8 +15050,9 @@ "attack_type": "WEAPON", "to_hit_mod": 10, "reach_ft": null, - "range_ft": 150, - "long_range_ft": 600, + "range_ft": 150.0, + "long_range_ft": 600.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -14417,9 +15072,10 @@ "parent": "mmenag_mountain-dwarf-soldier_handaxe", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -14440,8 +15096,9 @@ "attack_type": "WEAPON", "to_hit_mod": 3, "reach_ft": null, - "range_ft": 100, - "long_range_ft": 400, + "range_ft": 100.0, + "long_range_ft": 400.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -14461,9 +15118,10 @@ "parent": "mmenag_mule_hooves", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -14483,9 +15141,10 @@ "parent": "mmenag_mummy-lord_contagion", "attack_type": "SPELL", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": null, "damage_die_type": null, @@ -14505,9 +15164,10 @@ "parent": "mmenag_mummy-lord_rotting-fist", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -14527,9 +15187,10 @@ "parent": "mmenag_mummy_rotting-fist", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -14549,9 +15210,10 @@ "parent": "mmenag_murmuring-worm_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -14571,9 +15233,10 @@ "parent": "mmenag_murmuring-worm_constrict", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -14593,9 +15256,10 @@ "parent": "mmenag_naiad_watery-grasp", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -14615,9 +15279,10 @@ "parent": "mmenag_nalfeshnee_bite", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, "damage_die_type": "D10", @@ -14637,9 +15302,10 @@ "parent": "mmenag_nalfeshnee_claws", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D12", @@ -14659,9 +15325,10 @@ "parent": "mmenag_necromancer_dagger", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -14682,8 +15349,9 @@ "attack_type": "SPELL", "to_hit_mod": 6, "reach_ft": null, - "range_ft": 120, + "range_ft": 120.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10) fire", @@ -14703,9 +15371,10 @@ "parent": "mmenag_night-hag_claws", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -14725,9 +15394,10 @@ "parent": "mmenag_night-hag_sleep-touch", "attack_type": "SPELL", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": null, "damage_die_type": null, @@ -14747,9 +15417,10 @@ "parent": "mmenag_nightmare_hooves", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -14770,8 +15441,9 @@ "attack_type": "WEAPON", "to_hit_mod": 3, "reach_ft": null, - "range_ft": 20, - "long_range_ft": 60, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6) blu", @@ -14791,9 +15463,10 @@ "parent": "mmenag_nilbog_rat-flail", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D4", @@ -14813,9 +15486,10 @@ "parent": "mmenag_noble_rapier", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -14835,9 +15509,10 @@ "parent": "mmenag_ochre-jelly_pseudopod", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -14857,9 +15532,10 @@ "parent": "mmenag_octopus_tentacles", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": null, "damage_die_type": null, @@ -14879,9 +15555,10 @@ "parent": "mmenag_ogre-flesh-heap_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -14901,9 +15578,10 @@ "parent": "mmenag_ogre-flesh-heap_grab", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -14923,9 +15601,10 @@ "parent": "mmenag_ogre-flesh-heap_greatclub", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -14945,9 +15624,10 @@ "parent": "mmenag_ogre-flesh-heap_sweeping-strike", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -14967,9 +15647,10 @@ "parent": "mmenag_ogre-mage_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -14989,9 +15670,10 @@ "parent": "mmenag_ogre-mage_iron-club", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D12", @@ -15011,9 +15693,10 @@ "parent": "mmenag_ogre-zombie_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -15033,9 +15716,10 @@ "parent": "mmenag_ogre-zombie_grab", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -15055,9 +15739,10 @@ "parent": "mmenag_ogre-zombie_greatclub", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -15077,9 +15762,10 @@ "parent": "mmenag_ogre-zombie_sweeping-strike", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -15099,9 +15785,10 @@ "parent": "mmenag_ogre_greatclub", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -15121,9 +15808,10 @@ "parent": "mmenag_ogre_javelin", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": 30, - "long_range_ft": 120, + "reach_ft": 5.0, + "range_ft": 30.0, + "long_range_ft": 120.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -15143,9 +15831,10 @@ "parent": "mmenag_ogre_sweeping-strike", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -15165,9 +15854,10 @@ "parent": "mmenag_ogrekin_battleaxe", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -15187,9 +15877,10 @@ "parent": "mmenag_ogrekin_handaxe", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -15209,9 +15900,10 @@ "parent": "mmenag_orcish-wildling-minstrel_rapier", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -15231,9 +15923,10 @@ "parent": "mmenag_ork-urk_greataxe", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D12", @@ -15253,9 +15946,10 @@ "parent": "mmenag_ork-urk_handaxe", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -15275,9 +15969,10 @@ "parent": "mmenag_otyugh_tentacle", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -15297,9 +15992,10 @@ "parent": "mmenag_owl_talons", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": null, "damage_die_type": null, @@ -15319,9 +16015,10 @@ "parent": "mmenag_owlbear-recluse_beak", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -15341,9 +16038,10 @@ "parent": "mmenag_owlbear-recluse_claws", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -15363,9 +16061,10 @@ "parent": "mmenag_owlbear_beak", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -15385,9 +16084,10 @@ "parent": "mmenag_owlbear_claws", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -15407,9 +16107,10 @@ "parent": "mmenag_panther_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -15429,9 +16130,10 @@ "parent": "mmenag_panther_claws", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -15451,9 +16153,10 @@ "parent": "mmenag_pegasus_hooves", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -15473,9 +16176,10 @@ "parent": "mmenag_peryton_gore", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -15495,9 +16199,10 @@ "parent": "mmenag_peryton_talons", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -15517,9 +16222,10 @@ "parent": "mmenag_phase-monster_claws", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -15539,9 +16245,10 @@ "parent": "mmenag_phase-monster_horns", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -15561,9 +16268,10 @@ "parent": "mmenag_phase-spider_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -15586,6 +16294,7 @@ "reach_ft": null, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6) piercing", @@ -15605,9 +16314,10 @@ "parent": "mmenag_pirate-captain_dagger", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": 20, + "reach_ft": 5.0, + "range_ft": 20.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -15627,9 +16337,10 @@ "parent": "mmenag_pirate-captain_scimitar", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -15650,8 +16361,9 @@ "attack_type": "WEAPON", "to_hit_mod": 2, "reach_ft": null, - "range_ft": 80, - "long_range_ft": 320, + "range_ft": 80.0, + "long_range_ft": 320.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8) piercing", @@ -15671,9 +16383,10 @@ "parent": "mmenag_pirate_scimitar", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -15693,9 +16406,10 @@ "parent": "mmenag_pit-fiend-general_bite", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6", @@ -15715,9 +16429,10 @@ "parent": "mmenag_pit-fiend-general_mace", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6", @@ -15737,9 +16452,10 @@ "parent": "mmenag_pit-fiend_bite", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6", @@ -15759,9 +16475,10 @@ "parent": "mmenag_pit-fiend_mace", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6", @@ -15781,9 +16498,10 @@ "parent": "mmenag_pixie_thorn-dagger", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, - "range_ft": 10, - "long_range_ft": 30, + "reach_ft": 5.0, + "range_ft": 10.0, + "long_range_ft": 30.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": null, "damage_die_type": null, @@ -15803,9 +16521,10 @@ "parent": "mmenag_planetar_flaming-sword", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6", @@ -15825,9 +16544,10 @@ "parent": "mmenag_plesiosaurus_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -15847,9 +16567,10 @@ "parent": "mmenag_poisonous-snake_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "Damage an", @@ -15869,9 +16590,10 @@ "parent": "mmenag_polar-bear_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -15891,9 +16613,10 @@ "parent": "mmenag_polar-bear_claws", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -15913,9 +16636,10 @@ "parent": "mmenag_pony_hooves", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4) blu", @@ -15936,8 +16660,9 @@ "attack_type": "SPELL", "to_hit_mod": 5, "reach_ft": null, - "range_ft": 120, + "range_ft": 120.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6) ra", @@ -15957,9 +16682,10 @@ "parent": "mmenag_priest_mace", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -15979,9 +16705,10 @@ "parent": "mmenag_pseudodragon-familiar_sting", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -16001,9 +16728,10 @@ "parent": "mmenag_pseudodragon_sting", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -16023,9 +16751,10 @@ "parent": "mmenag_pteranodon_bite", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -16045,9 +16774,10 @@ "parent": "mmenag_pugilist_fists", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -16067,9 +16797,10 @@ "parent": "mmenag_purple-worm_bite", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -16089,9 +16820,10 @@ "parent": "mmenag_purple-worm_tail-stinger", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -16111,9 +16843,10 @@ "parent": "mmenag_pyrohydra_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -16133,9 +16866,10 @@ "parent": "mmenag_quasit-familiar_claws-bite-while-shapeshifted", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -16155,9 +16889,10 @@ "parent": "mmenag_quasit_claws-bite-while-shapeshifted", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -16177,9 +16912,10 @@ "parent": "mmenag_quipper_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": null, "damage_die_type": null, @@ -16199,9 +16935,10 @@ "parent": "mmenag_rakshasa_claw", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -16221,9 +16958,10 @@ "parent": "mmenag_rakshasa_rapier", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -16243,9 +16981,10 @@ "parent": "mmenag_raptor_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -16265,9 +17004,10 @@ "parent": "mmenag_rat_bite", "attack_type": "WEAPON", "to_hit_mod": 1, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": null, "damage_die_type": null, @@ -16287,9 +17027,10 @@ "parent": "mmenag_raven_beak", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": null, "damage_die_type": null, @@ -16309,9 +17050,10 @@ "parent": "mmenag_red-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -16331,9 +17073,10 @@ "parent": "mmenag_reef-shark_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -16353,9 +17096,10 @@ "parent": "mmenag_remorhaz-spawn_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -16375,9 +17119,10 @@ "parent": "mmenag_remorhaz-spawn_constrict", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -16397,9 +17142,10 @@ "parent": "mmenag_remorhaz_bite", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -16419,9 +17165,10 @@ "parent": "mmenag_remorhaz_constrict", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -16441,9 +17188,10 @@ "parent": "mmenag_revenant_strangle", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -16464,8 +17212,9 @@ "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 30, - "long_range_ft": 120, + "range_ft": 30.0, + "long_range_ft": 120.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -16485,9 +17234,10 @@ "parent": "mmenag_revilock_spiked-club", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -16507,9 +17257,10 @@ "parent": "mmenag_revilock_throttle", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -16529,9 +17280,10 @@ "parent": "mmenag_rhinoceros_gore", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -16551,9 +17303,10 @@ "parent": "mmenag_riding-horse_hooves", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -16573,9 +17326,10 @@ "parent": "mmenag_river-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -16595,9 +17349,10 @@ "parent": "mmenag_roc-juvenile_beak", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -16617,9 +17372,10 @@ "parent": "mmenag_roc-juvenile_talons", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -16639,9 +17395,10 @@ "parent": "mmenag_roc_beak", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6", @@ -16661,9 +17418,10 @@ "parent": "mmenag_roc_talons", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6", @@ -16683,9 +17441,10 @@ "parent": "mmenag_roper_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -16705,9 +17464,10 @@ "parent": "mmenag_roper_tendril", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 50, + "reach_ft": 50.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": null, "damage_die_type": null, @@ -16727,9 +17487,10 @@ "parent": "mmenag_rug-of-smothering_smother", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": null, "damage_die_type": null, @@ -16749,9 +17510,10 @@ "parent": "mmenag_rust-monster_bite", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -16771,9 +17533,10 @@ "parent": "mmenag_saber-toothed-tiger_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -16793,9 +17556,10 @@ "parent": "mmenag_saber-toothed-tiger_claws", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -16815,9 +17579,10 @@ "parent": "mmenag_sahuagin-champion_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -16837,9 +17602,10 @@ "parent": "mmenag_sahuagin-champion_trident", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -16859,9 +17625,10 @@ "parent": "mmenag_sahuagin_claw", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -16881,9 +17648,10 @@ "parent": "mmenag_sahuagin_trident", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -16903,9 +17671,10 @@ "parent": "mmenag_salamander-noble_pike", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -16925,9 +17694,10 @@ "parent": "mmenag_salamander-noble_tail", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -16947,9 +17717,10 @@ "parent": "mmenag_salamander-nymph_tail", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -16969,9 +17740,10 @@ "parent": "mmenag_salamander_pike", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -16991,9 +17763,10 @@ "parent": "mmenag_salamander_tail", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -17013,9 +17786,10 @@ "parent": "mmenag_sand-ray_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -17035,9 +17809,10 @@ "parent": "mmenag_sand-ray_tail", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -17057,9 +17832,10 @@ "parent": "mmenag_sand-worm_bite", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -17079,9 +17855,10 @@ "parent": "mmenag_sand-worm_tail-stinger", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -17101,9 +17878,10 @@ "parent": "mmenag_sapphire-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -17123,9 +17901,10 @@ "parent": "mmenag_satyr_ram", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -17145,9 +17924,10 @@ "parent": "mmenag_satyr_rapier", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -17168,8 +17948,9 @@ "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 80, - "long_range_ft": 320, + "range_ft": 80.0, + "long_range_ft": 320.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -17189,9 +17970,10 @@ "parent": "mmenag_scarecrow-harvester_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -17211,9 +17993,10 @@ "parent": "mmenag_scarecrow_slam", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -17233,9 +18016,10 @@ "parent": "mmenag_scorpion_sting", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "Damage an", @@ -17255,9 +18039,10 @@ "parent": "mmenag_scorpionfolk-imperator_claw", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -17277,9 +18062,10 @@ "parent": "mmenag_scorpionfolk-imperator_javelin", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": 30, - "long_range_ft": 120, + "reach_ft": 5.0, + "range_ft": 30.0, + "long_range_ft": 120.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -17299,9 +18085,10 @@ "parent": "mmenag_scorpionfolk_claw", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -17321,9 +18108,10 @@ "parent": "mmenag_scorpionfolk_javelin", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": 30, - "long_range_ft": 120, + "reach_ft": 5.0, + "range_ft": 30.0, + "long_range_ft": 120.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -17344,8 +18132,9 @@ "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": null, - "range_ft": 150, - "long_range_ft": 600, + "range_ft": 150.0, + "long_range_ft": 600.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -17365,9 +18154,10 @@ "parent": "mmenag_scout_shortsword", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -17387,9 +18177,10 @@ "parent": "mmenag_scrag_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -17409,9 +18200,10 @@ "parent": "mmenag_scrag_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -17431,9 +18223,10 @@ "parent": "mmenag_sea-hag_claws", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -17453,9 +18246,10 @@ "parent": "mmenag_sea-serpent_bite", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D10", @@ -17475,9 +18269,10 @@ "parent": "mmenag_sea-serpent_coils", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D20", @@ -17497,9 +18292,10 @@ "parent": "mmenag_sea-serpent_tail", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D8", @@ -17519,9 +18315,10 @@ "parent": "mmenag_shadow-demon_claws", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -17541,9 +18338,10 @@ "parent": "mmenag_shadow-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -17564,8 +18362,9 @@ "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": null, - "range_ft": 30, - "long_range_ft": 120, + "range_ft": 30.0, + "long_range_ft": 120.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -17585,9 +18384,10 @@ "parent": "mmenag_shadow-elf-champion-warrior_shortsword", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -17607,9 +18407,10 @@ "parent": "mmenag_shadow-elf-high-priest_mace", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -17629,9 +18430,10 @@ "parent": "mmenag_shadow-elf-mage_dagger", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -17652,8 +18454,9 @@ "attack_type": "SPELL", "to_hit_mod": 6, "reach_ft": null, - "range_ft": 120, + "range_ft": 120.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10) fire", @@ -17673,9 +18476,10 @@ "parent": "mmenag_shadow-elf-spellcaster-drider_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4) piercing", @@ -17695,9 +18499,10 @@ "parent": "mmenag_shadow-elf-spellcaster-drider_claws", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -17718,8 +18523,9 @@ "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": null, - "range_ft": 120, - "long_range_ft": 600, + "range_ft": 120.0, + "long_range_ft": 600.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -17739,9 +18545,10 @@ "parent": "mmenag_shadow-elf-spellcaster-drider_longsword-wielded-two-handed", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -17762,8 +18569,9 @@ "attack_type": "WEAPON", "to_hit_mod": 3, "reach_ft": null, - "range_ft": 30, - "long_range_ft": 120, + "range_ft": 30.0, + "long_range_ft": 120.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -17783,9 +18591,10 @@ "parent": "mmenag_shadow-elf-warrior_shortsword", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -17805,9 +18614,10 @@ "parent": "mmenag_shadow_claw", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -17827,9 +18637,10 @@ "parent": "mmenag_shambling-mound_slam", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -17849,9 +18660,10 @@ "parent": "mmenag_shield-guardian_fist", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -17871,9 +18683,10 @@ "parent": "mmenag_shroud-ray_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -17893,9 +18706,10 @@ "parent": "mmenag_shroud-ray_tail", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -17915,9 +18729,10 @@ "parent": "mmenag_silver-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -17937,9 +18752,10 @@ "parent": "mmenag_siren_claw", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -17960,8 +18776,9 @@ "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": null, - "range_ft": 100, - "long_range_ft": 400, + "range_ft": 100.0, + "long_range_ft": 400.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -17981,9 +18798,10 @@ "parent": "mmenag_skeletal-champion_longsword", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -18003,9 +18821,10 @@ "parent": "mmenag_skeletal-tyrannosaurus-rex_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D12", @@ -18025,9 +18844,10 @@ "parent": "mmenag_skeletal-tyrannosaurus-rex_tail", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -18047,9 +18867,10 @@ "parent": "mmenag_skeletal-warhorse_hooves", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -18070,8 +18891,9 @@ "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 80, - "long_range_ft": 320, + "range_ft": 80.0, + "long_range_ft": 320.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, "damage_die_type": "D6", @@ -18091,9 +18913,10 @@ "parent": "mmenag_skeleton-horde_shortsword", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, "damage_die_type": "D6", @@ -18114,8 +18937,9 @@ "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 80, - "long_range_ft": 320, + "range_ft": 80.0, + "long_range_ft": 320.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -18135,9 +18959,10 @@ "parent": "mmenag_skeleton_shortsword", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -18157,9 +18982,10 @@ "parent": "mmenag_snake-lamia_constrict", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -18179,9 +19005,10 @@ "parent": "mmenag_snake-lamia_dagger", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -18201,9 +19028,10 @@ "parent": "mmenag_snake-lamia_dizzying-touch", "attack_type": "SPELL", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": null, "damage_die_type": null, @@ -18223,9 +19051,10 @@ "parent": "mmenag_solar_holy-sword", "attack_type": "WEAPON", "to_hit_mod": 16, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6", @@ -18245,9 +19074,10 @@ "parent": "mmenag_soldier-squad_spears", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, "damage_die_type": "D6", @@ -18268,8 +19098,9 @@ "attack_type": "WEAPON", "to_hit_mod": 3, "reach_ft": null, - "range_ft": 100, - "long_range_ft": 400, + "range_ft": 100.0, + "long_range_ft": 400.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -18289,9 +19120,10 @@ "parent": "mmenag_soldier_spear", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -18311,9 +19143,10 @@ "parent": "mmenag_spark-mephit_claws", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -18333,9 +19166,10 @@ "parent": "mmenag_specter_life-drain", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6) necrotic", @@ -18355,9 +19189,10 @@ "parent": "mmenag_spell-warped-chuul_pincer", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -18377,9 +19212,10 @@ "parent": "mmenag_sphinx_claw", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -18399,9 +19235,10 @@ "parent": "mmenag_spider_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "Damage an", @@ -18421,9 +19258,10 @@ "parent": "mmenag_spirit-naga_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -18443,9 +19281,10 @@ "parent": "mmenag_sprite_rapier", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "Damage plus 3 (1", @@ -18466,8 +19305,9 @@ "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": null, - "range_ft": 40, - "long_range_ft": 160, + "range_ft": 40.0, + "long_range_ft": 160.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "Damage plus 3 (1", @@ -18488,8 +19328,9 @@ "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 30, - "long_range_ft": 120, + "range_ft": 30.0, + "long_range_ft": 120.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -18509,9 +19350,10 @@ "parent": "mmenag_spy_shortsword", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -18532,8 +19374,9 @@ "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": null, - "range_ft": 30, - "long_range_ft": 120, + "range_ft": 30.0, + "long_range_ft": 120.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -18553,9 +19396,10 @@ "parent": "mmenag_spymaster_shortsword", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -18575,9 +19419,10 @@ "parent": "mmenag_steam-mephit_claws", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4) slashing", @@ -18597,9 +19442,10 @@ "parent": "mmenag_stegosaurus_tail", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -18619,9 +19465,10 @@ "parent": "mmenag_stirge_proboscis", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": null, "damage_die_type": null, @@ -18642,8 +19489,9 @@ "attack_type": "WEAPON", "to_hit_mod": 10, "reach_ft": null, - "range_ft": 60, - "long_range_ft": 240, + "range_ft": 60.0, + "long_range_ft": 240.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 7, "damage_die_type": "D6", @@ -18663,9 +19511,10 @@ "parent": "mmenag_stone-colossus_slam", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -18685,9 +19534,10 @@ "parent": "mmenag_stone-giant-stonetalker_greatclub", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -18708,8 +19558,9 @@ "attack_type": "WEAPON", "to_hit_mod": 9, "reach_ft": null, - "range_ft": 60, - "long_range_ft": 240, + "range_ft": 60.0, + "long_range_ft": 240.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6", @@ -18729,9 +19580,10 @@ "parent": "mmenag_stone-giant_greatclub", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -18752,8 +19604,9 @@ "attack_type": "WEAPON", "to_hit_mod": 9, "reach_ft": null, - "range_ft": 60, - "long_range_ft": 240, + "range_ft": 60.0, + "long_range_ft": 240.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6", @@ -18774,8 +19627,9 @@ "attack_type": "WEAPON", "to_hit_mod": 10, "reach_ft": null, - "range_ft": 60, - "long_range_ft": 240, + "range_ft": 60.0, + "long_range_ft": 240.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 7, "damage_die_type": "D6", @@ -18795,9 +19649,10 @@ "parent": "mmenag_stone-guardian_slam", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -18817,9 +19672,10 @@ "parent": "mmenag_storm-giant-monarch_greatsword", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, "damage_die_type": "D6", @@ -18840,8 +19696,9 @@ "attack_type": "WEAPON", "to_hit_mod": 12, "reach_ft": null, - "range_ft": 60, - "long_range_ft": 240, + "range_ft": 60.0, + "long_range_ft": 240.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 10, "damage_die_type": "D6", @@ -18861,9 +19718,10 @@ "parent": "mmenag_storm-giant_greatsword", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, "damage_die_type": "D6", @@ -18884,8 +19742,9 @@ "attack_type": "WEAPON", "to_hit_mod": 12, "reach_ft": null, - "range_ft": 60, - "long_range_ft": 240, + "range_ft": 60.0, + "long_range_ft": 240.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 10, "damage_die_type": "D6", @@ -18905,9 +19764,10 @@ "parent": "mmenag_stout-halfling-guard_spear", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6) piercing", @@ -18928,8 +19788,9 @@ "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": null, - "range_ft": 80, - "long_range_ft": 320, + "range_ft": 80.0, + "long_range_ft": 320.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -18949,9 +19810,10 @@ "parent": "mmenag_strider_shortsword", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -18971,9 +19833,10 @@ "parent": "mmenag_swarm-of-bats_bites", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 0, + "reach_ft": 0.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6) piercing", @@ -18993,9 +19856,10 @@ "parent": "mmenag_swarm-of-insects_bites", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 0, + "reach_ft": 0.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10) piercing", @@ -19015,9 +19879,10 @@ "parent": "mmenag_swarm-of-insects_venom", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 0, + "reach_ft": 0.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4) piercing", @@ -19037,9 +19902,10 @@ "parent": "mmenag_swarm-of-khalkos-spawn_sting", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D4", @@ -19059,9 +19925,10 @@ "parent": "mmenag_swarm-of-poisonous-snakes_bites", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 0, + "reach_ft": 0.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6) piercing", @@ -19081,9 +19948,10 @@ "parent": "mmenag_swarm-of-quippers_bites", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 0, + "reach_ft": 0.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D4) piercing", @@ -19103,9 +19971,10 @@ "parent": "mmenag_swarm-of-rats_bites", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": 0, + "reach_ft": 0.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6) piercing", @@ -19125,9 +19994,10 @@ "parent": "mmenag_swarm-of-ravens_beaks", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 0, + "reach_ft": 0.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6) piercing", @@ -19147,9 +20017,10 @@ "parent": "mmenag_tarrasque_bite", "attack_type": "WEAPON", "to_hit_mod": 19, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, "damage_die_type": "D12", @@ -19169,9 +20040,10 @@ "parent": "mmenag_tarrasque_claw", "attack_type": "WEAPON", "to_hit_mod": 19, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, "damage_die_type": "D8", @@ -19191,9 +20063,10 @@ "parent": "mmenag_tarrasque_horns", "attack_type": "WEAPON", "to_hit_mod": 19, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, "damage_die_type": "D10", @@ -19213,9 +20086,10 @@ "parent": "mmenag_tarrasque_tail", "attack_type": "WEAPON", "to_hit_mod": 19, - "reach_ft": 20, + "reach_ft": 20.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, "damage_die_type": "D6", @@ -19235,9 +20109,10 @@ "parent": "mmenag_thug_brass-knuckles", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -19258,8 +20133,9 @@ "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 100, + "range_ft": 100.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -19279,9 +20155,10 @@ "parent": "mmenag_thunderbird_beak", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -19301,9 +20178,10 @@ "parent": "mmenag_thunderbird_talons", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -19323,9 +20201,10 @@ "parent": "mmenag_tiger_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -19345,9 +20224,10 @@ "parent": "mmenag_tiger_claws", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -19367,9 +20247,10 @@ "parent": "mmenag_titanic-dragon-turtle_bite", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 7, "damage_die_type": "D12", @@ -19389,9 +20270,10 @@ "parent": "mmenag_titanic-dragon-turtle_ram", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, "damage_die_type": "D12", @@ -19411,9 +20293,10 @@ "parent": "mmenag_titanic-dragon-turtle_tail", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, "damage_die_type": "D12", @@ -19433,9 +20316,10 @@ "parent": "mmenag_titanic-kraken_bite", "attack_type": "WEAPON", "to_hit_mod": 18, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D12", @@ -19455,9 +20339,10 @@ "parent": "mmenag_titanic-kraken_tentacle", "attack_type": "WEAPON", "to_hit_mod": 18, - "reach_ft": 30, + "reach_ft": 30.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D8", @@ -19478,8 +20363,9 @@ "attack_type": "WEAPON", "to_hit_mod": 10, "reach_ft": null, - "range_ft": 60, - "long_range_ft": 180, + "range_ft": 60.0, + "long_range_ft": 180.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -19499,9 +20385,10 @@ "parent": "mmenag_treant_slam", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6", @@ -19521,9 +20408,10 @@ "parent": "mmenag_triceratops_defensive-gore", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D12", @@ -19543,9 +20431,10 @@ "parent": "mmenag_trickster-priest_mace", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -19565,9 +20454,10 @@ "parent": "mmenag_troglodyte_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -19587,9 +20477,10 @@ "parent": "mmenag_troglodyte_claws", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -19610,8 +20501,9 @@ "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 20, - "long_range_ft": 60, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -19631,9 +20523,10 @@ "parent": "mmenag_troll_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -19653,9 +20546,10 @@ "parent": "mmenag_troll_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -19675,9 +20569,10 @@ "parent": "mmenag_tyrannosaurus-rex_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D12", @@ -19697,9 +20592,10 @@ "parent": "mmenag_tyrannosaurus-rex_tail", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -19719,9 +20615,10 @@ "parent": "mmenag_unicorn_hooves", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -19741,9 +20638,10 @@ "parent": "mmenag_unicorn_horn", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -19763,9 +20661,10 @@ "parent": "mmenag_ur-otyugh_tentacle", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -19785,9 +20684,10 @@ "parent": "mmenag_vampire-assassin_grab", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -19807,9 +20707,10 @@ "parent": "mmenag_vampire-mage_grab", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -19829,9 +20730,10 @@ "parent": "mmenag_vampire-spawn_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -19851,9 +20753,10 @@ "parent": "mmenag_vampire-spawn_grab", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -19873,9 +20776,10 @@ "parent": "mmenag_vampire-warrior_grab", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -19895,9 +20799,10 @@ "parent": "mmenag_vampire-warrior_reaping-greatsword", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -19917,9 +20822,10 @@ "parent": "mmenag_vampire_grab", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -19939,9 +20845,10 @@ "parent": "mmenag_vengeful-ghost_withering-touch", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6", @@ -19962,8 +20869,9 @@ "attack_type": "WEAPON", "to_hit_mod": 3, "reach_ft": null, - "range_ft": 100, - "long_range_ft": 400, + "range_ft": 100.0, + "long_range_ft": 400.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -19983,9 +20891,10 @@ "parent": "mmenag_veteran_longsword", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -20005,9 +20914,10 @@ "parent": "mmenag_veteran_shortsword", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -20027,9 +20937,10 @@ "parent": "mmenag_violet-fungus_rotting-touch", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10) necrotic", @@ -20049,9 +20960,10 @@ "parent": "mmenag_vrock_beak", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -20071,9 +20983,10 @@ "parent": "mmenag_vrock_talons", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -20093,9 +21006,10 @@ "parent": "mmenag_vulture_beak", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4) piercing", @@ -20115,9 +21029,10 @@ "parent": "mmenag_walking-statue_smash", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -20137,9 +21052,10 @@ "parent": "mmenag_wallflower_tentacles", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -20160,8 +21076,9 @@ "attack_type": "SPELL", "to_hit_mod": 5, "reach_ft": null, - "range_ft": 120, + "range_ft": 120.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6) ra", @@ -20181,9 +21098,10 @@ "parent": "mmenag_warhordling-orc-eye_mace", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -20203,9 +21121,10 @@ "parent": "mmenag_warhordling-orc-war-chief_greataxe", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D12", @@ -20225,9 +21144,10 @@ "parent": "mmenag_warhordling-orc-warrior_greataxe", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D12", @@ -20247,9 +21167,10 @@ "parent": "mmenag_warhorse_hooves", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -20269,9 +21190,10 @@ "parent": "mmenag_warrior-band_spears", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, "damage_die_type": "D6", @@ -20291,9 +21213,10 @@ "parent": "mmenag_warrior_spear", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -20313,9 +21236,10 @@ "parent": "mmenag_water-elemental_slam", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -20335,9 +21259,10 @@ "parent": "mmenag_weasel_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": null, "damage_die_type": null, @@ -20357,9 +21282,10 @@ "parent": "mmenag_werebear_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -20379,9 +21305,10 @@ "parent": "mmenag_werebear_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D12", @@ -20401,9 +21328,10 @@ "parent": "mmenag_werebear_greataxe", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D12", @@ -20423,9 +21351,10 @@ "parent": "mmenag_werebear_handaxe", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -20445,9 +21374,10 @@ "parent": "mmenag_wereboar_maul", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -20467,9 +21397,10 @@ "parent": "mmenag_wereboar_tusks", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -20489,9 +21420,10 @@ "parent": "mmenag_wererat_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -20512,8 +21444,9 @@ "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 30, - "long_range_ft": 120, + "range_ft": 30.0, + "long_range_ft": 120.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -20533,9 +21466,10 @@ "parent": "mmenag_wererat_shortsword", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -20555,9 +21489,10 @@ "parent": "mmenag_weretiger_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -20577,9 +21512,10 @@ "parent": "mmenag_weretiger_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -20600,8 +21536,9 @@ "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": null, - "range_ft": 150, - "long_range_ft": 600, + "range_ft": 150.0, + "long_range_ft": 600.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -20621,9 +21558,10 @@ "parent": "mmenag_weretiger_longsword", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -20643,9 +21581,10 @@ "parent": "mmenag_werewolf_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -20665,9 +21604,10 @@ "parent": "mmenag_werewolf_claw", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -20687,9 +21627,10 @@ "parent": "mmenag_werewolf_greatclub", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -20709,9 +21650,10 @@ "parent": "mmenag_white-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -20732,8 +21674,9 @@ "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 150, - "long_range_ft": 600, + "range_ft": 150.0, + "long_range_ft": 600.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -20753,9 +21696,10 @@ "parent": "mmenag_wight_longsword", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -20775,9 +21719,10 @@ "parent": "mmenag_wight_seize", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6) col", @@ -20797,9 +21742,10 @@ "parent": "mmenag_will-o-wisp_shock", "attack_type": "SPELL", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6) lightning", @@ -20819,9 +21765,10 @@ "parent": "mmenag_winter-hag_claws", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -20842,8 +21789,9 @@ "attack_type": "SPELL", "to_hit_mod": 7, "reach_ft": null, - "range_ft": 60, + "range_ft": 60.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -20863,9 +21811,10 @@ "parent": "mmenag_winter-wolf_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -20885,9 +21834,10 @@ "parent": "mmenag_wolf_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -20908,8 +21858,9 @@ "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": null, - "range_ft": 150, - "long_range_ft": 600, + "range_ft": 150.0, + "long_range_ft": 600.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -20929,9 +21880,10 @@ "parent": "mmenag_wood-elf-scout_shortsword", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -20952,8 +21904,9 @@ "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": null, - "range_ft": 150, - "long_range_ft": 600, + "range_ft": 150.0, + "long_range_ft": 600.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -20973,9 +21926,10 @@ "parent": "mmenag_wood-elf-sharpshooter_longsword", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -20995,9 +21949,10 @@ "parent": "mmenag_worg_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -21017,9 +21972,10 @@ "parent": "mmenag_wraith-lord_greatsword", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -21039,9 +21995,10 @@ "parent": "mmenag_wyvern_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -21061,9 +22018,10 @@ "parent": "mmenag_wyvern_claws", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -21083,9 +22041,10 @@ "parent": "mmenag_wyvern_stinger", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -21105,9 +22064,10 @@ "parent": "mmenag_xorn_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -21127,9 +22087,10 @@ "parent": "mmenag_xorn_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -21149,9 +22110,10 @@ "parent": "mmenag_yeti_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -21171,9 +22133,10 @@ "parent": "mmenag_yobbo_mangler", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -21194,8 +22157,9 @@ "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 30, - "long_range_ft": 90, + "range_ft": 30.0, + "long_range_ft": 90.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -21215,9 +22179,10 @@ "parent": "mmenag_young-amethyst-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -21237,9 +22202,10 @@ "parent": "mmenag_young-amethyst-dragon_claws", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -21259,9 +22225,10 @@ "parent": "mmenag_young-black-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -21281,9 +22248,10 @@ "parent": "mmenag_young-black-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -21303,9 +22271,10 @@ "parent": "mmenag_young-blue-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -21325,9 +22294,10 @@ "parent": "mmenag_young-blue-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -21347,9 +22317,10 @@ "parent": "mmenag_young-brass-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -21369,9 +22340,10 @@ "parent": "mmenag_young-brass-dragon_claws", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -21391,9 +22363,10 @@ "parent": "mmenag_young-bronze-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -21413,9 +22386,10 @@ "parent": "mmenag_young-bronze-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -21435,9 +22409,10 @@ "parent": "mmenag_young-bronze-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -21457,9 +22432,10 @@ "parent": "mmenag_young-bronze-dragon_trident", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -21479,9 +22455,10 @@ "parent": "mmenag_young-copper-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -21501,9 +22478,10 @@ "parent": "mmenag_young-copper-dragon_claws", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -21523,9 +22501,10 @@ "parent": "mmenag_young-earth-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D10", @@ -21545,9 +22524,10 @@ "parent": "mmenag_young-earth-dragon_slam", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -21567,9 +22547,10 @@ "parent": "mmenag_young-emerald-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -21589,9 +22570,10 @@ "parent": "mmenag_young-emerald-dragon_claws", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -21611,9 +22593,10 @@ "parent": "mmenag_young-gold-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -21633,9 +22616,10 @@ "parent": "mmenag_young-gold-dragon_claws", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -21655,9 +22639,10 @@ "parent": "mmenag_young-green-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -21677,9 +22662,10 @@ "parent": "mmenag_young-green-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -21699,9 +22685,10 @@ "parent": "mmenag_young-red-dragon-zombie_bite", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -21721,9 +22708,10 @@ "parent": "mmenag_young-red-dragon-zombie_claws", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -21743,9 +22731,10 @@ "parent": "mmenag_young-red-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -21765,9 +22754,10 @@ "parent": "mmenag_young-red-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -21787,9 +22777,10 @@ "parent": "mmenag_young-river-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -21809,9 +22800,10 @@ "parent": "mmenag_young-river-dragon_claws", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -21831,9 +22823,10 @@ "parent": "mmenag_young-sapphire-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -21853,9 +22846,10 @@ "parent": "mmenag_young-sapphire-dragon_claws", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -21875,9 +22869,10 @@ "parent": "mmenag_young-shadow-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -21897,9 +22892,10 @@ "parent": "mmenag_young-shadow-dragon_claws", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -21919,9 +22915,10 @@ "parent": "mmenag_young-silver-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -21941,9 +22938,10 @@ "parent": "mmenag_young-silver-dragon_claws", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -21963,9 +22961,10 @@ "parent": "mmenag_young-white-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -21985,9 +22984,10 @@ "parent": "mmenag_young-white-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -22007,9 +23007,10 @@ "parent": "mmenag_zombie-horde_bite", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, "damage_die_type": "D10", @@ -22029,9 +23030,10 @@ "parent": "mmenag_zombie-horde_grab", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, "damage_die_type": "D6", @@ -22051,9 +23053,10 @@ "parent": "mmenag_zombie-knight_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -22073,9 +23076,10 @@ "parent": "mmenag_zombie-knight_grab", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -22095,9 +23099,10 @@ "parent": "mmenag_zombie-knight_greatsword", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -22117,9 +23122,10 @@ "parent": "mmenag_zombie_bite", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -22139,9 +23145,10 @@ "parent": "mmenag_zombie_grab", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", diff --git a/data/v2/green-ronin/tdcs/CreatureActionAttack.json b/data/v2/green-ronin/tdcs/CreatureActionAttack.json index 1640b508..8cc08178 100644 --- a/data/v2/green-ronin/tdcs/CreatureActionAttack.json +++ b/data/v2/green-ronin/tdcs/CreatureActionAttack.json @@ -7,9 +7,10 @@ "parent": "tdcs_firetamer_scimitar", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -29,9 +30,10 @@ "parent": "tdcs_skydancer_skysail-staff", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -51,9 +53,10 @@ "parent": "tdcs_stoneguard_granite-maul", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -73,9 +76,10 @@ "parent": "tdcs_waverider_harpoon", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", diff --git a/data/v2/kobold-press/bfrd/CreatureActionAttack.json b/data/v2/kobold-press/bfrd/CreatureActionAttack.json index ca75a6fe..c3a72498 100644 --- a/data/v2/kobold-press/bfrd/CreatureActionAttack.json +++ b/data/v2/kobold-press/bfrd/CreatureActionAttack.json @@ -8,8 +8,9 @@ "attack_type": "SPELL", "to_hit_mod": 8, "reach_ft": null, - "range_ft": 120, + "range_ft": 120.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -29,9 +30,10 @@ "parent": "bfrd_aboleth_tentacle", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -51,9 +53,10 @@ "parent": "bfrd_acolyte_mace", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6) blu", @@ -74,8 +77,9 @@ "attack_type": "SPELL", "to_hit_mod": 6, "reach_ft": null, - "range_ft": 60, + "range_ft": 60.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -95,9 +99,10 @@ "parent": "bfrd_adult-black-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -117,9 +122,10 @@ "parent": "bfrd_adult-black-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -139,9 +145,10 @@ "parent": "bfrd_adult-black-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -161,9 +168,10 @@ "parent": "bfrd_adult-blue-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -183,9 +191,10 @@ "parent": "bfrd_adult-blue-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -205,9 +214,10 @@ "parent": "bfrd_adult-blue-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -227,9 +237,10 @@ "parent": "bfrd_adult-brass-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -249,9 +260,10 @@ "parent": "bfrd_adult-brass-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -271,9 +283,10 @@ "parent": "bfrd_adult-brass-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -293,9 +306,10 @@ "parent": "bfrd_adult-bronze-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -315,9 +329,10 @@ "parent": "bfrd_adult-bronze-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -337,9 +352,10 @@ "parent": "bfrd_adult-bronze-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -359,9 +375,10 @@ "parent": "bfrd_adult-copper-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -381,9 +398,10 @@ "parent": "bfrd_adult-copper-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -403,9 +421,10 @@ "parent": "bfrd_adult-copper-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -425,9 +444,10 @@ "parent": "bfrd_adult-gold-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -447,9 +467,10 @@ "parent": "bfrd_adult-gold-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -469,9 +490,10 @@ "parent": "bfrd_adult-gold-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -491,9 +513,10 @@ "parent": "bfrd_adult-green-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -513,9 +536,10 @@ "parent": "bfrd_adult-green-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -535,9 +559,10 @@ "parent": "bfrd_adult-green-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -557,9 +582,10 @@ "parent": "bfrd_adult-red-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -579,9 +605,10 @@ "parent": "bfrd_adult-red-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -601,9 +628,10 @@ "parent": "bfrd_adult-red-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -623,9 +651,10 @@ "parent": "bfrd_adult-silver-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -645,9 +674,10 @@ "parent": "bfrd_adult-silver-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -667,9 +697,10 @@ "parent": "bfrd_adult-silver-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -689,9 +720,10 @@ "parent": "bfrd_adult-white-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -711,9 +743,10 @@ "parent": "bfrd_adult-white-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -733,9 +766,10 @@ "parent": "bfrd_adult-white-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -756,8 +790,9 @@ "attack_type": "WEAPON", "to_hit_mod": 8, "reach_ft": null, - "range_ft": 30, - "long_range_ft": 120, + "range_ft": 30.0, + "long_range_ft": 120.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -777,9 +812,10 @@ "parent": "bfrd_air-elemental_wind-lash", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -799,9 +835,10 @@ "parent": "bfrd_ambush-hag_claw", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -822,8 +859,9 @@ "attack_type": "SPELL", "to_hit_mod": 8, "reach_ft": null, - "range_ft": 60, + "range_ft": 60.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D8", @@ -843,9 +881,10 @@ "parent": "bfrd_ancient-black-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -865,9 +904,10 @@ "parent": "bfrd_ancient-black-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -887,9 +927,10 @@ "parent": "bfrd_ancient-black-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 20, + "reach_ft": 20.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -909,9 +950,10 @@ "parent": "bfrd_ancient-blue-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -931,9 +973,10 @@ "parent": "bfrd_ancient-blue-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -953,9 +996,10 @@ "parent": "bfrd_ancient-blue-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 20, + "reach_ft": 20.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -975,9 +1019,10 @@ "parent": "bfrd_ancient-brass-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -997,9 +1042,10 @@ "parent": "bfrd_ancient-brass-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -1019,9 +1065,10 @@ "parent": "bfrd_ancient-brass-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 20, + "reach_ft": 20.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -1041,9 +1088,10 @@ "parent": "bfrd_ancient-bronze-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -1063,9 +1111,10 @@ "parent": "bfrd_ancient-bronze-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -1085,9 +1134,10 @@ "parent": "bfrd_ancient-bronze-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 20, + "reach_ft": 20.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -1107,9 +1157,10 @@ "parent": "bfrd_ancient-copper-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -1129,9 +1180,10 @@ "parent": "bfrd_ancient-copper-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -1151,9 +1203,10 @@ "parent": "bfrd_ancient-copper-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 20, + "reach_ft": 20.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -1173,9 +1226,10 @@ "parent": "bfrd_ancient-gold-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 17, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -1195,9 +1249,10 @@ "parent": "bfrd_ancient-gold-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 17, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -1217,9 +1272,10 @@ "parent": "bfrd_ancient-gold-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 17, - "reach_ft": 20, + "reach_ft": 20.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -1239,9 +1295,10 @@ "parent": "bfrd_ancient-green-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -1261,9 +1318,10 @@ "parent": "bfrd_ancient-green-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6", @@ -1283,9 +1341,10 @@ "parent": "bfrd_ancient-green-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 20, + "reach_ft": 20.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -1305,9 +1364,10 @@ "parent": "bfrd_ancient-red-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 17, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -1327,9 +1387,10 @@ "parent": "bfrd_ancient-red-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 17, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -1349,9 +1410,10 @@ "parent": "bfrd_ancient-red-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 17, - "reach_ft": 20, + "reach_ft": 20.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -1371,9 +1433,10 @@ "parent": "bfrd_ancient-silver-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 17, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -1393,9 +1456,10 @@ "parent": "bfrd_ancient-silver-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 17, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -1415,9 +1479,10 @@ "parent": "bfrd_ancient-silver-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 17, - "reach_ft": 20, + "reach_ft": 20.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -1437,9 +1502,10 @@ "parent": "bfrd_ancient-white-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -1459,9 +1525,10 @@ "parent": "bfrd_ancient-white-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -1481,9 +1548,10 @@ "parent": "bfrd_ancient-white-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 20, + "reach_ft": 20.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -1504,8 +1572,9 @@ "attack_type": "SPELL", "to_hit_mod": 12, "reach_ft": null, - "range_ft": 120, + "range_ft": 120.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D8", @@ -1525,9 +1594,10 @@ "parent": "bfrd_androsphinx_claw", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -1547,9 +1617,10 @@ "parent": "bfrd_animated-armor_slam", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -1569,9 +1640,10 @@ "parent": "bfrd_ankheg_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -1591,9 +1663,10 @@ "parent": "bfrd_ape-giant_fist", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D10", @@ -1614,8 +1687,9 @@ "attack_type": "WEAPON", "to_hit_mod": 8, "reach_ft": null, - "range_ft": 50, - "long_range_ft": 100, + "range_ft": 50.0, + "long_range_ft": 100.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D8", @@ -1635,9 +1709,10 @@ "parent": "bfrd_ape_fist", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -1658,8 +1733,9 @@ "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": null, - "range_ft": 25, - "long_range_ft": 50, + "range_ft": 25.0, + "long_range_ft": 50.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -1680,8 +1756,9 @@ "attack_type": "SPELL", "to_hit_mod": 9, "reach_ft": null, - "range_ft": 120, + "range_ft": 120.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, "damage_die_type": "D8", @@ -1704,6 +1781,7 @@ "reach_ft": null, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -1723,9 +1801,10 @@ "parent": "bfrd_archmage_arcane-blast", "attack_type": "SPELL", "to_hit_mod": 9, - "reach_ft": 5, - "range_ft": 60, + "reach_ft": 5.0, + "range_ft": 60.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D10", @@ -1746,8 +1825,9 @@ "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": null, - "range_ft": 30, - "long_range_ft": 120, + "range_ft": 30.0, + "long_range_ft": 120.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -1767,9 +1847,10 @@ "parent": "bfrd_assassin_shortsword", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -1789,9 +1870,10 @@ "parent": "bfrd_awakened-shrub_rake", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4) slashing", @@ -1812,8 +1894,9 @@ "attack_type": "WEAPON", "to_hit_mod": 2, "reach_ft": null, - "range_ft": 15, - "long_range_ft": 30, + "range_ft": 15.0, + "long_range_ft": 30.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4) piercing", @@ -1834,8 +1917,9 @@ "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": null, - "range_ft": 20, - "long_range_ft": 60, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6", @@ -1855,9 +1939,10 @@ "parent": "bfrd_awakened-tree_slam", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D8", @@ -1877,9 +1962,10 @@ "parent": "bfrd_axe-beak_beak", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -1899,9 +1985,10 @@ "parent": "bfrd_azer_warhammer", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -1921,9 +2008,10 @@ "parent": "bfrd_baboon_bite", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -1943,9 +2031,10 @@ "parent": "bfrd_badger-giant_bite", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -1965,9 +2054,10 @@ "parent": "bfrd_badger-giant_claws", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -1987,9 +2077,10 @@ "parent": "bfrd_badger_bite", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4) piercing", @@ -2009,9 +2100,10 @@ "parent": "bfrd_balara_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -2031,9 +2123,10 @@ "parent": "bfrd_balara_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -2054,8 +2147,9 @@ "attack_type": "SPELL", "to_hit_mod": 5, "reach_ft": null, - "range_ft": 60, + "range_ft": 60.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -2075,9 +2169,10 @@ "parent": "bfrd_balor_gore", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -2097,9 +2192,10 @@ "parent": "bfrd_balor_longsword", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -2119,9 +2215,10 @@ "parent": "bfrd_balor_whip", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 30, + "reach_ft": 30.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D4", @@ -2141,9 +2238,10 @@ "parent": "bfrd_bandit-captain_dagger", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -2163,9 +2261,10 @@ "parent": "bfrd_bandit-captain_scimitar", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -2186,8 +2285,9 @@ "attack_type": "WEAPON", "to_hit_mod": 3, "reach_ft": null, - "range_ft": 80, - "long_range_ft": 320, + "range_ft": 80.0, + "long_range_ft": 320.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -2207,9 +2307,10 @@ "parent": "bfrd_bandit_scimitar", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -2229,9 +2330,10 @@ "parent": "bfrd_barbed-devil_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -2252,8 +2354,9 @@ "attack_type": "SPELL", "to_hit_mod": 5, "reach_ft": null, - "range_ft": 150, + "range_ft": 150.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -2273,9 +2376,10 @@ "parent": "bfrd_barbed-devil_tail", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -2296,8 +2400,9 @@ "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": null, - "range_ft": 30, - "long_range_ft": 120, + "range_ft": 30.0, + "long_range_ft": 120.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -2320,6 +2425,7 @@ "reach_ft": null, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -2339,9 +2445,10 @@ "parent": "bfrd_basilisk_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -2362,8 +2469,9 @@ "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": null, - "range_ft": 20, - "long_range_ft": 60, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -2383,9 +2491,10 @@ "parent": "bfrd_bat-giant_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -2405,9 +2514,10 @@ "parent": "bfrd_bat-swarm-of-bats_bites", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 0, + "reach_ft": 0.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6) piercing", @@ -2427,9 +2537,10 @@ "parent": "bfrd_bat_bite", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -2449,9 +2560,10 @@ "parent": "bfrd_bear-black_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -2471,9 +2583,10 @@ "parent": "bfrd_bear-black_claws", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -2493,9 +2606,10 @@ "parent": "bfrd_bear-brown_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -2515,9 +2629,10 @@ "parent": "bfrd_bear-brown_claws", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -2537,9 +2652,10 @@ "parent": "bfrd_bear-polar_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -2559,9 +2675,10 @@ "parent": "bfrd_bear-polar_claws", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -2581,9 +2698,10 @@ "parent": "bfrd_bearded-devil_beard-spines", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -2603,9 +2721,10 @@ "parent": "bfrd_bearded-devil_glaive", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -2625,9 +2744,10 @@ "parent": "bfrd_behir_bite", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -2647,9 +2767,10 @@ "parent": "bfrd_behir_constrict", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -2669,9 +2790,10 @@ "parent": "bfrd_berserker_greataxe", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D12", @@ -2691,9 +2813,10 @@ "parent": "bfrd_black-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -2713,9 +2836,10 @@ "parent": "bfrd_black-dragon-wyrmling_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -2735,9 +2859,10 @@ "parent": "bfrd_black-pudding_pseudopod", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -2757,9 +2882,10 @@ "parent": "bfrd_blink-dog_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -2779,9 +2905,10 @@ "parent": "bfrd_bloatblossom_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -2801,9 +2928,10 @@ "parent": "bfrd_bloatblossom_slam", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -2824,8 +2952,9 @@ "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": null, - "range_ft": 30, - "long_range_ft": 60, + "range_ft": 30.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -2845,9 +2974,10 @@ "parent": "bfrd_blue-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -2867,9 +2997,10 @@ "parent": "bfrd_blue-dragon-wyrmling_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -2889,9 +3020,10 @@ "parent": "bfrd_boar-giant_tusk", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -2911,9 +3043,10 @@ "parent": "bfrd_boar_tusk", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -2933,9 +3066,10 @@ "parent": "bfrd_bone-devil_claw", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -2955,9 +3089,10 @@ "parent": "bfrd_bone-devil_sting", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -2977,9 +3112,10 @@ "parent": "bfrd_brass-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -2999,9 +3135,10 @@ "parent": "bfrd_brass-dragon-wyrmling_claw", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -3021,9 +3158,10 @@ "parent": "bfrd_bronze-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -3043,9 +3181,10 @@ "parent": "bfrd_bronze-dragon-wyrmling_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -3065,9 +3204,10 @@ "parent": "bfrd_bugbear-champion_javelin", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": 30, - "long_range_ft": 120, + "reach_ft": 5.0, + "range_ft": 30.0, + "long_range_ft": 120.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -3087,9 +3227,10 @@ "parent": "bfrd_bugbear-champion_shield-smash", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -3109,9 +3250,10 @@ "parent": "bfrd_bugbear-champion_spiked-club", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -3131,9 +3273,10 @@ "parent": "bfrd_bugbear_javelin", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": 30, - "long_range_ft": 120, + "reach_ft": 5.0, + "range_ft": 30.0, + "long_range_ft": 120.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -3153,9 +3296,10 @@ "parent": "bfrd_bugbear_spiked-club", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -3175,9 +3319,10 @@ "parent": "bfrd_bulette_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -3198,8 +3343,9 @@ "attack_type": "WEAPON", "to_hit_mod": 2, "reach_ft": null, - "range_ft": 20, - "long_range_ft": 60, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4) aci", @@ -3219,9 +3365,10 @@ "parent": "bfrd_camel_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -3241,9 +3388,10 @@ "parent": "bfrd_cat_claws", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -3263,9 +3411,10 @@ "parent": "bfrd_centaur_hooves", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -3286,8 +3435,9 @@ "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 150, - "long_range_ft": 600, + "range_ft": 150.0, + "long_range_ft": 600.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -3307,9 +3457,10 @@ "parent": "bfrd_centaur_pike", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -3329,9 +3480,10 @@ "parent": "bfrd_chain-devil_chain", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -3351,9 +3503,10 @@ "parent": "bfrd_chimera_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -3373,9 +3526,10 @@ "parent": "bfrd_chimera_claws", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -3395,9 +3549,10 @@ "parent": "bfrd_chimera_headbutt", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D12", @@ -3417,9 +3572,10 @@ "parent": "bfrd_chuul_pincer", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -3439,9 +3595,10 @@ "parent": "bfrd_clay-golem_slam", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -3461,9 +3618,10 @@ "parent": "bfrd_cloaker_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6", @@ -3483,9 +3641,10 @@ "parent": "bfrd_cloaker_tail", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -3505,9 +3664,10 @@ "parent": "bfrd_cloud-giant_cloud-coated-mace", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -3528,8 +3688,9 @@ "attack_type": "SPELL", "to_hit_mod": 8, "reach_ft": null, - "range_ft": 150, + "range_ft": 150.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, "damage_die_type": "D10", @@ -3549,9 +3710,10 @@ "parent": "bfrd_cockatrice_serrated-beak", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -3571,9 +3733,10 @@ "parent": "bfrd_commoner_club", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4) blu", @@ -3594,8 +3757,9 @@ "attack_type": "WEAPON", "to_hit_mod": 2, "reach_ft": null, - "range_ft": 30, - "long_range_ft": 120, + "range_ft": 30.0, + "long_range_ft": 120.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4) blu", @@ -3615,9 +3779,10 @@ "parent": "bfrd_copper-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -3637,9 +3802,10 @@ "parent": "bfrd_copper-dragon-wyrmling_claw", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -3659,9 +3825,10 @@ "parent": "bfrd_couatl_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -3681,9 +3848,10 @@ "parent": "bfrd_couatl_constrict", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -3703,9 +3871,10 @@ "parent": "bfrd_crab-giant_pincer", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -3725,9 +3894,10 @@ "parent": "bfrd_crab_claw", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4) blu", @@ -3747,9 +3917,10 @@ "parent": "bfrd_crimson-jelly_feeding-paddles", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -3769,9 +3940,10 @@ "parent": "bfrd_crocodile-giant_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -3791,9 +3963,10 @@ "parent": "bfrd_crocodile-giant_tail", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -3813,9 +3986,10 @@ "parent": "bfrd_crocodile_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -3835,9 +4009,10 @@ "parent": "bfrd_cultist-fanatic_sacrificial-dagger", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -3858,8 +4033,9 @@ "attack_type": "SPELL", "to_hit_mod": 5, "reach_ft": null, - "range_ft": 60, + "range_ft": 60.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -3879,9 +4055,10 @@ "parent": "bfrd_cultist_sacrificial-dagger", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -3901,9 +4078,10 @@ "parent": "bfrd_darkmantle_crush", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -3923,9 +4101,10 @@ "parent": "bfrd_death-dog_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -3945,9 +4124,10 @@ "parent": "bfrd_death-knight_greatsword", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -3968,8 +4148,9 @@ "attack_type": "SPELL", "to_hit_mod": 7, "reach_ft": null, - "range_ft": 60, + "range_ft": 60.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6", @@ -3990,8 +4171,9 @@ "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 30, - "long_range_ft": 120, + "range_ft": 30.0, + "long_range_ft": 120.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -4011,9 +4193,10 @@ "parent": "bfrd_deep-gnome_war-pick", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -4033,9 +4216,10 @@ "parent": "bfrd_deer_kick", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4) blu", @@ -4055,9 +4239,10 @@ "parent": "bfrd_deva_mace", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -4077,9 +4262,10 @@ "parent": "bfrd_djinni_scimitar", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -4100,8 +4286,9 @@ "attack_type": "SPELL", "to_hit_mod": 9, "reach_ft": null, - "range_ft": 120, + "range_ft": 120.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -4122,8 +4309,9 @@ "attack_type": "SPELL", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 60, + "range_ft": 60.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -4143,9 +4331,10 @@ "parent": "bfrd_doppelganger_slam", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -4165,9 +4354,10 @@ "parent": "bfrd_dragon-turtle_bite", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D12", @@ -4187,9 +4377,10 @@ "parent": "bfrd_dragon-turtle_claw", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -4209,9 +4400,10 @@ "parent": "bfrd_dragon-turtle_tail", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D10", @@ -4231,9 +4423,10 @@ "parent": "bfrd_dretch_claws", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -4253,9 +4446,10 @@ "parent": "bfrd_drider_longsword", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -4275,9 +4469,10 @@ "parent": "bfrd_drider_skewer", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -4298,8 +4493,9 @@ "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": null, - "range_ft": 30, - "long_range_ft": 60, + "range_ft": 30.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -4320,8 +4516,9 @@ "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 30, - "long_range_ft": 120, + "range_ft": 30.0, + "long_range_ft": 120.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -4341,9 +4538,10 @@ "parent": "bfrd_drow_shortsword", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -4363,9 +4561,10 @@ "parent": "bfrd_druid_flowering-quarterstaff", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -4386,8 +4585,9 @@ "attack_type": "SPELL", "to_hit_mod": 5, "reach_ft": null, - "range_ft": 60, + "range_ft": 60.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D4", @@ -4408,8 +4608,9 @@ "attack_type": "SPELL", "to_hit_mod": 6, "reach_ft": null, - "range_ft": 60, + "range_ft": 60.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -4429,9 +4630,10 @@ "parent": "bfrd_dryad_vine-whip", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -4451,9 +4653,10 @@ "parent": "bfrd_duergar_javelin", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": 30, - "long_range_ft": 120, + "reach_ft": 5.0, + "range_ft": 30.0, + "long_range_ft": 120.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -4473,9 +4676,10 @@ "parent": "bfrd_duergar_war-pick", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -4495,9 +4699,10 @@ "parent": "bfrd_dust-mephit_claws", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -4518,8 +4723,9 @@ "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 20, - "long_range_ft": 60, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -4539,9 +4745,10 @@ "parent": "bfrd_eagle-giant_beak", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -4561,9 +4768,10 @@ "parent": "bfrd_eagle-giant_talons", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -4583,9 +4791,10 @@ "parent": "bfrd_eagle_talons", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -4606,8 +4815,9 @@ "attack_type": "WEAPON", "to_hit_mod": 8, "reach_ft": null, - "range_ft": 20, - "long_range_ft": 60, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -4627,9 +4837,10 @@ "parent": "bfrd_earth-elemental_slam", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -4650,8 +4861,9 @@ "attack_type": "SPELL", "to_hit_mod": 7, "reach_ft": null, - "range_ft": 120, + "range_ft": 120.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, "damage_die_type": "D6", @@ -4671,9 +4883,10 @@ "parent": "bfrd_efreeti_scimitar", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -4693,9 +4906,10 @@ "parent": "bfrd_elephant_gore", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -4715,9 +4929,10 @@ "parent": "bfrd_elephant_stomp", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -4737,9 +4952,10 @@ "parent": "bfrd_elk-giant_kick", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -4759,9 +4975,10 @@ "parent": "bfrd_elk-giant_ram", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -4781,9 +4998,10 @@ "parent": "bfrd_elk_kick", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -4803,9 +5021,10 @@ "parent": "bfrd_elk_ram", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -4826,8 +5045,9 @@ "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": null, - "range_ft": 150, - "long_range_ft": 600, + "range_ft": 150.0, + "long_range_ft": 600.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -4847,9 +5067,10 @@ "parent": "bfrd_erinyes_longsword", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -4869,9 +5090,10 @@ "parent": "bfrd_ettercap_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -4891,9 +5113,10 @@ "parent": "bfrd_ettercap_claws", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -4914,8 +5137,9 @@ "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": null, - "range_ft": 20, - "long_range_ft": 60, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -4935,9 +5159,10 @@ "parent": "bfrd_ettin_knobbed-club", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -4957,9 +5182,10 @@ "parent": "bfrd_ettin_spiked-club", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -4979,9 +5205,10 @@ "parent": "bfrd_feral-hunter_hunting-knife", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -5002,8 +5229,9 @@ "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": null, - "range_ft": 150, - "long_range_ft": 600, + "range_ft": 150.0, + "long_range_ft": 600.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -5023,9 +5251,10 @@ "parent": "bfrd_fire-elemental_fiery-touch", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -5046,8 +5275,9 @@ "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": null, - "range_ft": 30, - "long_range_ft": 120, + "range_ft": 30.0, + "long_range_ft": 120.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -5067,9 +5297,10 @@ "parent": "bfrd_fire-giant_flaming-greatsword", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, "damage_die_type": "D6", @@ -5090,8 +5321,9 @@ "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": null, - "range_ft": 60, - "long_range_ft": 240, + "range_ft": 60.0, + "long_range_ft": 240.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -5111,9 +5343,10 @@ "parent": "bfrd_flesh-golem_slam", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -5134,8 +5367,9 @@ "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": null, - "range_ft": 20, - "long_range_ft": 60, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -5155,9 +5389,10 @@ "parent": "bfrd_flinderbeast_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -5177,9 +5412,10 @@ "parent": "bfrd_flying-sword_slash", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -5199,9 +5435,10 @@ "parent": "bfrd_frog-giant-poisonous_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -5221,9 +5458,10 @@ "parent": "bfrd_frog-giant_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -5243,9 +5481,10 @@ "parent": "bfrd_frog_bite", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4) blu", @@ -5266,8 +5505,9 @@ "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": null, - "range_ft": 60, - "long_range_ft": 240, + "range_ft": 60.0, + "long_range_ft": 240.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -5287,9 +5527,10 @@ "parent": "bfrd_frost-giant_icy-greataxe", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D12", @@ -5309,9 +5550,10 @@ "parent": "bfrd_gargoyle_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -5331,9 +5573,10 @@ "parent": "bfrd_gargoyle_claws", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -5353,9 +5596,10 @@ "parent": "bfrd_gelatinous-cube_pseudopod", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6) aci", @@ -5375,9 +5619,10 @@ "parent": "bfrd_ghast_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -5397,9 +5642,10 @@ "parent": "bfrd_ghast_claws", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -5420,8 +5666,9 @@ "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 20, - "long_range_ft": 60, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, "damage_die_type": "D4", @@ -5441,9 +5688,10 @@ "parent": "bfrd_ghost_withering-touch", "attack_type": "SPELL", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6", @@ -5463,9 +5711,10 @@ "parent": "bfrd_ghoul_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -5485,9 +5734,10 @@ "parent": "bfrd_ghoul_claws", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -5507,9 +5757,10 @@ "parent": "bfrd_gibbering-mouther_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -5529,9 +5780,10 @@ "parent": "bfrd_glabrezu_claw", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -5552,8 +5804,9 @@ "attack_type": "SPELL", "to_hit_mod": 7, "reach_ft": null, - "range_ft": 60, + "range_ft": 60.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -5573,9 +5826,10 @@ "parent": "bfrd_glabrezu_pincer", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -5595,9 +5849,10 @@ "parent": "bfrd_gladiator_shield-bash", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -5617,9 +5872,10 @@ "parent": "bfrd_gladiator_spear", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -5639,9 +5895,10 @@ "parent": "bfrd_gnoll_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -5661,9 +5918,10 @@ "parent": "bfrd_gnoll_spear", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -5683,9 +5941,10 @@ "parent": "bfrd_goat-giant_ram", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -5705,9 +5964,10 @@ "parent": "bfrd_goat_ram", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -5727,9 +5987,10 @@ "parent": "bfrd_goblin-captain_scimitar", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -5750,8 +6011,9 @@ "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 80, - "long_range_ft": 320, + "range_ft": 80.0, + "long_range_ft": 320.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -5771,9 +6033,10 @@ "parent": "bfrd_goblin_scimitar", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -5794,8 +6057,9 @@ "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 80, - "long_range_ft": 320, + "range_ft": 80.0, + "long_range_ft": 320.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -5815,9 +6079,10 @@ "parent": "bfrd_gold-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -5837,9 +6102,10 @@ "parent": "bfrd_gold-dragon-wyrmling_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -5859,9 +6125,10 @@ "parent": "bfrd_golmana_claws", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -5881,9 +6148,10 @@ "parent": "bfrd_golmana_tail", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -5903,9 +6171,10 @@ "parent": "bfrd_gorgon_gore", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D12", @@ -5925,9 +6194,10 @@ "parent": "bfrd_gorgon_hooves", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -5947,9 +6217,10 @@ "parent": "bfrd_gray-ooze_pseudopod", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -5969,9 +6240,10 @@ "parent": "bfrd_green-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -5991,9 +6263,10 @@ "parent": "bfrd_green-dragon-wyrmling_claw", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -6013,9 +6286,10 @@ "parent": "bfrd_green-hag_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -6036,8 +6310,9 @@ "attack_type": "SPELL", "to_hit_mod": 6, "reach_ft": null, - "range_ft": 60, + "range_ft": 60.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -6057,9 +6332,10 @@ "parent": "bfrd_grick_beak", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -6079,9 +6355,10 @@ "parent": "bfrd_grick_tentacles", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D4", @@ -6101,9 +6378,10 @@ "parent": "bfrd_griffon_beak", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -6123,9 +6401,10 @@ "parent": "bfrd_griffon_claws", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -6145,9 +6424,10 @@ "parent": "bfrd_grimlock_spiked-club", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -6167,9 +6447,10 @@ "parent": "bfrd_guard_spear", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -6189,9 +6470,10 @@ "parent": "bfrd_guardian-naga_constrict", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -6211,9 +6493,10 @@ "parent": "bfrd_guardian-naga_slam", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -6234,8 +6517,9 @@ "attack_type": "WEAPON", "to_hit_mod": 8, "reach_ft": null, - "range_ft": 20, - "long_range_ft": 60, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -6255,9 +6539,10 @@ "parent": "bfrd_gynosphinx_claw", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -6278,8 +6563,9 @@ "attack_type": "SPELL", "to_hit_mod": 9, "reach_ft": null, - "range_ft": 120, + "range_ft": 120.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6", @@ -6299,9 +6585,10 @@ "parent": "bfrd_harpy_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -6322,8 +6609,9 @@ "attack_type": "SPELL", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 30, - "long_range_ft": 120, + "range_ft": 30.0, + "long_range_ft": 120.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -6343,9 +6631,10 @@ "parent": "bfrd_hawk-blood_beak", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -6365,9 +6654,10 @@ "parent": "bfrd_hawk_talons", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -6387,9 +6677,10 @@ "parent": "bfrd_hell-hound_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -6409,9 +6700,10 @@ "parent": "bfrd_hezrou_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -6431,9 +6723,10 @@ "parent": "bfrd_hezrou_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -6453,9 +6746,10 @@ "parent": "bfrd_hezrou_sticky-tongue", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 20, + "reach_ft": 20.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -6476,8 +6770,9 @@ "attack_type": "WEAPON", "to_hit_mod": 8, "reach_ft": null, - "range_ft": 60, - "long_range_ft": 240, + "range_ft": 60.0, + "long_range_ft": 240.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -6497,9 +6792,10 @@ "parent": "bfrd_hill-giant_spiked-tree-branch", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -6519,9 +6815,10 @@ "parent": "bfrd_hinn_gem-studded-mace", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -6542,8 +6839,9 @@ "attack_type": "WEAPON", "to_hit_mod": 10, "reach_ft": null, - "range_ft": 20, - "long_range_ft": 60, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -6563,9 +6861,10 @@ "parent": "bfrd_hippocampus_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -6585,9 +6884,10 @@ "parent": "bfrd_hippocampus_tail-slap", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -6607,9 +6907,10 @@ "parent": "bfrd_hippogriff_beak", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -6629,9 +6930,10 @@ "parent": "bfrd_hippogriff_claws", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -6651,9 +6953,10 @@ "parent": "bfrd_hivebound_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -6673,9 +6976,10 @@ "parent": "bfrd_hivebound_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -6696,8 +7000,9 @@ "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": null, - "range_ft": 30, - "long_range_ft": 120, + "range_ft": 30.0, + "long_range_ft": 120.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -6717,9 +7022,10 @@ "parent": "bfrd_hobgoblin-commander_greatsword", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -6740,8 +7046,9 @@ "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 150, - "long_range_ft": 600, + "range_ft": 150.0, + "long_range_ft": 600.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -6762,8 +7069,9 @@ "attack_type": "WEAPON", "to_hit_mod": 3, "reach_ft": null, - "range_ft": 150, - "long_range_ft": 600, + "range_ft": 150.0, + "long_range_ft": 600.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -6783,9 +7091,10 @@ "parent": "bfrd_hobgoblin_longsword", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -6805,9 +7114,10 @@ "parent": "bfrd_homunculus_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -6827,9 +7137,10 @@ "parent": "bfrd_horned-devil_fork", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -6850,8 +7161,9 @@ "attack_type": "SPELL", "to_hit_mod": 7, "reach_ft": null, - "range_ft": 150, + "range_ft": 150.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, "damage_die_type": "D6", @@ -6871,9 +7183,10 @@ "parent": "bfrd_horned-devil_tail", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -6893,9 +7206,10 @@ "parent": "bfrd_horse-draft_hooves", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -6915,9 +7229,10 @@ "parent": "bfrd_horse-riding_hooves", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -6937,9 +7252,10 @@ "parent": "bfrd_horse-war_hooves", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -6959,9 +7275,10 @@ "parent": "bfrd_husk-demon_life-drain", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -6981,9 +7298,10 @@ "parent": "bfrd_hydra_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -7003,9 +7321,10 @@ "parent": "bfrd_hyena-giant_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -7025,9 +7344,10 @@ "parent": "bfrd_hyena_bite", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6) piercing", @@ -7047,9 +7367,10 @@ "parent": "bfrd_ice-devil_claws", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -7070,8 +7391,9 @@ "attack_type": "SPELL", "to_hit_mod": 9, "reach_ft": null, - "range_ft": 120, + "range_ft": 120.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -7091,9 +7413,10 @@ "parent": "bfrd_ice-devil_tail", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -7113,9 +7436,10 @@ "parent": "bfrd_ice-mephit_claws", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -7136,8 +7460,9 @@ "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 20, - "long_range_ft": 60, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -7157,9 +7482,10 @@ "parent": "bfrd_imp_slam", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -7179,9 +7505,10 @@ "parent": "bfrd_imp_sting", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -7201,9 +7528,10 @@ "parent": "bfrd_insatiable-brood_bites", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 0, + "reach_ft": 0.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6) piercing", @@ -7223,9 +7551,10 @@ "parent": "bfrd_insect-giant-centipede_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -7245,9 +7574,10 @@ "parent": "bfrd_insect-giant-fire-beetle_bite", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4) slashing", @@ -7268,8 +7598,9 @@ "attack_type": "WEAPON", "to_hit_mod": 2, "reach_ft": null, - "range_ft": 15, - "long_range_ft": 30, + "range_ft": 15.0, + "long_range_ft": 30.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4) poison", @@ -7289,9 +7620,10 @@ "parent": "bfrd_insect-giant-scorpion_claw", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -7311,9 +7643,10 @@ "parent": "bfrd_insect-giant-scorpion_sting", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -7333,9 +7666,10 @@ "parent": "bfrd_insect-giant-wasp_sting", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -7355,9 +7689,10 @@ "parent": "bfrd_insect-scorpion_sting", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4) piercing", @@ -7377,9 +7712,10 @@ "parent": "bfrd_insect-swarm-of-insects_bites", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 0, + "reach_ft": 0.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D4) piercing", @@ -7399,9 +7735,10 @@ "parent": "bfrd_invisible-stalker_slam", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -7421,9 +7758,10 @@ "parent": "bfrd_iron-golem_shield-bash", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D10", @@ -7443,9 +7781,10 @@ "parent": "bfrd_iron-golem_spear-arm", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D8", @@ -7465,9 +7804,10 @@ "parent": "bfrd_jackal_bite", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -7487,9 +7827,10 @@ "parent": "bfrd_knight_greatsword", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -7509,9 +7850,10 @@ "parent": "bfrd_knight_javelin", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": 30, - "long_range_ft": 120, + "reach_ft": 5.0, + "range_ft": 30.0, + "long_range_ft": 120.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -7532,8 +7874,9 @@ "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": null, - "range_ft": 30, - "long_range_ft": 120, + "range_ft": 30.0, + "long_range_ft": 120.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -7553,9 +7896,10 @@ "parent": "bfrd_kobold-swiftblade_scimitar", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -7575,9 +7919,10 @@ "parent": "bfrd_kobold-witch_eldritch-burst", "attack_type": "SPELL", "to_hit_mod": 7, - "reach_ft": 5, - "range_ft": 60, + "reach_ft": 5.0, + "range_ft": 60.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -7597,9 +7942,10 @@ "parent": "bfrd_kobold_dagger", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -7620,8 +7966,9 @@ "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 30, - "long_range_ft": 120, + "range_ft": 30.0, + "long_range_ft": 120.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -7641,9 +7988,10 @@ "parent": "bfrd_kraken_bite", "attack_type": "WEAPON", "to_hit_mod": 17, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D8", @@ -7663,9 +8011,10 @@ "parent": "bfrd_kraken_tentacle", "attack_type": "WEAPON", "to_hit_mod": 17, - "reach_ft": 30, + "reach_ft": 30.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6", @@ -7686,8 +8035,9 @@ "attack_type": "SPELL", "to_hit_mod": 5, "reach_ft": null, - "range_ft": 60, + "range_ft": 60.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -7707,9 +8057,10 @@ "parent": "bfrd_lamia_dagger", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -7729,9 +8080,10 @@ "parent": "bfrd_lamia_hooves", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -7751,9 +8103,10 @@ "parent": "bfrd_lantern-hagfish_bite", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -7773,9 +8126,10 @@ "parent": "bfrd_lemure_fist", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -7795,9 +8149,10 @@ "parent": "bfrd_lich_arcane-death-burst", "attack_type": "SPELL", "to_hit_mod": 12, - "reach_ft": 5, - "range_ft": 120, + "reach_ft": 5.0, + "range_ft": 120.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D8", @@ -7817,9 +8172,10 @@ "parent": "bfrd_lich_death-infused-rod", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D8", @@ -7839,9 +8195,10 @@ "parent": "bfrd_lion_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -7861,9 +8218,10 @@ "parent": "bfrd_lion_claws", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -7883,9 +8241,10 @@ "parent": "bfrd_living-colossus_slam", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D10", @@ -7906,8 +8265,9 @@ "attack_type": "SPELL", "to_hit_mod": 11, "reach_ft": null, - "range_ft": 120, + "range_ft": 120.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D8", @@ -7927,9 +8287,10 @@ "parent": "bfrd_lizard-giant_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -7949,9 +8310,10 @@ "parent": "bfrd_lizard_bite", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4) piercing", @@ -7971,9 +8333,10 @@ "parent": "bfrd_lizardfolk-ruler_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -7993,9 +8356,10 @@ "parent": "bfrd_lizardfolk-ruler_greataxe", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D12", @@ -8015,9 +8379,10 @@ "parent": "bfrd_lizardfolk-ruler_javelin", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": 30, - "long_range_ft": 120, + "reach_ft": 5.0, + "range_ft": 30.0, + "long_range_ft": 120.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -8037,9 +8402,10 @@ "parent": "bfrd_lizardfolk-shaman_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -8059,9 +8425,10 @@ "parent": "bfrd_lizardfolk-shaman_ritual-staff", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -8082,8 +8449,9 @@ "attack_type": "SPELL", "to_hit_mod": 5, "reach_ft": null, - "range_ft": 60, + "range_ft": 60.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -8103,9 +8471,10 @@ "parent": "bfrd_lizardfolk_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -8125,9 +8494,10 @@ "parent": "bfrd_lizardfolk_heavy-club", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -8147,9 +8517,10 @@ "parent": "bfrd_lizardfolk_javelin", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": 30, - "long_range_ft": 120, + "reach_ft": 5.0, + "range_ft": 30.0, + "long_range_ft": 120.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -8170,8 +8541,9 @@ "attack_type": "SPELL", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 60, + "range_ft": 60.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -8191,9 +8563,10 @@ "parent": "bfrd_mage-apprentice_dagger", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4) piercing", @@ -8214,8 +8587,9 @@ "attack_type": "SPELL", "to_hit_mod": 6, "reach_ft": null, - "range_ft": 60, + "range_ft": 60.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -8235,9 +8609,10 @@ "parent": "bfrd_mage_dagger", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4) piercing", @@ -8257,9 +8632,10 @@ "parent": "bfrd_magma-mephit_claws", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -8280,8 +8656,9 @@ "attack_type": "WEAPON", "to_hit_mod": 2, "reach_ft": null, - "range_ft": 20, - "long_range_ft": 60, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6) fire", @@ -8301,9 +8678,10 @@ "parent": "bfrd_magmin_burning-slam", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -8323,9 +8701,10 @@ "parent": "bfrd_mammoth_gore", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -8345,9 +8724,10 @@ "parent": "bfrd_mammoth_stomp", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -8367,9 +8747,10 @@ "parent": "bfrd_manticore_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -8389,9 +8770,10 @@ "parent": "bfrd_manticore_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -8412,8 +8794,9 @@ "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": null, - "range_ft": 100, - "long_range_ft": 200, + "range_ft": 100.0, + "long_range_ft": 200.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -8433,9 +8816,10 @@ "parent": "bfrd_marilith_dagger", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -8455,9 +8839,10 @@ "parent": "bfrd_marilith_longsword", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -8477,9 +8862,10 @@ "parent": "bfrd_marilith_mace", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -8499,9 +8885,10 @@ "parent": "bfrd_marilith_tail", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -8521,9 +8908,10 @@ "parent": "bfrd_master-alchemist_hasty-concoction", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -8543,9 +8931,10 @@ "parent": "bfrd_mastiff_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -8566,8 +8955,9 @@ "attack_type": "WEAPON", "to_hit_mod": 3, "reach_ft": null, - "range_ft": 80, - "long_range_ft": 320, + "range_ft": 80.0, + "long_range_ft": 320.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -8587,9 +8977,10 @@ "parent": "bfrd_mechanist_warhammer", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -8610,8 +9001,9 @@ "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": null, - "range_ft": 150, - "long_range_ft": 600, + "range_ft": 150.0, + "long_range_ft": 600.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -8631,9 +9023,10 @@ "parent": "bfrd_medusa_shortsword", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -8653,9 +9046,10 @@ "parent": "bfrd_medusa_snake-hair", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -8675,9 +9069,10 @@ "parent": "bfrd_merfolk_coral-spear", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -8698,8 +9093,9 @@ "attack_type": "WEAPON", "to_hit_mod": 3, "reach_ft": null, - "range_ft": 20, - "long_range_ft": 60, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -8719,9 +9115,10 @@ "parent": "bfrd_merrow_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -8741,9 +9138,10 @@ "parent": "bfrd_merrow_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -8763,9 +9161,10 @@ "parent": "bfrd_merrow_harpoon", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -8785,9 +9184,10 @@ "parent": "bfrd_mimic_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -8807,9 +9207,10 @@ "parent": "bfrd_mimic_pseudopod", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -8829,9 +9230,10 @@ "parent": "bfrd_minotaur-skeleton_gore", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -8851,9 +9253,10 @@ "parent": "bfrd_minotaur-skeleton_greataxe", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D12", @@ -8873,9 +9276,10 @@ "parent": "bfrd_minotaur_gore", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -8895,9 +9299,10 @@ "parent": "bfrd_minotaur_greataxe", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D12", @@ -8917,9 +9322,10 @@ "parent": "bfrd_mire-fiend_mandibles", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -8939,9 +9345,10 @@ "parent": "bfrd_mire-fiend_spear", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -8961,9 +9368,10 @@ "parent": "bfrd_mire-fiend_stinger", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -8983,9 +9391,10 @@ "parent": "bfrd_mordovermis_sting", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -9005,9 +9414,10 @@ "parent": "bfrd_mule_hooves", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -9027,9 +9437,10 @@ "parent": "bfrd_mummy-lord_blessed-khopesh", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -9050,8 +9461,9 @@ "attack_type": "SPELL", "to_hit_mod": 9, "reach_ft": null, - "range_ft": 120, + "range_ft": 120.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, "damage_die_type": "D6", @@ -9071,9 +9483,10 @@ "parent": "bfrd_mummy-lord_rotting-fist", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -9093,9 +9506,10 @@ "parent": "bfrd_mummy_rotting-fist", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -9115,9 +9529,10 @@ "parent": "bfrd_mycolid-commoner_gardening-pick", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -9137,9 +9552,10 @@ "parent": "bfrd_mycolid-spore-lord_fungal-staff", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -9160,8 +9576,9 @@ "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 30, - "long_range_ft": 120, + "range_ft": 30.0, + "long_range_ft": 120.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -9181,9 +9598,10 @@ "parent": "bfrd_nalfeshnee_bite", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D8", @@ -9203,9 +9621,10 @@ "parent": "bfrd_nalfeshnee_claw", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6", @@ -9225,9 +9644,10 @@ "parent": "bfrd_nalfeshnee_gore", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -9248,8 +9668,9 @@ "attack_type": "SPELL", "to_hit_mod": 6, "reach_ft": null, - "range_ft": 60, + "range_ft": 60.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -9269,9 +9690,10 @@ "parent": "bfrd_night-hag_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6", @@ -9291,9 +9713,10 @@ "parent": "bfrd_nightmare_flaming-hoof", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -9313,9 +9736,10 @@ "parent": "bfrd_noble_rapier", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -9335,9 +9759,10 @@ "parent": "bfrd_ochre-jelly_pseudopod", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -9357,9 +9782,10 @@ "parent": "bfrd_octopus-giant_tentacles", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -9379,9 +9805,10 @@ "parent": "bfrd_octopus_tentacles", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -9401,9 +9828,10 @@ "parent": "bfrd_ogre-zombie_greatclub", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -9423,9 +9851,10 @@ "parent": "bfrd_ogre_greatclub", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -9445,9 +9874,10 @@ "parent": "bfrd_ogre_javelin", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": 30, - "long_range_ft": 120, + "reach_ft": 5.0, + "range_ft": 30.0, + "long_range_ft": 120.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -9468,8 +9898,9 @@ "attack_type": "SPELL", "to_hit_mod": 6, "reach_ft": null, - "range_ft": 60, + "range_ft": 60.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6", @@ -9489,9 +9920,10 @@ "parent": "bfrd_oni_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -9511,9 +9943,10 @@ "parent": "bfrd_oni_glaive", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -9534,8 +9967,9 @@ "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 150, - "long_range_ft": 600, + "range_ft": 150.0, + "long_range_ft": 600.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -9555,9 +9989,10 @@ "parent": "bfrd_orc-warlord_longsword", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -9577,9 +10012,10 @@ "parent": "bfrd_orc-warlord_skull-club", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -9599,9 +10035,10 @@ "parent": "bfrd_orc_greataxe", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D12", @@ -9621,9 +10058,10 @@ "parent": "bfrd_orc_javelin", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": 30, - "long_range_ft": 120, + "reach_ft": 5.0, + "range_ft": 30.0, + "long_range_ft": 120.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -9643,9 +10081,10 @@ "parent": "bfrd_orca_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -9665,9 +10104,10 @@ "parent": "bfrd_otyugh_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -9687,9 +10127,10 @@ "parent": "bfrd_otyugh_tentacle", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -9709,9 +10150,10 @@ "parent": "bfrd_owl-giant_talons", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -9731,9 +10173,10 @@ "parent": "bfrd_owl_talons", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -9753,9 +10196,10 @@ "parent": "bfrd_owlbear_beak", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -9775,9 +10219,10 @@ "parent": "bfrd_owlbear_claws", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -9797,9 +10242,10 @@ "parent": "bfrd_panther_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -9819,9 +10265,10 @@ "parent": "bfrd_panther_claw", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -9841,9 +10288,10 @@ "parent": "bfrd_pegasus_hooves", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -9863,9 +10311,10 @@ "parent": "bfrd_phase-spider_barbed-legs", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -9885,9 +10334,10 @@ "parent": "bfrd_phase-spider_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -9908,8 +10358,9 @@ "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": null, - "range_ft": 30, - "long_range_ft": 60, + "range_ft": 30.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": null, "damage_die_type": null, @@ -9929,9 +10380,10 @@ "parent": "bfrd_pit-fiend_bite", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6", @@ -9951,9 +10403,10 @@ "parent": "bfrd_pit-fiend_gore", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -9974,8 +10427,9 @@ "attack_type": "SPELL", "to_hit_mod": 10, "reach_ft": null, - "range_ft": 120, + "range_ft": 120.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, "damage_die_type": "D6", @@ -9995,9 +10449,10 @@ "parent": "bfrd_pit-fiend_mace", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -10017,9 +10472,10 @@ "parent": "bfrd_pit-fiend_tail", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -10039,9 +10495,10 @@ "parent": "bfrd_planetar_greatsword", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6", @@ -10062,8 +10519,9 @@ "attack_type": "SPELL", "to_hit_mod": 11, "reach_ft": null, - "range_ft": 60, + "range_ft": 60.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, "damage_die_type": "D8", @@ -10083,9 +10541,10 @@ "parent": "bfrd_plesiosaurus_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -10105,9 +10564,10 @@ "parent": "bfrd_pony_hooves", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -10128,8 +10588,9 @@ "attack_type": "SPELL", "to_hit_mod": 5, "reach_ft": null, - "range_ft": 60, + "range_ft": 60.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -10149,9 +10610,10 @@ "parent": "bfrd_priest_mace", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -10171,9 +10633,10 @@ "parent": "bfrd_pseudodragon_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -10193,9 +10656,10 @@ "parent": "bfrd_pseudodragon_sting", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -10215,9 +10679,10 @@ "parent": "bfrd_purple-worm_bite", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -10237,9 +10702,10 @@ "parent": "bfrd_purple-worm_tail-stinger", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -10259,9 +10725,10 @@ "parent": "bfrd_quasit_claws", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -10281,9 +10748,10 @@ "parent": "bfrd_quasit_slam", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -10303,9 +10771,10 @@ "parent": "bfrd_quipper-swarm-of-quippers_bites", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 0, + "reach_ft": 0.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D8) piercing", @@ -10325,9 +10794,10 @@ "parent": "bfrd_quipper_bite", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4) piercing", @@ -10348,8 +10818,9 @@ "attack_type": "SPELL", "to_hit_mod": 10, "reach_ft": null, - "range_ft": 60, + "range_ft": 60.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, "damage_die_type": "D6", @@ -10369,9 +10840,10 @@ "parent": "bfrd_rakshasa_claw", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -10391,9 +10863,10 @@ "parent": "bfrd_rat-giant_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -10413,9 +10886,10 @@ "parent": "bfrd_rat-swarm-of-rats_bites", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": 0, + "reach_ft": 0.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6) piercing", @@ -10435,9 +10909,10 @@ "parent": "bfrd_rat_bite", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4) piercing", @@ -10457,9 +10932,10 @@ "parent": "bfrd_raven-swarm-of-ravens_beaks", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8) piercing", @@ -10479,9 +10955,10 @@ "parent": "bfrd_raven_beak", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -10501,9 +10978,10 @@ "parent": "bfrd_red-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -10523,9 +11001,10 @@ "parent": "bfrd_red-dragon-wyrmling_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -10545,9 +11024,10 @@ "parent": "bfrd_remorhaz_bite", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, "damage_die_type": "D10", @@ -10567,9 +11047,10 @@ "parent": "bfrd_rhinoceros_gore", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -10590,8 +11071,9 @@ "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": null, - "range_ft": 20, - "long_range_ft": 60, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -10611,9 +11093,10 @@ "parent": "bfrd_robot-drone_slam", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -10633,9 +11116,10 @@ "parent": "bfrd_roc_beak", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D8", @@ -10655,9 +11139,10 @@ "parent": "bfrd_roc_talon", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6", @@ -10677,9 +11162,10 @@ "parent": "bfrd_roper_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D8", @@ -10699,9 +11185,10 @@ "parent": "bfrd_roper_grasping-tendril", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 50, + "reach_ft": 50.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -10721,9 +11208,10 @@ "parent": "bfrd_rug-of-smothering_smother", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -10743,9 +11231,10 @@ "parent": "bfrd_rust-monster_bite", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -10765,9 +11254,10 @@ "parent": "bfrd_sahuagin_bite", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6) piercing", @@ -10787,9 +11277,10 @@ "parent": "bfrd_sahuagin_claws", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4) slashing", @@ -10809,9 +11300,10 @@ "parent": "bfrd_sahuagin_trident", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6) piercing", @@ -10834,6 +11326,7 @@ "reach_ft": null, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -10853,9 +11346,10 @@ "parent": "bfrd_salamander_tail", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -10875,9 +11369,10 @@ "parent": "bfrd_salamander_trident", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -10897,9 +11392,10 @@ "parent": "bfrd_satarre_claw", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -10919,9 +11415,10 @@ "parent": "bfrd_satarre_spear", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -10942,8 +11439,9 @@ "attack_type": "SPELL", "to_hit_mod": 5, "reach_ft": null, - "range_ft": 60, + "range_ft": 60.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -10963,9 +11461,10 @@ "parent": "bfrd_satyr_ram", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -10985,9 +11484,10 @@ "parent": "bfrd_scorch-drake_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -11007,9 +11507,10 @@ "parent": "bfrd_scorch-drake_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -11032,6 +11533,7 @@ "reach_ft": null, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -11051,9 +11553,10 @@ "parent": "bfrd_scout_shortsword", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -11073,9 +11576,10 @@ "parent": "bfrd_sea-hag_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -11095,9 +11599,10 @@ "parent": "bfrd_seahorse-giant_ram", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -11117,9 +11622,10 @@ "parent": "bfrd_seahorse_ram", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4) blu", @@ -11139,9 +11645,10 @@ "parent": "bfrd_shadow_strength-drain", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -11161,9 +11668,10 @@ "parent": "bfrd_shambling-mound_slam", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -11183,9 +11691,10 @@ "parent": "bfrd_shark-giant_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -11205,9 +11714,10 @@ "parent": "bfrd_shark-hunter_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -11227,9 +11737,10 @@ "parent": "bfrd_shark-reef_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -11250,8 +11761,9 @@ "attack_type": "SPELL", "to_hit_mod": 5, "reach_ft": null, - "range_ft": 60, + "range_ft": 60.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6", @@ -11271,9 +11783,10 @@ "parent": "bfrd_shield-guardian_runed-fist", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -11293,9 +11806,10 @@ "parent": "bfrd_sila_cold-infused-jambiya", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -11316,8 +11830,9 @@ "attack_type": "SPELL", "to_hit_mod": 9, "reach_ft": null, - "range_ft": 60, + "range_ft": 60.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6", @@ -11337,9 +11852,10 @@ "parent": "bfrd_silver-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -11359,9 +11875,10 @@ "parent": "bfrd_silver-dragon-wyrmling_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -11382,8 +11899,9 @@ "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 80, - "long_range_ft": 320, + "range_ft": 80.0, + "long_range_ft": 320.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -11403,9 +11921,10 @@ "parent": "bfrd_skeleton_shortsword", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -11425,9 +11944,10 @@ "parent": "bfrd_skullbloom_bite", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -11447,9 +11967,10 @@ "parent": "bfrd_skullbloom_slam", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -11469,9 +11990,10 @@ "parent": "bfrd_snake-constrictor_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -11491,9 +12013,10 @@ "parent": "bfrd_snake-constrictor_constrict", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -11513,9 +12036,10 @@ "parent": "bfrd_snake-flying_bite", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -11535,9 +12059,10 @@ "parent": "bfrd_snake-giant-constrictor_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -11557,9 +12082,10 @@ "parent": "bfrd_snake-giant-constrictor_constrict", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -11579,9 +12105,10 @@ "parent": "bfrd_snake-giant-poisonous_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -11601,9 +12128,10 @@ "parent": "bfrd_snake-poisonous_bite", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -11623,9 +12151,10 @@ "parent": "bfrd_snake-swarm-of-poisonous-snakes_bites", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 0, + "reach_ft": 0.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D4) piercing", @@ -11645,9 +12174,10 @@ "parent": "bfrd_solar_greatsword", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6", @@ -11668,8 +12198,9 @@ "attack_type": "SPELL", "to_hit_mod": 14, "reach_ft": null, - "range_ft": 60, + "range_ft": 60.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, "damage_die_type": "D8", @@ -11689,9 +12220,10 @@ "parent": "bfrd_specter_life-drain", "attack_type": "SPELL", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -11711,9 +12243,10 @@ "parent": "bfrd_spider-giant-wolf_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -11733,9 +12266,10 @@ "parent": "bfrd_spider-giant_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -11755,9 +12289,10 @@ "parent": "bfrd_spider_bite", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4) piercing", @@ -11777,9 +12312,10 @@ "parent": "bfrd_spirit-naga_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -11800,8 +12336,9 @@ "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": null, - "range_ft": 20, - "long_range_ft": 60, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D4", @@ -11822,8 +12359,9 @@ "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": null, - "range_ft": 80, - "long_range_ft": 320, + "range_ft": 80.0, + "long_range_ft": 320.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -11843,9 +12381,10 @@ "parent": "bfrd_sprite_shortsword", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -11866,8 +12405,9 @@ "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": null, - "range_ft": 30, - "long_range_ft": 120, + "range_ft": 30.0, + "long_range_ft": 120.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -11887,9 +12427,10 @@ "parent": "bfrd_spy_shortsword", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -11909,9 +12450,10 @@ "parent": "bfrd_star-crow_radiant-touch", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -11931,9 +12473,10 @@ "parent": "bfrd_steam-mephit_claws", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -11954,8 +12497,9 @@ "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 20, - "long_range_ft": 60, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -11975,9 +12519,10 @@ "parent": "bfrd_stirge_blood-drain", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -11998,8 +12543,9 @@ "attack_type": "WEAPON", "to_hit_mod": 9, "reach_ft": null, - "range_ft": 60, - "long_range_ft": 240, + "range_ft": 60.0, + "long_range_ft": 240.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D10", @@ -12019,9 +12565,10 @@ "parent": "bfrd_stone-giant_stony-fist", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D8", @@ -12041,9 +12588,10 @@ "parent": "bfrd_stone-golem_slam", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -12063,9 +12611,10 @@ "parent": "bfrd_storm-giant_greatsword", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, "damage_die_type": "D6", @@ -12086,8 +12635,9 @@ "attack_type": "SPELL", "to_hit_mod": 9, "reach_ft": null, - "range_ft": 150, + "range_ft": 150.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D8", @@ -12107,9 +12657,10 @@ "parent": "bfrd_succubus_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -12129,9 +12680,10 @@ "parent": "bfrd_succubus_draining-kiss", "attack_type": "SPELL", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -12152,8 +12704,9 @@ "attack_type": "WEAPON", "to_hit_mod": 12, "reach_ft": null, - "range_ft": 100, - "long_range_ft": 400, + "range_ft": 100.0, + "long_range_ft": 400.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, "damage_die_type": "D10", @@ -12173,9 +12726,10 @@ "parent": "bfrd_tarrasque_bite", "attack_type": "WEAPON", "to_hit_mod": 19, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D12", @@ -12195,9 +12749,10 @@ "parent": "bfrd_tarrasque_claw", "attack_type": "WEAPON", "to_hit_mod": 19, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D8", @@ -12217,9 +12772,10 @@ "parent": "bfrd_tarrasque_spiked-tail", "attack_type": "WEAPON", "to_hit_mod": 19, - "reach_ft": 20, + "reach_ft": 20.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -12239,9 +12795,10 @@ "parent": "bfrd_thug_club", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -12262,8 +12819,9 @@ "attack_type": "WEAPON", "to_hit_mod": 2, "reach_ft": null, - "range_ft": 100, - "long_range_ft": 400, + "range_ft": 100.0, + "long_range_ft": 400.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10) piercing", @@ -12283,9 +12841,10 @@ "parent": "bfrd_tiger-saber-toothed_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -12305,9 +12864,10 @@ "parent": "bfrd_tiger-saber-toothed_claws", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -12327,9 +12887,10 @@ "parent": "bfrd_tiger_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -12349,9 +12910,10 @@ "parent": "bfrd_tiger_claws", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -12371,9 +12933,10 @@ "parent": "bfrd_treant_slam", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6", @@ -12394,8 +12957,9 @@ "attack_type": "WEAPON", "to_hit_mod": 10, "reach_ft": null, - "range_ft": 60, - "long_range_ft": 180, + "range_ft": 60.0, + "long_range_ft": 180.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, "damage_die_type": "D10", @@ -12415,9 +12979,10 @@ "parent": "bfrd_triceratops_gore", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -12437,9 +13002,10 @@ "parent": "bfrd_triceratops_stomp", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -12459,9 +13025,10 @@ "parent": "bfrd_troll_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -12481,9 +13048,10 @@ "parent": "bfrd_troll_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -12503,9 +13071,10 @@ "parent": "bfrd_tyrannosaurus-rex_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D12", @@ -12525,9 +13094,10 @@ "parent": "bfrd_tyrannosaurus-rex_tail", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D8", @@ -12547,9 +13117,10 @@ "parent": "bfrd_unicorn_hooves", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -12570,8 +13141,9 @@ "attack_type": "SPELL", "to_hit_mod": 6, "reach_ft": null, - "range_ft": 60, + "range_ft": 60.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -12591,9 +13163,10 @@ "parent": "bfrd_unicorn_horn", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -12613,9 +13186,10 @@ "parent": "bfrd_unska_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -12636,8 +13210,9 @@ "attack_type": "SPELL", "to_hit_mod": 5, "reach_ft": null, - "range_ft": 60, + "range_ft": 60.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -12657,9 +13232,10 @@ "parent": "bfrd_unska_tongue", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -12679,9 +13255,10 @@ "parent": "bfrd_vampire-spawn_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -12701,9 +13278,10 @@ "parent": "bfrd_vampire-spawn_draining-bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -12723,9 +13301,10 @@ "parent": "bfrd_vampire-thrall_rapier", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -12745,9 +13324,10 @@ "parent": "bfrd_vampire_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -12767,9 +13347,10 @@ "parent": "bfrd_vampire_claw", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -12789,9 +13370,10 @@ "parent": "bfrd_vampire_draining-bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -12811,9 +13393,10 @@ "parent": "bfrd_velociraptor_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -12833,9 +13416,10 @@ "parent": "bfrd_velociraptor_claws", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -12856,8 +13440,9 @@ "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 100, - "long_range_ft": 400, + "range_ft": 100.0, + "long_range_ft": 400.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -12877,9 +13462,10 @@ "parent": "bfrd_veteran_longsword", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -12899,9 +13485,10 @@ "parent": "bfrd_veteran_shortsword", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -12921,9 +13508,10 @@ "parent": "bfrd_violet-fungus_rotting-touch", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4) necrotic", @@ -12943,9 +13531,10 @@ "parent": "bfrd_virtuoso-lich_artistic-flourish", "attack_type": "SPELL", "to_hit_mod": 9, - "reach_ft": 5, - "range_ft": 60, + "reach_ft": 5.0, + "range_ft": 60.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -12965,9 +13554,10 @@ "parent": "bfrd_vrock_beak", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -12987,9 +13577,10 @@ "parent": "bfrd_vrock_talon", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -13009,9 +13600,10 @@ "parent": "bfrd_vulture-giant_beak", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -13031,9 +13623,10 @@ "parent": "bfrd_vulture-giant_talons", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -13053,9 +13646,10 @@ "parent": "bfrd_vulture_beak", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4) piercing", @@ -13075,9 +13669,10 @@ "parent": "bfrd_war-horse-skeleton_hooves", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -13098,8 +13693,9 @@ "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": null, - "range_ft": 30, - "long_range_ft": 120, + "range_ft": 30.0, + "long_range_ft": 120.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6", @@ -13119,9 +13715,10 @@ "parent": "bfrd_water-elemental_water-tendril", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -13141,9 +13738,10 @@ "parent": "bfrd_weasel-giant_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -13163,9 +13761,10 @@ "parent": "bfrd_weasel_bite", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -13185,9 +13784,10 @@ "parent": "bfrd_werebear_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -13207,9 +13807,10 @@ "parent": "bfrd_werebear_claw", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -13229,9 +13830,10 @@ "parent": "bfrd_werebear_greataxe", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D12", @@ -13251,9 +13853,10 @@ "parent": "bfrd_wereboar_maul", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -13273,9 +13876,10 @@ "parent": "bfrd_wereboar_slam", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -13295,9 +13899,10 @@ "parent": "bfrd_wereboar_tusks", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -13317,9 +13922,10 @@ "parent": "bfrd_wererat_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -13339,9 +13945,10 @@ "parent": "bfrd_wererat_claw", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -13362,8 +13969,9 @@ "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 30, - "long_range_ft": 120, + "range_ft": 30.0, + "long_range_ft": 120.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -13383,9 +13991,10 @@ "parent": "bfrd_wererat_shortsword", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -13405,9 +14014,10 @@ "parent": "bfrd_weretiger_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -13427,9 +14037,10 @@ "parent": "bfrd_weretiger_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -13450,8 +14061,9 @@ "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 150, - "long_range_ft": 600, + "range_ft": 150.0, + "long_range_ft": 600.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -13471,9 +14083,10 @@ "parent": "bfrd_weretiger_scimitar", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -13493,9 +14106,10 @@ "parent": "bfrd_werewolf_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -13515,9 +14129,10 @@ "parent": "bfrd_werewolf_claws", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -13537,9 +14152,10 @@ "parent": "bfrd_werewolf_spear", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -13559,9 +14175,10 @@ "parent": "bfrd_white-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -13581,9 +14198,10 @@ "parent": "bfrd_white-dragon-wyrmling_claw", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -13603,9 +14221,10 @@ "parent": "bfrd_wight_life-drain", "attack_type": "SPELL", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -13626,8 +14245,9 @@ "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 150, - "long_range_ft": 600, + "range_ft": 150.0, + "long_range_ft": 600.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -13647,9 +14267,10 @@ "parent": "bfrd_wight_longsword", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -13669,9 +14290,10 @@ "parent": "bfrd_wild-warrior_spear", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -13691,9 +14313,10 @@ "parent": "bfrd_will-o-wisp_shock", "attack_type": "SPELL", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -13713,9 +14336,10 @@ "parent": "bfrd_winter-wolf_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -13735,9 +14359,10 @@ "parent": "bfrd_wolf-dire_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -13757,9 +14382,10 @@ "parent": "bfrd_wolf_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -13780,8 +14406,9 @@ "attack_type": "WEAPON", "to_hit_mod": 3, "reach_ft": null, - "range_ft": 30, - "long_range_ft": 120, + "range_ft": 30.0, + "long_range_ft": 120.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -13801,9 +14428,10 @@ "parent": "bfrd_wood-herald_slam", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -13823,9 +14451,10 @@ "parent": "bfrd_wood-herald_wooden-greataxe", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D12", @@ -13845,9 +14474,10 @@ "parent": "bfrd_worg_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -13867,9 +14497,10 @@ "parent": "bfrd_wraith_life-drain", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6", @@ -13889,9 +14520,10 @@ "parent": "bfrd_wyrdling_psychic-burst", "attack_type": "SPELL", "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": 60, + "reach_ft": 5.0, + "range_ft": 60.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -13911,9 +14543,10 @@ "parent": "bfrd_wyvern_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -13933,9 +14566,10 @@ "parent": "bfrd_wyvern_claws", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -13955,9 +14589,10 @@ "parent": "bfrd_wyvern_stinger", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -13977,9 +14612,10 @@ "parent": "bfrd_xorn_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -13999,9 +14635,10 @@ "parent": "bfrd_xorn_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -14022,8 +14659,9 @@ "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": null, - "range_ft": 20, - "long_range_ft": 60, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -14043,9 +14681,10 @@ "parent": "bfrd_young-black-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -14065,9 +14704,10 @@ "parent": "bfrd_young-black-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -14087,9 +14727,10 @@ "parent": "bfrd_young-blue-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -14109,9 +14750,10 @@ "parent": "bfrd_young-blue-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -14131,9 +14773,10 @@ "parent": "bfrd_young-brass-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -14153,9 +14796,10 @@ "parent": "bfrd_young-brass-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -14175,9 +14819,10 @@ "parent": "bfrd_young-bronze-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -14197,9 +14842,10 @@ "parent": "bfrd_young-bronze-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -14219,9 +14865,10 @@ "parent": "bfrd_young-copper-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -14241,9 +14888,10 @@ "parent": "bfrd_young-copper-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -14263,9 +14911,10 @@ "parent": "bfrd_young-gold-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -14285,9 +14934,10 @@ "parent": "bfrd_young-gold-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -14307,9 +14957,10 @@ "parent": "bfrd_young-green-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -14329,9 +14980,10 @@ "parent": "bfrd_young-green-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -14351,9 +15003,10 @@ "parent": "bfrd_young-red-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -14373,9 +15026,10 @@ "parent": "bfrd_young-red-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -14395,9 +15049,10 @@ "parent": "bfrd_young-silver-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -14417,9 +15072,10 @@ "parent": "bfrd_young-silver-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -14439,9 +15095,10 @@ "parent": "bfrd_young-white-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -14461,9 +15118,10 @@ "parent": "bfrd_young-white-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -14483,9 +15141,10 @@ "parent": "bfrd_zombie_slam", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", diff --git a/data/v2/kobold-press/ccdx/CreatureActionAttack.json b/data/v2/kobold-press/ccdx/CreatureActionAttack.json index 1219e1d9..b812dc01 100644 --- a/data/v2/kobold-press/ccdx/CreatureActionAttack.json +++ b/data/v2/kobold-press/ccdx/CreatureActionAttack.json @@ -7,9 +7,10 @@ "parent": "ccdx_aatxe_gore", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -30,8 +31,9 @@ "attack_type": "WEAPON", "to_hit_mod": 3, "reach_ft": null, - "range_ft": 20, - "long_range_ft": 60, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4) aci", @@ -51,9 +53,10 @@ "parent": "ccdx_acid-ant_bite", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -73,9 +76,10 @@ "parent": "ccdx_adult-light-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -95,9 +99,10 @@ "parent": "ccdx_adult-light-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -117,9 +122,10 @@ "parent": "ccdx_adult-light-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -139,9 +145,10 @@ "parent": "ccdx_adult-wasteland-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -161,9 +168,10 @@ "parent": "ccdx_adult-wasteland-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -183,9 +191,10 @@ "parent": "ccdx_adult-wasteland-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -205,9 +214,10 @@ "parent": "ccdx_agnibarra_burning-claw", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -228,8 +238,9 @@ "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 15, - "long_range_ft": 30, + "range_ft": 15.0, + "long_range_ft": 30.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -249,9 +260,10 @@ "parent": "ccdx_ahu-nixta_bashing-rod", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -271,9 +283,10 @@ "parent": "ccdx_ahu-nixta_pronged-scepter", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -293,9 +306,10 @@ "parent": "ccdx_ahu-nixta_whirring-blades", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -315,9 +329,10 @@ "parent": "ccdx_ahuizotl_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -337,9 +352,10 @@ "parent": "ccdx_ahuizotl_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -359,9 +375,10 @@ "parent": "ccdx_alabaster-tree_slam", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D4", @@ -381,9 +398,10 @@ "parent": "ccdx_albino-death-weasel_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -403,9 +421,10 @@ "parent": "ccdx_albino-death-weasel_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -426,8 +445,9 @@ "attack_type": "SPELL", "to_hit_mod": 5, "reach_ft": null, - "range_ft": 60, + "range_ft": 60.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6) aci", @@ -447,9 +467,10 @@ "parent": "ccdx_alchemical-apprentice_pseudopod", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -469,9 +490,10 @@ "parent": "ccdx_alchemical-golem_slam", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -492,8 +514,9 @@ "attack_type": "WEAPON", "to_hit_mod": 9, "reach_ft": null, - "range_ft": 150, - "long_range_ft": 600, + "range_ft": 150.0, + "long_range_ft": 600.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -513,9 +536,10 @@ "parent": "ccdx_alchemist-archer_scimitar", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -535,9 +559,10 @@ "parent": "ccdx_alkonost_claws", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -557,9 +582,10 @@ "parent": "ccdx_alliumite_grass-blade", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -580,8 +606,9 @@ "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": null, - "range_ft": 20, - "long_range_ft": 60, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -601,9 +628,10 @@ "parent": "ccdx_alnaar_fiery-fangs", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -623,9 +651,10 @@ "parent": "ccdx_alp_sleepers-slap", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -645,9 +674,10 @@ "parent": "ccdx_alpha-yek_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6", @@ -667,9 +697,10 @@ "parent": "ccdx_alpha-yek_bone-shard", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -689,9 +720,10 @@ "parent": "ccdx_alpha-yek_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D4", @@ -711,9 +743,10 @@ "parent": "ccdx_altar-flame-golem_slam", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -733,9 +766,10 @@ "parent": "ccdx_ammut_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, "damage_die_type": "D10", @@ -755,9 +789,10 @@ "parent": "ccdx_ancient-light-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -777,9 +812,10 @@ "parent": "ccdx_ancient-light-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -799,9 +835,10 @@ "parent": "ccdx_ancient-light-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 20, + "reach_ft": 20.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -821,9 +858,10 @@ "parent": "ccdx_ancient-mandriano_swipe", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -843,9 +881,10 @@ "parent": "ccdx_ancient-wasteland-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 16, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -865,9 +904,10 @@ "parent": "ccdx_ancient-wasteland-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 16, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -887,9 +927,10 @@ "parent": "ccdx_ancient-wasteland-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 16, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -909,9 +950,10 @@ "parent": "ccdx_ankou-soul-herald_bite", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -931,9 +973,10 @@ "parent": "ccdx_ankou-soul-herald_claw", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -953,9 +996,10 @@ "parent": "ccdx_ankou-soul-herald_tail", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 20, + "reach_ft": 20.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -975,9 +1019,10 @@ "parent": "ccdx_ankou-soul-seeker_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -997,9 +1042,10 @@ "parent": "ccdx_ankou-soul-seeker_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -1019,9 +1065,10 @@ "parent": "ccdx_anophiloi_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -1041,9 +1088,10 @@ "parent": "ccdx_anophiloi_claws", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -1063,9 +1111,10 @@ "parent": "ccdx_arborcyte_animated-tendril", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -1085,9 +1134,10 @@ "parent": "ccdx_arborcyte_thorn-vine", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -1107,9 +1157,10 @@ "parent": "ccdx_arcamag_attach", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": null, "damage_die_type": null, @@ -1129,9 +1180,10 @@ "parent": "ccdx_arcanaphage_tentacle", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -1151,9 +1203,10 @@ "parent": "ccdx_archaeopteryx_beak", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -1173,9 +1226,10 @@ "parent": "ccdx_archaeopteryx_talons", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -1196,8 +1250,9 @@ "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": null, - "range_ft": 80, - "long_range_ft": 320, + "range_ft": 80.0, + "long_range_ft": 320.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -1217,9 +1272,10 @@ "parent": "ccdx_armory-golem_polearm-strike", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D12", @@ -1239,9 +1295,10 @@ "parent": "ccdx_armory-golem_slam", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D12", @@ -1261,9 +1318,10 @@ "parent": "ccdx_astral-snapper_claws", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -1283,9 +1341,10 @@ "parent": "ccdx_avatar-of-shoth_oozing-tentacle", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D12", @@ -1305,9 +1364,10 @@ "parent": "ccdx_azeban_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -1327,9 +1387,10 @@ "parent": "ccdx_azeban_claws", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -1349,9 +1410,10 @@ "parent": "ccdx_azi-dahaka_bite", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -1371,9 +1433,10 @@ "parent": "ccdx_azi-dahaka_claw", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -1394,8 +1457,9 @@ "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 0, + "range_ft": 0.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6) blu", @@ -1416,8 +1480,9 @@ "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 0, + "range_ft": 0.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D4) slashing", @@ -1438,8 +1503,9 @@ "attack_type": "WEAPON", "to_hit_mod": 3, "reach_ft": null, - "range_ft": 20, - "long_range_ft": 40, + "range_ft": 20.0, + "long_range_ft": 40.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D4) piercing", @@ -1459,9 +1525,10 @@ "parent": "ccdx_barong_bite", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -1481,9 +1548,10 @@ "parent": "ccdx_barong_claws", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -1503,9 +1571,10 @@ "parent": "ccdx_bathhouse-drake_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -1525,9 +1594,10 @@ "parent": "ccdx_bathhouse-drake_claw", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -1548,8 +1618,9 @@ "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 20, - "long_range_ft": 60, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6) fire", @@ -1569,9 +1640,10 @@ "parent": "ccdx_bearfolk-chieftain_battleaxe", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -1591,9 +1663,10 @@ "parent": "ccdx_bearfolk-chieftain_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -1613,9 +1686,10 @@ "parent": "ccdx_bearmit-crab_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -1635,9 +1709,10 @@ "parent": "ccdx_bearmit-crab_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -1657,9 +1732,10 @@ "parent": "ccdx_bilwis_slam", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -1679,9 +1755,10 @@ "parent": "ccdx_black-sun-orc_greatclub", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -1702,8 +1779,9 @@ "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 30, - "long_range_ft": 120, + "range_ft": 30.0, + "long_range_ft": 120.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -1723,9 +1801,10 @@ "parent": "ccdx_black-sun-priestess_greatclub", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -1745,9 +1824,10 @@ "parent": "ccdx_blood-elemental_slam", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -1768,8 +1848,9 @@ "attack_type": "WEAPON", "to_hit_mod": 9, "reach_ft": null, - "range_ft": 15, + "range_ft": 15.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -1790,8 +1871,9 @@ "attack_type": "WEAPON", "to_hit_mod": 9, "reach_ft": null, - "range_ft": 60, - "long_range_ft": 240, + "range_ft": 60.0, + "long_range_ft": 240.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D10", @@ -1811,9 +1893,10 @@ "parent": "ccdx_blood-ooze_pseudopod", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -1833,9 +1916,10 @@ "parent": "ccdx_blood-zombie_slam", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -1855,9 +1939,10 @@ "parent": "ccdx_bloody-bones_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -1878,8 +1963,9 @@ "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": null, - "range_ft": 60, - "long_range_ft": 240, + "range_ft": 60.0, + "long_range_ft": 240.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -1899,9 +1985,10 @@ "parent": "ccdx_bone-golem_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -1921,9 +2008,10 @@ "parent": "ccdx_bookkeeper_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": null, "damage_die_type": null, @@ -1944,8 +2032,9 @@ "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 20, + "range_ft": 20.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6) poison", @@ -1965,9 +2054,10 @@ "parent": "ccdx_boot-grabber_adhesive-hands", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -1987,9 +2077,10 @@ "parent": "ccdx_bronze-golem_slam", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -2009,9 +2100,10 @@ "parent": "ccdx_cacus-giant_greatclub", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -2032,8 +2124,9 @@ "attack_type": "WEAPON", "to_hit_mod": 8, "reach_ft": null, - "range_ft": 30, - "long_range_ft": 120, + "range_ft": 30.0, + "long_range_ft": 120.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D10", @@ -2053,9 +2146,10 @@ "parent": "ccdx_carbuncle_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -2075,9 +2169,10 @@ "parent": "ccdx_carbuncle_claw", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -2097,9 +2192,10 @@ "parent": "ccdx_cats-of-ulthar_bites", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 0, + "reach_ft": 0.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6) piercing", @@ -2119,9 +2215,10 @@ "parent": "ccdx_cauldronborn_slam", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -2141,9 +2238,10 @@ "parent": "ccdx_cave-giant_handaxe", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 10, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 10.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -2164,8 +2262,9 @@ "attack_type": "WEAPON", "to_hit_mod": 12, "reach_ft": null, - "range_ft": 60, - "long_range_ft": 240, + "range_ft": 60.0, + "long_range_ft": 240.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D10", @@ -2185,9 +2284,10 @@ "parent": "ccdx_cave-giant_tusks", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6", @@ -2207,9 +2307,10 @@ "parent": "ccdx_centaur-chieftain_hooves", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -2230,8 +2331,9 @@ "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 150, - "long_range_ft": 600, + "range_ft": 150.0, + "long_range_ft": 600.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -2251,9 +2353,10 @@ "parent": "ccdx_centaur-chieftain_pike", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -2273,9 +2376,10 @@ "parent": "ccdx_chaos-spawn-goblin_scimitar", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -2295,9 +2399,10 @@ "parent": "ccdx_child-of-yggdrasil_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -2317,9 +2422,10 @@ "parent": "ccdx_chuhaister_greatclub", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, "damage_die_type": "D6", @@ -2340,8 +2446,9 @@ "attack_type": "WEAPON", "to_hit_mod": 2, "reach_ft": null, - "range_ft": 30, - "long_range_ft": 120, + "range_ft": 30.0, + "long_range_ft": 120.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, "damage_die_type": "D10", @@ -2361,9 +2468,10 @@ "parent": "ccdx_chupacabra_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -2383,9 +2491,10 @@ "parent": "ccdx_cipactli_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -2405,9 +2514,10 @@ "parent": "ccdx_clacking-skeleton_glaive", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -2427,9 +2537,10 @@ "parent": "ccdx_clacking-skeleton_gore", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -2450,8 +2561,9 @@ "attack_type": "WEAPON", "to_hit_mod": 3, "reach_ft": null, - "range_ft": 80, - "long_range_ft": 320, + "range_ft": 80.0, + "long_range_ft": 320.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -2471,9 +2583,10 @@ "parent": "ccdx_clockwork-assassin_rapier", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -2493,9 +2606,10 @@ "parent": "ccdx_clockwork-servant_slam", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -2515,9 +2629,10 @@ "parent": "ccdx_clockwork-soldier_halberd", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -2537,9 +2652,10 @@ "parent": "ccdx_corpse-thief_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -2559,9 +2675,10 @@ "parent": "ccdx_crypt-spider_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -2582,8 +2699,9 @@ "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": null, - "range_ft": 30, - "long_range_ft": 60, + "range_ft": 30.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": null, "damage_die_type": null, @@ -2603,9 +2721,10 @@ "parent": "ccdx_cueyatl-moon-priest_morningstar", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8) piercing", @@ -2625,9 +2744,10 @@ "parent": "ccdx_cueyatl-sea-priest_trident", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6) piercing", @@ -2647,9 +2767,10 @@ "parent": "ccdx_cueyatl-warrior_battleaxe", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -2669,9 +2790,10 @@ "parent": "ccdx_cueyatl_spear", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6) piercing", @@ -2691,9 +2813,10 @@ "parent": "ccdx_darakhul-high-priestess_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -2713,9 +2836,10 @@ "parent": "ccdx_darakhul-high-priestess_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -2735,9 +2859,10 @@ "parent": "ccdx_darakhul-shadowmancer_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -2757,9 +2882,10 @@ "parent": "ccdx_darakhul-shadowmancer_dagger", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -2779,9 +2905,10 @@ "parent": "ccdx_dark-eye_dagger", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -2801,9 +2928,10 @@ "parent": "ccdx_dark-father_life-drain", "attack_type": "SPELL", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6) necrotic", @@ -2824,8 +2952,9 @@ "attack_type": "WEAPON", "to_hit_mod": 3, "reach_ft": null, - "range_ft": 80, - "long_range_ft": 320, + "range_ft": 80.0, + "long_range_ft": 320.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -2845,9 +2974,10 @@ "parent": "ccdx_dark-servant_sickle", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -2868,8 +2998,9 @@ "attack_type": "WEAPON", "to_hit_mod": 3, "reach_ft": null, - "range_ft": 100, - "long_range_ft": 400, + "range_ft": 100.0, + "long_range_ft": 400.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10) piercing", @@ -2889,9 +3020,10 @@ "parent": "ccdx_dark-voice_mace", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -2912,8 +3044,9 @@ "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": null, - "range_ft": 150, - "long_range_ft": 600, + "range_ft": 150.0, + "long_range_ft": 600.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -2933,9 +3066,10 @@ "parent": "ccdx_deathsworn-elf_scimitar", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -2955,9 +3089,10 @@ "parent": "ccdx_desert-troll_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -2977,9 +3112,10 @@ "parent": "ccdx_desert-troll_claws", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -2999,9 +3135,10 @@ "parent": "ccdx_devil-bough_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -3021,9 +3158,10 @@ "parent": "ccdx_devil-bough_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -3043,9 +3181,10 @@ "parent": "ccdx_devil-shark_bite", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D10", @@ -3065,9 +3204,10 @@ "parent": "ccdx_dhampir-commander_dark-thirst", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -3087,9 +3227,10 @@ "parent": "ccdx_dhampir-commander_rapier", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -3110,8 +3251,9 @@ "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": null, - "range_ft": 80, - "long_range_ft": 320, + "range_ft": 80.0, + "long_range_ft": 320.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -3131,9 +3273,10 @@ "parent": "ccdx_dhampir_dark-thirst", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "Damage plus 3 (1", @@ -3153,9 +3296,10 @@ "parent": "ccdx_dhampir_rapier", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -3176,8 +3320,9 @@ "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 80, - "long_range_ft": 320, + "range_ft": 80.0, + "long_range_ft": 320.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -3197,9 +3342,10 @@ "parent": "ccdx_doom-golem_bite", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -3219,9 +3365,10 @@ "parent": "ccdx_doom-golem_doom-claw", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -3241,9 +3388,10 @@ "parent": "ccdx_dracotaur_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -3263,9 +3411,10 @@ "parent": "ccdx_dracotaur_claws", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -3286,8 +3435,9 @@ "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": null, - "range_ft": 150, - "long_range_ft": 600, + "range_ft": 150.0, + "long_range_ft": 600.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -3308,8 +3458,9 @@ "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 80, - "long_range_ft": 320, + "range_ft": 80.0, + "long_range_ft": 320.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -3329,9 +3480,10 @@ "parent": "ccdx_dream-squire_mace", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -3351,9 +3503,10 @@ "parent": "ccdx_dream-wraith_sleep-touch", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -3373,9 +3526,10 @@ "parent": "ccdx_droth_oozing-crush", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D12", @@ -3396,8 +3550,9 @@ "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": null, - "range_ft": 80, - "long_range_ft": 320, + "range_ft": 80.0, + "long_range_ft": 320.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -3417,9 +3572,10 @@ "parent": "ccdx_dust-goblin-chieftain_shortsword", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -3439,9 +3595,10 @@ "parent": "ccdx_dvarapala_gada", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, "damage_die_type": "D6", @@ -3461,9 +3618,10 @@ "parent": "ccdx_dvarapala_javelin", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 10.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -3483,9 +3641,10 @@ "parent": "ccdx_echo_iron-claws", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -3506,8 +3665,9 @@ "attack_type": "SPELL", "to_hit_mod": 9, "reach_ft": null, - "range_ft": 150, + "range_ft": 150.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, "damage_die_type": "D8) ra", @@ -3527,9 +3687,10 @@ "parent": "ccdx_edjet_halberd", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -3550,8 +3711,9 @@ "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 80, - "long_range_ft": 320, + "range_ft": 80.0, + "long_range_ft": 320.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -3571,9 +3733,10 @@ "parent": "ccdx_edjet_shortsword", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -3593,9 +3756,10 @@ "parent": "ccdx_elder-ghost-boar_tusk", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -3615,9 +3779,10 @@ "parent": "ccdx_elementalist_scimitar", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -3637,9 +3802,10 @@ "parent": "ccdx_elite-kobold_mining-pick", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -3660,8 +3826,9 @@ "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": null, - "range_ft": 30, - "long_range_ft": 120, + "range_ft": 30.0, + "long_range_ft": 120.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -3681,9 +3848,10 @@ "parent": "ccdx_elophar_slam", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -3703,9 +3871,10 @@ "parent": "ccdx_enchanter_dagger", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -3725,9 +3894,10 @@ "parent": "ccdx_execrable-shrub_burning-slash", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -3747,9 +3917,10 @@ "parent": "ccdx_exploding-toad_bite", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -3769,9 +3940,10 @@ "parent": "ccdx_eye-of-the-gods_slam", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -3791,9 +3963,10 @@ "parent": "ccdx_fang-of-the-great-wolf_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -3813,9 +3986,10 @@ "parent": "ccdx_far-wanderer_stardust-blade", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -3836,8 +4010,9 @@ "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": null, - "range_ft": 150, - "long_range_ft": 600, + "range_ft": 150.0, + "long_range_ft": 600.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -3857,9 +4032,10 @@ "parent": "ccdx_fear-liath_slam", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -3879,9 +4055,10 @@ "parent": "ccdx_fey-drake_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -3901,9 +4078,10 @@ "parent": "ccdx_fierstjerren_sword", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -3923,9 +4101,10 @@ "parent": "ccdx_fire-imp_fire-touch", "attack_type": "SPELL", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -3946,8 +4125,9 @@ "attack_type": "SPELL", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 150, + "range_ft": 150.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4) fire", @@ -3967,9 +4147,10 @@ "parent": "ccdx_flame-eater-swarm_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 0, + "reach_ft": 0.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6) piercing", @@ -3989,9 +4170,10 @@ "parent": "ccdx_flame-scourged-scion_tentacle", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -4011,9 +4193,10 @@ "parent": "ccdx_flesh-reaver_claw", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -4033,9 +4216,10 @@ "parent": "ccdx_flesh-reaver_consume-flesh", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -4055,9 +4239,10 @@ "parent": "ccdx_fleshpod-hornet_slam", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -4077,9 +4262,10 @@ "parent": "ccdx_fleshpod-hornet_stinger", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -4099,9 +4285,10 @@ "parent": "ccdx_flying-polyp_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -4121,9 +4308,10 @@ "parent": "ccdx_flying-polyp_tentacle", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -4143,9 +4331,10 @@ "parent": "ccdx_forest-drake_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -4165,9 +4354,10 @@ "parent": "ccdx_forest-drake_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -4187,9 +4377,10 @@ "parent": "ccdx_foxfire-ooze_pseudopod", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -4209,9 +4400,10 @@ "parent": "ccdx_foxin_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -4231,9 +4423,10 @@ "parent": "ccdx_fractal-golem_slam", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -4253,9 +4446,10 @@ "parent": "ccdx_fragrite_strike", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -4275,9 +4469,10 @@ "parent": "ccdx_fulad-zereh_barbed-whip", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 30, + "reach_ft": 30.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -4297,9 +4492,10 @@ "parent": "ccdx_fulad-zereh_battleaxe", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -4319,9 +4515,10 @@ "parent": "ccdx_fulminar_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -4341,9 +4538,10 @@ "parent": "ccdx_fulminar_claw", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -4363,9 +4561,10 @@ "parent": "ccdx_gaki_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -4386,8 +4585,9 @@ "attack_type": "SPELL", "to_hit_mod": 6, "reach_ft": null, - "range_ft": 30, + "range_ft": 30.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, "damage_die_type": "D6) aci", @@ -4407,9 +4607,10 @@ "parent": "ccdx_gargoctopus_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -4429,9 +4630,10 @@ "parent": "ccdx_gargoctopus_tentacle", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -4451,9 +4653,10 @@ "parent": "ccdx_ghast-of-leng_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -4473,9 +4676,10 @@ "parent": "ccdx_ghast-of-leng_claws", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -4495,9 +4699,10 @@ "parent": "ccdx_ghost-boar_tusk", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -4517,9 +4722,10 @@ "parent": "ccdx_ghost-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -4539,9 +4745,10 @@ "parent": "ccdx_ghost-dragon_withering-bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -4561,9 +4768,10 @@ "parent": "ccdx_ghost-dwarf_ghostly-axe", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -4583,9 +4791,10 @@ "parent": "ccdx_ghost-dwarf_hand-of-the-grave", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D8) necrotic", @@ -4605,9 +4814,10 @@ "parent": "ccdx_ghoulsteed_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -4627,9 +4837,10 @@ "parent": "ccdx_giant-albino-bat_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -4649,9 +4860,10 @@ "parent": "ccdx_giant-albino-bat_claws", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -4671,9 +4883,10 @@ "parent": "ccdx_giant-moth_proboscis", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -4693,9 +4906,10 @@ "parent": "ccdx_giant-shark-bowl_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -4715,9 +4929,10 @@ "parent": "ccdx_giant-shark-bowl_pseudopod", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -4737,9 +4952,10 @@ "parent": "ccdx_giant-sloth_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -4759,9 +4975,10 @@ "parent": "ccdx_giant-sloth_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -4781,9 +4998,10 @@ "parent": "ccdx_giant-vampire-bat_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -4803,9 +5021,10 @@ "parent": "ccdx_glass-golem_shard", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -4826,8 +5045,9 @@ "attack_type": "SPELL", "to_hit_mod": 6, "reach_ft": null, - "range_ft": 120, + "range_ft": 120.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6) psychic", @@ -4847,9 +5067,10 @@ "parent": "ccdx_gnoll-slaver_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -4870,8 +5091,9 @@ "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 150, - "long_range_ft": 600, + "range_ft": 150.0, + "long_range_ft": 600.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -4891,9 +5113,10 @@ "parent": "ccdx_gnoll-slaver_whip", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -4913,9 +5136,10 @@ "parent": "ccdx_goliath-longlegs_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -4935,9 +5159,10 @@ "parent": "ccdx_goliath-longlegs_leg", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -4958,8 +5183,9 @@ "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": null, - "range_ft": 30, - "long_range_ft": 60, + "range_ft": 30.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": null, "damage_die_type": null, @@ -4979,9 +5205,10 @@ "parent": "ccdx_goreling_slam", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -5001,9 +5228,10 @@ "parent": "ccdx_grave-behemoth_gorge", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D12", @@ -5023,9 +5251,10 @@ "parent": "ccdx_grave-behemoth_slam", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -5045,9 +5274,10 @@ "parent": "ccdx_great-mandrake_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -5067,9 +5297,10 @@ "parent": "ccdx_greater-rakshasa_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -5089,9 +5320,10 @@ "parent": "ccdx_greater-scrag_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -5111,9 +5343,10 @@ "parent": "ccdx_greater-scrag_claws", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D4", @@ -5133,9 +5366,10 @@ "parent": "ccdx_green-abyss-orc_poisoned-spear", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -5155,9 +5389,10 @@ "parent": "ccdx_green-knight-of-the-woods_battle-axe", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -5177,9 +5412,10 @@ "parent": "ccdx_green-knight-of-the-woods_javelin", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, - "range_ft": 30, - "long_range_ft": 120, + "reach_ft": 5.0, + "range_ft": 30.0, + "long_range_ft": 120.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -5199,9 +5435,10 @@ "parent": "ccdx_green-knight-of-the-woods_shield-bash", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -5221,9 +5458,10 @@ "parent": "ccdx_grindylow_bite", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -5243,9 +5481,10 @@ "parent": "ccdx_grindylow_claws", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -5265,9 +5504,10 @@ "parent": "ccdx_gugalanna_horns", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, "damage_die_type": "D10", @@ -5287,9 +5527,10 @@ "parent": "ccdx_gugalanna_kick", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -5309,9 +5550,10 @@ "parent": "ccdx_gulon_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -5331,9 +5573,10 @@ "parent": "ccdx_gulon_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -5353,9 +5596,10 @@ "parent": "ccdx_gumienniki_flaming-hand-scythe", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -5375,9 +5619,10 @@ "parent": "ccdx_hair-golem_lash", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -5397,9 +5642,10 @@ "parent": "ccdx_hallowed-reed_searing-grasp", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -5419,9 +5665,10 @@ "parent": "ccdx_haunted-giant_greatclub", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -5442,8 +5689,9 @@ "attack_type": "WEAPON", "to_hit_mod": 8, "reach_ft": null, - "range_ft": 60, - "long_range_ft": 240, + "range_ft": 60.0, + "long_range_ft": 240.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -5464,8 +5712,9 @@ "attack_type": "WEAPON", "to_hit_mod": 3, "reach_ft": null, - "range_ft": 100, - "long_range_ft": 400, + "range_ft": 100.0, + "long_range_ft": 400.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -5485,9 +5734,10 @@ "parent": "ccdx_heavy-cavalry_lance", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D12", @@ -5507,9 +5757,10 @@ "parent": "ccdx_heavy-cavalry_trample", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -5529,9 +5780,10 @@ "parent": "ccdx_hierophant-lich_unholy-smite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -5551,9 +5803,10 @@ "parent": "ccdx_horned-serpent_bite", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -5573,9 +5826,10 @@ "parent": "ccdx_horned-serpent_gore", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6", @@ -5595,9 +5849,10 @@ "parent": "ccdx_hound-of-tindalos_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -5617,9 +5872,10 @@ "parent": "ccdx_hound-of-tindalos_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -5639,9 +5895,10 @@ "parent": "ccdx_hound-of-tindalos_tongue", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -5661,9 +5918,10 @@ "parent": "ccdx_ichneumon_bite", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6", @@ -5683,9 +5941,10 @@ "parent": "ccdx_ichneumon_claws", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -5705,9 +5964,10 @@ "parent": "ccdx_ijiraq_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -5727,9 +5987,10 @@ "parent": "ccdx_ijiraq_gore", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -5749,9 +6010,10 @@ "parent": "ccdx_incinis_magma-fist", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -5771,9 +6033,10 @@ "parent": "ccdx_infernal-knight_greatsword", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -5794,8 +6057,9 @@ "attack_type": "SPELL", "to_hit_mod": 10, "reach_ft": null, - "range_ft": 120, + "range_ft": 120.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6) fire", @@ -5815,9 +6079,10 @@ "parent": "ccdx_ink-guardian_pseudopod", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -5837,9 +6102,10 @@ "parent": "ccdx_inkling_lash", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -5859,9 +6125,10 @@ "parent": "ccdx_iron-sphere_blade", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -5881,9 +6148,10 @@ "parent": "ccdx_iron-sphere_piston", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -5903,9 +6171,10 @@ "parent": "ccdx_iron-sphere_spike", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -5925,9 +6194,10 @@ "parent": "ccdx_jaanavar-jal_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -5947,9 +6217,10 @@ "parent": "ccdx_jaanavar-jal_constrict", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -5969,9 +6240,10 @@ "parent": "ccdx_jiangshi_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -5991,9 +6263,10 @@ "parent": "ccdx_jiangshi_life-drain", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6) necrotic", @@ -6013,9 +6286,10 @@ "parent": "ccdx_jinmenju_root", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -6036,8 +6310,9 @@ "attack_type": "SPELL", "to_hit_mod": 5, "reach_ft": null, - "range_ft": 120, + "range_ft": 120.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6) fire", @@ -6057,9 +6332,10 @@ "parent": "ccdx_junk-shaman_junk-staff", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -6079,9 +6355,10 @@ "parent": "ccdx_kallikantzaros_handsaw", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -6101,9 +6378,10 @@ "parent": "ccdx_kallikantzaros_spear", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -6123,9 +6401,10 @@ "parent": "ccdx_kapi_quarterstaff", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -6146,8 +6425,9 @@ "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": null, - "range_ft": 30, - "long_range_ft": 120, + "range_ft": 30.0, + "long_range_ft": 120.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -6167,9 +6447,10 @@ "parent": "ccdx_kapi_tail-trip", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": null, "damage_die_type": null, @@ -6189,9 +6470,10 @@ "parent": "ccdx_kappa_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -6211,9 +6493,10 @@ "parent": "ccdx_karakura_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -6233,9 +6516,10 @@ "parent": "ccdx_keg-golem_slam", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -6256,8 +6540,9 @@ "attack_type": "WEAPON", "to_hit_mod": 8, "reach_ft": null, - "range_ft": 30, - "long_range_ft": 120, + "range_ft": 30.0, + "long_range_ft": 120.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -6277,9 +6562,10 @@ "parent": "ccdx_king-kobold_shortsword", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -6300,8 +6586,9 @@ "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 80, - "long_range_ft": 320, + "range_ft": 80.0, + "long_range_ft": 320.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -6321,9 +6608,10 @@ "parent": "ccdx_kinnara_shortsword", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -6343,9 +6631,10 @@ "parent": "ccdx_kitsune_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -6365,9 +6654,10 @@ "parent": "ccdx_kitsune_rapier", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -6387,9 +6677,10 @@ "parent": "ccdx_knight-of-the-road_lance", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D12", @@ -6409,9 +6700,10 @@ "parent": "ccdx_knight-of-the-road_longsword", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -6432,8 +6724,9 @@ "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": null, - "range_ft": 80, - "long_range_ft": 320, + "range_ft": 80.0, + "long_range_ft": 320.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -6453,9 +6746,10 @@ "parent": "ccdx_korrigan_dagger", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -6475,9 +6769,10 @@ "parent": "ccdx_kryt_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -6497,9 +6792,10 @@ "parent": "ccdx_kryt_quarterstaff", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -6519,9 +6815,10 @@ "parent": "ccdx_kulmking_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -6541,9 +6838,10 @@ "parent": "ccdx_kulmking_claws", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -6563,9 +6861,10 @@ "parent": "ccdx_kulmking_hooves", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -6585,9 +6884,10 @@ "parent": "ccdx_kuunganisha_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -6607,9 +6907,10 @@ "parent": "ccdx_kuunganisha_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -6629,9 +6930,10 @@ "parent": "ccdx_labyrinth-keeper_gore", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -6651,9 +6953,10 @@ "parent": "ccdx_labyrinth-keeper_shortsword", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -6673,9 +6976,10 @@ "parent": "ccdx_lady-in-white_grasp", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -6695,9 +6999,10 @@ "parent": "ccdx_laestrigonian-giant_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -6717,9 +7022,10 @@ "parent": "ccdx_laestrigonian-giant_greatclub", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -6739,9 +7045,10 @@ "parent": "ccdx_laestrigonian-giant_rock", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, - "range_ft": 60, - "long_range_ft": 240, + "reach_ft": 5.0, + "range_ft": 60.0, + "long_range_ft": 240.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -6761,9 +7068,10 @@ "parent": "ccdx_lamassu_claw", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -6783,9 +7091,10 @@ "parent": "ccdx_leonino_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -6805,9 +7114,10 @@ "parent": "ccdx_lesser-scrag_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -6827,9 +7137,10 @@ "parent": "ccdx_lesser-scrag_claws", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -6849,9 +7160,10 @@ "parent": "ccdx_light-cavalry_cavalry-saber", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -6872,8 +7184,9 @@ "attack_type": "WEAPON", "to_hit_mod": 3, "reach_ft": null, - "range_ft": 80, - "long_range_ft": 320, + "range_ft": 80.0, + "long_range_ft": 320.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -6893,9 +7206,10 @@ "parent": "ccdx_light-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -6915,9 +7229,10 @@ "parent": "ccdx_living-shade_shadow-touch", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4) col", @@ -6938,8 +7253,9 @@ "attack_type": "SPELL", "to_hit_mod": 12, "reach_ft": null, - "range_ft": 150, + "range_ft": 150.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D10", @@ -6959,9 +7275,10 @@ "parent": "ccdx_living-star_starflare", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -6981,9 +7298,10 @@ "parent": "ccdx_lord-zombie_life-drain", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -7003,9 +7321,10 @@ "parent": "ccdx_lord-zombie_slam", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -7025,9 +7344,10 @@ "parent": "ccdx_lost-minotaur_gore", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -7047,9 +7367,10 @@ "parent": "ccdx_lost-minotaur_twilight-greataxe", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D12", @@ -7069,9 +7390,10 @@ "parent": "ccdx_lotus-golem_arcane-water", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D12", @@ -7091,9 +7413,10 @@ "parent": "ccdx_lou-carcolh_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -7114,8 +7437,9 @@ "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 30, - "long_range_ft": 120, + "range_ft": 30.0, + "long_range_ft": 120.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10) poison", @@ -7135,9 +7459,10 @@ "parent": "ccdx_lou-carcolh_sticky-tongue", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 60, + "reach_ft": 60.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": null, "damage_die_type": null, @@ -7157,9 +7482,10 @@ "parent": "ccdx_lystrosaurus_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -7179,9 +7505,10 @@ "parent": "ccdx_lystrosaurus_ram", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -7202,8 +7529,9 @@ "attack_type": "SPELL", "to_hit_mod": 6, "reach_ft": null, - "range_ft": 120, - "long_range_ft": 480, + "range_ft": 120.0, + "long_range_ft": 480.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D10", @@ -7223,9 +7551,10 @@ "parent": "ccdx_manastorm-golem_slam", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -7245,9 +7574,10 @@ "parent": "ccdx_mandrake_bite", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4) piercing", @@ -7267,9 +7597,10 @@ "parent": "ccdx_mandriano_swipe", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -7289,9 +7620,10 @@ "parent": "ccdx_matriarch-serpentine-lamia_constrict", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -7311,9 +7643,10 @@ "parent": "ccdx_matriarch-serpentine-lamia_debilitating-touch", "attack_type": "SPELL", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": null, "damage_die_type": null, @@ -7333,9 +7666,10 @@ "parent": "ccdx_matriarch-serpentine-lamia_scimitar", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -7355,9 +7689,10 @@ "parent": "ccdx_megapede_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -7377,9 +7712,10 @@ "parent": "ccdx_megapede_stinger", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -7399,9 +7735,10 @@ "parent": "ccdx_mold-zombie_slam", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -7421,9 +7758,10 @@ "parent": "ccdx_monarch-skeleton_dreadblade", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -7444,8 +7782,9 @@ "attack_type": "SPELL", "to_hit_mod": 12, "reach_ft": null, - "range_ft": 100, + "range_ft": 100.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D8) ra", @@ -7465,9 +7804,10 @@ "parent": "ccdx_monkey-king_golden-staff", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -7487,9 +7827,10 @@ "parent": "ccdx_monkey-king_tail", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -7509,9 +7850,10 @@ "parent": "ccdx_moon-drake_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -7531,9 +7873,10 @@ "parent": "ccdx_moon-drake_claw", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -7553,9 +7896,10 @@ "parent": "ccdx_moon-drake_moonlight-nip", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": null, "damage_die_type": null, @@ -7575,9 +7919,10 @@ "parent": "ccdx_moon-nymph_beguiling-touch", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6", @@ -7598,8 +7943,9 @@ "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": null, - "range_ft": 120, + "range_ft": 120.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D8", @@ -7619,9 +7965,10 @@ "parent": "ccdx_moonchild-naga_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -7641,9 +7988,10 @@ "parent": "ccdx_moonchild-naga_constrict", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -7663,9 +8011,10 @@ "parent": "ccdx_morko_spear", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -7686,8 +8035,9 @@ "attack_type": "WEAPON", "to_hit_mod": 15, "reach_ft": null, - "range_ft": 100, - "long_range_ft": 400, + "range_ft": 100.0, + "long_range_ft": 400.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, "damage_die_type": "D12", @@ -7707,9 +8057,10 @@ "parent": "ccdx_mountain-giant_slam", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 20, + "reach_ft": 20.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D12", @@ -7730,8 +8081,9 @@ "attack_type": "WEAPON", "to_hit_mod": 2, "reach_ft": null, - "range_ft": 30, - "long_range_ft": 120, + "range_ft": 30.0, + "long_range_ft": 120.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6) blu", @@ -7751,9 +8103,10 @@ "parent": "ccdx_mud-golem_slam", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -7773,9 +8126,10 @@ "parent": "ccdx_mytholabe_heroic-jab", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -7795,9 +8149,10 @@ "parent": "ccdx_nachzehrer_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -7817,9 +8172,10 @@ "parent": "ccdx_nachzehrer_fist", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -7839,9 +8195,10 @@ "parent": "ccdx_nalusa-falaya_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -7861,9 +8218,10 @@ "parent": "ccdx_nalusa-falaya_claw", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -7883,9 +8241,10 @@ "parent": "ccdx_necrophage-ghast_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -7905,9 +8264,10 @@ "parent": "ccdx_necrophage-ghast_claws", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -7927,9 +8287,10 @@ "parent": "ccdx_necrotic-tick_blood-drain", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": null, "damage_die_type": null, @@ -7949,9 +8310,10 @@ "parent": "ccdx_neophron_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -7971,9 +8333,10 @@ "parent": "ccdx_neophron_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -7993,9 +8356,10 @@ "parent": "ccdx_nian_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D12", @@ -8015,9 +8379,10 @@ "parent": "ccdx_nian_gore", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -8037,9 +8402,10 @@ "parent": "ccdx_nian_stomp", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -8059,9 +8425,10 @@ "parent": "ccdx_nightgaunt_barbed-tail", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -8081,9 +8448,10 @@ "parent": "ccdx_nightgaunt_clutching-claws", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -8103,9 +8471,10 @@ "parent": "ccdx_ningyo_barbed-tentacle", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -8125,9 +8494,10 @@ "parent": "ccdx_nodosaurus_tail", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -8147,9 +8517,10 @@ "parent": "ccdx_oliphaunt_gore", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, "damage_die_type": "D8", @@ -8169,9 +8540,10 @@ "parent": "ccdx_oliphaunt_stomp", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, "damage_die_type": "D10", @@ -8191,9 +8563,10 @@ "parent": "ccdx_oliphaunt_trunk", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": null, "damage_die_type": null, @@ -8213,9 +8586,10 @@ "parent": "ccdx_one-headed-clockwork-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -8235,9 +8609,10 @@ "parent": "ccdx_one-headed-clockwork-dragon_fist", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -8258,8 +8633,9 @@ "attack_type": "SPELL", "to_hit_mod": 13, "reach_ft": null, - "range_ft": 80, - "long_range_ft": 320, + "range_ft": 80.0, + "long_range_ft": 320.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D8) ra", @@ -8279,9 +8655,10 @@ "parent": "ccdx_orthrus_bite-canine-head", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -8301,9 +8678,10 @@ "parent": "ccdx_orthrus_bite-snake-head", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -8323,9 +8701,10 @@ "parent": "ccdx_oth_greatsword", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6", @@ -8345,9 +8724,10 @@ "parent": "ccdx_oth_oozing-slam", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -8367,9 +8747,10 @@ "parent": "ccdx_ouroban_greatsword", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -8390,8 +8771,9 @@ "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": null, - "range_ft": 100, - "long_range_ft": 400, + "range_ft": 100.0, + "long_range_ft": 400.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -8411,9 +8793,10 @@ "parent": "ccdx_ouroboros_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -8433,9 +8816,10 @@ "parent": "ccdx_pact-drake_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -8455,9 +8839,10 @@ "parent": "ccdx_pact-drake_claw", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -8478,8 +8863,9 @@ "attack_type": "SPELL", "to_hit_mod": 10, "reach_ft": null, - "range_ft": 300, + "range_ft": 300.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -8499,9 +8885,10 @@ "parent": "ccdx_pact-lich_maddening-touch", "attack_type": "SPELL", "to_hit_mod": 10, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6) necrotic", @@ -8521,9 +8908,10 @@ "parent": "ccdx_paper-golem-swarm_paper-cut", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 0, + "reach_ft": 0.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6) slashing", @@ -8543,9 +8931,10 @@ "parent": "ccdx_paper-golem_paper-cut", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -8566,8 +8955,9 @@ "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": null, - "range_ft": 150, - "long_range_ft": 600, + "range_ft": 150.0, + "long_range_ft": 600.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -8587,9 +8977,10 @@ "parent": "ccdx_pattern-dancer_shortsword", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -8609,9 +9000,10 @@ "parent": "ccdx_pech-lithlord_hammer", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -8631,9 +9023,10 @@ "parent": "ccdx_pech-lithlord_pick", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -8653,9 +9046,10 @@ "parent": "ccdx_pech-stonemaster_hammer", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -8675,9 +9069,10 @@ "parent": "ccdx_pech-stonemaster_pick", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -8697,9 +9092,10 @@ "parent": "ccdx_pech_hammer", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -8719,9 +9115,10 @@ "parent": "ccdx_pech_pick", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -8741,9 +9138,10 @@ "parent": "ccdx_peluda-drake_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -8764,8 +9162,9 @@ "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": null, - "range_ft": 20, - "long_range_ft": 80, + "range_ft": 20.0, + "long_range_ft": 80.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -8785,9 +9184,10 @@ "parent": "ccdx_peluda-drake_tail", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -8807,9 +9207,10 @@ "parent": "ccdx_phantom_ghostly-grasp", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6) necrotic", @@ -8829,9 +9230,10 @@ "parent": "ccdx_philosophers-ghost_burning-touch", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -8851,9 +9253,10 @@ "parent": "ccdx_piasa_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -8873,9 +9276,10 @@ "parent": "ccdx_piasa_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -8895,9 +9299,10 @@ "parent": "ccdx_piasa_tail", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -8917,9 +9322,10 @@ "parent": "ccdx_pishacha_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -8939,9 +9345,10 @@ "parent": "ccdx_pishacha_claws", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -8961,9 +9368,10 @@ "parent": "ccdx_pixiu_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -8983,9 +9391,10 @@ "parent": "ccdx_pixiu_claws", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -9005,9 +9414,10 @@ "parent": "ccdx_plaresh_bites", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 0, + "reach_ft": 0.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6) piercing", @@ -9027,9 +9437,10 @@ "parent": "ccdx_preta_claws", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -9049,9 +9460,10 @@ "parent": "ccdx_purple-slime_spike", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -9071,9 +9483,10 @@ "parent": "ccdx_quickstep_hidden-dagger", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -9093,9 +9506,10 @@ "parent": "ccdx_quickstep_moonlight-rapier", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -9116,8 +9530,9 @@ "attack_type": "SPELL", "to_hit_mod": 7, "reach_ft": null, - "range_ft": 60, + "range_ft": 60.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, "damage_die_type": "D6) psychic", @@ -9137,9 +9552,10 @@ "parent": "ccdx_rageipede_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -9159,9 +9575,10 @@ "parent": "ccdx_rageipede_claw", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -9181,9 +9598,10 @@ "parent": "ccdx_ramag-portal-master_gate-seal", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -9204,8 +9622,9 @@ "attack_type": "SPELL", "to_hit_mod": 7, "reach_ft": null, - "range_ft": 120, + "range_ft": 120.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6) lightning", @@ -9225,9 +9644,10 @@ "parent": "ccdx_ratatosk-warlord_gore", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -9247,9 +9667,10 @@ "parent": "ccdx_ratatosk-warlord_ratatosk-shortspear", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -9270,8 +9691,9 @@ "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": null, - "range_ft": 20, - "long_range_ft": 60, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -9291,9 +9713,10 @@ "parent": "ccdx_ratfolk-mercenary_shortsword", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -9313,9 +9736,10 @@ "parent": "ccdx_ratfolk-warlock_dagger", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -9335,9 +9759,10 @@ "parent": "ccdx_ratfolk-warlock_quarterstaff", "attack_type": "WEAPON", "to_hit_mod": 1, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6 - 1) blu", @@ -9357,9 +9782,10 @@ "parent": "ccdx_rattok_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -9379,9 +9805,10 @@ "parent": "ccdx_rattok_claws", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -9401,9 +9828,10 @@ "parent": "ccdx_razorleaf_lacerating-leaves", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -9423,9 +9851,10 @@ "parent": "ccdx_rimewing_proboscis", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -9445,9 +9874,10 @@ "parent": "ccdx_ring-servant_slam", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -9468,8 +9898,9 @@ "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": null, - "range_ft": 20, - "long_range_ft": 60, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -9489,9 +9920,10 @@ "parent": "ccdx_roachling-scout_begrimed-shortsword", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -9511,9 +9943,10 @@ "parent": "ccdx_roggenwolf_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -9533,9 +9966,10 @@ "parent": "ccdx_ruby-ooze_pseudopod", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -9555,9 +9989,10 @@ "parent": "ccdx_sammael_greataxe", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D12", @@ -9577,9 +10012,10 @@ "parent": "ccdx_sammael_slam", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -9599,9 +10035,10 @@ "parent": "ccdx_sammael_whip", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -9621,9 +10058,10 @@ "parent": "ccdx_scitalis_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -9643,9 +10081,10 @@ "parent": "ccdx_sentinel-in-darkness_stone-fist", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D12", @@ -9665,9 +10104,10 @@ "parent": "ccdx_serpentfolk-of-yig_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -9687,9 +10127,10 @@ "parent": "ccdx_serpentfolk-of-yig_scimitar", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -9710,8 +10151,9 @@ "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 80, - "long_range_ft": 320, + "range_ft": 80.0, + "long_range_ft": 320.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -9731,9 +10173,10 @@ "parent": "ccdx_serpentine-lamia_constrict", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -9753,9 +10196,10 @@ "parent": "ccdx_serpentine-lamia_scimitar", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -9776,8 +10220,9 @@ "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 80, - "long_range_ft": 320, + "range_ft": 80.0, + "long_range_ft": 320.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -9797,9 +10242,10 @@ "parent": "ccdx_servant-of-the-vine_drunken-slash", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -9819,9 +10265,10 @@ "parent": "ccdx_servant-of-yig_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -9841,9 +10288,10 @@ "parent": "ccdx_servant-of-yig_constrict", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -9863,9 +10311,10 @@ "parent": "ccdx_servant-of-yig_glaive", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -9885,9 +10334,10 @@ "parent": "ccdx_shadow-blight_frozen-shadow-tendril", "attack_type": "SPELL", "to_hit_mod": 5, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6) col", @@ -9907,9 +10357,10 @@ "parent": "ccdx_shadow-fey-ambassador_rapier", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -9930,8 +10381,9 @@ "attack_type": "WEAPON", "to_hit_mod": 8, "reach_ft": null, - "range_ft": 150, - "long_range_ft": 600, + "range_ft": 150.0, + "long_range_ft": 600.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -9951,9 +10403,10 @@ "parent": "ccdx_shadow-fey-poisoner_shortsword", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -9973,9 +10426,10 @@ "parent": "ccdx_shadow-goblin_kitchen-knife", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -9995,9 +10449,10 @@ "parent": "ccdx_shadow-ooze_pseudopod", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -10017,9 +10472,10 @@ "parent": "ccdx_shadow-river-lord_greenfire-staff", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -10040,8 +10496,9 @@ "attack_type": "SPELL", "to_hit_mod": 8, "reach_ft": null, - "range_ft": 150, + "range_ft": 150.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8) necrotic", @@ -10062,8 +10519,9 @@ "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": null, - "range_ft": 30, + "range_ft": 30.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -10083,9 +10541,10 @@ "parent": "ccdx_shadow-skeleton_scimitar", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -10105,9 +10564,10 @@ "parent": "ccdx_shantak_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -10127,9 +10587,10 @@ "parent": "ccdx_shantak_talons", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -10149,9 +10610,10 @@ "parent": "ccdx_shard-swarm_shards", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 0, + "reach_ft": 0.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4) slashing", @@ -10172,8 +10634,9 @@ "attack_type": "WEAPON", "to_hit_mod": 3, "reach_ft": null, - "range_ft": 30, + "range_ft": 30.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6) piercing", @@ -10193,9 +10656,10 @@ "parent": "ccdx_shockwing_proboscis", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -10215,9 +10679,10 @@ "parent": "ccdx_shoreline-scrapper_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -10238,8 +10703,9 @@ "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": null, - "range_ft": 60, + "range_ft": 60.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -10259,9 +10725,10 @@ "parent": "ccdx_sigilian_paste", "attack_type": "SPELL", "to_hit_mod": 7, - "reach_ft": 5, - "range_ft": 60, + "reach_ft": 5.0, + "range_ft": 60.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": null, "damage_die_type": null, @@ -10281,9 +10748,10 @@ "parent": "ccdx_simhamukha_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -10303,9 +10771,10 @@ "parent": "ccdx_simhamukha_kartika", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -10325,9 +10794,10 @@ "parent": "ccdx_simurg_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -10347,9 +10817,10 @@ "parent": "ccdx_simurg_claws", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -10369,9 +10840,10 @@ "parent": "ccdx_skull-drake_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -10391,9 +10863,10 @@ "parent": "ccdx_skull-lantern_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -10413,9 +10886,10 @@ "parent": "ccdx_sleipnir_rune-hooves", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -10435,9 +10909,10 @@ "parent": "ccdx_snow-cat_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -10457,9 +10932,10 @@ "parent": "ccdx_snow-cat_claw", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -10479,9 +10955,10 @@ "parent": "ccdx_snow-hag_claws", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -10501,9 +10978,10 @@ "parent": "ccdx_song-angel_scimitar", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -10523,9 +11001,10 @@ "parent": "ccdx_sootwing_proboscis", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -10545,9 +11024,10 @@ "parent": "ccdx_sooze_longsword", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -10567,9 +11047,10 @@ "parent": "ccdx_sooze_oozing-slam", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -10589,9 +11070,10 @@ "parent": "ccdx_spawn-of-chernobog_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -10611,9 +11093,10 @@ "parent": "ccdx_spawn-of-chernobog_claws", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -10633,9 +11116,10 @@ "parent": "ccdx_speaker-to-the-darkness_quarterstaff", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6) blu", @@ -10656,8 +11140,9 @@ "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": null, - "range_ft": 30, - "long_range_ft": 120, + "range_ft": 30.0, + "long_range_ft": 120.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -10677,9 +11162,10 @@ "parent": "ccdx_spider-drake_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -10699,9 +11185,10 @@ "parent": "ccdx_spider-drake_claw", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -10722,8 +11209,9 @@ "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": null, - "range_ft": 60, - "long_range_ft": 120, + "range_ft": 60.0, + "long_range_ft": 120.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": null, "damage_die_type": null, @@ -10744,8 +11232,9 @@ "attack_type": "SPELL", "to_hit_mod": 7, "reach_ft": null, - "range_ft": 60, + "range_ft": 60.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10) fire", @@ -10765,9 +11254,10 @@ "parent": "ccdx_spirit-lamp_spirit-claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -10787,9 +11277,10 @@ "parent": "ccdx_spree_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -10810,8 +11301,9 @@ "attack_type": "SPELL", "to_hit_mod": 9, "reach_ft": null, - "range_ft": 60, + "range_ft": 60.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 7, "damage_die_type": "D8) lightning", @@ -10831,9 +11323,10 @@ "parent": "ccdx_storm-lord_slam", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 7, "damage_die_type": "D6", @@ -10854,8 +11347,9 @@ "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 60, - "long_range_ft": 240, + "range_ft": 60.0, + "long_range_ft": 240.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -10875,9 +11369,10 @@ "parent": "ccdx_storm-spirit_thunder-slam", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -10897,9 +11392,10 @@ "parent": "ccdx_sunset-raptor_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -10919,9 +11415,10 @@ "parent": "ccdx_sunset-raptor_claw", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -10941,9 +11438,10 @@ "parent": "ccdx_suppurating-ooze_pseudopod", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -10963,9 +11461,10 @@ "parent": "ccdx_swolbold_slam", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -10985,9 +11484,10 @@ "parent": "ccdx_tar-ghoul_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -11007,9 +11507,10 @@ "parent": "ccdx_tar-ghoul_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -11029,9 +11530,10 @@ "parent": "ccdx_terror-bird_serrated-beak", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -11051,9 +11553,10 @@ "parent": "ccdx_the-barbed_barbed-slash", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -11074,8 +11577,9 @@ "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 30, - "long_range_ft": 120, + "range_ft": 30.0, + "long_range_ft": 120.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -11096,8 +11600,9 @@ "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": null, - "range_ft": 60, - "long_range_ft": 240, + "range_ft": 60.0, + "long_range_ft": 240.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -11117,9 +11622,10 @@ "parent": "ccdx_thorned-sulfurlord_sulfur-slam", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -11139,9 +11645,10 @@ "parent": "ccdx_thread-bound-constrictor-snake_constrict", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -11161,9 +11668,10 @@ "parent": "ccdx_three-headed-clockwork-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -11183,9 +11691,10 @@ "parent": "ccdx_three-headed-clockwork-dragon_fist", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -11205,9 +11714,10 @@ "parent": "ccdx_three-headed-cobra_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -11227,9 +11737,10 @@ "parent": "ccdx_tosculi-jeweled-drone_claws", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -11249,9 +11760,10 @@ "parent": "ccdx_tosculi-jeweled-drone_scimitar", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -11271,9 +11783,10 @@ "parent": "ccdx_trollkin-shaman_staff", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -11294,8 +11807,9 @@ "attack_type": "WEAPON", "to_hit_mod": 3, "reach_ft": null, - "range_ft": 150, - "long_range_ft": 600, + "range_ft": 150.0, + "long_range_ft": 600.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -11315,9 +11829,10 @@ "parent": "ccdx_trollking-grunt_spear", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -11337,9 +11852,10 @@ "parent": "ccdx_tulpa_black-claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -11360,8 +11876,9 @@ "attack_type": "SPELL", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 120, + "range_ft": 120.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D10) psychic", @@ -11381,9 +11898,10 @@ "parent": "ccdx_tusked-crimson-ogre_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -11403,9 +11921,10 @@ "parent": "ccdx_tusked-crimson-ogre_morningstar", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -11425,9 +11944,10 @@ "parent": "ccdx_tveirherjar_niflheim-longsword", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -11448,8 +11968,9 @@ "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": null, - "range_ft": 30, - "long_range_ft": 120, + "range_ft": 30.0, + "long_range_ft": 120.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -11469,9 +11990,10 @@ "parent": "ccdx_two-headed-eagle_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -11491,9 +12013,10 @@ "parent": "ccdx_two-headed-eagle_talons", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -11513,9 +12036,10 @@ "parent": "ccdx_undead-phoenix_claws", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6", @@ -11535,9 +12059,10 @@ "parent": "ccdx_undead-phoenix_decaying-bite", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -11557,9 +12082,10 @@ "parent": "ccdx_unhatched_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -11579,9 +12105,10 @@ "parent": "ccdx_unhatched_claw", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -11601,9 +12128,10 @@ "parent": "ccdx_ursa-polaris_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -11623,9 +12151,10 @@ "parent": "ccdx_ursa-polaris_claw", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -11645,9 +12174,10 @@ "parent": "ccdx_vampire-patrician_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -11667,9 +12197,10 @@ "parent": "ccdx_vampire-patrician_rapier", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -11689,9 +12220,10 @@ "parent": "ccdx_vampire-priestess_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -11711,9 +12243,10 @@ "parent": "ccdx_vampire-priestess_scourge", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -11733,9 +12266,10 @@ "parent": "ccdx_vampiric-knight_impaling-longsword", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -11755,9 +12289,10 @@ "parent": "ccdx_vanara_slam", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -11778,8 +12313,9 @@ "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": null, - "range_ft": 30, - "long_range_ft": 120, + "range_ft": 30.0, + "long_range_ft": 120.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -11799,9 +12335,10 @@ "parent": "ccdx_vellso_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -11821,9 +12358,10 @@ "parent": "ccdx_vellso_claws", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -11843,9 +12381,10 @@ "parent": "ccdx_venom-elemental_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -11865,9 +12404,10 @@ "parent": "ccdx_venom-maw-hydra_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -11888,8 +12428,9 @@ "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": null, - "range_ft": 20, - "long_range_ft": 60, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6) aci", @@ -11909,9 +12450,10 @@ "parent": "ccdx_vines-of-nemthyr_slam", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -11931,9 +12473,10 @@ "parent": "ccdx_vines-of-nemthyr_thorny-lash", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -11953,9 +12496,10 @@ "parent": "ccdx_void-giant_slam", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -11975,9 +12519,10 @@ "parent": "ccdx_war-machine-golem_slam", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6", @@ -11997,9 +12542,10 @@ "parent": "ccdx_war-wyvern_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -12019,9 +12565,10 @@ "parent": "ccdx_war-wyvern_claws", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -12041,9 +12588,10 @@ "parent": "ccdx_war-wyvern_stinger", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -12063,9 +12611,10 @@ "parent": "ccdx_warlocks-trumpetbloom_stinger", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D12", @@ -12085,9 +12634,10 @@ "parent": "ccdx_warlocks-trumpetbloom_tendril", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -12107,9 +12657,10 @@ "parent": "ccdx_wasteland-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -12129,9 +12680,10 @@ "parent": "ccdx_water-horse_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -12152,8 +12704,9 @@ "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 150, - "long_range_ft": 600, + "range_ft": 150.0, + "long_range_ft": 600.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -12173,9 +12726,10 @@ "parent": "ccdx_water-horse_longsword", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -12195,9 +12749,10 @@ "parent": "ccdx_weirding-scroll_tendril-of-light", "attack_type": "SPELL", "to_hit_mod": 5, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6) psychic", @@ -12217,9 +12772,10 @@ "parent": "ccdx_wendigo_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -12240,8 +12796,9 @@ "attack_type": "SPELL", "to_hit_mod": 7, "reach_ft": null, - "range_ft": 100, + "range_ft": 100.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 8, "damage_die_type": "D6) col", @@ -12261,9 +12818,10 @@ "parent": "ccdx_wendigo_icy-claw", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -12283,9 +12841,10 @@ "parent": "ccdx_werebat_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -12305,9 +12864,10 @@ "parent": "ccdx_werebat_claws", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -12327,9 +12887,10 @@ "parent": "ccdx_werebat_mace", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -12349,9 +12910,10 @@ "parent": "ccdx_werehyena_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -12371,9 +12933,10 @@ "parent": "ccdx_werehyena_claws", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -12393,9 +12956,10 @@ "parent": "ccdx_werehyena_scimitar", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -12415,9 +12979,10 @@ "parent": "ccdx_whisperer-in-darkness_grasp-of-the-void", "attack_type": "SPELL", "to_hit_mod": 12, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, "damage_die_type": "D6) force", @@ -12437,9 +13002,10 @@ "parent": "ccdx_white-stag_gore", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -12459,9 +13025,10 @@ "parent": "ccdx_white-stag_hooves", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -12482,8 +13049,9 @@ "attack_type": "SPELL", "to_hit_mod": 6, "reach_ft": null, - "range_ft": 120, + "range_ft": 120.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, "damage_die_type": "D10) fire", @@ -12503,9 +13071,10 @@ "parent": "ccdx_wickerman_slam", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -12525,9 +13094,10 @@ "parent": "ccdx_wind-demon_frost-claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -12547,9 +13117,10 @@ "parent": "ccdx_wind-eater_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -12569,9 +13140,10 @@ "parent": "ccdx_wind-weasel_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -12591,9 +13163,10 @@ "parent": "ccdx_wind-weasel_scythe-claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -12614,8 +13187,9 @@ "attack_type": "SPELL", "to_hit_mod": 6, "reach_ft": null, - "range_ft": 60, + "range_ft": 60.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8) psychic", @@ -12636,8 +13210,9 @@ "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": null, - "range_ft": 20, - "long_range_ft": 60, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -12657,9 +13232,10 @@ "parent": "ccdx_wirbeln-fungi_poison-needle", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -12679,9 +13255,10 @@ "parent": "ccdx_witch-queen_maddening-scimitar", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -12702,8 +13279,9 @@ "attack_type": "SPELL", "to_hit_mod": 6, "reach_ft": null, - "range_ft": 120, + "range_ft": 120.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6)", @@ -12723,9 +13301,10 @@ "parent": "ccdx_wizard-kobold_dagger", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -12745,9 +13324,10 @@ "parent": "ccdx_wolpertinger_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -12767,9 +13347,10 @@ "parent": "ccdx_wolpertinger_gore", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -12789,9 +13370,10 @@ "parent": "ccdx_wood-golem_slam", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -12811,9 +13393,10 @@ "parent": "ccdx_woodwose_club", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -12834,8 +13417,9 @@ "attack_type": "WEAPON", "to_hit_mod": 3, "reach_ft": null, - "range_ft": 80, - "long_range_ft": 320, + "range_ft": 80.0, + "long_range_ft": 320.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -12855,9 +13439,10 @@ "parent": "ccdx_wyvern-knight_dagger", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -12878,8 +13463,9 @@ "attack_type": "WEAPON", "to_hit_mod": 3, "reach_ft": null, - "range_ft": 100, - "long_range_ft": 400, + "range_ft": 100.0, + "long_range_ft": 400.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10) piercing", @@ -12899,9 +13485,10 @@ "parent": "ccdx_wyvern-knight_lance", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D12", @@ -12921,9 +13508,10 @@ "parent": "ccdx_xenabsorber_slam", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -12943,9 +13531,10 @@ "parent": "ccdx_xiphus_hidden-dagger", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -12965,9 +13554,10 @@ "parent": "ccdx_yaga-goo_pseudopod", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -12987,9 +13577,10 @@ "parent": "ccdx_yakirian_gore", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -13009,9 +13600,10 @@ "parent": "ccdx_yakirian_ritual-knife", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -13031,9 +13623,10 @@ "parent": "ccdx_yann-an-oed_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -13053,9 +13646,10 @@ "parent": "ccdx_yann-an-oed_tentacles", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -13075,9 +13669,10 @@ "parent": "ccdx_yek_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -13097,9 +13692,10 @@ "parent": "ccdx_yek_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D4", @@ -13119,9 +13715,10 @@ "parent": "ccdx_young-light-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -13141,9 +13738,10 @@ "parent": "ccdx_young-wasteland-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -13163,9 +13761,10 @@ "parent": "ccdx_young-wasteland-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -13185,9 +13784,10 @@ "parent": "ccdx_ziphius_beak", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -13207,9 +13807,10 @@ "parent": "ccdx_ziphius_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -13229,9 +13830,10 @@ "parent": "ccdx_ziphius_dorsal-fin", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -13251,9 +13853,10 @@ "parent": "ccdx_zoog_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": null, "damage_die_type": null, @@ -13273,9 +13876,10 @@ "parent": "ccdx_zoryas_morningstar", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", diff --git a/data/v2/kobold-press/tob-2023/CreatureActionAttack.json b/data/v2/kobold-press/tob-2023/CreatureActionAttack.json index 9e36821d..85f98aa7 100644 --- a/data/v2/kobold-press/tob-2023/CreatureActionAttack.json +++ b/data/v2/kobold-press/tob-2023/CreatureActionAttack.json @@ -7,9 +7,10 @@ "parent": "tob-2023_abominable-beauty_slam", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -29,9 +30,10 @@ "parent": "tob-2023_accursed-defiler_slam", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -51,9 +53,10 @@ "parent": "tob-2023_adult-cave-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -73,9 +76,10 @@ "parent": "tob-2023_adult-cave-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -95,9 +99,10 @@ "parent": "tob-2023_adult-cave-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -117,9 +122,10 @@ "parent": "tob-2023_adult-flame-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -139,9 +145,10 @@ "parent": "tob-2023_adult-flame-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -161,9 +168,10 @@ "parent": "tob-2023_adult-flame-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -183,9 +191,10 @@ "parent": "tob-2023_adult-mithral-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -205,9 +214,10 @@ "parent": "tob-2023_adult-mithral-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -227,9 +237,10 @@ "parent": "tob-2023_adult-mithral-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -249,9 +260,10 @@ "parent": "tob-2023_adult-sea-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -271,9 +283,10 @@ "parent": "tob-2023_adult-sea-dragon_fin", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -293,9 +306,10 @@ "parent": "tob-2023_adult-sea-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -315,9 +329,10 @@ "parent": "tob-2023_adult-void-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -337,9 +352,10 @@ "parent": "tob-2023_adult-void-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -359,9 +375,10 @@ "parent": "tob-2023_adult-void-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -381,9 +398,10 @@ "parent": "tob-2023_adult-wind-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -403,9 +421,10 @@ "parent": "tob-2023_adult-wind-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -425,9 +444,10 @@ "parent": "tob-2023_adult-wind-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -447,9 +467,10 @@ "parent": "tob-2023_akyishigal_claw", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -469,9 +490,10 @@ "parent": "tob-2023_al-aeshma-genie_scimitar", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -491,9 +513,10 @@ "parent": "tob-2023_ala_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -513,9 +536,10 @@ "parent": "tob-2023_ala_claw", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -536,8 +560,9 @@ "attack_type": "SPELL", "to_hit_mod": 5, "reach_ft": null, - "range_ft": 60, + "range_ft": 60.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -557,9 +582,10 @@ "parent": "tob-2023_alchemist_alchemical-dagger", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -579,9 +605,10 @@ "parent": "tob-2023_alehouse-drake_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -601,9 +628,10 @@ "parent": "tob-2023_alehouse-drake_discombobulating-bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -624,8 +652,9 @@ "attack_type": "SPELL", "to_hit_mod": 5, "reach_ft": null, - "range_ft": 60, + "range_ft": 60.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -645,9 +674,10 @@ "parent": "tob-2023_algorith_logic-razor", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -668,8 +698,9 @@ "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": null, - "range_ft": 80, - "long_range_ft": 320, + "range_ft": 80.0, + "long_range_ft": 320.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -689,9 +720,10 @@ "parent": "tob-2023_alseid_spear", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -712,8 +744,9 @@ "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": null, - "range_ft": 120, + "range_ft": 120.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -733,9 +766,10 @@ "parent": "tob-2023_alseid_thorned-staff", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -755,9 +789,10 @@ "parent": "tob-2023_amphiptere_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -777,9 +812,10 @@ "parent": "tob-2023_amphiptere_stinger", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -799,9 +835,10 @@ "parent": "tob-2023_ancient-cave-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 18, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -821,9 +858,10 @@ "parent": "tob-2023_ancient-cave-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 18, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -843,9 +881,10 @@ "parent": "tob-2023_ancient-cave-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 18, - "reach_ft": 20, + "reach_ft": 20.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -865,9 +904,10 @@ "parent": "tob-2023_ancient-flame-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -887,9 +927,10 @@ "parent": "tob-2023_ancient-flame-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -909,9 +950,10 @@ "parent": "tob-2023_ancient-flame-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 20, + "reach_ft": 20.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -931,9 +973,10 @@ "parent": "tob-2023_ancient-mithral-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -953,9 +996,10 @@ "parent": "tob-2023_ancient-mithral-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -975,9 +1019,10 @@ "parent": "tob-2023_ancient-mithral-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 20, + "reach_ft": 20.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -997,9 +1042,10 @@ "parent": "tob-2023_ancient-sea-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 16, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -1019,9 +1065,10 @@ "parent": "tob-2023_ancient-sea-dragon_fin", "attack_type": "WEAPON", "to_hit_mod": 16, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -1041,9 +1088,10 @@ "parent": "tob-2023_ancient-sea-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 16, - "reach_ft": 20, + "reach_ft": 20.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -1063,9 +1111,10 @@ "parent": "tob-2023_ancient-titan_greatsword", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 8, "damage_die_type": "D6", @@ -1086,8 +1135,9 @@ "attack_type": "SPELL", "to_hit_mod": 9, "reach_ft": null, - "range_ft": 120, + "range_ft": 120.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D8", @@ -1107,9 +1157,10 @@ "parent": "tob-2023_ancient-void-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 16, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -1129,9 +1180,10 @@ "parent": "tob-2023_ancient-void-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 16, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -1151,9 +1203,10 @@ "parent": "tob-2023_ancient-void-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 16, - "reach_ft": 20, + "reach_ft": 20.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -1173,9 +1226,10 @@ "parent": "tob-2023_ancient-wind-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 16, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -1195,9 +1249,10 @@ "parent": "tob-2023_ancient-wind-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 16, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -1217,9 +1272,10 @@ "parent": "tob-2023_ancient-wind-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 16, - "reach_ft": 20, + "reach_ft": 20.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -1239,9 +1295,10 @@ "parent": "tob-2023_angatra_claw", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -1261,9 +1318,10 @@ "parent": "tob-2023_angler-worm_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -1283,9 +1341,10 @@ "parent": "tob-2023_angler-worm_coils", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -1305,9 +1364,10 @@ "parent": "tob-2023_annelidast_slam", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D12", @@ -1327,9 +1387,10 @@ "parent": "tob-2023_anubian_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -1349,9 +1410,10 @@ "parent": "tob-2023_apau-perape_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -1371,9 +1433,10 @@ "parent": "tob-2023_apau-perape_claw", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -1393,9 +1456,10 @@ "parent": "tob-2023_arboreal-grappler_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -1415,9 +1479,10 @@ "parent": "tob-2023_arboreal-grappler_tentacle", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -1438,8 +1503,9 @@ "attack_type": "WEAPON", "to_hit_mod": 8, "reach_ft": null, - "range_ft": 40, - "long_range_ft": 160, + "range_ft": 40.0, + "long_range_ft": 160.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -1459,9 +1525,10 @@ "parent": "tob-2023_aridni_shortsword", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -1481,9 +1548,10 @@ "parent": "tob-2023_arx_claw", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -1503,9 +1571,10 @@ "parent": "tob-2023_arx_spear", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -1525,9 +1594,10 @@ "parent": "tob-2023_asanbosam_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -1547,9 +1617,10 @@ "parent": "tob-2023_asanbosam_claws", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -1569,9 +1640,10 @@ "parent": "tob-2023_ash-drake_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -1591,9 +1663,10 @@ "parent": "tob-2023_ash-drake_claw", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -1613,9 +1686,10 @@ "parent": "tob-2023_ashwalker_slam", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -1635,9 +1709,10 @@ "parent": "tob-2023_automata-devil_bite", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -1657,9 +1732,10 @@ "parent": "tob-2023_automata-devil_claw", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -1679,9 +1755,10 @@ "parent": "tob-2023_automata-devil_whip", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -1701,9 +1778,10 @@ "parent": "tob-2023_azza-gremlin_lightning-jolt", "attack_type": "SPELL", "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": 30, + "reach_ft": 5.0, + "range_ft": 30.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -1724,8 +1802,9 @@ "attack_type": "SPELL", "to_hit_mod": 8, "reach_ft": null, - "range_ft": 120, + "range_ft": 120.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6", @@ -1745,9 +1824,10 @@ "parent": "tob-2023_baba-yagas-horsemen_lance", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D12", @@ -1767,9 +1847,10 @@ "parent": "tob-2023_baba-yagas-horsemen_longsword", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -1789,9 +1870,10 @@ "parent": "tob-2023_bagiennik_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -1811,9 +1893,10 @@ "parent": "tob-2023_bandit-lord_dagger", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -1833,9 +1916,10 @@ "parent": "tob-2023_bandit-lord_longsword", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -1855,9 +1939,10 @@ "parent": "tob-2023_bastet-temple-cat_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -1877,9 +1962,10 @@ "parent": "tob-2023_bastet-temple-cat_claws", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -1899,9 +1985,10 @@ "parent": "tob-2023_bear-king_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -1921,9 +2008,10 @@ "parent": "tob-2023_bear-king_claw", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -1944,8 +2032,9 @@ "attack_type": "SPELL", "to_hit_mod": 8, "reach_ft": null, - "range_ft": 120, + "range_ft": 120.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D8", @@ -1965,9 +2054,10 @@ "parent": "tob-2023_bear-king_maul", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -1987,9 +2077,10 @@ "parent": "tob-2023_bearfolk_battleaxe", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -2009,9 +2100,10 @@ "parent": "tob-2023_bearfolk_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -2031,9 +2123,10 @@ "parent": "tob-2023_bearfolk_warhammer", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -2053,9 +2146,10 @@ "parent": "tob-2023_beggar-ghoul_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -2075,9 +2169,10 @@ "parent": "tob-2023_beggar-ghoul_claws", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -2097,9 +2192,10 @@ "parent": "tob-2023_beheaded-vengeful-spirit_essence-of-rage", "attack_type": "SPELL", "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": 30, + "reach_ft": 5.0, + "range_ft": 30.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D8", @@ -2119,9 +2215,10 @@ "parent": "tob-2023_behtu_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -2141,9 +2238,10 @@ "parent": "tob-2023_behtu_spear", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -2163,9 +2261,10 @@ "parent": "tob-2023_beli_ice-dagger", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -2186,8 +2285,9 @@ "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": null, - "range_ft": 80, - "long_range_ft": 320, + "range_ft": 80.0, + "long_range_ft": 320.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -2207,9 +2307,10 @@ "parent": "tob-2023_bereginyas_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -2229,9 +2330,10 @@ "parent": "tob-2023_berstuc_slam", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -2251,9 +2353,10 @@ "parent": "tob-2023_black-knight-commander_lance", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D12", @@ -2273,9 +2376,10 @@ "parent": "tob-2023_black-knight-commander_mace", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -2295,9 +2399,10 @@ "parent": "tob-2023_blemmyes_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6", @@ -2318,8 +2423,9 @@ "attack_type": "WEAPON", "to_hit_mod": 8, "reach_ft": null, - "range_ft": 30, - "long_range_ft": 120, + "range_ft": 30.0, + "long_range_ft": 120.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D10", @@ -2339,9 +2445,10 @@ "parent": "tob-2023_blemmyes_slam", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -2362,8 +2469,9 @@ "attack_type": "SPELL", "to_hit_mod": 9, "reach_ft": null, - "range_ft": 60, + "range_ft": 60.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -2383,9 +2491,10 @@ "parent": "tob-2023_blood-hag_claws", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6", @@ -2405,9 +2514,10 @@ "parent": "tob-2023_boloti_dagger", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -2427,9 +2537,10 @@ "parent": "tob-2023_bone-collective_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D12", @@ -2449,9 +2560,10 @@ "parent": "tob-2023_bone-collective_claw", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D12", @@ -2471,9 +2583,10 @@ "parent": "tob-2023_bone-collective_piercing-bones", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 0, + "reach_ft": 0.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 8, "damage_die_type": "D12) piercing", @@ -2493,9 +2606,10 @@ "parent": "tob-2023_bone-crab_claw", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -2515,9 +2629,10 @@ "parent": "tob-2023_bone-swarm_swirling-bones", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 0, + "reach_ft": 0.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 8, "damage_die_type": "D8) blu", @@ -2537,9 +2652,10 @@ "parent": "tob-2023_bonepowder-ghoul_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -2559,9 +2675,10 @@ "parent": "tob-2023_bouda_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -2581,9 +2698,10 @@ "parent": "tob-2023_bouda_mephitic-claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -2603,9 +2721,10 @@ "parent": "tob-2023_broodiken_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -2625,9 +2744,10 @@ "parent": "tob-2023_bucca_dagger", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -2647,9 +2767,10 @@ "parent": "tob-2023_bukavac_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -2669,9 +2790,10 @@ "parent": "tob-2023_bukavac_claw", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D12", @@ -2691,9 +2813,10 @@ "parent": "tob-2023_bukavac_gore", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -2713,9 +2836,10 @@ "parent": "tob-2023_buraq_hooves", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -2735,9 +2859,10 @@ "parent": "tob-2023_burrowling_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -2757,9 +2882,10 @@ "parent": "tob-2023_burrowling_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -2780,8 +2906,9 @@ "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": null, - "range_ft": 30, - "long_range_ft": 120, + "range_ft": 30.0, + "long_range_ft": 120.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -2801,9 +2928,10 @@ "parent": "tob-2023_cactid_tendril", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -2823,9 +2951,10 @@ "parent": "tob-2023_camazotz_bite", "attack_type": "WEAPON", "to_hit_mod": 17, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 8, "damage_die_type": "D6", @@ -2845,9 +2974,10 @@ "parent": "tob-2023_camazotz_claw", "attack_type": "WEAPON", "to_hit_mod": 17, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, "damage_die_type": "D6", @@ -2867,9 +2997,10 @@ "parent": "tob-2023_cambium_needle-fingers", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -2890,8 +3021,9 @@ "attack_type": "SPELL", "to_hit_mod": 9, "reach_ft": null, - "range_ft": 60, + "range_ft": 60.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D8", @@ -2911,9 +3043,10 @@ "parent": "tob-2023_carrion-beetle_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D12", @@ -2933,9 +3066,10 @@ "parent": "tob-2023_carrion-beetle_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -2955,9 +3089,10 @@ "parent": "tob-2023_caustic-charger_ram", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D8", @@ -2977,9 +3112,10 @@ "parent": "tob-2023_caustic-charger_tentacles", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -2999,9 +3135,10 @@ "parent": "tob-2023_cave-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -3021,9 +3158,10 @@ "parent": "tob-2023_cavelight-moss_tendrils", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -3043,9 +3181,10 @@ "parent": "tob-2023_chained-angel_fiery-greatsword", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -3065,9 +3204,10 @@ "parent": "tob-2023_chelicerae_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -3087,9 +3227,10 @@ "parent": "tob-2023_chelicerae_claw", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -3109,9 +3250,10 @@ "parent": "tob-2023_chernomoi_scimitar", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -3132,8 +3274,9 @@ "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 80, - "long_range_ft": 320, + "range_ft": 80.0, + "long_range_ft": 320.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -3153,9 +3296,10 @@ "parent": "tob-2023_chieftain_spear", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -3175,9 +3319,10 @@ "parent": "tob-2023_child-of-the-briar_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -3197,9 +3342,10 @@ "parent": "tob-2023_chort-devil_claw", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -3220,8 +3366,9 @@ "attack_type": "SPELL", "to_hit_mod": 9, "reach_ft": null, - "range_ft": 120, + "range_ft": 120.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6", @@ -3241,9 +3388,10 @@ "parent": "tob-2023_chort-devil_ranseur", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -3263,9 +3411,10 @@ "parent": "tob-2023_chronalmental_slam", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -3286,8 +3435,9 @@ "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 5, + "range_ft": 5.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -3307,9 +3457,10 @@ "parent": "tob-2023_citrullus_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6", @@ -3330,8 +3481,9 @@ "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": null, - "range_ft": 80, - "long_range_ft": 320, + "range_ft": 80.0, + "long_range_ft": 320.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -3351,9 +3503,10 @@ "parent": "tob-2023_city-watch-captain_rapier", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -3373,9 +3526,10 @@ "parent": "tob-2023_clockwork-abomination_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -3395,9 +3549,10 @@ "parent": "tob-2023_clockwork-abomination_slam", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -3417,9 +3572,10 @@ "parent": "tob-2023_clockwork-beetle-swarm_bites", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 0, + "reach_ft": 0.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D8) piercing", @@ -3439,9 +3595,10 @@ "parent": "tob-2023_clockwork-beetle_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -3461,9 +3618,10 @@ "parent": "tob-2023_clockwork-hound_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -3483,9 +3641,10 @@ "parent": "tob-2023_clockwork-hound_tripping-tongue", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -3505,9 +3664,10 @@ "parent": "tob-2023_clockwork-huntsman_longsword", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -3528,8 +3688,9 @@ "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 10, - "long_range_ft": 20, + "range_ft": 10.0, + "long_range_ft": 20.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": null, "damage_die_type": null, @@ -3549,9 +3710,10 @@ "parent": "tob-2023_clockwork-huntsman_slam", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -3571,9 +3733,10 @@ "parent": "tob-2023_clockwork-myrmidon_slam", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D12", @@ -3593,9 +3756,10 @@ "parent": "tob-2023_clockwork-myrmidon_war-pick", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -3615,9 +3779,10 @@ "parent": "tob-2023_clockwork-watchman_halberd", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -3638,8 +3803,9 @@ "attack_type": "WEAPON", "to_hit_mod": 3, "reach_ft": null, - "range_ft": 10, - "long_range_ft": 20, + "range_ft": 10.0, + "long_range_ft": 20.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": null, "damage_die_type": null, @@ -3659,9 +3825,10 @@ "parent": "tob-2023_clockwork-watchman_slam", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -3682,8 +3849,9 @@ "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": null, - "range_ft": 30, + "range_ft": 30.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -3703,9 +3871,10 @@ "parent": "tob-2023_clockwork-weaving-spider_trimming-blade", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -3726,8 +3895,9 @@ "attack_type": "SPELL", "to_hit_mod": 5, "reach_ft": null, - "range_ft": 30, + "range_ft": 30.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -3747,9 +3917,10 @@ "parent": "tob-2023_clurichaun_improvised-weapon", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -3769,9 +3940,10 @@ "parent": "tob-2023_clurichaun_slam", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -3791,9 +3963,10 @@ "parent": "tob-2023_cobbleswarm_stings", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 0, + "reach_ft": 0.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, "damage_die_type": "D4) piercing", @@ -3813,9 +3986,10 @@ "parent": "tob-2023_coral-drake_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -3835,9 +4009,10 @@ "parent": "tob-2023_coral-drake_spined-fin", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -3857,9 +4032,10 @@ "parent": "tob-2023_coral-drake_stinger", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -3880,8 +4056,9 @@ "attack_type": "WEAPON", "to_hit_mod": 11, "reach_ft": null, - "range_ft": 30, - "long_range_ft": 120, + "range_ft": 30.0, + "long_range_ft": 120.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -3901,9 +4078,10 @@ "parent": "tob-2023_corpse-mound_slam", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -3923,9 +4101,10 @@ "parent": "tob-2023_corrupted-chieftain_greatclub", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -3945,9 +4124,10 @@ "parent": "tob-2023_corrupted-chieftain_javelin", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, - "range_ft": 30, - "long_range_ft": 120, + "reach_ft": 5.0, + "range_ft": 30.0, + "long_range_ft": 120.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -3967,9 +4147,10 @@ "parent": "tob-2023_corrupted-ushabti_ceremonial-greatsword", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -3989,9 +4170,10 @@ "parent": "tob-2023_corrupting-ooze_slam", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -4011,9 +4193,10 @@ "parent": "tob-2023_crimson-drake_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -4033,9 +4216,10 @@ "parent": "tob-2023_crimson-drake_stinger", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -4055,9 +4239,10 @@ "parent": "tob-2023_crystalline-devil_shard-claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -4077,9 +4262,10 @@ "parent": "tob-2023_darakhul_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -4099,9 +4285,10 @@ "parent": "tob-2023_darakhul_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -4121,9 +4308,10 @@ "parent": "tob-2023_darakhul_war-pick", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -4143,9 +4331,10 @@ "parent": "tob-2023_dau_slam", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -4165,9 +4354,10 @@ "parent": "tob-2023_death-butterfly-swarm_bites", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 0, + "reach_ft": 0.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, "damage_die_type": "D6) piercing", @@ -4187,9 +4377,10 @@ "parent": "tob-2023_deathcap-myconid_spore-coated-fist", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -4209,9 +4400,10 @@ "parent": "tob-2023_deathwisp_ghostly-pike", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -4231,9 +4423,10 @@ "parent": "tob-2023_deathwisp_life-drain", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D8", @@ -4253,9 +4446,10 @@ "parent": "tob-2023_deep-drake_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -4275,9 +4469,10 @@ "parent": "tob-2023_deep-drake_claw", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -4297,9 +4492,10 @@ "parent": "tob-2023_deep-drake_stinger", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -4319,9 +4515,10 @@ "parent": "tob-2023_deep-one-archimandrite_claws", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -4341,9 +4538,10 @@ "parent": "tob-2023_deep-one-archimandrite_jolt", "attack_type": "SPELL", "to_hit_mod": 7, - "reach_ft": 5, - "range_ft": 60, + "reach_ft": 5.0, + "range_ft": 60.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -4363,9 +4561,10 @@ "parent": "tob-2023_deep-one-archimandrite_unholy-trident", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -4385,9 +4584,10 @@ "parent": "tob-2023_deep-one-priest_claws", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -4407,9 +4607,10 @@ "parent": "tob-2023_deep-one-priest_jolting-touch", "attack_type": "SPELL", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -4429,9 +4630,10 @@ "parent": "tob-2023_deep-one_claws", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -4451,9 +4653,10 @@ "parent": "tob-2023_degenerate-titan_greatclub", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -4474,8 +4677,9 @@ "attack_type": "WEAPON", "to_hit_mod": 8, "reach_ft": null, - "range_ft": 60, - "long_range_ft": 240, + "range_ft": 60.0, + "long_range_ft": 240.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D10", @@ -4495,9 +4699,10 @@ "parent": "tob-2023_desert-giant_falchion", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, "damage_die_type": "D4", @@ -4518,8 +4723,9 @@ "attack_type": "WEAPON", "to_hit_mod": 12, "reach_ft": null, - "range_ft": 60, - "long_range_ft": 240, + "range_ft": 60.0, + "long_range_ft": 240.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D10", @@ -4539,9 +4745,10 @@ "parent": "tob-2023_devilbound-gnome_hellish-blast", "attack_type": "SPELL", "to_hit_mod": 9, - "reach_ft": 5, - "range_ft": 120, + "reach_ft": 5.0, + "range_ft": 120.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -4561,9 +4768,10 @@ "parent": "tob-2023_dipsa_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": null, "damage_die_type": null, @@ -4583,9 +4791,10 @@ "parent": "tob-2023_dissimortuum_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -4605,9 +4814,10 @@ "parent": "tob-2023_dogmole-juggernaut_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -4627,9 +4837,10 @@ "parent": "tob-2023_dogmole-juggernaut_claw", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D4", @@ -4649,9 +4860,10 @@ "parent": "tob-2023_dogmole_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -4671,9 +4883,10 @@ "parent": "tob-2023_dogmole_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -4693,9 +4906,10 @@ "parent": "tob-2023_domovoi_slam", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -4715,9 +4929,10 @@ "parent": "tob-2023_doppelrat_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -4737,9 +4952,10 @@ "parent": "tob-2023_dorreq_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -4759,9 +4975,10 @@ "parent": "tob-2023_dorreq_tentacles", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -4781,9 +4998,10 @@ "parent": "tob-2023_dragon-eel_bite", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D8", @@ -4803,9 +5021,10 @@ "parent": "tob-2023_dragon-eel_tail-slap", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, "damage_die_type": "D8", @@ -4825,9 +5044,10 @@ "parent": "tob-2023_dragonleaf-tree_slam", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -4848,8 +5068,9 @@ "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": null, - "range_ft": 30, - "long_range_ft": 120, + "range_ft": 30.0, + "long_range_ft": 120.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D4", @@ -4869,9 +5090,10 @@ "parent": "tob-2023_drakon_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -4891,9 +5113,10 @@ "parent": "tob-2023_drakon_tail", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -4913,9 +5136,10 @@ "parent": "tob-2023_dream-eater_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -4935,9 +5159,10 @@ "parent": "tob-2023_dream-eater_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -4957,9 +5182,10 @@ "parent": "tob-2023_drowned-maiden_hair", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 20, + "reach_ft": 20.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -4979,9 +5205,10 @@ "parent": "tob-2023_duelist_dagger", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -5001,9 +5228,10 @@ "parent": "tob-2023_duelist_rapier", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -5024,8 +5252,9 @@ "attack_type": "SPELL", "to_hit_mod": 7, "reach_ft": null, - "range_ft": 120, + "range_ft": 120.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D8", @@ -5045,9 +5274,10 @@ "parent": "tob-2023_dullahan_spine-whip", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -5067,9 +5297,10 @@ "parent": "tob-2023_dune-mimic_pseudopod", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -5090,8 +5321,9 @@ "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": null, - "range_ft": 80, - "long_range_ft": 320, + "range_ft": 80.0, + "long_range_ft": 320.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -5111,9 +5343,10 @@ "parent": "tob-2023_duskthorn-dryad_thorned-slam", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -5134,8 +5367,9 @@ "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": null, - "range_ft": 80, - "long_range_ft": 320, + "range_ft": 80.0, + "long_range_ft": 320.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -5155,9 +5389,10 @@ "parent": "tob-2023_dust-goblin_shortsword", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -5177,9 +5412,10 @@ "parent": "tob-2023_dwarven-ringmage_ring-staff", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -5199,9 +5435,10 @@ "parent": "tob-2023_eala_wing-blades", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -5221,9 +5458,10 @@ "parent": "tob-2023_eater-of-dust_maw-arm", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -5243,9 +5481,10 @@ "parent": "tob-2023_eater-of-dust_necrotic-burst", "attack_type": "SPELL", "to_hit_mod": 7, - "reach_ft": 5, - "range_ft": 60, + "reach_ft": 5.0, + "range_ft": 60.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -5265,9 +5504,10 @@ "parent": "tob-2023_edimmu_draining-touch", "attack_type": "SPELL", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -5287,9 +5527,10 @@ "parent": "tob-2023_eel-hound_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -5309,9 +5550,10 @@ "parent": "tob-2023_einherjar_battleaxe", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -5332,8 +5574,9 @@ "attack_type": "SPELL", "to_hit_mod": 5, "reach_ft": null, - "range_ft": 60, + "range_ft": 60.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -5353,9 +5596,10 @@ "parent": "tob-2023_elder-shadow-drake_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -5375,9 +5619,10 @@ "parent": "tob-2023_elder-shadow-drake_tail-slap", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -5397,9 +5642,10 @@ "parent": "tob-2023_elemental-locus_slam", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, "damage_die_type": "D8", @@ -5420,8 +5666,9 @@ "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": null, - "range_ft": 150, - "long_range_ft": 600, + "range_ft": 150.0, + "long_range_ft": 600.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -5441,9 +5688,10 @@ "parent": "tob-2023_elvish-veteran-archer_shortsword", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -5464,8 +5712,9 @@ "attack_type": "SPELL", "to_hit_mod": 5, "reach_ft": null, - "range_ft": 60, + "range_ft": 60.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -5485,9 +5734,10 @@ "parent": "tob-2023_emerald-order-cult-leader_mace", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -5508,8 +5758,9 @@ "attack_type": "SPELL", "to_hit_mod": 8, "reach_ft": null, - "range_ft": 60, + "range_ft": 60.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -5529,9 +5780,10 @@ "parent": "tob-2023_empty-cloak_razor-cloak", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -5551,9 +5803,10 @@ "parent": "tob-2023_empty-cloak_shadow-slam", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -5574,8 +5827,9 @@ "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 20, - "long_range_ft": 60, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": null, "damage_die_type": null, @@ -5595,9 +5849,10 @@ "parent": "tob-2023_enchantress_rapier", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -5618,8 +5873,9 @@ "attack_type": "SPELL", "to_hit_mod": 7, "reach_ft": null, - "range_ft": 120, + "range_ft": 120.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -5639,9 +5895,10 @@ "parent": "tob-2023_eonic-drifter_time-warping-staff", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -5662,8 +5919,9 @@ "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 80, - "long_range_ft": 320, + "range_ft": 80.0, + "long_range_ft": 320.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -5683,9 +5941,10 @@ "parent": "tob-2023_erina-defender_shortsword", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -5705,9 +5964,10 @@ "parent": "tob-2023_erina_dagger", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -5728,8 +5988,9 @@ "attack_type": "WEAPON", "to_hit_mod": 3, "reach_ft": null, - "range_ft": 30, - "long_range_ft": 120, + "range_ft": 30.0, + "long_range_ft": 120.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -5749,9 +6010,10 @@ "parent": "tob-2023_eye-golem_slam", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -5771,9 +6033,10 @@ "parent": "tob-2023_far-darrig_antler-glaive", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -5793,9 +6056,10 @@ "parent": "tob-2023_fate-eater_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -5815,9 +6079,10 @@ "parent": "tob-2023_fear-smith_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -5837,9 +6102,10 @@ "parent": "tob-2023_fellforged_necrotic-slam", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -5859,9 +6125,10 @@ "parent": "tob-2023_fetal-savant_psychic-burst", "attack_type": "SPELL", "to_hit_mod": 7, - "reach_ft": 5, - "range_ft": 60, + "reach_ft": 5.0, + "range_ft": 60.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -5881,9 +6148,10 @@ "parent": "tob-2023_fext_eldritch-blade", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -5904,8 +6172,9 @@ "attack_type": "SPELL", "to_hit_mod": 7, "reach_ft": null, - "range_ft": 120, + "range_ft": 120.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -5925,9 +6194,10 @@ "parent": "tob-2023_feyward-tree_razor-leafed-branch", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -5947,9 +6217,10 @@ "parent": "tob-2023_fidele-angel_beak", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -5969,9 +6240,10 @@ "parent": "tob-2023_fidele-angel_longsword", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -5992,8 +6264,9 @@ "attack_type": "SPELL", "to_hit_mod": 7, "reach_ft": null, - "range_ft": 120, + "range_ft": 120.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -6013,9 +6286,10 @@ "parent": "tob-2023_fidele-angel_talons", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -6035,9 +6309,10 @@ "parent": "tob-2023_firebird_beak", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -6057,9 +6332,10 @@ "parent": "tob-2023_firebird_talon", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -6079,9 +6355,10 @@ "parent": "tob-2023_firegeist_burning-slam", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -6101,9 +6378,10 @@ "parent": "tob-2023_flab-giant_slam", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -6123,9 +6401,10 @@ "parent": "tob-2023_flame-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -6145,9 +6424,10 @@ "parent": "tob-2023_flutterflesh_bone-spur", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D12", @@ -6168,8 +6448,9 @@ "attack_type": "SPELL", "to_hit_mod": 7, "reach_ft": null, - "range_ft": 120, + "range_ft": 120.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D8", @@ -6190,8 +6471,9 @@ "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 10, - "long_range_ft": 30, + "range_ft": 10.0, + "long_range_ft": 30.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -6212,8 +6494,9 @@ "attack_type": "SPELL", "to_hit_mod": 6, "reach_ft": null, - "range_ft": 120, + "range_ft": 120.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -6233,9 +6516,10 @@ "parent": "tob-2023_folk-of-leng_scimitar", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -6255,9 +6539,10 @@ "parent": "tob-2023_forest-hunter_dagger", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -6278,8 +6563,9 @@ "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": null, - "range_ft": 150, - "long_range_ft": 600, + "range_ft": 150.0, + "long_range_ft": 600.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -6299,9 +6585,10 @@ "parent": "tob-2023_forest-marauder_boar-spear", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -6322,8 +6609,9 @@ "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": null, - "range_ft": 30, - "long_range_ft": 120, + "range_ft": 30.0, + "long_range_ft": 120.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -6343,9 +6631,10 @@ "parent": "tob-2023_fraughashar_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -6365,9 +6654,10 @@ "parent": "tob-2023_fraughashar_dagger", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -6388,8 +6678,9 @@ "attack_type": "SPELL", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 60, + "range_ft": 60.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -6409,9 +6700,10 @@ "parent": "tob-2023_frostveil_frozen-tendril", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -6431,9 +6723,10 @@ "parent": "tob-2023_garroter-crab_whip-claw", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -6453,9 +6746,10 @@ "parent": "tob-2023_gbahali_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -6475,9 +6769,10 @@ "parent": "tob-2023_gbahali_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -6497,9 +6792,10 @@ "parent": "tob-2023_gearforged-templar_greatsword", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -6519,9 +6815,10 @@ "parent": "tob-2023_gearforged-templar_javelin", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, - "range_ft": 30, - "long_range_ft": 120, + "reach_ft": 5.0, + "range_ft": 30.0, + "long_range_ft": 120.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -6541,9 +6838,10 @@ "parent": "tob-2023_gerridae_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -6563,9 +6861,10 @@ "parent": "tob-2023_gerridae_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -6585,9 +6884,10 @@ "parent": "tob-2023_ghost-knight_battleaxe", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -6607,9 +6907,10 @@ "parent": "tob-2023_ghost-knight_lance", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D12", @@ -6629,9 +6930,10 @@ "parent": "tob-2023_ghostwalk-spider_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -6651,9 +6953,10 @@ "parent": "tob-2023_giant-ant-queen_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -6673,9 +6976,10 @@ "parent": "tob-2023_giant-ant-queen_sting", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -6695,9 +6999,10 @@ "parent": "tob-2023_giant-ant_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -6717,9 +7022,10 @@ "parent": "tob-2023_giant-ant_sting", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -6739,9 +7045,10 @@ "parent": "tob-2023_gilded-devil_golden-flail", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -6762,8 +7069,9 @@ "attack_type": "SPELL", "to_hit_mod": 7, "reach_ft": null, - "range_ft": 120, + "range_ft": 120.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -6783,9 +7091,10 @@ "parent": "tob-2023_glass-gator_claw", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -6805,9 +7114,10 @@ "parent": "tob-2023_glass-gator_constrict", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -6827,9 +7137,10 @@ "parent": "tob-2023_gnarljak_chain-tail", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -6849,9 +7160,10 @@ "parent": "tob-2023_gnarljak_gnawing-bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -6871,9 +7183,10 @@ "parent": "tob-2023_gnoll-havoc-runner_battleaxe", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -6893,9 +7206,10 @@ "parent": "tob-2023_gnoll-havoc-runner_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -6915,9 +7229,10 @@ "parent": "tob-2023_goat-man_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -6937,9 +7252,10 @@ "parent": "tob-2023_goat-man_slam", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -6959,9 +7275,10 @@ "parent": "tob-2023_gray-thirster_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -6981,9 +7298,10 @@ "parent": "tob-2023_gray-thirster_withering-turban", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -7003,9 +7321,10 @@ "parent": "tob-2023_greater-death-butterfly-swarm_bites", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 0, + "reach_ft": 0.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, "damage_die_type": "D6) piercing", @@ -7026,8 +7345,9 @@ "attack_type": "SPELL", "to_hit_mod": 5, "reach_ft": null, - "range_ft": 60, + "range_ft": 60.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -7047,9 +7367,10 @@ "parent": "tob-2023_greyfur_greyfurs-staff", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -7070,8 +7391,9 @@ "attack_type": "SPELL", "to_hit_mod": 9, "reach_ft": null, - "range_ft": 5, + "range_ft": 5.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -7091,9 +7413,10 @@ "parent": "tob-2023_guardian_javelin", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": 30, - "long_range_ft": 120, + "reach_ft": 5.0, + "range_ft": 30.0, + "long_range_ft": 120.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -7113,9 +7436,10 @@ "parent": "tob-2023_guardian_pike", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -7135,9 +7459,10 @@ "parent": "tob-2023_gug_grasping-claw", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -7157,9 +7482,10 @@ "parent": "tob-2023_gug_stomp", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D12", @@ -7179,9 +7505,10 @@ "parent": "tob-2023_gypsosphinx_beak", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -7201,9 +7528,10 @@ "parent": "tob-2023_gypsosphinx_claw", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6", @@ -7224,8 +7552,9 @@ "attack_type": "SPELL", "to_hit_mod": 10, "reach_ft": null, - "range_ft": 120, + "range_ft": 120.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, "damage_die_type": "D8", @@ -7246,8 +7575,9 @@ "attack_type": "SPELL", "to_hit_mod": 7, "reach_ft": null, - "range_ft": 120, + "range_ft": 120.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, "damage_die_type": "D8", @@ -7267,9 +7597,10 @@ "parent": "tob-2023_herald-of-blood_grasping-slam", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -7289,9 +7620,10 @@ "parent": "tob-2023_herald-of-blood_heralds-staff", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -7311,9 +7643,10 @@ "parent": "tob-2023_herald-of-darkness_embrace-darkness", "attack_type": "SPELL", "to_hit_mod": 7, - "reach_ft": 0, + "reach_ft": 0.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -7333,9 +7666,10 @@ "parent": "tob-2023_herald-of-darkness_shadow-sword", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -7355,9 +7689,10 @@ "parent": "tob-2023_hoard-golem_slam", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -7377,9 +7712,10 @@ "parent": "tob-2023_horakh_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D8", @@ -7399,9 +7735,10 @@ "parent": "tob-2023_horakh_claw", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -7421,9 +7758,10 @@ "parent": "tob-2023_hound-of-the-night_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -7443,9 +7781,10 @@ "parent": "tob-2023_hraesvelgr_beak", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D8", @@ -7465,9 +7804,10 @@ "parent": "tob-2023_hraesvelgr_fist", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -7488,8 +7828,9 @@ "attack_type": "SPELL", "to_hit_mod": 11, "reach_ft": null, - "range_ft": 120, + "range_ft": 120.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -7509,9 +7850,10 @@ "parent": "tob-2023_hraesvelgr_talons", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -7531,9 +7873,10 @@ "parent": "tob-2023_hulking-whelp_slam", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -7553,9 +7896,10 @@ "parent": "tob-2023_hundun_slam", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -7575,9 +7919,10 @@ "parent": "tob-2023_iaaffrat_bite", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 0, + "reach_ft": 0.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, "damage_die_type": "D6) piercing", @@ -7597,9 +7942,10 @@ "parent": "tob-2023_iaaffrat_burning-claw", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D8", @@ -7620,8 +7966,9 @@ "attack_type": "SPELL", "to_hit_mod": 11, "reach_ft": null, - "range_ft": 120, + "range_ft": 120.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -7641,9 +7988,10 @@ "parent": "tob-2023_ice-maiden_ice-blade", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -7664,8 +8012,9 @@ "attack_type": "SPELL", "to_hit_mod": 8, "reach_ft": null, - "range_ft": 60, + "range_ft": 60.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6", @@ -7685,9 +8034,10 @@ "parent": "tob-2023_idolic-deity_slam", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -7707,9 +8057,10 @@ "parent": "tob-2023_imperial-ghoul_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -7732,6 +8083,7 @@ "reach_ft": null, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6", @@ -7752,8 +8104,9 @@ "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 80, - "long_range_ft": 320, + "range_ft": 80.0, + "long_range_ft": 320.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -7773,9 +8126,10 @@ "parent": "tob-2023_ink-devil_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -7795,9 +8149,10 @@ "parent": "tob-2023_ink-devil_devils-ink", "attack_type": "SPELL", "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": 60, + "reach_ft": 5.0, + "range_ft": 60.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -7817,9 +8172,10 @@ "parent": "tob-2023_iron-ghoul_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -7839,9 +8195,10 @@ "parent": "tob-2023_iron-ghoul_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6", @@ -7861,9 +8218,10 @@ "parent": "tob-2023_iron-ghoul_glaive", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -7884,8 +8242,9 @@ "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": null, - "range_ft": 100, + "range_ft": 100.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -7905,9 +8264,10 @@ "parent": "tob-2023_isonade_bite", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D12", @@ -7927,9 +8287,10 @@ "parent": "tob-2023_isonade_tail-slap", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6", @@ -7949,9 +8310,10 @@ "parent": "tob-2023_jaculus_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -7971,9 +8333,10 @@ "parent": "tob-2023_jaculus_claws", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -7993,9 +8356,10 @@ "parent": "tob-2023_jba-fofi-spider_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -8015,9 +8379,10 @@ "parent": "tob-2023_jotun_greatclub", "attack_type": "WEAPON", "to_hit_mod": 17, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D8", @@ -8038,8 +8403,9 @@ "attack_type": "WEAPON", "to_hit_mod": 17, "reach_ft": null, - "range_ft": 60, - "long_range_ft": 240, + "range_ft": 60.0, + "long_range_ft": 240.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D10", @@ -8059,9 +8425,10 @@ "parent": "tob-2023_kalke_slam", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -8081,9 +8448,10 @@ "parent": "tob-2023_kikimora_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -8103,9 +8471,10 @@ "parent": "tob-2023_kishi_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -8125,9 +8494,10 @@ "parent": "tob-2023_kishi_spear", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -8147,9 +8517,10 @@ "parent": "tob-2023_kongamato_beak", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -8169,9 +8540,10 @@ "parent": "tob-2023_kongamato_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -8191,9 +8563,10 @@ "parent": "tob-2023_koralk_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -8213,9 +8586,10 @@ "parent": "tob-2023_koralk_scythe", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -8235,9 +8609,10 @@ "parent": "tob-2023_koralk_stinger", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -8257,9 +8632,10 @@ "parent": "tob-2023_koralk_vestigial-arms", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": null, "damage_die_type": null, @@ -8279,9 +8655,10 @@ "parent": "tob-2023_kot-bayun_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -8301,9 +8678,10 @@ "parent": "tob-2023_kot-bayun_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -8323,9 +8701,10 @@ "parent": "tob-2023_krake-spawn_bite", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -8346,8 +8725,9 @@ "attack_type": "SPELL", "to_hit_mod": 9, "reach_ft": null, - "range_ft": 60, + "range_ft": 60.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -8367,9 +8747,10 @@ "parent": "tob-2023_krake-spawn_tentacle", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -8389,9 +8770,10 @@ "parent": "tob-2023_lake-troll_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -8411,9 +8793,10 @@ "parent": "tob-2023_lake-troll_claw", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -8433,9 +8816,10 @@ "parent": "tob-2023_lantern-dragonette_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -8456,8 +8840,9 @@ "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 25, - "long_range_ft": 100, + "range_ft": 25.0, + "long_range_ft": 100.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -8477,9 +8862,10 @@ "parent": "tob-2023_lemurfolk_slam", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -8499,9 +8885,10 @@ "parent": "tob-2023_leshy_club", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -8521,9 +8908,10 @@ "parent": "tob-2023_library-automaton_piston-powered-kick", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -8544,8 +8932,9 @@ "attack_type": "SPELL", "to_hit_mod": 5, "reach_ft": null, - "range_ft": 60, + "range_ft": 60.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -8565,9 +8954,10 @@ "parent": "tob-2023_lich-hound_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -8587,9 +8977,10 @@ "parent": "tob-2023_likho_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -8609,9 +9000,10 @@ "parent": "tob-2023_lindwurm_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -8631,9 +9023,10 @@ "parent": "tob-2023_lindwurm_claw", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -8653,9 +9046,10 @@ "parent": "tob-2023_lindwurm_constrict", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -8675,9 +9069,10 @@ "parent": "tob-2023_liosalfar_radiant-touch", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D10", @@ -8698,8 +9093,9 @@ "attack_type": "SPELL", "to_hit_mod": 8, "reach_ft": null, - "range_ft": 60, + "range_ft": 60.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, "damage_die_type": "D8", @@ -8719,9 +9115,10 @@ "parent": "tob-2023_living-wick_slam", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -8742,8 +9139,9 @@ "attack_type": "WEAPON", "to_hit_mod": 10, "reach_ft": null, - "range_ft": 150, - "long_range_ft": 600, + "range_ft": 150.0, + "long_range_ft": 600.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -8763,9 +9161,10 @@ "parent": "tob-2023_lord-of-the-hunt_spear", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 5, - "range_ft": 30, - "long_range_ft": 120, + "reach_ft": 5.0, + "range_ft": 30.0, + "long_range_ft": 120.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -8785,9 +9184,10 @@ "parent": "tob-2023_lorelei_corrupted-kiss", "attack_type": "SPELL", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -8807,9 +9207,10 @@ "parent": "tob-2023_lorelei_psychic-blast", "attack_type": "SPELL", "to_hit_mod": 8, - "reach_ft": 5, - "range_ft": 60, + "reach_ft": 5.0, + "range_ft": 60.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -8829,9 +9230,10 @@ "parent": "tob-2023_loxoda_slam", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D8", @@ -8851,9 +9253,10 @@ "parent": "tob-2023_loxoda_spear", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -8873,9 +9276,10 @@ "parent": "tob-2023_loxoda_stomp", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -8895,9 +9299,10 @@ "parent": "tob-2023_lunar-devil_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -8917,9 +9322,10 @@ "parent": "tob-2023_lunar-devil_claw", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -8940,8 +9346,9 @@ "attack_type": "SPELL", "to_hit_mod": 7, "reach_ft": null, - "range_ft": 150, + "range_ft": 150.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -8961,9 +9368,10 @@ "parent": "tob-2023_lunar-devil_tail", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -8983,9 +9391,10 @@ "parent": "tob-2023_mahoru_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -9005,9 +9414,10 @@ "parent": "tob-2023_malakbel_scorching-blast", "attack_type": "SPELL", "to_hit_mod": 9, - "reach_ft": 5, - "range_ft": 120, + "reach_ft": 5.0, + "range_ft": 120.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -9027,9 +9437,10 @@ "parent": "tob-2023_mallqui_xeric-blast", "attack_type": "SPELL", "to_hit_mod": 7, - "reach_ft": 5, - "range_ft": 60, + "reach_ft": 5.0, + "range_ft": 60.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6", @@ -9049,9 +9460,10 @@ "parent": "tob-2023_malphas_longsword", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -9072,8 +9484,9 @@ "attack_type": "SPELL", "to_hit_mod": 7, "reach_ft": null, - "range_ft": 60, + "range_ft": 60.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -9094,8 +9507,9 @@ "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": null, - "range_ft": 5, + "range_ft": 5.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -9116,8 +9530,9 @@ "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": null, - "range_ft": 10, + "range_ft": 10.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -9137,9 +9552,10 @@ "parent": "tob-2023_map-mimic_pseudopod", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -9159,9 +9575,10 @@ "parent": "tob-2023_mask-wight_khopesh-of-oblivion", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -9181,9 +9598,10 @@ "parent": "tob-2023_mask-wight_spiked-gauntlet", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -9203,9 +9621,10 @@ "parent": "tob-2023_mavka_enervating-slam", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D8", @@ -9226,8 +9645,9 @@ "attack_type": "SPELL", "to_hit_mod": 8, "reach_ft": null, - "range_ft": 60, + "range_ft": 60.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D10", @@ -9247,9 +9667,10 @@ "parent": "tob-2023_mbielu_tail", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -9269,9 +9690,10 @@ "parent": "tob-2023_mechuiti_bite", "attack_type": "WEAPON", "to_hit_mod": 17, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D10", @@ -9291,9 +9713,10 @@ "parent": "tob-2023_mechuiti_claw", "attack_type": "WEAPON", "to_hit_mod": 17, - "reach_ft": 20, + "reach_ft": 20.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D8", @@ -9313,9 +9736,10 @@ "parent": "tob-2023_mi-go_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -9336,8 +9760,9 @@ "attack_type": "SPELL", "to_hit_mod": 10, "reach_ft": null, - "range_ft": 120, + "range_ft": 120.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -9357,9 +9782,10 @@ "parent": "tob-2023_millitaur_handaxe", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -9379,9 +9805,10 @@ "parent": "tob-2023_mindrot-thrall_claw", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -9401,9 +9828,10 @@ "parent": "tob-2023_mirager_slam", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -9423,9 +9851,10 @@ "parent": "tob-2023_mirager_thirsting-kiss", "attack_type": "SPELL", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D8", @@ -9445,9 +9874,10 @@ "parent": "tob-2023_miremal_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -9467,9 +9897,10 @@ "parent": "tob-2023_miremal_claw", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -9489,9 +9920,10 @@ "parent": "tob-2023_mirror-hag_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -9511,9 +9943,10 @@ "parent": "tob-2023_mirror-hag_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -9533,9 +9966,10 @@ "parent": "tob-2023_mithral-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -9555,9 +9989,10 @@ "parent": "tob-2023_mngwa_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -9577,9 +10012,10 @@ "parent": "tob-2023_mngwa_ethereal-bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -9599,9 +10035,10 @@ "parent": "tob-2023_monolith-champion_greatsword", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6", @@ -9621,9 +10058,10 @@ "parent": "tob-2023_monolith-champion_slam", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -9643,9 +10081,10 @@ "parent": "tob-2023_monolith-footman_shortsword", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -9665,9 +10104,10 @@ "parent": "tob-2023_moonlit-king_crystal-staff", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -9688,8 +10128,9 @@ "attack_type": "SPELL", "to_hit_mod": 11, "reach_ft": null, - "range_ft": 120, + "range_ft": 120.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D10", @@ -9710,8 +10151,9 @@ "attack_type": "WEAPON", "to_hit_mod": 8, "reach_ft": null, - "range_ft": 30, - "long_range_ft": 120, + "range_ft": 30.0, + "long_range_ft": 120.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -9731,9 +10173,10 @@ "parent": "tob-2023_mordant-snare_bite", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -9753,9 +10196,10 @@ "parent": "tob-2023_mordant-snare_tentacle", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 20, + "reach_ft": 20.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -9775,9 +10219,10 @@ "parent": "tob-2023_morphoi_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -9798,8 +10243,9 @@ "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": null, - "range_ft": 80, - "long_range_ft": 320, + "range_ft": 80.0, + "long_range_ft": 320.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -9819,9 +10265,10 @@ "parent": "tob-2023_morphoi_trident", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -9841,9 +10288,10 @@ "parent": "tob-2023_moss-lurker_poisoned-claw", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -9864,8 +10312,9 @@ "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 20, - "long_range_ft": 60, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -9885,9 +10334,10 @@ "parent": "tob-2023_myling_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -9907,9 +10357,10 @@ "parent": "tob-2023_naina_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D12", @@ -9929,9 +10380,10 @@ "parent": "tob-2023_naina_claw", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D12", @@ -9951,9 +10403,10 @@ "parent": "tob-2023_naina_slam", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D8", @@ -9973,9 +10426,10 @@ "parent": "tob-2023_necrohydra_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -9995,9 +10449,10 @@ "parent": "tob-2023_ngobou_gore", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D10", @@ -10017,9 +10472,10 @@ "parent": "tob-2023_ngobou_stomp", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -10039,9 +10495,10 @@ "parent": "tob-2023_nichny_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -10062,8 +10519,9 @@ "attack_type": "SPELL", "to_hit_mod": 7, "reach_ft": null, - "range_ft": 60, + "range_ft": 60.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D8", @@ -10083,9 +10541,10 @@ "parent": "tob-2023_night-scorpion_claw", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -10105,9 +10564,10 @@ "parent": "tob-2023_night-scorpion_sting", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -10127,9 +10587,10 @@ "parent": "tob-2023_nightgarm_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -10149,9 +10610,10 @@ "parent": "tob-2023_nightgarm_claw", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -10171,9 +10633,10 @@ "parent": "tob-2023_nihileth_tail", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -10193,9 +10656,10 @@ "parent": "tob-2023_nihileth_tentacle", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -10215,9 +10679,10 @@ "parent": "tob-2023_nihileth_withering-touch", "attack_type": "SPELL", "to_hit_mod": 9, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -10237,9 +10702,10 @@ "parent": "tob-2023_nihilethic-dominator_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -10259,9 +10725,10 @@ "parent": "tob-2023_nihilethic-dominator_tendril-of-the-void", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -10281,9 +10748,10 @@ "parent": "tob-2023_nihilethic-zombie_slam", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -10303,9 +10771,10 @@ "parent": "tob-2023_nihilethic-zombie_withering-touch", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -10325,9 +10794,10 @@ "parent": "tob-2023_nkosi-pridelord_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -10347,9 +10817,10 @@ "parent": "tob-2023_nkosi-pridelord_mambele", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -10369,9 +10840,10 @@ "parent": "tob-2023_nkosi_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -10391,9 +10863,10 @@ "parent": "tob-2023_nkosi_mambele", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -10414,8 +10887,9 @@ "attack_type": "SPELL", "to_hit_mod": 5, "reach_ft": null, - "range_ft": 120, + "range_ft": 120.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -10435,9 +10909,10 @@ "parent": "tob-2023_noctiny_quarterstaff", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -10457,9 +10932,10 @@ "parent": "tob-2023_oculo-swarm_extract-eye", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 0, + "reach_ft": 0.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D8) piercing", @@ -10479,9 +10955,10 @@ "parent": "tob-2023_oozasis_pseudopod", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -10501,9 +10978,10 @@ "parent": "tob-2023_orobas-devil_bite", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -10523,9 +11001,10 @@ "parent": "tob-2023_orobas-devil_flail", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -10546,8 +11025,9 @@ "attack_type": "SPELL", "to_hit_mod": 10, "reach_ft": null, - "range_ft": 120, + "range_ft": 120.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D8", @@ -10567,9 +11047,10 @@ "parent": "tob-2023_orobas-devil_stomp", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -10590,8 +11071,9 @@ "attack_type": "SPELL", "to_hit_mod": 7, "reach_ft": null, - "range_ft": 60, + "range_ft": 60.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -10611,9 +11093,10 @@ "parent": "tob-2023_owl-harpy_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -10633,9 +11116,10 @@ "parent": "tob-2023_owl-harpy_talon", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -10655,9 +11139,10 @@ "parent": "tob-2023_pact-vampire_claw", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -10677,9 +11162,10 @@ "parent": "tob-2023_paper-drake_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -10699,9 +11185,10 @@ "parent": "tob-2023_paper-drake_book-flap", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -10721,9 +11208,10 @@ "parent": "tob-2023_paper-drake_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -10744,8 +11232,9 @@ "attack_type": "SPELL", "to_hit_mod": 9, "reach_ft": null, - "range_ft": 60, + "range_ft": 60.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D8", @@ -10765,9 +11254,10 @@ "parent": "tob-2023_planewatcher_radiant-lasso", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 30, + "reach_ft": 30.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6", @@ -10787,9 +11277,10 @@ "parent": "tob-2023_pombero_slam", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -10809,9 +11300,10 @@ "parent": "tob-2023_possessed-pillar_slam", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -10831,9 +11323,10 @@ "parent": "tob-2023_psoglav_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D12", @@ -10853,9 +11346,10 @@ "parent": "tob-2023_putrid-haunt_slam", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -10875,9 +11369,10 @@ "parent": "tob-2023_qorgeth_bite", "attack_type": "WEAPON", "to_hit_mod": 16, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D12", @@ -10897,9 +11392,10 @@ "parent": "tob-2023_qorgeth_crush", "attack_type": "WEAPON", "to_hit_mod": 16, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -10919,9 +11415,10 @@ "parent": "tob-2023_qorgeth_stinger", "attack_type": "WEAPON", "to_hit_mod": 16, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6", @@ -10941,9 +11438,10 @@ "parent": "tob-2023_queen-of-night-and-magic_rapier", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -10964,8 +11462,9 @@ "attack_type": "SPELL", "to_hit_mod": 15, "reach_ft": null, - "range_ft": 120, + "range_ft": 120.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -10985,9 +11484,10 @@ "parent": "tob-2023_queen-of-witches_moonsilver-ring", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -11007,9 +11507,10 @@ "parent": "tob-2023_queen-of-witches_mystical-blast", "attack_type": "SPELL", "to_hit_mod": 12, - "reach_ft": 5, - "range_ft": 120, + "reach_ft": 5.0, + "range_ft": 120.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -11029,9 +11530,10 @@ "parent": "tob-2023_quicksilver-siege-orb_disk-blade", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -11051,9 +11553,10 @@ "parent": "tob-2023_quicksilver-siege-orb_slam", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -11073,9 +11576,10 @@ "parent": "tob-2023_qwyllion_claw", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -11096,8 +11600,9 @@ "attack_type": "SPELL", "to_hit_mod": 6, "reach_ft": null, - "range_ft": 60, + "range_ft": 60.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6", @@ -11117,9 +11622,10 @@ "parent": "tob-2023_ramag_scimitar", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -11140,8 +11646,9 @@ "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 80, - "long_range_ft": 320, + "range_ft": 80.0, + "long_range_ft": 320.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -11161,9 +11668,10 @@ "parent": "tob-2023_rat-king_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -11184,8 +11692,9 @@ "attack_type": "SPELL", "to_hit_mod": 6, "reach_ft": null, - "range_ft": 60, + "range_ft": 60.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -11205,9 +11714,10 @@ "parent": "tob-2023_ratatosk_gore", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -11227,9 +11737,10 @@ "parent": "tob-2023_ratfolk-rogue_dagger", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -11250,8 +11761,9 @@ "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": null, - "range_ft": 80, - "long_range_ft": 320, + "range_ft": 80.0, + "long_range_ft": 320.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -11271,9 +11783,10 @@ "parent": "tob-2023_ratfolk_dagger", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -11294,8 +11807,9 @@ "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 80, - "long_range_ft": 320, + "range_ft": 80.0, + "long_range_ft": 320.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -11316,8 +11830,9 @@ "attack_type": "WEAPON", "to_hit_mod": 8, "reach_ft": null, - "range_ft": 30, - "long_range_ft": 120, + "range_ft": 30.0, + "long_range_ft": 120.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -11337,9 +11852,10 @@ "parent": "tob-2023_ravenala_slam", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -11359,9 +11875,10 @@ "parent": "tob-2023_ravenfolk-doom-croaker_peck", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -11382,8 +11899,9 @@ "attack_type": "SPELL", "to_hit_mod": 7, "reach_ft": null, - "range_ft": 120, + "range_ft": 120.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -11403,9 +11921,10 @@ "parent": "tob-2023_ravenfolk-doom-croaker_runestaff", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -11426,8 +11945,9 @@ "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 150, - "long_range_ft": 600, + "range_ft": 150.0, + "long_range_ft": 600.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -11447,9 +11967,10 @@ "parent": "tob-2023_ravenfolk-scout_peck", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -11469,9 +11990,10 @@ "parent": "tob-2023_ravenfolk-scout_rapier", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -11492,8 +12014,9 @@ "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": null, - "range_ft": 150, - "long_range_ft": 600, + "range_ft": 150.0, + "long_range_ft": 600.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -11513,9 +12036,10 @@ "parent": "tob-2023_ravenfolk-warrior_peck", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -11535,9 +12059,10 @@ "parent": "tob-2023_ravenfolk-warrior_runespear", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -11557,9 +12082,10 @@ "parent": "tob-2023_red-banded-line-spider_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "Damage plus 5 (2", @@ -11580,8 +12106,9 @@ "attack_type": "SPELL", "to_hit_mod": 8, "reach_ft": null, - "range_ft": 60, + "range_ft": 60.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -11601,9 +12128,10 @@ "parent": "tob-2023_red-hag_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -11623,9 +12151,10 @@ "parent": "tob-2023_redcap_bleeding-bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -11645,9 +12174,10 @@ "parent": "tob-2023_redcap_pike", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -11667,9 +12197,10 @@ "parent": "tob-2023_rift-swine_tentacle", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -11689,9 +12220,10 @@ "parent": "tob-2023_rift-swine_tusk", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -11712,8 +12244,9 @@ "attack_type": "SPELL", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 60, + "range_ft": 60.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -11733,9 +12266,10 @@ "parent": "tob-2023_rime-worm-grub_rime-tendril", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -11755,9 +12289,10 @@ "parent": "tob-2023_rime-worm_rime-tendril", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -11777,9 +12312,10 @@ "parent": "tob-2023_risen-reaver_bladed-fist", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -11800,8 +12336,9 @@ "attack_type": "SPELL", "to_hit_mod": 8, "reach_ft": null, - "range_ft": 120, + "range_ft": 120.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D8", @@ -11821,9 +12358,10 @@ "parent": "tob-2023_river-king_longsword", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -11844,8 +12382,9 @@ "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": null, - "range_ft": 20, - "long_range_ft": 60, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -11865,9 +12404,10 @@ "parent": "tob-2023_roachling-lord_begrimed-shortsword", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -11888,8 +12428,9 @@ "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 20, - "long_range_ft": 60, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -11909,9 +12450,10 @@ "parent": "tob-2023_roachling-skirmisher_shortsword", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -11931,9 +12473,10 @@ "parent": "tob-2023_rotting-wind_wind-of-decay", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 0, + "reach_ft": 0.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -11953,9 +12496,10 @@ "parent": "tob-2023_rubezahl_claw", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -11975,9 +12519,10 @@ "parent": "tob-2023_rubezahl_gore", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -11998,8 +12543,9 @@ "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": null, - "range_ft": 5, + "range_ft": 5.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -12020,8 +12566,9 @@ "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": null, - "range_ft": 5, + "range_ft": 5.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -12041,9 +12588,10 @@ "parent": "tob-2023_rust-drake_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -12063,9 +12611,10 @@ "parent": "tob-2023_rust-drake_tail-swipe", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -12085,9 +12634,10 @@ "parent": "tob-2023_salt-devil_scimitar", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -12107,9 +12657,10 @@ "parent": "tob-2023_salt-devil_water-draining-claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -12129,9 +12680,10 @@ "parent": "tob-2023_salt-golem_slam", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -12151,9 +12703,10 @@ "parent": "tob-2023_sand-hag_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -12173,9 +12726,10 @@ "parent": "tob-2023_sand-silhouette_slam", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -12195,9 +12749,10 @@ "parent": "tob-2023_sand-spider_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -12217,9 +12772,10 @@ "parent": "tob-2023_sand-spider_impaling-leg", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -12239,9 +12795,10 @@ "parent": "tob-2023_sandman_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -12261,9 +12818,10 @@ "parent": "tob-2023_sandwyrm_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -12283,9 +12841,10 @@ "parent": "tob-2023_sandwyrm_gore", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D12", @@ -12305,9 +12864,10 @@ "parent": "tob-2023_sandwyrm_stinger", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -12328,8 +12888,9 @@ "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 20, - "long_range_ft": 60, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -12349,9 +12910,10 @@ "parent": "tob-2023_sap-demon_slam", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -12371,9 +12933,10 @@ "parent": "tob-2023_sarcophagus-slime_slam", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -12393,9 +12956,10 @@ "parent": "tob-2023_sathaq-worm_bite", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D8", @@ -12415,9 +12979,10 @@ "parent": "tob-2023_sathaq-worm_slam", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -12437,9 +13002,10 @@ "parent": "tob-2023_savager_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D12", @@ -12459,9 +13025,10 @@ "parent": "tob-2023_savager_claw", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -12482,8 +13049,9 @@ "attack_type": "SPELL", "to_hit_mod": 6, "reach_ft": null, - "range_ft": 60, + "range_ft": 60.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -12503,9 +13071,10 @@ "parent": "tob-2023_scheznyki_war-pick", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -12525,9 +13094,10 @@ "parent": "tob-2023_scorpion-cultist_scimitar", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -12548,8 +13118,9 @@ "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": null, - "range_ft": 30, - "long_range_ft": 120, + "range_ft": 30.0, + "long_range_ft": 120.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -12569,9 +13140,10 @@ "parent": "tob-2023_sea-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -12591,9 +13163,10 @@ "parent": "tob-2023_selang_dagger", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -12614,8 +13187,9 @@ "attack_type": "SPELL", "to_hit_mod": 6, "reach_ft": null, - "range_ft": 60, + "range_ft": 60.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -12635,9 +13209,10 @@ "parent": "tob-2023_serpopard_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -12657,9 +13232,10 @@ "parent": "tob-2023_serpopard_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -12679,9 +13255,10 @@ "parent": "tob-2023_shadhavar_gore", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -12701,9 +13278,10 @@ "parent": "tob-2023_shadhavar_hooves", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -12724,8 +13302,9 @@ "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": null, - "range_ft": 100, - "long_range_ft": 400, + "range_ft": 100.0, + "long_range_ft": 400.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -12745,9 +13324,10 @@ "parent": "tob-2023_shadow-antipaladin_scimitar", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -12767,9 +13347,10 @@ "parent": "tob-2023_shadow-beast_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -12789,9 +13370,10 @@ "parent": "tob-2023_shadow-beast_claw", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -12812,8 +13394,9 @@ "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 80, - "long_range_ft": 320, + "range_ft": 80.0, + "long_range_ft": 320.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -12833,9 +13416,10 @@ "parent": "tob-2023_shadow-fey_shortsword", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -12855,9 +13439,10 @@ "parent": "tob-2023_sharkjaw-skeleton_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -12877,9 +13462,10 @@ "parent": "tob-2023_shellycoat_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -12899,9 +13485,10 @@ "parent": "tob-2023_shellycoat_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -12921,9 +13508,10 @@ "parent": "tob-2023_shoggoth_slam", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D10", @@ -12943,9 +13531,10 @@ "parent": "tob-2023_shroud_strength-drain", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -12965,9 +13554,10 @@ "parent": "tob-2023_skein-witch_inexorable-thread", "attack_type": "SPELL", "to_hit_mod": 9, - "reach_ft": 5, - "range_ft": 60, + "reach_ft": 5.0, + "range_ft": 60.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, "damage_die_type": "D8", @@ -12987,9 +13577,10 @@ "parent": "tob-2023_skin-bat_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -13009,9 +13600,10 @@ "parent": "tob-2023_skitterhaunt_mandibles", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -13031,9 +13623,10 @@ "parent": "tob-2023_skitterhaunt_sting", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -13054,8 +13647,9 @@ "attack_type": "SPELL", "to_hit_mod": 9, "reach_ft": null, - "range_ft": 120, + "range_ft": 120.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D8", @@ -13075,9 +13669,10 @@ "parent": "tob-2023_slow-storm_slam", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -13097,9 +13692,10 @@ "parent": "tob-2023_smaragdine-golem_slam", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -13119,9 +13715,10 @@ "parent": "tob-2023_snow-queen_claw", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -13142,8 +13739,9 @@ "attack_type": "SPELL", "to_hit_mod": 10, "reach_ft": null, - "range_ft": 120, + "range_ft": 120.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -13163,9 +13761,10 @@ "parent": "tob-2023_son-of-fenris_bite", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -13186,8 +13785,9 @@ "attack_type": "SPELL", "to_hit_mod": 8, "reach_ft": null, - "range_ft": 60, + "range_ft": 60.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6", @@ -13207,9 +13807,10 @@ "parent": "tob-2023_son-of-fenris_slam", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -13229,9 +13830,10 @@ "parent": "tob-2023_soul-eater_claw", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -13251,9 +13853,10 @@ "parent": "tob-2023_spark_electric-touch", "attack_type": "SPELL", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -13273,9 +13876,10 @@ "parent": "tob-2023_spawn-of-akyishigal_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -13295,9 +13899,10 @@ "parent": "tob-2023_spawn-of-akyishigal_sting", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -13317,9 +13922,10 @@ "parent": "tob-2023_spawn-of-arbeyach_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -13339,9 +13945,10 @@ "parent": "tob-2023_spawn-of-arbeyach_stinger", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -13361,9 +13968,10 @@ "parent": "tob-2023_spectral-guardian_spectral-blade", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -13383,9 +13991,10 @@ "parent": "tob-2023_spectral-guardian_spectral-burst", "attack_type": "SPELL", "to_hit_mod": 7, - "reach_ft": 5, - "range_ft": 120, + "reach_ft": 5.0, + "range_ft": 120.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -13405,9 +14014,10 @@ "parent": "tob-2023_spider-of-leng_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -13428,8 +14038,9 @@ "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": null, - "range_ft": 20, - "long_range_ft": 60, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -13449,9 +14060,10 @@ "parent": "tob-2023_spider-of-leng_staff-of-leng", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -13471,9 +14083,10 @@ "parent": "tob-2023_spider-thief_hooked-wire", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, - "range_ft": 15, - "long_range_ft": 30, + "reach_ft": 5.0, + "range_ft": 15.0, + "long_range_ft": 30.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -13493,9 +14106,10 @@ "parent": "tob-2023_spider-thief_sickle-claw", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -13515,9 +14129,10 @@ "parent": "tob-2023_spinosaurus_bite", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D12", @@ -13537,9 +14152,10 @@ "parent": "tob-2023_spinosaurus_claw", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6", @@ -13559,9 +14175,10 @@ "parent": "tob-2023_spinosaurus_tail", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 20, + "reach_ft": 20.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -13581,9 +14198,10 @@ "parent": "tob-2023_spire-walker_lightning-burst", "attack_type": "SPELL", "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": 60, + "reach_ft": 5.0, + "range_ft": 60.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6", @@ -13603,9 +14221,10 @@ "parent": "tob-2023_star-drake_bite", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -13625,9 +14244,10 @@ "parent": "tob-2023_star-drake_claw", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -13648,8 +14268,9 @@ "attack_type": "SPELL", "to_hit_mod": 12, "reach_ft": null, - "range_ft": 120, + "range_ft": 120.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -13669,9 +14290,10 @@ "parent": "tob-2023_star-spawn-of-cthulhu_crushing-claws", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D12", @@ -13691,9 +14313,10 @@ "parent": "tob-2023_star-spawn-of-cthulhu_dimensional-stomp", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D20", @@ -13714,8 +14337,9 @@ "attack_type": "SPELL", "to_hit_mod": 15, "reach_ft": null, - "range_ft": 120, + "range_ft": 120.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, "damage_die_type": "D8", @@ -13735,9 +14359,10 @@ "parent": "tob-2023_steam-golem_axe-arm", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6", @@ -13757,9 +14382,10 @@ "parent": "tob-2023_steam-golem_long-axe", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D8", @@ -13779,9 +14405,10 @@ "parent": "tob-2023_strife_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -13801,9 +14428,10 @@ "parent": "tob-2023_stryx_talons", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -13823,9 +14451,10 @@ "parent": "tob-2023_stuhac_bite", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6", @@ -13845,9 +14474,10 @@ "parent": "tob-2023_stuhac_claw", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, "damage_die_type": "D8", @@ -13867,9 +14497,10 @@ "parent": "tob-2023_stygian-fat-tailed-scorpion_claw", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -13889,9 +14520,10 @@ "parent": "tob-2023_stygian-fat-tailed-scorpion_sting", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -13911,9 +14543,10 @@ "parent": "tob-2023_subek_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -13933,9 +14566,10 @@ "parent": "tob-2023_subek_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -13955,9 +14589,10 @@ "parent": "tob-2023_suturefly_sew", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -13977,9 +14612,10 @@ "parent": "tob-2023_swamp-adder_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": null, "damage_die_type": null, @@ -13999,9 +14635,10 @@ "parent": "tob-2023_swarm-of-fire-dancers_singe", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 0, + "reach_ft": 0.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D10) fire", @@ -14021,9 +14658,10 @@ "parent": "tob-2023_swarm-of-manabane-scarabs_bites", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 0, + "reach_ft": 0.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 8, "damage_die_type": "D6) piercing", @@ -14043,9 +14681,10 @@ "parent": "tob-2023_swarm-of-prismatic-beetles_bites", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 0, + "reach_ft": 0.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6) piercing", @@ -14065,9 +14704,10 @@ "parent": "tob-2023_swarm-of-sluaghs_chilling-touch", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 0, + "reach_ft": 0.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 8, "damage_die_type": "D6) col", @@ -14087,9 +14727,10 @@ "parent": "tob-2023_swarm-of-wharflings_pilfering-bites", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 0, + "reach_ft": 0.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 8, "damage_die_type": "D6) piercing", @@ -14109,9 +14750,10 @@ "parent": "tob-2023_swarm-of-wolf-spirits_spectral-bites", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 0, + "reach_ft": 0.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6) col", @@ -14131,9 +14773,10 @@ "parent": "tob-2023_temple-dog_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -14154,8 +14797,9 @@ "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 20, - "long_range_ft": 60, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D4", @@ -14175,9 +14819,10 @@ "parent": "tob-2023_tendril-puppet_thorned-slam", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -14197,9 +14842,10 @@ "parent": "tob-2023_thuellai_icy-claw", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -14220,8 +14866,9 @@ "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": null, - "range_ft": 60, - "long_range_ft": 240, + "range_ft": 60.0, + "long_range_ft": 240.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -14241,9 +14888,10 @@ "parent": "tob-2023_thursir_warhammer", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -14263,9 +14911,10 @@ "parent": "tob-2023_titanoboa_bite", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, "damage_die_type": "D8", @@ -14285,9 +14934,10 @@ "parent": "tob-2023_titanoboa_constrict", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D10", @@ -14307,9 +14957,10 @@ "parent": "tob-2023_tophet_slam", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -14329,9 +14980,10 @@ "parent": "tob-2023_tosculi-drone_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -14351,9 +15003,10 @@ "parent": "tob-2023_tosculi-elite-bow-raider_claw", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D4", @@ -14374,8 +15027,9 @@ "attack_type": "WEAPON", "to_hit_mod": 10, "reach_ft": null, - "range_ft": 150, - "long_range_ft": 600, + "range_ft": 150.0, + "long_range_ft": 600.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -14395,9 +15049,10 @@ "parent": "tob-2023_tosculi-hive-queen_scimitar", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -14417,9 +15072,10 @@ "parent": "tob-2023_tosculi-hive-queen_stinger", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, "damage_die_type": "D4", @@ -14439,9 +15095,10 @@ "parent": "tob-2023_tosculi-warrior_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -14461,9 +15118,10 @@ "parent": "tob-2023_tosculi-warrior_stinger", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -14483,9 +15141,10 @@ "parent": "tob-2023_trapsmith_dagger", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -14506,8 +15165,9 @@ "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": null, - "range_ft": 20, - "long_range_ft": 60, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -14527,9 +15187,10 @@ "parent": "tob-2023_treacle_blood-drain", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": null, "damage_die_type": null, @@ -14549,9 +15210,10 @@ "parent": "tob-2023_trollkin-reaver_battleaxe", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -14571,9 +15233,10 @@ "parent": "tob-2023_trollkin-reaver_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -14593,9 +15256,10 @@ "parent": "tob-2023_trollkin-reaver_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -14615,9 +15279,10 @@ "parent": "tob-2023_trollkin-reaver_handaxe", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -14637,9 +15302,10 @@ "parent": "tob-2023_tusked-skyfish_electrified-tentacles", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -14659,9 +15325,10 @@ "parent": "tob-2023_tusked-skyfish_gore", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -14681,9 +15348,10 @@ "parent": "tob-2023_umbral-vampire_shadow-touch", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -14703,9 +15371,10 @@ "parent": "tob-2023_uraeus_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -14726,8 +15395,9 @@ "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 20, - "long_range_ft": 60, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6", @@ -14747,9 +15417,10 @@ "parent": "tob-2023_urochar_tentacle", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 20, + "reach_ft": 20.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D8", @@ -14769,9 +15440,10 @@ "parent": "tob-2023_ushabti-royal-guard_khopesh", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -14791,9 +15463,10 @@ "parent": "tob-2023_ushabti-royal-guard_medjais-scepter", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -14813,9 +15486,10 @@ "parent": "tob-2023_ushabti_nabboot", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -14835,9 +15509,10 @@ "parent": "tob-2023_valkyrie_longsword", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -14858,8 +15533,9 @@ "attack_type": "SPELL", "to_hit_mod": 8, "reach_ft": null, - "range_ft": 120, + "range_ft": 120.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D10", @@ -14879,9 +15555,10 @@ "parent": "tob-2023_valkyrie_spear", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -14901,9 +15578,10 @@ "parent": "tob-2023_vapor-lynx_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -14923,9 +15601,10 @@ "parent": "tob-2023_vapor-lynx_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -14945,9 +15624,10 @@ "parent": "tob-2023_venomous-mummy_venomous-fist", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -14967,9 +15647,10 @@ "parent": "tob-2023_vesiculosa_root", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -14990,8 +15671,9 @@ "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": null, - "range_ft": 20, - "long_range_ft": 60, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -15012,8 +15694,9 @@ "attack_type": "WEAPON", "to_hit_mod": 8, "reach_ft": null, - "range_ft": 80, - "long_range_ft": 320, + "range_ft": 80.0, + "long_range_ft": 320.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -15033,9 +15716,10 @@ "parent": "tob-2023_vila_shortsword", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -15055,9 +15739,10 @@ "parent": "tob-2023_vile-barber_straight-razor", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -15077,9 +15762,10 @@ "parent": "tob-2023_vine-lord_tendril", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -15099,9 +15785,10 @@ "parent": "tob-2023_vine-lord_thorned-slam", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -15121,9 +15808,10 @@ "parent": "tob-2023_vine-troll-skeleton_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -15143,9 +15831,10 @@ "parent": "tob-2023_vine-troll-skeleton_claw", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6", @@ -15166,8 +15855,9 @@ "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": null, - "range_ft": 20, - "long_range_ft": 60, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -15187,9 +15877,10 @@ "parent": "tob-2023_void-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -15210,8 +15901,9 @@ "attack_type": "SPELL", "to_hit_mod": 7, "reach_ft": null, - "range_ft": 120, + "range_ft": 120.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6", @@ -15231,9 +15923,10 @@ "parent": "tob-2023_voidling_shadow-tendril", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -15253,9 +15946,10 @@ "parent": "tob-2023_volguloth_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -15276,8 +15970,9 @@ "attack_type": "SPELL", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 120, + "range_ft": 120.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -15297,9 +15992,10 @@ "parent": "tob-2023_vttir_vttirs-greataxe", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D12", @@ -15319,9 +16015,10 @@ "parent": "tob-2023_wampus-cat_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -15341,9 +16038,10 @@ "parent": "tob-2023_war-ostrich_beak", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -15363,9 +16061,10 @@ "parent": "tob-2023_war-ostrich_claw", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -15385,9 +16084,10 @@ "parent": "tob-2023_water-leaper_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -15407,9 +16107,10 @@ "parent": "tob-2023_water-leaper_stinger", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -15430,8 +16131,9 @@ "attack_type": "WEAPON", "to_hit_mod": 8, "reach_ft": null, - "range_ft": 60, - "long_range_ft": 180, + "range_ft": 60.0, + "long_range_ft": 180.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -15451,9 +16153,10 @@ "parent": "tob-2023_weeping-treant_slam", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -15473,9 +16176,10 @@ "parent": "tob-2023_wharfling_pilfering-bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -15495,9 +16199,10 @@ "parent": "tob-2023_white-ape_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -15517,9 +16222,10 @@ "parent": "tob-2023_white-ape_fist", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -15539,9 +16245,10 @@ "parent": "tob-2023_wind-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -15562,8 +16269,9 @@ "attack_type": "SPELL", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 30, + "range_ft": 30.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -15583,9 +16291,10 @@ "parent": "tob-2023_wolf-reaver-dwarf_battleaxe", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -15605,9 +16314,10 @@ "parent": "tob-2023_wolf-reaver-dwarf_handaxe", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -15627,9 +16337,10 @@ "parent": "tob-2023_wolf-reaver-dwarf_spear", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -15650,8 +16361,9 @@ "attack_type": "SPELL", "to_hit_mod": 6, "reach_ft": null, - "range_ft": 60, + "range_ft": 60.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6", @@ -15671,9 +16383,10 @@ "parent": "tob-2023_wormhearted-suffragan_worm-coated-fist", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -15693,9 +16406,10 @@ "parent": "tob-2023_xanka_dismantling-leg", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -15715,9 +16429,10 @@ "parent": "tob-2023_xhkarsh_claw", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -15737,9 +16452,10 @@ "parent": "tob-2023_xhkarsh_fate-altering-stinger", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -15759,9 +16475,10 @@ "parent": "tob-2023_ychen-bannog_gore", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -15781,9 +16498,10 @@ "parent": "tob-2023_ychen-bannog_stomp", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -15803,9 +16521,10 @@ "parent": "tob-2023_young-cave-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -15825,9 +16544,10 @@ "parent": "tob-2023_young-cave-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -15847,9 +16567,10 @@ "parent": "tob-2023_young-flame-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -15869,9 +16590,10 @@ "parent": "tob-2023_young-flame-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -15891,9 +16613,10 @@ "parent": "tob-2023_young-mithral-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -15913,9 +16636,10 @@ "parent": "tob-2023_young-mithral-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -15935,9 +16659,10 @@ "parent": "tob-2023_young-sea-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -15957,9 +16682,10 @@ "parent": "tob-2023_young-sea-dragon_fin", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -15979,9 +16705,10 @@ "parent": "tob-2023_young-spinosaurus_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D12", @@ -16001,9 +16728,10 @@ "parent": "tob-2023_young-spinosaurus_claw", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -16023,9 +16751,10 @@ "parent": "tob-2023_young-void-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -16045,9 +16774,10 @@ "parent": "tob-2023_young-void-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -16067,9 +16797,10 @@ "parent": "tob-2023_young-wind-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -16089,9 +16820,10 @@ "parent": "tob-2023_young-wind-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -16111,9 +16843,10 @@ "parent": "tob-2023_zanskaran-viper_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -16133,9 +16866,10 @@ "parent": "tob-2023_zimwi_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -16155,9 +16889,10 @@ "parent": "tob-2023_zimwi_claws", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -16177,9 +16912,10 @@ "parent": "tob-2023_zmey-headling_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D12", @@ -16199,9 +16935,10 @@ "parent": "tob-2023_zmey-headling_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -16221,9 +16958,10 @@ "parent": "tob-2023_zmey_bite", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D12", @@ -16243,9 +16981,10 @@ "parent": "tob-2023_zmey_claw", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6", diff --git a/data/v2/kobold-press/tob/CreatureActionAttack.json b/data/v2/kobold-press/tob/CreatureActionAttack.json index 6e28d856..22461e95 100644 --- a/data/v2/kobold-press/tob/CreatureActionAttack.json +++ b/data/v2/kobold-press/tob/CreatureActionAttack.json @@ -7,9 +7,10 @@ "parent": "tob_aboleth-nihilith_tail", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -29,9 +30,10 @@ "parent": "tob_aboleth-nihilith_tentacle", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -51,9 +53,10 @@ "parent": "tob_aboleth-nihilith_withering-touch", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -73,9 +76,10 @@ "parent": "tob_accursed-defiler_slam", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -95,9 +99,10 @@ "parent": "tob_adult-cave-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -117,9 +122,10 @@ "parent": "tob_adult-cave-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -139,9 +145,10 @@ "parent": "tob_adult-cave-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -161,9 +168,10 @@ "parent": "tob_adult-flame-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -183,9 +191,10 @@ "parent": "tob_adult-flame-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -205,9 +214,10 @@ "parent": "tob_adult-flame-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -227,9 +237,10 @@ "parent": "tob_adult-mithral-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -249,9 +260,10 @@ "parent": "tob_adult-mithral-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -271,9 +283,10 @@ "parent": "tob_adult-mithral-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -293,9 +306,10 @@ "parent": "tob_adult-rime-worm_devour", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D12", @@ -315,9 +329,10 @@ "parent": "tob_adult-rime-worm_tendril", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -337,9 +352,10 @@ "parent": "tob_adult-sea-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -359,9 +375,10 @@ "parent": "tob_adult-sea-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -381,9 +398,10 @@ "parent": "tob_adult-sea-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -403,9 +421,10 @@ "parent": "tob_adult-void-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -425,9 +444,10 @@ "parent": "tob_adult-void-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -447,9 +467,10 @@ "parent": "tob_adult-void-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -469,9 +490,10 @@ "parent": "tob_adult-wind-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -491,9 +513,10 @@ "parent": "tob_adult-wind-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -513,9 +536,10 @@ "parent": "tob_adult-wind-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -535,9 +559,10 @@ "parent": "tob_al-aeshma-genie_scimitar", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -557,9 +582,10 @@ "parent": "tob_ala_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -579,9 +605,10 @@ "parent": "tob_ala_claw", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -601,9 +628,10 @@ "parent": "tob_alehouse-drake_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -623,9 +651,10 @@ "parent": "tob_alehouse-drake_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -645,9 +674,10 @@ "parent": "tob_algorith_logic-razor", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D12", @@ -667,9 +697,10 @@ "parent": "tob_alseid-grovekeeper_quarterstaff", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -690,8 +721,9 @@ "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": null, - "range_ft": 80, - "long_range_ft": 320, + "range_ft": 80.0, + "long_range_ft": 320.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -712,8 +744,9 @@ "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": null, - "range_ft": 80, - "long_range_ft": 320, + "range_ft": 80.0, + "long_range_ft": 320.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -733,9 +766,10 @@ "parent": "tob_alseid_spear", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -755,9 +789,10 @@ "parent": "tob_amphiptere_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -777,9 +812,10 @@ "parent": "tob_amphiptere_stinger", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -799,9 +835,10 @@ "parent": "tob_ancient-flame-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -821,9 +858,10 @@ "parent": "tob_ancient-flame-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -843,9 +881,10 @@ "parent": "tob_ancient-flame-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 20, + "reach_ft": 20.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -865,9 +904,10 @@ "parent": "tob_ancient-mithral-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D12", @@ -887,9 +927,10 @@ "parent": "tob_ancient-mithral-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -909,9 +950,10 @@ "parent": "tob_ancient-mithral-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 20, + "reach_ft": 20.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -931,9 +973,10 @@ "parent": "tob_ancient-sea-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 16, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -953,9 +996,10 @@ "parent": "tob_ancient-sea-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 16, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -975,9 +1019,10 @@ "parent": "tob_ancient-sea-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 16, - "reach_ft": 20, + "reach_ft": 20.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -997,9 +1042,10 @@ "parent": "tob_ancient-titan_greatsword", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 8, "damage_die_type": "D6", @@ -1020,8 +1066,9 @@ "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": null, - "range_ft": 150, - "long_range_ft": 640, + "range_ft": 150.0, + "long_range_ft": 640.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D8", @@ -1041,9 +1088,10 @@ "parent": "tob_ancient-void-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 16, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -1063,9 +1111,10 @@ "parent": "tob_ancient-void-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 16, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -1085,9 +1134,10 @@ "parent": "tob_ancient-void-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 16, - "reach_ft": 20, + "reach_ft": 20.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -1107,9 +1157,10 @@ "parent": "tob_ancient-wind-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 16, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D12", @@ -1129,9 +1180,10 @@ "parent": "tob_ancient-wind-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 16, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -1151,9 +1203,10 @@ "parent": "tob_ancient-wind-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 16, - "reach_ft": 20, + "reach_ft": 20.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -1173,9 +1226,10 @@ "parent": "tob_andrenjinyi_bite", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 20, + "reach_ft": 20.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D12", @@ -1195,9 +1249,10 @@ "parent": "tob_andrenjinyi_constrict", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D12", @@ -1217,9 +1272,10 @@ "parent": "tob_angatra_claw", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -1239,9 +1295,10 @@ "parent": "tob_angler-worm_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -1261,9 +1318,10 @@ "parent": "tob_angler-worm_coils", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -1283,9 +1341,10 @@ "parent": "tob_anubian_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -1305,9 +1364,10 @@ "parent": "tob_apau-perape_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -1327,9 +1387,10 @@ "parent": "tob_apau-perape_claws", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -1349,9 +1410,10 @@ "parent": "tob_arbeyach_bite", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -1371,9 +1433,10 @@ "parent": "tob_arbeyach_claw", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -1393,9 +1456,10 @@ "parent": "tob_arboreal-grappler_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -1415,9 +1479,10 @@ "parent": "tob_arboreal-grappler_tentacle", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -1438,8 +1503,9 @@ "attack_type": "WEAPON", "to_hit_mod": 8, "reach_ft": null, - "range_ft": 40, - "long_range_ft": 160, + "range_ft": 40.0, + "long_range_ft": 160.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -1459,9 +1525,10 @@ "parent": "tob_aridni_shortsword", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -1481,9 +1548,10 @@ "parent": "tob_asanbosam_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -1503,9 +1571,10 @@ "parent": "tob_asanbosam_claws", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -1525,9 +1594,10 @@ "parent": "tob_ash-drake_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -1547,9 +1617,10 @@ "parent": "tob_ash-drake_claw", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -1569,9 +1640,10 @@ "parent": "tob_automata-devil_bite", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -1591,9 +1663,10 @@ "parent": "tob_automata-devil_claw", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -1613,9 +1686,10 @@ "parent": "tob_automata-devil_whip", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -1635,9 +1709,10 @@ "parent": "tob_azza-gremlin_lightning-jolt", "attack_type": "SPELL", "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": 30, + "reach_ft": 5.0, + "range_ft": 30.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -1657,9 +1732,10 @@ "parent": "tob_baba-yagas-horsemen-black-night_lance", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D12", @@ -1679,9 +1755,10 @@ "parent": "tob_baba-yagas-horsemen-black-night_longsword", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -1701,9 +1778,10 @@ "parent": "tob_baba-yagas-horsemen-bright-day_lance", "attack_type": "WEAPON", "to_hit_mod": 0, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D12", @@ -1723,9 +1801,10 @@ "parent": "tob_baba-yagas-horsemen-bright-day_longsword", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -1745,9 +1824,10 @@ "parent": "tob_baba-yagas-horsemen-red-sun_lance", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D12", @@ -1767,9 +1847,10 @@ "parent": "tob_baba-yagas-horsemen-red-sun_longsword", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -1790,8 +1871,9 @@ "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": null, - "range_ft": 15, + "range_ft": 15.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -1811,9 +1893,10 @@ "parent": "tob_bagiennik_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6", @@ -1833,9 +1916,10 @@ "parent": "tob_bandit-lord_dagger", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -1855,9 +1939,10 @@ "parent": "tob_bandit-lord_greatsword", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -1877,9 +1962,10 @@ "parent": "tob_bastet-temple-cat_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -1899,9 +1985,10 @@ "parent": "tob_bastet-temple-cat_claws", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -1921,9 +2008,10 @@ "parent": "tob_bearfolk_battleaxe", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -1943,9 +2031,10 @@ "parent": "tob_bearfolk_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -1965,9 +2054,10 @@ "parent": "tob_bearfolk_warhammer", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -1987,9 +2077,10 @@ "parent": "tob_beggar-ghoul_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -2009,9 +2100,10 @@ "parent": "tob_beggar-ghoul_claws", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -2031,9 +2123,10 @@ "parent": "tob_behtu_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -2053,9 +2146,10 @@ "parent": "tob_behtu_shortspear", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -2075,9 +2169,10 @@ "parent": "tob_beli_ice-dagger", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -2098,8 +2193,9 @@ "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": null, - "range_ft": 80, - "long_range_ft": 320, + "range_ft": 80.0, + "long_range_ft": 320.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -2119,9 +2215,10 @@ "parent": "tob_bereginyas_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -2141,9 +2238,10 @@ "parent": "tob_berstuc_slam", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -2163,9 +2261,10 @@ "parent": "tob_black-knight-commander_lance", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D12", @@ -2185,9 +2284,10 @@ "parent": "tob_black-knight-commander_mace", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -2207,9 +2307,10 @@ "parent": "tob_blemmyes_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6", @@ -2230,8 +2331,9 @@ "attack_type": "WEAPON", "to_hit_mod": 8, "reach_ft": null, - "range_ft": 30, - "long_range_ft": 120, + "range_ft": 30.0, + "long_range_ft": 120.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D10", @@ -2251,9 +2353,10 @@ "parent": "tob_blemmyes_slam", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -2273,9 +2376,10 @@ "parent": "tob_blood-hag_blood-drinking-hair", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -2295,9 +2399,10 @@ "parent": "tob_blood-hag_claws", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6", @@ -2317,9 +2422,10 @@ "parent": "tob_boloti_dagger", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -2339,9 +2445,10 @@ "parent": "tob_bone-collective_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D12", @@ -2361,9 +2468,10 @@ "parent": "tob_bone-collective_claw", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D12", @@ -2383,9 +2491,10 @@ "parent": "tob_bone-collective_swarm", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 0, + "reach_ft": 0.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 8, "damage_die_type": "D12", @@ -2405,9 +2514,10 @@ "parent": "tob_bone-crab_claw", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -2427,9 +2537,10 @@ "parent": "tob_bone-swarm_swirling-bones", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 0, + "reach_ft": 0.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, "damage_die_type": "D8", @@ -2449,9 +2560,10 @@ "parent": "tob_bonepowder-ghoul_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -2471,9 +2583,10 @@ "parent": "tob_bouda_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -2493,9 +2606,10 @@ "parent": "tob_bouda_mephitic-claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -2515,9 +2629,10 @@ "parent": "tob_broodiken_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -2537,9 +2652,10 @@ "parent": "tob_bukavac_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -2559,9 +2675,10 @@ "parent": "tob_bukavac_claw", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D12", @@ -2581,9 +2698,10 @@ "parent": "tob_bukavac_gore", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -2603,9 +2721,10 @@ "parent": "tob_buraq_hooves", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -2625,9 +2744,10 @@ "parent": "tob_burrowling_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -2647,9 +2767,10 @@ "parent": "tob_burrowling_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -2670,8 +2791,9 @@ "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": null, - "range_ft": 30, - "long_range_ft": 120, + "range_ft": 30.0, + "long_range_ft": 120.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -2691,9 +2813,10 @@ "parent": "tob_cactid_tendril", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -2713,9 +2836,10 @@ "parent": "tob_cambium_needle-fingers", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -2735,9 +2859,10 @@ "parent": "tob_carrion-beetle_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D12", @@ -2757,9 +2882,10 @@ "parent": "tob_carrion-beetle_claws", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -2779,9 +2905,10 @@ "parent": "tob_cave-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -2801,9 +2928,10 @@ "parent": "tob_cavelight-moss_tendrils", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D12", @@ -2823,9 +2951,10 @@ "parent": "tob_chelicerae_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -2845,9 +2974,10 @@ "parent": "tob_chelicerae_claw", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -2867,9 +2997,10 @@ "parent": "tob_chernomoi_scimitar", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -2889,9 +3020,10 @@ "parent": "tob_child-of-the-briar_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -2912,8 +3044,9 @@ "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": null, - "range_ft": 20, - "long_range_ft": 60, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -2933,9 +3066,10 @@ "parent": "tob_chort-devil_claw", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -2955,9 +3089,10 @@ "parent": "tob_chort-devil_flaming-ranseur", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -2977,9 +3112,10 @@ "parent": "tob_chronalmental_slam", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -3000,8 +3136,9 @@ "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 5, + "range_ft": 5.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -3021,9 +3158,10 @@ "parent": "tob_city-watch-captain_dagger", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -3044,8 +3182,9 @@ "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": null, - "range_ft": 80, - "long_range_ft": 320, + "range_ft": 80.0, + "long_range_ft": 320.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -3065,9 +3204,10 @@ "parent": "tob_city-watch-captain_rapier", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -3087,9 +3227,10 @@ "parent": "tob_clockwork-abomination_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -3109,9 +3250,10 @@ "parent": "tob_clockwork-abomination_slam", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -3131,9 +3273,10 @@ "parent": "tob_clockwork-beetle-swarm_bites", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 0, + "reach_ft": 0.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, "damage_die_type": "D6", @@ -3153,9 +3296,10 @@ "parent": "tob_clockwork-beetle_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -3175,9 +3319,10 @@ "parent": "tob_clockwork-hound_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -3197,9 +3342,10 @@ "parent": "tob_clockwork-hound_tripping-tongue", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -3219,9 +3365,10 @@ "parent": "tob_clockwork-huntsman_longsword", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -3242,8 +3389,9 @@ "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 5, - "long_range_ft": 15, + "range_ft": 5.0, + "long_range_ft": 15.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 0, "damage_die_type": null, @@ -3263,9 +3411,10 @@ "parent": "tob_clockwork-huntsman_slam", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -3285,9 +3434,10 @@ "parent": "tob_clockwork-myrmidon_heavy-pick", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -3307,9 +3457,10 @@ "parent": "tob_clockwork-myrmidon_slam", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D12", @@ -3329,9 +3480,10 @@ "parent": "tob_clockwork-watchman_halberd", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -3352,8 +3504,9 @@ "attack_type": "WEAPON", "to_hit_mod": 3, "reach_ft": null, - "range_ft": 5, - "long_range_ft": 15, + "range_ft": 5.0, + "long_range_ft": 15.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 0, "damage_die_type": null, @@ -3373,9 +3526,10 @@ "parent": "tob_clockwork-watchman_slam", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -3395,9 +3549,10 @@ "parent": "tob_clurichaun_improvised-weapon", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -3417,9 +3572,10 @@ "parent": "tob_clurichaun_unarmed-strike", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": null, @@ -3439,9 +3595,10 @@ "parent": "tob_cobbleswarm_stings", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 0, + "reach_ft": 0.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D4", @@ -3461,9 +3618,10 @@ "parent": "tob_coral-drake_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -3483,9 +3641,10 @@ "parent": "tob_coral-drake_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D8", @@ -3505,9 +3664,10 @@ "parent": "tob_coral-drake_stinger", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -3528,8 +3688,9 @@ "attack_type": "WEAPON", "to_hit_mod": 11, "reach_ft": null, - "range_ft": 30, - "long_range_ft": 120, + "range_ft": 30.0, + "long_range_ft": 120.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -3549,9 +3710,10 @@ "parent": "tob_corpse-mound_slam", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -3571,9 +3733,10 @@ "parent": "tob_corrupting-ooze_slam", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -3593,9 +3756,10 @@ "parent": "tob_crimson-drake_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -3615,9 +3779,10 @@ "parent": "tob_crimson-drake_stinger", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -3637,9 +3802,10 @@ "parent": "tob_crystalline-devil_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -3659,9 +3825,10 @@ "parent": "tob_dau_slam", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -3681,9 +3848,10 @@ "parent": "tob_death-butterfly-swarm_bites", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 0, + "reach_ft": 0.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, "damage_die_type": "D6", @@ -3703,9 +3871,10 @@ "parent": "tob_deathcap-myconid_fist", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D4", @@ -3725,9 +3894,10 @@ "parent": "tob_deathwisp_life-drain", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 7, "damage_die_type": "D8", @@ -3747,9 +3917,10 @@ "parent": "tob_deep-drake_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -3769,9 +3940,10 @@ "parent": "tob_deep-drake_claw", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -3791,9 +3963,10 @@ "parent": "tob_deep-drake_stinger", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -3813,9 +3986,10 @@ "parent": "tob_deep-one-archimandrite_unholy-trident", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -3835,9 +4009,10 @@ "parent": "tob_degenerate-titan_greatclub", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -3858,8 +4033,9 @@ "attack_type": "WEAPON", "to_hit_mod": 10, "reach_ft": null, - "range_ft": 60, - "long_range_ft": 240, + "range_ft": 60.0, + "long_range_ft": 240.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D10", @@ -3880,8 +4056,9 @@ "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": null, - "range_ft": 100, - "long_range_ft": 400, + "range_ft": 100.0, + "long_range_ft": 400.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -3901,9 +4078,10 @@ "parent": "tob_derro-shadow-antipaladin_scimitar", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -3923,9 +4101,10 @@ "parent": "tob_desert-giant_falchion", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, "damage_die_type": "D4", @@ -3946,8 +4125,9 @@ "attack_type": "WEAPON", "to_hit_mod": 12, "reach_ft": null, - "range_ft": 60, - "long_range_ft": 240, + "range_ft": 60.0, + "long_range_ft": 240.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D10", @@ -3967,9 +4147,10 @@ "parent": "tob_devilbound-gnomish-prince_dagger", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -3989,9 +4170,10 @@ "parent": "tob_dipsa_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 0, + "reach_ft": 0.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -4011,9 +4193,10 @@ "parent": "tob_dissimortuum_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -4033,9 +4216,10 @@ "parent": "tob_dogmole-juggernaut_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D12", @@ -4055,9 +4239,10 @@ "parent": "tob_dogmole-juggernaut_claw", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6", @@ -4077,9 +4262,10 @@ "parent": "tob_dogmole_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -4099,9 +4285,10 @@ "parent": "tob_dogmole_claw", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -4121,9 +4308,10 @@ "parent": "tob_domovoi_slam", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -4143,9 +4331,10 @@ "parent": "tob_doppelrat_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": null, @@ -4165,9 +4354,10 @@ "parent": "tob_dorreq_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D8", @@ -4187,9 +4377,10 @@ "parent": "tob_dorreq_tentacle", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -4209,9 +4400,10 @@ "parent": "tob_dragon-eel_bite", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D8", @@ -4231,9 +4423,10 @@ "parent": "tob_dragon-eel_tail-slap", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, "damage_die_type": "D8", @@ -4254,8 +4447,9 @@ "attack_type": "WEAPON", "to_hit_mod": 3, "reach_ft": null, - "range_ft": 30, - "long_range_ft": 60, + "range_ft": 30.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 10, "damage_die_type": "D8", @@ -4275,9 +4469,10 @@ "parent": "tob_dragonleaf-tree_slam", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 10, "damage_die_type": "D10", @@ -4297,9 +4492,10 @@ "parent": "tob_drakon_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -4319,9 +4515,10 @@ "parent": "tob_drakon_tail", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -4341,9 +4538,10 @@ "parent": "tob_dream-eater_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -4363,9 +4561,10 @@ "parent": "tob_dream-eater_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D10", @@ -4385,9 +4584,10 @@ "parent": "tob_drowned-maiden_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -4407,9 +4607,10 @@ "parent": "tob_drowned-maiden_hair", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 20, + "reach_ft": 20.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -4429,9 +4630,10 @@ "parent": "tob_dullahan_spine-whip", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -4451,9 +4653,10 @@ "parent": "tob_dune-mimic_pseudopod", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -4473,9 +4676,10 @@ "parent": "tob_duskthorn-dryad_dagger", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -4496,8 +4700,9 @@ "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": null, - "range_ft": 150, - "long_range_ft": 600, + "range_ft": 150.0, + "long_range_ft": 600.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -4518,8 +4723,9 @@ "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": null, - "range_ft": 80, - "long_range_ft": 320, + "range_ft": 80.0, + "long_range_ft": 320.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -4539,9 +4745,10 @@ "parent": "tob_dust-goblin_shortsword", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -4561,9 +4768,10 @@ "parent": "tob_dwarven-ringmage_ring-staff", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -4583,9 +4791,10 @@ "parent": "tob_eala_wing-blades", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -4608,6 +4817,7 @@ "reach_ft": null, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6", @@ -4627,9 +4837,10 @@ "parent": "tob_edimmu_water-siphon", "attack_type": "SPELL", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, "damage_die_type": "D6", @@ -4649,9 +4860,10 @@ "parent": "tob_eel-hound_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -4671,9 +4883,10 @@ "parent": "tob_einherjar_asgardian-battleaxe", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -4693,9 +4906,10 @@ "parent": "tob_einherjar_handaxe", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -4715,9 +4929,10 @@ "parent": "tob_elder-shadow-drake_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -4737,9 +4952,10 @@ "parent": "tob_elder-shadow-drake_tail-slap", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -4759,9 +4975,10 @@ "parent": "tob_eleinomae_dagger", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -4782,8 +4999,9 @@ "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": null, - "range_ft": 5, - "long_range_ft": 15, + "range_ft": 5.0, + "long_range_ft": 15.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 0, "damage_die_type": null, @@ -4803,9 +5021,10 @@ "parent": "tob_elemental-locus_slam", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, "damage_die_type": "D8", @@ -4826,8 +5045,9 @@ "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": null, - "range_ft": 150, - "long_range_ft": 600, + "range_ft": 150.0, + "long_range_ft": 600.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -4847,9 +5067,10 @@ "parent": "tob_elvish-veteran-archer_shortsword", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -4869,9 +5090,10 @@ "parent": "tob_emerald-eye_slash", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, "damage_die_type": "D4", @@ -4891,9 +5113,10 @@ "parent": "tob_emerald-order-cult-leader_mace", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -4913,9 +5136,10 @@ "parent": "tob_empty-cloak_razor-cloak", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -4935,9 +5159,10 @@ "parent": "tob_empty-cloak_shadow-slam", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -4957,9 +5182,10 @@ "parent": "tob_eonic-drifter_time-warping-staff", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -4980,8 +5206,9 @@ "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 80, - "long_range_ft": 320, + "range_ft": 80.0, + "long_range_ft": 320.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -5001,9 +5228,10 @@ "parent": "tob_erina-defender_shortsword", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -5023,9 +5251,10 @@ "parent": "tob_erina-scrounger_dagger", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -5046,8 +5275,9 @@ "attack_type": "WEAPON", "to_hit_mod": 3, "reach_ft": null, - "range_ft": 30, - "long_range_ft": 120, + "range_ft": 30.0, + "long_range_ft": 120.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -5067,9 +5297,10 @@ "parent": "tob_eye-golem_slam", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D8", @@ -5089,9 +5320,10 @@ "parent": "tob_far-darrig_antler-glaive", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -5111,9 +5343,10 @@ "parent": "tob_fate-eater_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, "damage_die_type": "D8", @@ -5133,9 +5366,10 @@ "parent": "tob_fear-smith_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D12", @@ -5155,9 +5389,10 @@ "parent": "tob_fellforged_necrotic-slam", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -5177,9 +5412,10 @@ "parent": "tob_fext_eldritch-blade", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -5200,8 +5436,9 @@ "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": null, - "range_ft": 60, - "long_range_ft": 200, + "range_ft": 60.0, + "long_range_ft": 200.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D10", @@ -5221,9 +5458,10 @@ "parent": "tob_feyward-tree_razor-leafed-branch", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -5244,8 +5482,9 @@ "attack_type": "WEAPON", "to_hit_mod": 8, "reach_ft": null, - "range_ft": 150, - "long_range_ft": 600, + "range_ft": 150.0, + "long_range_ft": 600.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -5265,9 +5504,10 @@ "parent": "tob_fidele-angel_1-longsword", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -5287,9 +5527,10 @@ "parent": "tob_fidele-angel_beak", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -5309,9 +5550,10 @@ "parent": "tob_fidele-angel_talons", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -5331,9 +5573,10 @@ "parent": "tob_fire-dancer-swarm_swarm", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 0, + "reach_ft": 0.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, "damage_die_type": "D6", @@ -5353,9 +5596,10 @@ "parent": "tob_firebird_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -5375,9 +5619,10 @@ "parent": "tob_firebird_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -5397,9 +5642,10 @@ "parent": "tob_firegeist_slam", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -5419,9 +5665,10 @@ "parent": "tob_flab-giant_slam", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -5441,9 +5688,10 @@ "parent": "tob_flame-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -5463,9 +5711,10 @@ "parent": "tob_flutterflesh_bone-spur", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D12", @@ -5485,9 +5734,10 @@ "parent": "tob_flutterflesh_slash", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -5508,8 +5758,9 @@ "attack_type": "WEAPON", "to_hit_mod": 8, "reach_ft": null, - "range_ft": 30, + "range_ft": 30.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -5529,9 +5780,10 @@ "parent": "tob_folk-of-leng_psychic-scimitar", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -5551,9 +5803,10 @@ "parent": "tob_forest-marauder_boar-spear", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -5574,8 +5827,9 @@ "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": null, - "range_ft": 30, - "long_range_ft": 120, + "range_ft": 30.0, + "long_range_ft": 120.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -5595,9 +5849,10 @@ "parent": "tob_fraughashar_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -5617,9 +5872,10 @@ "parent": "tob_fraughashar_dagger", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -5640,8 +5896,9 @@ "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 30, - "long_range_ft": 120, + "range_ft": 30.0, + "long_range_ft": 120.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -5661,9 +5918,10 @@ "parent": "tob_frostveil_tendril", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -5683,9 +5941,10 @@ "parent": "tob_garroter-crab_whip-claw", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -5705,9 +5964,10 @@ "parent": "tob_gbahali-postosuchus_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D12", @@ -5727,9 +5987,10 @@ "parent": "tob_gbahali-postosuchus_claw", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -5749,9 +6010,10 @@ "parent": "tob_gearforged-templar_glaive", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -5772,8 +6034,9 @@ "attack_type": "WEAPON", "to_hit_mod": 8, "reach_ft": null, - "range_ft": 30, - "long_range_ft": 120, + "range_ft": 30.0, + "long_range_ft": 120.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -5793,9 +6056,10 @@ "parent": "tob_gerridae_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -5815,9 +6079,10 @@ "parent": "tob_gerridae_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -5837,9 +6102,10 @@ "parent": "tob_ghost-knight_battleaxe", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -5859,9 +6125,10 @@ "parent": "tob_ghost-knight_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -5881,9 +6148,10 @@ "parent": "tob_ghost-knight_claws", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -5903,9 +6171,10 @@ "parent": "tob_ghost-knight_lance", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D12", @@ -5925,9 +6194,10 @@ "parent": "tob_ghostwalk-spider_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -5947,9 +6217,10 @@ "parent": "tob_ghoul-darakhul_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -5969,9 +6240,10 @@ "parent": "tob_ghoul-darakhul_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -5991,9 +6263,10 @@ "parent": "tob_ghoul-darakhul_war-pick", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -6013,9 +6286,10 @@ "parent": "tob_ghoul-imperial_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -6038,6 +6312,7 @@ "reach_ft": null, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6", @@ -6058,8 +6333,9 @@ "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 80, + "range_ft": 80.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -6079,9 +6355,10 @@ "parent": "tob_ghoul-iron_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -6101,9 +6378,10 @@ "parent": "tob_ghoul-iron_claws", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6", @@ -6123,9 +6401,10 @@ "parent": "tob_ghoul-iron_glaive", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -6146,8 +6425,9 @@ "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": null, - "range_ft": 100, + "range_ft": 100.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -6167,9 +6447,10 @@ "parent": "tob_giant-ant-queen_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -6189,9 +6470,10 @@ "parent": "tob_giant-ant-queen_sting", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -6211,9 +6493,10 @@ "parent": "tob_giant-ant_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -6233,9 +6516,10 @@ "parent": "tob_giant-ant_sting", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -6255,9 +6539,10 @@ "parent": "tob_gilded-devil_heavy-flail-scourge-of-avarice", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -6277,9 +6562,10 @@ "parent": "tob_glass-gator_claws", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -6299,9 +6585,10 @@ "parent": "tob_gnarljak_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -6321,9 +6608,10 @@ "parent": "tob_gnoll-havoc-runner_battleaxe", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -6343,9 +6631,10 @@ "parent": "tob_gnoll-havoc-runner_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -6365,9 +6654,10 @@ "parent": "tob_goat-man_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -6387,9 +6677,10 @@ "parent": "tob_goat-man_slam", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -6409,9 +6700,10 @@ "parent": "tob_gray-thirster_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -6431,9 +6723,10 @@ "parent": "tob_gray-thirster_withering-turban", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -6453,9 +6746,10 @@ "parent": "tob_greater-death-butterfly-swarm_bites", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 0, + "reach_ft": 0.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, "damage_die_type": "D6", @@ -6475,9 +6769,10 @@ "parent": "tob_gug_slam", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -6497,9 +6792,10 @@ "parent": "tob_gypsosphinx_bite", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -6519,9 +6815,10 @@ "parent": "tob_gypsosphinx_claws", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, "damage_die_type": "D8", @@ -6542,8 +6839,9 @@ "attack_type": "SPELL", "to_hit_mod": 10, "reach_ft": null, - "range_ft": 40, + "range_ft": 40.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, "damage_die_type": "D8", @@ -6563,9 +6861,10 @@ "parent": "tob_herald-of-blood_engulfing-protoplasm", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D12", @@ -6585,9 +6884,10 @@ "parent": "tob_herald-of-darkness_shadow-sword", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D12", @@ -6607,9 +6907,10 @@ "parent": "tob_hoard-golem_slam", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, "damage_die_type": "D10", @@ -6629,9 +6930,10 @@ "parent": "tob_horakh_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D8", @@ -6651,9 +6953,10 @@ "parent": "tob_horakh_claw", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -6673,9 +6976,10 @@ "parent": "tob_hound-of-the-night_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -6695,9 +6999,10 @@ "parent": "tob_hraesvelgr-the-corpse-swallower_beak", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D8", @@ -6717,9 +7022,10 @@ "parent": "tob_hraesvelgr-the-corpse-swallower_fist", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -6739,9 +7045,10 @@ "parent": "tob_hraesvelgr-the-corpse-swallower_talons", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6", @@ -6761,9 +7068,10 @@ "parent": "tob_hulking-whelp_slam", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -6783,9 +7091,10 @@ "parent": "tob_hundun_slam", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -6805,9 +7114,10 @@ "parent": "tob_iaaffrat_bites", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 0, + "reach_ft": 0.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, "damage_die_type": "D6", @@ -6827,9 +7137,10 @@ "parent": "tob_ice-maiden_ice-dagger", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -6849,9 +7160,10 @@ "parent": "tob_idolic-deity_slam", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -6871,9 +7183,10 @@ "parent": "tob_imy-ut-ushabti_bites", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 0, + "reach_ft": 0.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D4", @@ -6893,9 +7206,10 @@ "parent": "tob_imy-ut-ushabti_ceremonial-greatsword", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -6915,9 +7229,10 @@ "parent": "tob_ink-devil_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -6937,9 +7252,10 @@ "parent": "tob_ink-devil_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -6959,9 +7275,10 @@ "parent": "tob_isonade_bite", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, "damage_die_type": "D12", @@ -6981,9 +7298,10 @@ "parent": "tob_isonade_tail-slap", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, "damage_die_type": "D6", @@ -7003,9 +7321,10 @@ "parent": "tob_jaculus_claws", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -7025,9 +7344,10 @@ "parent": "tob_jaculus_jaws", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -7047,9 +7367,10 @@ "parent": "tob_jba-fofi-spider_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -7069,9 +7390,10 @@ "parent": "tob_jotun-giant_greatclub", "attack_type": "WEAPON", "to_hit_mod": 16, - "reach_ft": 30, + "reach_ft": 30.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 10, "damage_die_type": "D8", @@ -7092,8 +7414,9 @@ "attack_type": "WEAPON", "to_hit_mod": 16, "reach_ft": null, - "range_ft": 90, - "long_range_ft": 240, + "range_ft": 90.0, + "long_range_ft": 240.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, "damage_die_type": "D12", @@ -7113,9 +7436,10 @@ "parent": "tob_kalke_dagger", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -7135,9 +7459,10 @@ "parent": "tob_kikimora_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -7157,9 +7482,10 @@ "parent": "tob_kishi-demon_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -7179,9 +7505,10 @@ "parent": "tob_kishi-demon_spear", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -7201,9 +7528,10 @@ "parent": "tob_kobold-alchemist_dagger", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -7224,8 +7552,9 @@ "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": null, - "range_ft": 20, - "long_range_ft": 60, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -7246,8 +7575,9 @@ "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": null, - "range_ft": 80, - "long_range_ft": 320, + "range_ft": 80.0, + "long_range_ft": 320.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -7267,9 +7597,10 @@ "parent": "tob_kobold-chieftain_shortsword", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -7289,9 +7620,10 @@ "parent": "tob_kobold-trapsmith_dagger", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -7312,8 +7644,9 @@ "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": null, - "range_ft": 80, - "long_range_ft": 320, + "range_ft": 80.0, + "long_range_ft": 320.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -7334,8 +7667,9 @@ "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": null, - "range_ft": 20, - "long_range_ft": 60, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -7355,9 +7689,10 @@ "parent": "tob_kongamato_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6", @@ -7377,9 +7712,10 @@ "parent": "tob_kongamato_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -7399,9 +7735,10 @@ "parent": "tob_koralk-harvester-devil_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -7421,9 +7758,10 @@ "parent": "tob_koralk-harvester-devil_scythe", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D12", @@ -7443,9 +7781,10 @@ "parent": "tob_koralk-harvester-devil_stinger", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -7465,9 +7804,10 @@ "parent": "tob_koschei_drain-life", "attack_type": "SPELL", "to_hit_mod": 11, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6", @@ -7487,9 +7827,10 @@ "parent": "tob_koschei_longsword", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -7509,9 +7850,10 @@ "parent": "tob_kot-bayun_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -7531,9 +7873,10 @@ "parent": "tob_kot-bayun_claws", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -7553,9 +7896,10 @@ "parent": "tob_krake-spawn_bite", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -7575,9 +7919,10 @@ "parent": "tob_krake-spawn_tentacle", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -7597,9 +7942,10 @@ "parent": "tob_lake-troll_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -7619,9 +7965,10 @@ "parent": "tob_lake-troll_claws", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -7641,9 +7988,10 @@ "parent": "tob_lantern-dragonette_bite", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -7664,8 +8012,9 @@ "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": null, - "range_ft": 25, - "long_range_ft": 100, + "range_ft": 25.0, + "long_range_ft": 100.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -7685,9 +8034,10 @@ "parent": "tob_lemurfolk-greyfur_kukri-dagger", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": 20, + "reach_ft": 5.0, + "range_ft": 20.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -7708,8 +8058,9 @@ "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 25, - "long_range_ft": 100, + "range_ft": 25.0, + "long_range_ft": 100.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -7729,9 +8080,10 @@ "parent": "tob_lemurfolk_kukri-dagger", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -7751,9 +8103,10 @@ "parent": "tob_leshy_club", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -7773,9 +8126,10 @@ "parent": "tob_lich-hound_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D12", @@ -7795,9 +8149,10 @@ "parent": "tob_likho_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -7817,9 +8172,10 @@ "parent": "tob_lindwurm_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -7839,9 +8195,10 @@ "parent": "tob_lindwurm_claws", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -7861,9 +8218,10 @@ "parent": "tob_lindwurm_constrict", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -7883,9 +8241,10 @@ "parent": "tob_liosalfar_disrupting-touch", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D12", @@ -7905,9 +8264,10 @@ "parent": "tob_living-wick_slam", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -7927,9 +8287,10 @@ "parent": "tob_lorelei_dagger", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -7949,9 +8310,10 @@ "parent": "tob_loxoda_javelin", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, - "range_ft": 30, - "long_range_ft": 120, + "reach_ft": 5.0, + "range_ft": 30.0, + "long_range_ft": 120.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -7971,9 +8333,10 @@ "parent": "tob_loxoda_maul", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, "damage_die_type": "D6", @@ -7993,9 +8356,10 @@ "parent": "tob_loxoda_stomp", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -8015,9 +8379,10 @@ "parent": "tob_lunar-devil_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D12", @@ -8037,9 +8402,10 @@ "parent": "tob_lunar-devil_claw", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -8060,8 +8426,9 @@ "attack_type": "SPELL", "to_hit_mod": 7, "reach_ft": null, - "range_ft": 150, + "range_ft": 150.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D12", @@ -8081,9 +8448,10 @@ "parent": "tob_lunar-devil_tail", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -8103,9 +8471,10 @@ "parent": "tob_mahoru_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -8126,8 +8495,9 @@ "attack_type": "SPELL", "to_hit_mod": 9, "reach_ft": null, - "range_ft": 120, + "range_ft": 120.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -8147,9 +8517,10 @@ "parent": "tob_mallqui_desiccating-touch", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, "damage_die_type": "D6", @@ -8170,8 +8541,9 @@ "attack_type": "SPELL", "to_hit_mod": 7, "reach_ft": null, - "range_ft": 30, - "long_range_ft": 90, + "range_ft": 30.0, + "long_range_ft": 90.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -8191,9 +8563,10 @@ "parent": "tob_malphas-storm-crow_longsword", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -8214,8 +8587,9 @@ "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": null, - "range_ft": 5, + "range_ft": 5.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -8236,8 +8610,9 @@ "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": null, - "range_ft": 5, + "range_ft": 5.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -8257,9 +8632,10 @@ "parent": "tob_manabane-scarab-swarm_bites", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 0, + "reach_ft": 0.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6", @@ -8279,9 +8655,10 @@ "parent": "tob_map-mimic_pseudopod", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -8301,9 +8678,10 @@ "parent": "tob_mask-wight_enervating-spiked-gauntlet", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D12", @@ -8323,9 +8701,10 @@ "parent": "tob_mask-wight_khopesh-of-oblivion", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -8345,9 +8724,10 @@ "parent": "tob_mavka_slam", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D8", @@ -8367,9 +8747,10 @@ "parent": "tob_mbielu_tail", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -8389,9 +8770,10 @@ "parent": "tob_mi-go_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -8411,9 +8793,10 @@ "parent": "tob_millitaur_handaxe", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -8433,9 +8816,10 @@ "parent": "tob_mindrot-thrall_claw", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -8455,9 +8839,10 @@ "parent": "tob_mirager_slam", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -8477,9 +8862,10 @@ "parent": "tob_miremal_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -8499,9 +8885,10 @@ "parent": "tob_miremal_claws", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -8521,9 +8908,10 @@ "parent": "tob_mirror-hag_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D8", @@ -8543,9 +8931,10 @@ "parent": "tob_mirror-hag_quarterstaff", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -8565,9 +8954,10 @@ "parent": "tob_mngwa_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -8587,9 +8977,10 @@ "parent": "tob_mngwa_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -8609,9 +9000,10 @@ "parent": "tob_monolith-champion_greatsword", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -8631,9 +9023,10 @@ "parent": "tob_monolith-champion_slam", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -8653,9 +9046,10 @@ "parent": "tob_monolith-footman_longsword", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -8675,9 +9069,10 @@ "parent": "tob_monolith-footman_slam", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -8697,9 +9092,10 @@ "parent": "tob_mordant-snare_filaments", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -8720,8 +9116,9 @@ "attack_type": "WEAPON", "to_hit_mod": 8, "reach_ft": null, - "range_ft": 20, - "long_range_ft": 60, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -8741,9 +9138,10 @@ "parent": "tob_mordant-snare_tentacle", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -8763,9 +9161,10 @@ "parent": "tob_morphoi_claws", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -8786,8 +9185,9 @@ "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": null, - "range_ft": 80, - "long_range_ft": 320, + "range_ft": 80.0, + "long_range_ft": 320.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -8807,9 +9207,10 @@ "parent": "tob_morphoi_trident", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -8829,9 +9230,10 @@ "parent": "tob_moss-lurker_claw", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -8852,8 +9254,9 @@ "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 100, + "range_ft": 100.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -8873,9 +9276,10 @@ "parent": "tob_moss-lurker_great-sword-or-maul", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -8896,8 +9300,9 @@ "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 30, + "range_ft": 30.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -8917,9 +9322,10 @@ "parent": "tob_myling_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -8939,9 +9345,10 @@ "parent": "tob_myling_claw", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -8961,9 +9368,10 @@ "parent": "tob_naina_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D12", @@ -8983,9 +9391,10 @@ "parent": "tob_naina_claw", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D12", @@ -9005,9 +9414,10 @@ "parent": "tob_ngobou_gore", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, "damage_die_type": "D10", @@ -9027,9 +9437,10 @@ "parent": "tob_ngobou_stomp", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -9049,9 +9460,10 @@ "parent": "tob_nichny_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D12", @@ -9071,9 +9483,10 @@ "parent": "tob_night-scorpion_claw", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -9093,9 +9506,10 @@ "parent": "tob_night-scorpion_sting", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -9115,9 +9529,10 @@ "parent": "tob_nightgarm_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D10", @@ -9137,9 +9552,10 @@ "parent": "tob_nihilethic-zombie_slam", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6", @@ -9159,9 +9575,10 @@ "parent": "tob_nihilethic-zombie_withering-touch-ethereal-form", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -9181,9 +9598,10 @@ "parent": "tob_nkosi-pridelord_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -9204,8 +9622,9 @@ "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": null, - "range_ft": 20, - "long_range_ft": 60, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -9225,9 +9644,10 @@ "parent": "tob_nkosi-pridelord_scimitar", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -9247,9 +9667,10 @@ "parent": "tob_nkosi-war-ostrich_claw", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -9269,9 +9690,10 @@ "parent": "tob_nkosi_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -9292,8 +9714,9 @@ "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": null, - "range_ft": 20, - "long_range_ft": 60, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -9313,9 +9736,10 @@ "parent": "tob_nkosi_scimitar", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -9335,9 +9759,10 @@ "parent": "tob_noctiny_pact-staff", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -9357,9 +9782,10 @@ "parent": "tob_ogre-chieftain-corrupted_greatclub", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -9379,9 +9805,10 @@ "parent": "tob_ogre-chieftain-corrupted_javelin", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, - "range_ft": 30, - "long_range_ft": 120, + "reach_ft": 5.0, + "range_ft": 30.0, + "long_range_ft": 120.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -9401,9 +9828,10 @@ "parent": "tob_oozasis_pseudopod", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -9424,8 +9852,9 @@ "attack_type": "SPELL", "to_hit_mod": 7, "reach_ft": null, - "range_ft": 60, + "range_ft": 60.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -9445,9 +9874,10 @@ "parent": "tob_owl-harpy_claws", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -9467,9 +9897,10 @@ "parent": "tob_owl-harpy_talons", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -9489,9 +9920,10 @@ "parent": "tob_paper-drake_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -9511,9 +9943,10 @@ "parent": "tob_paper-drake_claws", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -9533,9 +9966,10 @@ "parent": "tob_paper-drake_tail", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, "damage_die_type": "D6", @@ -9555,9 +9989,10 @@ "parent": "tob_pombero_fist", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -9577,9 +10012,10 @@ "parent": "tob_possessed-pillar_slam", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -9599,9 +10035,10 @@ "parent": "tob_prismatic-beetle-swarm_bites", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 0, + "reach_ft": 0.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D4", @@ -9621,9 +10058,10 @@ "parent": "tob_psoglav-demon_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D12", @@ -9643,9 +10081,10 @@ "parent": "tob_putrid-haunt_slam", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -9665,9 +10104,10 @@ "parent": "tob_qwyllion_claw", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D12", @@ -9687,9 +10127,10 @@ "parent": "tob_ramag_scimitar", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -9710,8 +10151,9 @@ "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 80, - "long_range_ft": 320, + "range_ft": 80.0, + "long_range_ft": 320.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -9731,9 +10173,10 @@ "parent": "tob_rat-king_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -9753,9 +10196,10 @@ "parent": "tob_ratatosk_gore", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6", @@ -9775,9 +10219,10 @@ "parent": "tob_ratfolk-rogue_dagger", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -9798,8 +10243,9 @@ "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": null, - "range_ft": 80, - "long_range_ft": 320, + "range_ft": 80.0, + "long_range_ft": 320.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -9820,8 +10266,9 @@ "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": null, - "range_ft": 20, - "long_range_ft": 60, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -9841,9 +10288,10 @@ "parent": "tob_ratfolk_dagger", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -9864,8 +10312,9 @@ "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 80, - "long_range_ft": 320, + "range_ft": 80.0, + "long_range_ft": 320.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -9886,8 +10335,9 @@ "attack_type": "WEAPON", "to_hit_mod": 8, "reach_ft": null, - "range_ft": 30, - "long_range_ft": 120, + "range_ft": 30.0, + "long_range_ft": 120.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -9907,9 +10357,10 @@ "parent": "tob_ravenala_slam", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -9929,9 +10380,10 @@ "parent": "tob_ravenfolk-doom-croaker_radiant-runestaff", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -9951,9 +10403,10 @@ "parent": "tob_ravenfolk-scout_peck", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -9973,9 +10426,10 @@ "parent": "tob_ravenfolk-scout_rapier", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -9995,9 +10449,10 @@ "parent": "tob_ravenfolk-warrior_peck", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -10017,9 +10472,10 @@ "parent": "tob_ravenfolk-warrior_radiant-runespear", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D12", @@ -10039,9 +10495,10 @@ "parent": "tob_ravenfolk-warrior_rapier", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -10061,9 +10518,10 @@ "parent": "tob_red-banded-line-spider_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -10084,8 +10542,9 @@ "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": null, - "range_ft": 60, + "range_ft": 60.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 0, "damage_die_type": null, @@ -10105,9 +10564,10 @@ "parent": "tob_red-hag_claws", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -10127,9 +10587,10 @@ "parent": "tob_redcap_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -10149,9 +10610,10 @@ "parent": "tob_redcap_pike", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -10171,9 +10633,10 @@ "parent": "tob_rift-swine_tentacle", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -10193,9 +10656,10 @@ "parent": "tob_rift-swine_tusks", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -10215,9 +10679,10 @@ "parent": "tob_rime-worm-grub_gnash", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -10237,9 +10702,10 @@ "parent": "tob_rime-worm-grub_tendril", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -10259,9 +10725,10 @@ "parent": "tob_risen-reaver_blade", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -10282,8 +10749,9 @@ "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": null, - "range_ft": 20, - "long_range_ft": 60, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -10303,9 +10771,10 @@ "parent": "tob_roachling-lord_begrimed-shortsword", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -10326,8 +10795,9 @@ "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 20, - "long_range_ft": 60, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -10347,9 +10817,10 @@ "parent": "tob_roachling-skirmisher_shortsword", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -10369,9 +10840,10 @@ "parent": "tob_rotting-wind_wind-of-decay", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 0, + "reach_ft": 0.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -10391,9 +10863,10 @@ "parent": "tob_rubezahl_claw", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -10413,9 +10886,10 @@ "parent": "tob_rubezahl_gore", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -10436,8 +10910,9 @@ "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": null, - "range_ft": 5, + "range_ft": 5.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -10458,8 +10933,9 @@ "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": null, - "range_ft": 5, + "range_ft": 5.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -10479,9 +10955,10 @@ "parent": "tob_rusalka_breathless-kiss", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 0, "damage_die_type": null, @@ -10501,9 +10978,10 @@ "parent": "tob_rust-drake_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -10523,9 +11001,10 @@ "parent": "tob_rust-drake_tail-swipe", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -10545,9 +11024,10 @@ "parent": "tob_salt-devil_scimitar", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -10567,9 +11047,10 @@ "parent": "tob_salt-golem_slam", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, "damage_die_type": "D8", @@ -10589,9 +11070,10 @@ "parent": "tob_sand-hag_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -10611,9 +11093,10 @@ "parent": "tob_sand-silhouette_slam", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -10633,9 +11116,10 @@ "parent": "tob_sand-spider_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -10655,9 +11139,10 @@ "parent": "tob_sand-spider_impaling-leg", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D12", @@ -10677,9 +11162,10 @@ "parent": "tob_sandman_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -10699,9 +11185,10 @@ "parent": "tob_sandwyrm_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -10721,9 +11208,10 @@ "parent": "tob_sandwyrm_gore", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D12", @@ -10743,9 +11231,10 @@ "parent": "tob_sandwyrm_stinger", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -10765,9 +11254,10 @@ "parent": "tob_sap-demon_slam", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -10787,9 +11277,10 @@ "parent": "tob_sarcophagus-slime_slam", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -10809,9 +11300,10 @@ "parent": "tob_sathaq-worm_bite", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D8", @@ -10831,9 +11323,10 @@ "parent": "tob_savager_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D12", @@ -10853,9 +11346,10 @@ "parent": "tob_savager_claw", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, "damage_die_type": "D12", @@ -10876,8 +11370,9 @@ "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": null, - "range_ft": 30, - "long_range_ft": 120, + "range_ft": 30.0, + "long_range_ft": 120.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -10897,9 +11392,10 @@ "parent": "tob_scheznyki_heavy-pick", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -10919,9 +11415,10 @@ "parent": "tob_scorpion-cultist_scimitar", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -10942,8 +11439,9 @@ "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 30, - "long_range_ft": 120, + "range_ft": 30.0, + "long_range_ft": 120.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -10963,9 +11461,10 @@ "parent": "tob_sea-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -10985,9 +11484,10 @@ "parent": "tob_selang_dagger", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -11008,8 +11508,9 @@ "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 80, + "range_ft": 80.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -11029,9 +11530,10 @@ "parent": "tob_serpopard_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -11051,9 +11553,10 @@ "parent": "tob_serpopard_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -11073,9 +11576,10 @@ "parent": "tob_shabti_nabboot", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -11095,9 +11599,10 @@ "parent": "tob_shadhavar_gore", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -11117,9 +11622,10 @@ "parent": "tob_shadhavar_hooves", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -11139,9 +11645,10 @@ "parent": "tob_shadow-beast_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -11161,9 +11668,10 @@ "parent": "tob_shadow-beast_claw", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -11183,9 +11691,10 @@ "parent": "tob_shadow-fey-duelist_dagger", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -11205,9 +11714,10 @@ "parent": "tob_shadow-fey-duelist_rapier", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -11227,9 +11737,10 @@ "parent": "tob_shadow-fey-enchantress_rapier", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -11250,8 +11761,9 @@ "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": null, - "range_ft": 150, - "long_range_ft": 600, + "range_ft": 150.0, + "long_range_ft": 600.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -11271,9 +11783,10 @@ "parent": "tob_shadow-fey-forest-hunter_rapier", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -11294,8 +11807,9 @@ "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": null, - "range_ft": 30, - "long_range_ft": 120, + "range_ft": 30.0, + "long_range_ft": 120.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -11315,9 +11829,10 @@ "parent": "tob_shadow-fey-guardian_pike", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -11338,8 +11853,9 @@ "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 80, - "long_range_ft": 320, + "range_ft": 80.0, + "long_range_ft": 320.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -11359,9 +11875,10 @@ "parent": "tob_shadow-fey_shortsword", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -11381,9 +11898,10 @@ "parent": "tob_sharkjaw-skeleton_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -11403,9 +11921,10 @@ "parent": "tob_sharkjaw-skeleton_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -11425,9 +11944,10 @@ "parent": "tob_shellycoat_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -11447,9 +11967,10 @@ "parent": "tob_shellycoat_claws", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -11469,9 +11990,10 @@ "parent": "tob_shoggoth_slam", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D10", @@ -11491,9 +12013,10 @@ "parent": "tob_shroud_strength-drain", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -11513,9 +12036,10 @@ "parent": "tob_skein-witch_inexorable-threads", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 30, + "reach_ft": 30.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, "damage_die_type": "D8", @@ -11535,9 +12059,10 @@ "parent": "tob_skin-bat_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -11557,9 +12082,10 @@ "parent": "tob_skitterhaunt_claw", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -11579,9 +12105,10 @@ "parent": "tob_skitterhaunt_sting", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -11601,9 +12128,10 @@ "parent": "tob_slow-storm_slam", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D12", @@ -11623,9 +12151,10 @@ "parent": "tob_sluagh-swarm_chilling-touch", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 0, + "reach_ft": 0.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 8, "damage_die_type": "D6", @@ -11645,9 +12174,10 @@ "parent": "tob_smaragdine-golem_slam", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D8", @@ -11667,9 +12197,10 @@ "parent": "tob_son-of-fenris_bite", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -11689,9 +12220,10 @@ "parent": "tob_son-of-fenris_slam", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -11711,9 +12243,10 @@ "parent": "tob_soul-eater_claw", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -11733,9 +12266,10 @@ "parent": "tob_spawn-of-arbeyach_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -11755,9 +12289,10 @@ "parent": "tob_spawn-of-arbeyach_stinger", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -11777,9 +12312,10 @@ "parent": "tob_spectral-guardian_spectral-rend", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -11799,9 +12335,10 @@ "parent": "tob_spider-of-leng_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -11822,8 +12359,9 @@ "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": null, - "range_ft": 60, + "range_ft": 60.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -11843,9 +12381,10 @@ "parent": "tob_spider-of-leng_staff-of-leng", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -11865,9 +12404,10 @@ "parent": "tob_spider-thief_razor-line", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -11887,9 +12427,10 @@ "parent": "tob_spider-thief_sickle-claw", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -11909,9 +12450,10 @@ "parent": "tob_spinosaurus_bite", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D12", @@ -11931,9 +12473,10 @@ "parent": "tob_spinosaurus_claw", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6", @@ -11953,9 +12496,10 @@ "parent": "tob_spinosaurus_tail", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 20, + "reach_ft": 20.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -11976,8 +12520,9 @@ "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": null, - "range_ft": 20, - "long_range_ft": 60, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -11997,9 +12542,10 @@ "parent": "tob_star-drake_bite", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -12019,9 +12565,10 @@ "parent": "tob_star-drake_claw", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -12042,8 +12589,9 @@ "attack_type": "SPELL", "to_hit_mod": 12, "reach_ft": null, - "range_ft": 120, + "range_ft": 120.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 10, "damage_die_type": "D12", @@ -12063,9 +12611,10 @@ "parent": "tob_star-spawn-of-cthulhu_dimensional-stomp", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D20", @@ -12086,8 +12635,9 @@ "attack_type": "SPELL", "to_hit_mod": 15, "reach_ft": null, - "range_ft": 60, + "range_ft": 60.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, "damage_die_type": "D12", @@ -12107,9 +12657,10 @@ "parent": "tob_steam-golem_ax-arm", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6", @@ -12129,9 +12680,10 @@ "parent": "tob_steam-golem_long-axe", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, "damage_die_type": "D12", @@ -12151,9 +12703,10 @@ "parent": "tob_stryx_talons", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": null, @@ -12173,9 +12726,10 @@ "parent": "tob_stuhac_bite", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6", @@ -12195,9 +12749,10 @@ "parent": "tob_stuhac_claw", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, "damage_die_type": "D8", @@ -12217,9 +12772,10 @@ "parent": "tob_stygian-fat-tailed-scorpion_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": null, @@ -12239,9 +12795,10 @@ "parent": "tob_stygian-fat-tailed-scorpion_sting", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, "damage_die_type": "D6", @@ -12261,9 +12818,10 @@ "parent": "tob_subek_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -12283,9 +12841,10 @@ "parent": "tob_subek_claws", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D8", @@ -12305,9 +12864,10 @@ "parent": "tob_subek_thrash", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -12327,9 +12887,10 @@ "parent": "tob_suturefly_sew", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": null, @@ -12349,9 +12910,10 @@ "parent": "tob_swamp-adder_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -12371,9 +12933,10 @@ "parent": "tob_temple-dog_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -12393,9 +12956,10 @@ "parent": "tob_temple-dog_slam", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -12415,9 +12979,10 @@ "parent": "tob_thuellai_claw", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -12438,8 +13003,9 @@ "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": null, - "range_ft": 40, - "long_range_ft": 160, + "range_ft": 40.0, + "long_range_ft": 160.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -12459,9 +13025,10 @@ "parent": "tob_thursir-giant_warhammer", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -12481,9 +13048,10 @@ "parent": "tob_titanoboa_bite", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -12503,9 +13071,10 @@ "parent": "tob_titanoboa_constrict", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D12", @@ -12525,9 +13094,10 @@ "parent": "tob_tosculi-drone_claws", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -12548,8 +13118,9 @@ "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": null, - "range_ft": 80, - "long_range_ft": 320, + "range_ft": 80.0, + "long_range_ft": 320.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -12569,9 +13140,10 @@ "parent": "tob_tosculi-elite-bow-raider_claws", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -12592,8 +13164,9 @@ "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": null, - "range_ft": 150, - "long_range_ft": 600, + "range_ft": 150.0, + "long_range_ft": 600.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -12613,9 +13186,10 @@ "parent": "tob_tosculi-hive-queen_scimitar", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -12635,9 +13209,10 @@ "parent": "tob_tosculi-hive-queen_stinger", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -12657,9 +13232,10 @@ "parent": "tob_tosculi-warrior_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -12679,9 +13255,10 @@ "parent": "tob_tosculi-warrior_claws", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -12701,9 +13278,10 @@ "parent": "tob_tosculi-warrior_prepare-host", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -12723,9 +13301,10 @@ "parent": "tob_tosculi-warrior_stinger", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -12745,9 +13324,10 @@ "parent": "tob_trollkin-reaver_battleaxe", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -12767,9 +13347,10 @@ "parent": "tob_trollkin-reaver_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -12789,9 +13370,10 @@ "parent": "tob_trollkin-reaver_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -12811,9 +13393,10 @@ "parent": "tob_trollkin-reaver_handaxe", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -12833,9 +13416,10 @@ "parent": "tob_tusked-skyfish_gore", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -12855,9 +13439,10 @@ "parent": "tob_tusked-skyfish_tentacles", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -12877,9 +13462,10 @@ "parent": "tob_umbral-vampire_umbral-grasp", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6", @@ -12899,9 +13485,10 @@ "parent": "tob_uraeus_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -12921,9 +13508,10 @@ "parent": "tob_urochar-strangling-watcher_tentacle", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 20, + "reach_ft": 20.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -12943,9 +13531,10 @@ "parent": "tob_ushabti_khopesh", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -12965,9 +13554,10 @@ "parent": "tob_ushabti_medjais-scepter", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -12987,9 +13577,10 @@ "parent": "tob_vaettir_greataxe", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D12", @@ -13010,8 +13601,9 @@ "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 150, - "long_range_ft": 600, + "range_ft": 150.0, + "long_range_ft": 600.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -13031,9 +13623,10 @@ "parent": "tob_valkyrie_longsword", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -13053,9 +13646,10 @@ "parent": "tob_valkyrie_spear", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 10.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -13075,9 +13669,10 @@ "parent": "tob_vapor-lynx_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -13097,9 +13692,10 @@ "parent": "tob_vapor-lynx_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -13119,9 +13715,10 @@ "parent": "tob_venomous-mummy_venomous-fist", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -13142,8 +13739,9 @@ "attack_type": "WEAPON", "to_hit_mod": 9, "reach_ft": null, - "range_ft": 80, - "long_range_ft": 320, + "range_ft": 80.0, + "long_range_ft": 320.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -13163,9 +13761,10 @@ "parent": "tob_vila_1-shortsword", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -13185,9 +13784,10 @@ "parent": "tob_vile-barber_straight-razor", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -13207,9 +13807,10 @@ "parent": "tob_vile-barber_unclean-cut", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -13229,9 +13830,10 @@ "parent": "tob_vine-lord_claw", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -13251,9 +13853,10 @@ "parent": "tob_vine-lord_tendril", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -13273,9 +13876,10 @@ "parent": "tob_vine-lords-tendril-puppet_assegai", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -13296,8 +13900,9 @@ "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": null, - "range_ft": 20, - "long_range_ft": 60, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -13317,9 +13922,10 @@ "parent": "tob_vine-troll-skeleton_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -13339,9 +13945,10 @@ "parent": "tob_vine-troll-skeleton_claw", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -13361,9 +13968,10 @@ "parent": "tob_void-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -13383,9 +13991,10 @@ "parent": "tob_voidling_tendril", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -13405,9 +14014,10 @@ "parent": "tob_wampus-cat_claws", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -13427,9 +14037,10 @@ "parent": "tob_water-leaper_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -13449,9 +14060,10 @@ "parent": "tob_water-leaper_stinger", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -13472,8 +14084,9 @@ "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": null, - "range_ft": 30, + "range_ft": 30.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -13493,9 +14106,10 @@ "parent": "tob_weaving-spider_trimming-blade", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -13516,8 +14130,9 @@ "attack_type": "WEAPON", "to_hit_mod": 8, "reach_ft": null, - "range_ft": 60, - "long_range_ft": 180, + "range_ft": 60.0, + "long_range_ft": 180.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -13537,9 +14152,10 @@ "parent": "tob_weeping-treant_slam", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -13559,9 +14175,10 @@ "parent": "tob_wharfling-swarm_bites", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 0, + "reach_ft": 0.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, "damage_die_type": "D6", @@ -13581,9 +14198,10 @@ "parent": "tob_wharfling_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -13603,9 +14221,10 @@ "parent": "tob_white-ape_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -13625,9 +14244,10 @@ "parent": "tob_white-ape_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -13648,8 +14268,9 @@ "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": null, - "range_ft": 30, + "range_ft": 30.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -13669,9 +14290,10 @@ "parent": "tob_wolf-reaver-dwarf_battleaxe", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -13691,9 +14313,10 @@ "parent": "tob_wolf-reaver-dwarf_dagger", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -13713,9 +14336,10 @@ "parent": "tob_wolf-reaver-dwarf_spear", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -13735,9 +14359,10 @@ "parent": "tob_wolf-spirit-swarm_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -13757,9 +14382,10 @@ "parent": "tob_wormhearted-suffragan_helminth-infestation", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -13779,9 +14405,10 @@ "parent": "tob_wyrmling-wind-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -13801,9 +14428,10 @@ "parent": "tob_xanka_absorb", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -13823,9 +14451,10 @@ "parent": "tob_xhkarsh_claw", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -13845,9 +14474,10 @@ "parent": "tob_xhkarsh_stinger", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -13867,9 +14497,10 @@ "parent": "tob_ychen-bannog_gore", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D8", @@ -13889,9 +14520,10 @@ "parent": "tob_ychen-bannog_stomp", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D10", @@ -13911,9 +14543,10 @@ "parent": "tob_young-cave-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -13933,9 +14566,10 @@ "parent": "tob_young-cave-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -13955,9 +14589,10 @@ "parent": "tob_young-flame-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -13977,9 +14612,10 @@ "parent": "tob_young-flame-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -13999,9 +14635,10 @@ "parent": "tob_young-mithral-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -14021,9 +14658,10 @@ "parent": "tob_young-mithral-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -14043,9 +14681,10 @@ "parent": "tob_young-sea-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -14065,9 +14704,10 @@ "parent": "tob_young-sea-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -14087,9 +14727,10 @@ "parent": "tob_young-spinosaurus_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D12", @@ -14109,9 +14750,10 @@ "parent": "tob_young-spinosaurus_claw", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -14131,9 +14773,10 @@ "parent": "tob_young-void-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -14153,9 +14796,10 @@ "parent": "tob_young-void-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -14175,9 +14819,10 @@ "parent": "tob_young-wind-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -14197,9 +14842,10 @@ "parent": "tob_young-wind-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -14219,9 +14865,10 @@ "parent": "tob_zanskaran-viper_bite", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -14241,9 +14888,10 @@ "parent": "tob_zaratan_bite", "attack_type": "WEAPON", "to_hit_mod": 18, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -14263,9 +14911,10 @@ "parent": "tob_zaratan_flipper", "attack_type": "WEAPON", "to_hit_mod": 18, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -14285,9 +14934,10 @@ "parent": "tob_zimwi_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -14307,9 +14957,10 @@ "parent": "tob_zimwi_claws", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -14329,9 +14980,10 @@ "parent": "tob_zmey-headling_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D12", @@ -14351,9 +15003,10 @@ "parent": "tob_zmey-headling_claws", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D12", @@ -14373,9 +15026,10 @@ "parent": "tob_zmey-headling_tail", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 20, + "reach_ft": 20.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -14395,9 +15049,10 @@ "parent": "tob_zmey_bite", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D12", @@ -14417,9 +15072,10 @@ "parent": "tob_zmey_claws", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D12", @@ -14439,9 +15095,10 @@ "parent": "tob_zmey_tail", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 20, + "reach_ft": 20.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", diff --git a/data/v2/kobold-press/tob2/CreatureActionAttack.json b/data/v2/kobold-press/tob2/CreatureActionAttack.json index 551645be..ca7d51ee 100644 --- a/data/v2/kobold-press/tob2/CreatureActionAttack.json +++ b/data/v2/kobold-press/tob2/CreatureActionAttack.json @@ -7,9 +7,10 @@ "parent": "tob2_a-mi-kuk_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -29,9 +30,10 @@ "parent": "tob2_a-mi-kuk_grasping-claw", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -51,9 +53,10 @@ "parent": "tob2_aalpamac_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -73,9 +76,10 @@ "parent": "tob2_aalpamac_claws", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -95,9 +99,10 @@ "parent": "tob2_abbanith-giant_thumb-claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -117,9 +122,10 @@ "parent": "tob2_adult-boreal-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -139,9 +145,10 @@ "parent": "tob2_adult-boreal-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -161,9 +168,10 @@ "parent": "tob2_adult-boreal-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -183,9 +191,10 @@ "parent": "tob2_adult-imperial-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -205,9 +214,10 @@ "parent": "tob2_adult-imperial-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -227,9 +237,10 @@ "parent": "tob2_adult-imperial-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -250,8 +261,9 @@ "attack_type": "SPELL", "to_hit_mod": 7, "reach_ft": null, - "range_ft": 100, + "range_ft": 100.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D8) force", @@ -271,9 +283,10 @@ "parent": "tob2_ahu-nixta-cataphract_bashing-rod", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -293,9 +306,10 @@ "parent": "tob2_ahu-nixta-cataphract_pronged-scepter", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -315,9 +329,10 @@ "parent": "tob2_ahu-nixta-cataphract_whirring-blades", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D4", @@ -337,9 +352,10 @@ "parent": "tob2_ahu-nixta-drudge_whirring-blades", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -359,9 +375,10 @@ "parent": "tob2_akaasit_arm-blade", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -381,9 +398,10 @@ "parent": "tob2_akhlut_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6", @@ -403,9 +421,10 @@ "parent": "tob2_akhlut_tail-slam", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D8", @@ -425,9 +444,10 @@ "parent": "tob2_alchemical-skunk_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -447,9 +467,10 @@ "parent": "tob2_alchemical-skunk_claws", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -469,9 +490,10 @@ "parent": "tob2_alligator-turtle_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -491,9 +513,10 @@ "parent": "tob2_alligator_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -513,9 +536,10 @@ "parent": "tob2_alpha-fish_headbutt", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -535,9 +559,10 @@ "parent": "tob2_amber-ooze_pseudopod", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -557,9 +582,10 @@ "parent": "tob2_ancient-boreal-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 16, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -579,9 +605,10 @@ "parent": "tob2_ancient-boreal-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 16, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -601,9 +628,10 @@ "parent": "tob2_ancient-boreal-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 16, - "reach_ft": 20, + "reach_ft": 20.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -623,9 +651,10 @@ "parent": "tob2_ancient-imperial-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 18, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -645,9 +674,10 @@ "parent": "tob2_ancient-imperial-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 18, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -667,9 +697,10 @@ "parent": "tob2_ancient-imperial-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 18, - "reach_ft": 20, + "reach_ft": 20.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -689,9 +720,10 @@ "parent": "tob2_angel-of-judgment_greataxe", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D12", @@ -711,9 +743,10 @@ "parent": "tob2_angelic-enforcer_bite", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -733,9 +766,10 @@ "parent": "tob2_angelic-enforcer_greatsword", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6", @@ -755,9 +789,10 @@ "parent": "tob2_animated-bearskin-rug_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -777,9 +812,10 @@ "parent": "tob2_animated-bearskin-rug_claws", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -799,9 +835,10 @@ "parent": "tob2_animated-bearskin-rug_envelop", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": null, "damage_die_type": null, @@ -821,9 +858,10 @@ "parent": "tob2_aniwye_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -843,9 +881,10 @@ "parent": "tob2_aniwye_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -866,8 +905,9 @@ "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": null, - "range_ft": 60, - "long_range_ft": 240, + "range_ft": 60.0, + "long_range_ft": 240.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -887,9 +927,10 @@ "parent": "tob2_aniwye_slam", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -909,9 +950,10 @@ "parent": "tob2_anzu_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -931,9 +973,10 @@ "parent": "tob2_anzu_talons", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -953,9 +996,10 @@ "parent": "tob2_apaxrusl_slam", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -975,9 +1019,10 @@ "parent": "tob2_arachnocrat_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -997,9 +1042,10 @@ "parent": "tob2_arachnocrat_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -1019,9 +1065,10 @@ "parent": "tob2_ash-phoenix_ash-talons", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -1041,9 +1088,10 @@ "parent": "tob2_ashen-custodian_cleansing-strike", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -1063,9 +1111,10 @@ "parent": "tob2_astral-devourer_hungering-serpents", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 0, + "reach_ft": 0.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8) piercing", @@ -1085,9 +1134,10 @@ "parent": "tob2_astri_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -1107,9 +1157,10 @@ "parent": "tob2_attercroppe_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -1129,9 +1180,10 @@ "parent": "tob2_august-rooster_talon", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -1151,9 +1203,10 @@ "parent": "tob2_aurora-horribilis_blistering-touch", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -1173,9 +1226,10 @@ "parent": "tob2_avalanche-screamer_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -1195,9 +1249,10 @@ "parent": "tob2_avalanche-screamer_leg", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -1217,9 +1272,10 @@ "parent": "tob2_aviere_claw", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -1239,9 +1295,10 @@ "parent": "tob2_avulzor_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -1261,9 +1318,10 @@ "parent": "tob2_avulzor_synchronized-bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D4", @@ -1283,9 +1341,10 @@ "parent": "tob2_backup-holler-spider_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -1306,8 +1365,9 @@ "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 20, - "long_range_ft": 60, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -1327,9 +1387,10 @@ "parent": "tob2_baliri-demon_bite", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -1349,9 +1410,10 @@ "parent": "tob2_baliri-demon_pincers", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -1371,9 +1433,10 @@ "parent": "tob2_balloon-spider_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -1394,8 +1457,9 @@ "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": null, - "range_ft": 40, - "long_range_ft": 80, + "range_ft": 40.0, + "long_range_ft": 80.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": null, "damage_die_type": null, @@ -1415,9 +1479,10 @@ "parent": "tob2_barometz_gore", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -1437,9 +1502,10 @@ "parent": "tob2_barometz_hooves", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -1459,9 +1525,10 @@ "parent": "tob2_bearing-golem_slam", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -1482,8 +1549,9 @@ "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": null, - "range_ft": 30, - "long_range_ft": 120, + "range_ft": 30.0, + "long_range_ft": 120.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -1503,9 +1571,10 @@ "parent": "tob2_befouled-weird_slam", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -1525,9 +1594,10 @@ "parent": "tob2_black-crier_bell", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -1547,9 +1617,10 @@ "parent": "tob2_bleakheart_disheartening-touch", "attack_type": "SPELL", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6) psychic", @@ -1569,9 +1640,10 @@ "parent": "tob2_bloated-ghoul_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -1591,9 +1663,10 @@ "parent": "tob2_bloated-ghoul_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -1614,8 +1687,9 @@ "attack_type": "SPELL", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 20, - "long_range_ft": 60, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4) poison", @@ -1635,9 +1709,10 @@ "parent": "tob2_blood-imp_sting", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -1657,9 +1732,10 @@ "parent": "tob2_bloodsapper_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -1679,9 +1755,10 @@ "parent": "tob2_bloodsapper_draining-tongue", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -1701,9 +1778,10 @@ "parent": "tob2_bloodstone-sentinel_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -1723,9 +1801,10 @@ "parent": "tob2_bone-colossus_razor-teeth", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 0, + "reach_ft": 0.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, "damage_die_type": "D6) piercing", @@ -1745,9 +1824,10 @@ "parent": "tob2_bone-colossus_thunderous-slam", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D10", @@ -1767,9 +1847,10 @@ "parent": "tob2_boneshard-wraith_spectral-claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D8", @@ -1789,9 +1870,10 @@ "parent": "tob2_bonespitter_bite", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -1812,8 +1894,9 @@ "attack_type": "WEAPON", "to_hit_mod": 13, "reach_ft": null, - "range_ft": 30, - "long_range_ft": 120, + "range_ft": 30.0, + "long_range_ft": 120.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -1833,9 +1916,10 @@ "parent": "tob2_boreal-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -1855,9 +1939,10 @@ "parent": "tob2_boreas-chosen_spear", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -1877,9 +1962,10 @@ "parent": "tob2_brachyura-shambler_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -1900,8 +1986,9 @@ "attack_type": "WEAPON", "to_hit_mod": 3, "reach_ft": null, - "range_ft": 20, - "long_range_ft": 60, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -1921,9 +2008,10 @@ "parent": "tob2_brain-hood_slam", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -1943,9 +2031,10 @@ "parent": "tob2_brimstone-locusthound_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -1966,8 +2055,9 @@ "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 20, - "long_range_ft": 60, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -1987,9 +2077,10 @@ "parent": "tob2_broodmother-of-leng_claw", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -2010,8 +2101,9 @@ "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": null, - "range_ft": 60, + "range_ft": 60.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D8", @@ -2031,9 +2123,10 @@ "parent": "tob2_bulbous-violet_tendril", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -2053,9 +2146,10 @@ "parent": "tob2_bull_gore", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -2075,9 +2169,10 @@ "parent": "tob2_bull_hooves", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -2097,9 +2192,10 @@ "parent": "tob2_butatsch_slam", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -2119,9 +2215,10 @@ "parent": "tob2_cackling-skeleton_slam", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -2141,9 +2238,10 @@ "parent": "tob2_cadaver-sprite_corrupting-bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -2164,8 +2262,9 @@ "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": null, - "range_ft": 40, - "long_range_ft": 160, + "range_ft": 40.0, + "long_range_ft": 160.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -2185,9 +2284,10 @@ "parent": "tob2_caltrop-golem_slam", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -2208,8 +2308,9 @@ "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": null, - "range_ft": 30, - "long_range_ft": 120, + "range_ft": 30.0, + "long_range_ft": 120.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -2229,9 +2330,10 @@ "parent": "tob2_carnivorous-ship_bite", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -2251,9 +2353,10 @@ "parent": "tob2_carnivorous-sod_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -2273,9 +2376,10 @@ "parent": "tob2_carnivorous-sod_grass-trip", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": null, "damage_die_type": null, @@ -2295,9 +2399,10 @@ "parent": "tob2_carrier-mosquito_impaling-proboscis", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -2317,9 +2422,10 @@ "parent": "tob2_catscratch_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -2339,9 +2445,10 @@ "parent": "tob2_catscratch_claws", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -2361,9 +2468,10 @@ "parent": "tob2_cave-drake_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -2384,8 +2492,9 @@ "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 30, + "range_ft": 30.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": null, "damage_die_type": null, @@ -2405,9 +2514,10 @@ "parent": "tob2_cave-drake_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -2427,9 +2537,10 @@ "parent": "tob2_cave-giant-shaman_club", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D4", @@ -2450,8 +2561,9 @@ "attack_type": "WEAPON", "to_hit_mod": 13, "reach_ft": null, - "range_ft": 60, - "long_range_ft": 240, + "range_ft": 60.0, + "long_range_ft": 240.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D10", @@ -2471,9 +2583,10 @@ "parent": "tob2_cave-giant-shaman_tusks", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6", @@ -2493,9 +2606,10 @@ "parent": "tob2_cave-goat_ram", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -2515,9 +2629,10 @@ "parent": "tob2_cavefish-zombie_slam", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -2537,9 +2652,10 @@ "parent": "tob2_chameleon-hydra_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -2559,9 +2675,10 @@ "parent": "tob2_chameleon-hydra_sticky-tongue", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 50, + "reach_ft": 50.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": null, "damage_die_type": null, @@ -2581,9 +2698,10 @@ "parent": "tob2_chamrosh_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -2603,9 +2721,10 @@ "parent": "tob2_chatterlome_chisel", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -2626,8 +2745,9 @@ "attack_type": "WEAPON", "to_hit_mod": 11, "reach_ft": null, - "range_ft": 60, - "long_range_ft": 240, + "range_ft": 60.0, + "long_range_ft": 240.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -2647,9 +2767,10 @@ "parent": "tob2_cherufe_slam", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6", @@ -2669,9 +2790,10 @@ "parent": "tob2_chill-haunt_shivering-touch", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -2691,9 +2813,10 @@ "parent": "tob2_chimeric-phantom_maddening-grasp", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -2713,9 +2836,10 @@ "parent": "tob2_chronomatic-enhancer_slam", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -2735,9 +2859,10 @@ "parent": "tob2_clockwork-archon_transforming-weapon", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D10", @@ -2757,9 +2882,10 @@ "parent": "tob2_clockwork-leech_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -2779,9 +2905,10 @@ "parent": "tob2_clockwork-leech_tail", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -2801,9 +2928,10 @@ "parent": "tob2_clockwork-mantis_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -2823,9 +2951,10 @@ "parent": "tob2_clockwork-mantis_serrated-blade", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -2845,9 +2974,10 @@ "parent": "tob2_clockwork-tiger_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -2867,9 +2997,10 @@ "parent": "tob2_clockwork-tiger_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -2889,9 +3020,10 @@ "parent": "tob2_collais_gore", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -2911,9 +3043,10 @@ "parent": "tob2_collais_hooves", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -2933,9 +3066,10 @@ "parent": "tob2_compsognathus_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -2955,9 +3089,10 @@ "parent": "tob2_conjoined-queen_slam", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -2977,9 +3112,10 @@ "parent": "tob2_conjoined-queen_sting", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -2999,9 +3135,10 @@ "parent": "tob2_corpse-worm_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -3021,9 +3158,10 @@ "parent": "tob2_crimson-shambler_slam", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -3044,8 +3182,9 @@ "attack_type": "WEAPON", "to_hit_mod": 2, "reach_ft": null, - "range_ft": 20, - "long_range_ft": 60, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6) aci", @@ -3065,9 +3204,10 @@ "parent": "tob2_crinaea_dagger", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -3087,9 +3227,10 @@ "parent": "tob2_crocotta_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -3109,9 +3250,10 @@ "parent": "tob2_crocotta_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -3131,9 +3273,10 @@ "parent": "tob2_cryoceros_gore", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -3153,9 +3296,10 @@ "parent": "tob2_cryoceros_stomp", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -3176,8 +3320,9 @@ "attack_type": "SPELL", "to_hit_mod": 7, "reach_ft": null, - "range_ft": 30, + "range_ft": 30.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6) psychic", @@ -3197,9 +3342,10 @@ "parent": "tob2_crystalline-monolith_slam", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -3219,9 +3365,10 @@ "parent": "tob2_culicoid_needle-claws", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -3241,9 +3388,10 @@ "parent": "tob2_culicoid_proboscis", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -3263,9 +3411,10 @@ "parent": "tob2_dancing-foliage_serrated-leaves", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -3285,9 +3434,10 @@ "parent": "tob2_darakhul-captain_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -3307,9 +3457,10 @@ "parent": "tob2_darakhul-captain_claw", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -3330,8 +3481,9 @@ "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": null, - "range_ft": 100, - "long_range_ft": 400, + "range_ft": 100.0, + "long_range_ft": 400.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -3351,9 +3503,10 @@ "parent": "tob2_darakhul-captain_longsword", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -3373,9 +3526,10 @@ "parent": "tob2_darakhul-spy_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -3395,9 +3549,10 @@ "parent": "tob2_darakhul-spy_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -3418,8 +3573,9 @@ "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": null, - "range_ft": 80, - "long_range_ft": 320, + "range_ft": 80.0, + "long_range_ft": 320.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -3439,9 +3595,10 @@ "parent": "tob2_darakhul-spy_shortsword", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -3461,9 +3618,10 @@ "parent": "tob2_de-ogen_burning-touch", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6) fire", @@ -3483,9 +3641,10 @@ "parent": "tob2_death-barque_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -3505,9 +3664,10 @@ "parent": "tob2_death-barque_tail-smash", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -3527,9 +3687,10 @@ "parent": "tob2_death-shroud-golem_smothering-slam", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -3549,9 +3710,10 @@ "parent": "tob2_death-vulture_beak", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -3571,9 +3733,10 @@ "parent": "tob2_death-vulture_talons", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -3594,8 +3757,9 @@ "attack_type": "SPELL", "to_hit_mod": 7, "reach_ft": null, - "range_ft": 60, + "range_ft": 60.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6) necrotic", @@ -3615,9 +3779,10 @@ "parent": "tob2_deathspeaker_rake", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -3637,9 +3802,10 @@ "parent": "tob2_deathweaver_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -3660,8 +3826,9 @@ "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": null, - "range_ft": 40, - "long_range_ft": 80, + "range_ft": 40.0, + "long_range_ft": 80.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "Dby webbing an", @@ -3681,9 +3848,10 @@ "parent": "tob2_deep-troll_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -3703,9 +3871,10 @@ "parent": "tob2_deep-troll_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -3725,9 +3894,10 @@ "parent": "tob2_derendian-moth-abomination_beak", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10) piercing", @@ -3747,9 +3917,10 @@ "parent": "tob2_derendian-moth-abomination_tentacle", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 20, + "reach_ft": 20.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -3769,9 +3940,10 @@ "parent": "tob2_derro-explorer_scimitar", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -3792,8 +3964,9 @@ "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": null, - "range_ft": 80, - "long_range_ft": 320, + "range_ft": 80.0, + "long_range_ft": 320.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -3813,9 +3986,10 @@ "parent": "tob2_derro-guard_aklys", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": 10, - "long_range_ft": 30, + "reach_ft": 5.0, + "range_ft": 10.0, + "long_range_ft": 30.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -3836,8 +4010,9 @@ "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 80, - "long_range_ft": 320, + "range_ft": 80.0, + "long_range_ft": 320.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -3857,9 +4032,10 @@ "parent": "tob2_derro-shadowseeker_dagger", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -3880,8 +4056,9 @@ "attack_type": "WEAPON", "to_hit_mod": 8, "reach_ft": null, - "range_ft": 80, - "long_range_ft": 320, + "range_ft": 80.0, + "long_range_ft": 320.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -3901,9 +4078,10 @@ "parent": "tob2_destroyer_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -3923,9 +4101,10 @@ "parent": "tob2_destroyer_greataxe", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D12", @@ -3945,9 +4124,10 @@ "parent": "tob2_destroyer_spear", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -3967,9 +4147,10 @@ "parent": "tob2_dimensional-shambler_claw", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -3989,9 +4170,10 @@ "parent": "tob2_diminution-drake_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -4011,9 +4193,10 @@ "parent": "tob2_diminution-drake_in-one-bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": null, "damage_die_type": null, @@ -4033,9 +4216,10 @@ "parent": "tob2_diminution-drake_stinger", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -4055,9 +4239,10 @@ "parent": "tob2_dragonflesh-golem_bite", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -4077,9 +4262,10 @@ "parent": "tob2_dragonflesh-golem_claws", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -4100,8 +4286,9 @@ "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": null, - "range_ft": 30, - "long_range_ft": 60, + "range_ft": 30.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, "damage_die_type": "D6) force", @@ -4121,9 +4308,10 @@ "parent": "tob2_dread-walker-excavator_foreleg", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -4144,8 +4332,9 @@ "attack_type": "WEAPON", "to_hit_mod": 3, "reach_ft": null, - "range_ft": 80, - "long_range_ft": 320, + "range_ft": 80.0, + "long_range_ft": 320.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -4165,9 +4354,10 @@ "parent": "tob2_edjet-initiate_shortsword", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -4187,9 +4377,10 @@ "parent": "tob2_egret-harpy_spear", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -4209,9 +4400,10 @@ "parent": "tob2_egret-harpy_talons", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -4231,9 +4423,10 @@ "parent": "tob2_eldritch-ooze_void-infused-pseudopod", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -4253,9 +4446,10 @@ "parent": "tob2_emperors-hyena_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -4275,9 +4469,10 @@ "parent": "tob2_empusa_claw", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -4297,9 +4492,10 @@ "parent": "tob2_empusa_kick", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -4319,9 +4515,10 @@ "parent": "tob2_eonic-savant_time-warping-staff", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -4341,9 +4538,10 @@ "parent": "tob2_fabricator_disassembling-slam", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -4363,9 +4561,10 @@ "parent": "tob2_faceless-wanderer_claws", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -4385,9 +4584,10 @@ "parent": "tob2_falsifier-fog_chill", "attack_type": "SPELL", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6) col", @@ -4407,9 +4607,10 @@ "parent": "tob2_fane-spirit_touch-of-forgetfulness", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -4429,9 +4630,10 @@ "parent": "tob2_far-dorocha_dirk", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -4451,9 +4653,10 @@ "parent": "tob2_felid-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -4473,9 +4676,10 @@ "parent": "tob2_felid-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -4495,9 +4699,10 @@ "parent": "tob2_fennec-fox_bite", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -4518,8 +4723,9 @@ "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": null, - "range_ft": 120, - "long_range_ft": 600, + "range_ft": 120.0, + "long_range_ft": 600.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -4542,6 +4748,7 @@ "reach_ft": null, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": null, "damage_die_type": null, @@ -4561,9 +4768,10 @@ "parent": "tob2_fey-revenant_shortsword", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -4583,9 +4791,10 @@ "parent": "tob2_fire-infused-water-elemental_slam", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -4605,9 +4814,10 @@ "parent": "tob2_flayed-wraith_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -4628,8 +4838,9 @@ "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": null, - "range_ft": 60, - "long_range_ft": 180, + "range_ft": 60.0, + "long_range_ft": 180.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -4649,9 +4860,10 @@ "parent": "tob2_fleshdreg_slam", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -4671,9 +4883,10 @@ "parent": "tob2_fleshspurned_phantasmal-bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6", @@ -4693,9 +4906,10 @@ "parent": "tob2_flithidir_beak", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -4715,9 +4929,10 @@ "parent": "tob2_flithidir_dagger", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -4737,9 +4952,10 @@ "parent": "tob2_forest-emperor_acidic-claw", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -4759,9 +4975,10 @@ "parent": "tob2_forest-emperor_tail", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -4781,9 +4998,10 @@ "parent": "tob2_forest-falcon_beak", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -4803,9 +5021,10 @@ "parent": "tob2_fragrant-one_phrenic-antennae", "attack_type": "SPELL", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -4825,9 +5044,10 @@ "parent": "tob2_frost-mole_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -4847,9 +5067,10 @@ "parent": "tob2_galidroo_bite", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -4869,9 +5090,10 @@ "parent": "tob2_galidroo_claw", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -4891,9 +5113,10 @@ "parent": "tob2_galidroo_tail", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -4913,9 +5136,10 @@ "parent": "tob2_garlicle_walking-staff", "attack_type": "WEAPON", "to_hit_mod": 0, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6 – 2) blu", @@ -4935,9 +5159,10 @@ "parent": "tob2_gaunt-one_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -4957,9 +5182,10 @@ "parent": "tob2_gaunt-one_extract-heart", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, "damage_die_type": "D8) piercing", @@ -4979,9 +5205,10 @@ "parent": "tob2_ghillie-dubh_slam", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -5001,9 +5228,10 @@ "parent": "tob2_ghoul-bat_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -5023,9 +5251,10 @@ "parent": "tob2_ghul_claws", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -5045,9 +5274,10 @@ "parent": "tob2_giant-armadillo_claws", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -5067,9 +5297,10 @@ "parent": "tob2_giant-bombardier-beetle_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -5090,8 +5321,9 @@ "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 15, - "long_range_ft": 30, + "range_ft": 15.0, + "long_range_ft": 30.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -5111,9 +5343,10 @@ "parent": "tob2_giant-frilled-lizard_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -5133,9 +5366,10 @@ "parent": "tob2_giant-frilled-lizard_tail", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -5155,9 +5389,10 @@ "parent": "tob2_giant-honey-bee_sting", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -5177,9 +5412,10 @@ "parent": "tob2_giant-husk_smother", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": null, "damage_die_type": null, @@ -5199,9 +5435,10 @@ "parent": "tob2_giant-leech_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -5221,9 +5458,10 @@ "parent": "tob2_giant-mongoose_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -5243,9 +5481,10 @@ "parent": "tob2_giant-snow-beetle_pincer", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -5265,9 +5504,10 @@ "parent": "tob2_giant-water-scorpion_claws", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -5287,9 +5527,10 @@ "parent": "tob2_giant-water-scorpion_proboscis", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -5309,9 +5550,10 @@ "parent": "tob2_glacial-corrupter_glacial-touch", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -5332,8 +5574,9 @@ "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 150, - "long_range_ft": 600, + "range_ft": 150.0, + "long_range_ft": 600.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -5353,9 +5596,10 @@ "parent": "tob2_glacial-corrupter_longsword", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -5375,9 +5619,10 @@ "parent": "tob2_glacier-behemoth_bite", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D12", @@ -5397,9 +5642,10 @@ "parent": "tob2_gorao-ka_sack-of-coins", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -5419,9 +5665,10 @@ "parent": "tob2_graknork_bite", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -5441,9 +5688,10 @@ "parent": "tob2_graknork_claw", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -5464,8 +5712,9 @@ "attack_type": "WEAPON", "to_hit_mod": 9, "reach_ft": null, - "range_ft": 30, - "long_range_ft": 120, + "range_ft": 30.0, + "long_range_ft": 120.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, "damage_die_type": "D6) col", @@ -5485,9 +5734,10 @@ "parent": "tob2_graveyard-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -5507,9 +5757,10 @@ "parent": "tob2_graveyard-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -5529,9 +5780,10 @@ "parent": "tob2_gray-orc_claws", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -5551,9 +5803,10 @@ "parent": "tob2_great-gray-owl_talons", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -5573,9 +5826,10 @@ "parent": "tob2_greater-ghast-of-leng_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -5595,9 +5849,10 @@ "parent": "tob2_greater-ghast-of-leng_claws", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -5617,9 +5872,10 @@ "parent": "tob2_greater-lunarchidna_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -5639,9 +5895,10 @@ "parent": "tob2_greater-lunarchidna_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -5662,8 +5919,9 @@ "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": null, - "range_ft": 20, - "long_range_ft": 60, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6) blu", @@ -5683,9 +5941,10 @@ "parent": "tob2_greed-swarm_coin-slam", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 0, + "reach_ft": 0.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D4) blu", @@ -5705,9 +5964,10 @@ "parent": "tob2_grimmlet-swarm_crystal-edges", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 0, + "reach_ft": 0.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D8) slashing", @@ -5727,9 +5987,10 @@ "parent": "tob2_grimmlet_crystal-edge", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -5749,9 +6010,10 @@ "parent": "tob2_grove-bear_claws", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -5771,9 +6033,10 @@ "parent": "tob2_gulper-behemoth_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, "damage_die_type": "D10", @@ -5793,9 +6056,10 @@ "parent": "tob2_haleshi_stupefying-touch", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -5815,9 +6079,10 @@ "parent": "tob2_hantu-penanggal_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -5837,9 +6102,10 @@ "parent": "tob2_hantu-penanggal_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -5859,9 +6125,10 @@ "parent": "tob2_hantu-penanggal_entrails", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -5881,9 +6148,10 @@ "parent": "tob2_hantu-penanggal_rapier", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -5903,9 +6171,10 @@ "parent": "tob2_harbinger-of-wrath_slam", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, "damage_die_type": "D8", @@ -5925,9 +6194,10 @@ "parent": "tob2_harefolk_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -5947,9 +6217,10 @@ "parent": "tob2_harefolk_shortsword", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -5970,8 +6241,9 @@ "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 30, - "long_range_ft": 120, + "range_ft": 30.0, + "long_range_ft": 120.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -5991,9 +6263,10 @@ "parent": "tob2_hebi-doku_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -6013,9 +6286,10 @@ "parent": "tob2_hebi-doku_disabling-sting", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D4", @@ -6036,8 +6310,9 @@ "attack_type": "WEAPON", "to_hit_mod": 8, "reach_ft": null, - "range_ft": 30, - "long_range_ft": 90, + "range_ft": 30.0, + "long_range_ft": 90.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6) poison", @@ -6057,9 +6332,10 @@ "parent": "tob2_heggarna_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -6079,9 +6355,10 @@ "parent": "tob2_helashruu_shard-whip", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -6101,9 +6378,10 @@ "parent": "tob2_herald-of-slaughter_cleaver", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -6124,8 +6402,9 @@ "attack_type": "SPELL", "to_hit_mod": 8, "reach_ft": null, - "range_ft": 120, + "range_ft": 120.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D8) fire", @@ -6145,9 +6424,10 @@ "parent": "tob2_herald-of-slaughter_gore", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -6167,9 +6447,10 @@ "parent": "tob2_herald-of-the-void_void-claw", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -6190,8 +6471,9 @@ "attack_type": "SPELL", "to_hit_mod": 8, "reach_ft": null, - "range_ft": 120, + "range_ft": 120.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8) col", @@ -6211,9 +6493,10 @@ "parent": "tob2_hoard-drake_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -6233,9 +6516,10 @@ "parent": "tob2_hoard-drake_claws", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -6255,9 +6539,10 @@ "parent": "tob2_hoarfrost-drake_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -6277,9 +6562,10 @@ "parent": "tob2_hoarfrost-drake_claw", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -6299,9 +6585,10 @@ "parent": "tob2_hodag_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -6321,9 +6608,10 @@ "parent": "tob2_hodag_claws", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -6343,9 +6631,10 @@ "parent": "tob2_hodag_horns", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -6365,9 +6654,10 @@ "parent": "tob2_hodag_tail", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -6387,9 +6677,10 @@ "parent": "tob2_holler-spider_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -6410,8 +6701,9 @@ "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 20, - "long_range_ft": 60, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -6431,9 +6723,10 @@ "parent": "tob2_hongaek_vaporous-tentacle", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D8) poison", @@ -6453,9 +6746,10 @@ "parent": "tob2_hooden-horse_blade-of-retribution", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -6475,9 +6769,10 @@ "parent": "tob2_howler-baboon_fist", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -6498,8 +6793,9 @@ "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 20, - "long_range_ft": 60, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -6519,9 +6815,10 @@ "parent": "tob2_huecambra_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -6541,9 +6838,10 @@ "parent": "tob2_huecambra_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -6563,9 +6861,10 @@ "parent": "tob2_huecambra_tail", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -6585,9 +6884,10 @@ "parent": "tob2_huli-jing_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -6607,9 +6907,10 @@ "parent": "tob2_huli-jing_jade-dagger", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -6629,9 +6930,10 @@ "parent": "tob2_hverhuldra_steaming-fist", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -6651,9 +6953,10 @@ "parent": "tob2_ice-bogie_icicle-fist", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "Dgeoning", @@ -6674,8 +6977,9 @@ "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 30, - "long_range_ft": 120, + "range_ft": 30.0, + "long_range_ft": 120.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4) col", @@ -6695,9 +6999,10 @@ "parent": "tob2_ice-elemental_encase-in-ice", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6) col", @@ -6717,9 +7022,10 @@ "parent": "tob2_ice-elemental_ice-claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D8", @@ -6740,8 +7046,9 @@ "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 10, - "long_range_ft": 30, + "range_ft": 10.0, + "long_range_ft": 30.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -6761,9 +7068,10 @@ "parent": "tob2_ichor-ooze_pseudopod", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -6783,9 +7091,10 @@ "parent": "tob2_ikuchi_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -6805,9 +7114,10 @@ "parent": "tob2_ikuchi_constrict", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 20, + "reach_ft": 20.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -6827,9 +7137,10 @@ "parent": "tob2_illhveli-kembingur_bite", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, "damage_die_type": "D6", @@ -6849,9 +7160,10 @@ "parent": "tob2_illhveli-kembingur_tail", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 20, + "reach_ft": 20.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D8", @@ -6871,9 +7183,10 @@ "parent": "tob2_illhveli-nauthveli_bite", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, "damage_die_type": "D6", @@ -6893,9 +7206,10 @@ "parent": "tob2_illhveli-nauthveli_tail", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 20, + "reach_ft": 20.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D8", @@ -6915,9 +7229,10 @@ "parent": "tob2_imperial-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -6937,9 +7252,10 @@ "parent": "tob2_incarnate-gloom_despairing-touch", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6", @@ -6959,9 +7275,10 @@ "parent": "tob2_infernal-centaur_dagger", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -6981,9 +7298,10 @@ "parent": "tob2_infernal-swarm_bites", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 0, + "reach_ft": 0.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 8, "damage_die_type": "D6) piercing", @@ -7004,8 +7322,9 @@ "attack_type": "WEAPON", "to_hit_mod": 8, "reach_ft": null, - "range_ft": 30, - "long_range_ft": 120, + "range_ft": 30.0, + "long_range_ft": 120.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -7025,9 +7344,10 @@ "parent": "tob2_infernal-swarm_scimitar", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -7047,9 +7367,10 @@ "parent": "tob2_infernal-swarm_slam", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6", @@ -7069,9 +7390,10 @@ "parent": "tob2_initiate-of-the-elder-elementals_dagger", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -7092,8 +7414,9 @@ "attack_type": "SPELL", "to_hit_mod": 5, "reach_ft": null, - "range_ft": 60, + "range_ft": 60.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6) aci", @@ -7114,8 +7437,9 @@ "attack_type": "SPELL", "to_hit_mod": 5, "reach_ft": null, - "range_ft": 60, + "range_ft": 60.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6) ra", @@ -7135,9 +7459,10 @@ "parent": "tob2_jack-of-strings_mocking-slap", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -7157,9 +7482,10 @@ "parent": "tob2_kachlian_tentacle", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -7179,9 +7505,10 @@ "parent": "tob2_kamaitachi_sickle-paw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6", @@ -7202,8 +7529,9 @@ "attack_type": "WEAPON", "to_hit_mod": 8, "reach_ft": null, - "range_ft": 30, - "long_range_ft": 120, + "range_ft": 30.0, + "long_range_ft": 120.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -7223,9 +7551,10 @@ "parent": "tob2_kaveph_smash", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -7245,9 +7574,10 @@ "parent": "tob2_keelbreaker-crab_pincer", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -7267,9 +7597,10 @@ "parent": "tob2_kelp-drake_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -7289,9 +7620,10 @@ "parent": "tob2_kelp-drake_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -7311,9 +7643,10 @@ "parent": "tob2_kelp-eel_kelp-tendril", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 50, + "reach_ft": 50.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": null, "damage_die_type": null, @@ -7333,9 +7666,10 @@ "parent": "tob2_kelp-eel_slam", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, "damage_die_type": "D8", @@ -7355,9 +7689,10 @@ "parent": "tob2_keyhole-dragonette_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -7377,9 +7712,10 @@ "parent": "tob2_keyhole-dragonette_scale-slash", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -7399,9 +7735,10 @@ "parent": "tob2_kezai_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -7421,9 +7758,10 @@ "parent": "tob2_kezai_poison-barb", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": 30, - "long_range_ft": 120, + "reach_ft": 5.0, + "range_ft": 30.0, + "long_range_ft": 120.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -7443,9 +7781,10 @@ "parent": "tob2_khodumodumo_bite", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, "damage_die_type": "D8", @@ -7465,9 +7804,10 @@ "parent": "tob2_khodumodumo_tongue", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 50, + "reach_ft": 50.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": null, "damage_die_type": null, @@ -7487,9 +7827,10 @@ "parent": "tob2_kirikari_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D12", @@ -7509,9 +7850,10 @@ "parent": "tob2_kirikari_slam", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -7531,9 +7873,10 @@ "parent": "tob2_knight-ab-errant_fist", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -7553,9 +7896,10 @@ "parent": "tob2_knight-ab-errant_sweeping-maul", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6", @@ -7575,9 +7919,10 @@ "parent": "tob2_kobold-spellclerk_dagger", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -7597,9 +7942,10 @@ "parent": "tob2_kobold-war-machine_spiked-wheel", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -7620,8 +7966,9 @@ "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": null, - "range_ft": 120, + "range_ft": 120.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6) fire", @@ -7641,9 +7988,10 @@ "parent": "tob2_lambent-witchfyre_blazing-touch", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -7663,9 +8011,10 @@ "parent": "tob2_lantern-beetle_horn", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": null, "damage_die_type": null, @@ -7686,8 +8035,9 @@ "attack_type": "WEAPON", "to_hit_mod": 13, "reach_ft": null, - "range_ft": 60, - "long_range_ft": 240, + "range_ft": 60.0, + "long_range_ft": 240.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, "damage_die_type": "D6) fire", @@ -7707,9 +8057,10 @@ "parent": "tob2_lava-keeper_slam", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D8", @@ -7729,9 +8080,10 @@ "parent": "tob2_lazavik_reed-whip", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -7751,9 +8103,10 @@ "parent": "tob2_leech-swarm_bites", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 0, + "reach_ft": 0.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6) piercing", @@ -7773,9 +8126,10 @@ "parent": "tob2_lesser-lunarchidna_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -7795,9 +8149,10 @@ "parent": "tob2_lesser-lunarchidna_claw", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -7817,9 +8172,10 @@ "parent": "tob2_light-drake_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -7839,9 +8195,10 @@ "parent": "tob2_liminal-drake_bite", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -7861,9 +8218,10 @@ "parent": "tob2_liminal-drake_claw", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -7883,9 +8241,10 @@ "parent": "tob2_locksmith_key-blade", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -7905,9 +8264,10 @@ "parent": "tob2_luck-leech_biting-arms", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -7927,9 +8287,10 @@ "parent": "tob2_lunarian_halberd", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -7949,9 +8310,10 @@ "parent": "tob2_lymarien-swarm_claws", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 0, + "reach_ft": 0.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, "damage_die_type": "D6) slashing", @@ -7971,9 +8333,10 @@ "parent": "tob2_lymarien_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -7993,9 +8356,10 @@ "parent": "tob2_mad-piper_screaming-flail", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -8015,9 +8379,10 @@ "parent": "tob2_magma-octopus_tentacle", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -8037,9 +8402,10 @@ "parent": "tob2_magnetic-elemental_slam", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -8059,9 +8425,10 @@ "parent": "tob2_major-malleable_flesh-tendril", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6", @@ -8081,9 +8448,10 @@ "parent": "tob2_manggus_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -8103,9 +8471,10 @@ "parent": "tob2_manggus_greataxe", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D12", @@ -8125,9 +8494,10 @@ "parent": "tob2_mangrove-treant_slam", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -8147,9 +8517,10 @@ "parent": "tob2_mari-lwyd_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -8169,9 +8540,10 @@ "parent": "tob2_mari-lwyd_hooves", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -8191,9 +8563,10 @@ "parent": "tob2_marsh-dire_claws", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -8213,9 +8586,10 @@ "parent": "tob2_marsh-dire_strangling-vine", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -8235,9 +8609,10 @@ "parent": "tob2_massive-malleable_flesh-tendril", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, "damage_die_type": "D6", @@ -8257,9 +8632,10 @@ "parent": "tob2_mead-archon_maul", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -8280,8 +8656,9 @@ "attack_type": "SPELL", "to_hit_mod": 7, "reach_ft": null, - "range_ft": 60, + "range_ft": 60.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6) ra", @@ -8301,9 +8678,10 @@ "parent": "tob2_mei-jiao-shou_head-bash", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -8323,9 +8701,10 @@ "parent": "tob2_mei-jiao-shou_stomp", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D10", @@ -8345,9 +8724,10 @@ "parent": "tob2_mineral-ooze_pseudopod", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -8367,9 +8747,10 @@ "parent": "tob2_minor-malleable_flesh-tendril", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -8389,9 +8770,10 @@ "parent": "tob2_moderate-malleable_flesh-tendril", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -8412,8 +8794,9 @@ "attack_type": "SPELL", "to_hit_mod": 7, "reach_ft": null, - "range_ft": 150, + "range_ft": 150.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6) ra", @@ -8433,9 +8816,10 @@ "parent": "tob2_moonkite_wing-buffet", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -8456,8 +8840,9 @@ "attack_type": "WEAPON", "to_hit_mod": 13, "reach_ft": null, - "range_ft": 60, - "long_range_ft": 240, + "range_ft": 60.0, + "long_range_ft": 240.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D10", @@ -8477,9 +8862,10 @@ "parent": "tob2_mountain-dryad_slam", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D8", @@ -8500,8 +8886,9 @@ "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": null, - "range_ft": 150, - "long_range_ft": 600, + "range_ft": 150.0, + "long_range_ft": 600.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -8521,9 +8908,10 @@ "parent": "tob2_mountain-strider_headbutt", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -8543,9 +8931,10 @@ "parent": "tob2_mountain-strider_spear", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -8565,9 +8954,10 @@ "parent": "tob2_murgrik_bite", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -8587,9 +8977,10 @@ "parent": "tob2_murgrik_tentacles", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -8610,8 +9001,9 @@ "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": null, - "range_ft": 30, - "long_range_ft": 60, + "range_ft": 30.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -8631,9 +9023,10 @@ "parent": "tob2_mydnari_shortsword", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -8654,8 +9047,9 @@ "attack_type": "SPELL", "to_hit_mod": 5, "reach_ft": null, - "range_ft": 50, + "range_ft": 50.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8) necrotic", @@ -8675,9 +9069,10 @@ "parent": "tob2_mystic_void-claw", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -8697,9 +9092,10 @@ "parent": "tob2_naizu-ha_dagger-legs", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -8719,9 +9115,10 @@ "parent": "tob2_naizu-ha_scissor-claws", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -8741,9 +9138,10 @@ "parent": "tob2_naizu-ha_scythe-tail", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -8763,9 +9161,10 @@ "parent": "tob2_narshark_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -8785,9 +9184,10 @@ "parent": "tob2_nephirron-devil_bite", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D8", @@ -8807,9 +9207,10 @@ "parent": "tob2_nephirron-devil_claw", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -8830,8 +9231,9 @@ "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": null, - "range_ft": 30, - "long_range_ft": 120, + "range_ft": 30.0, + "long_range_ft": 120.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -8851,9 +9253,10 @@ "parent": "tob2_nharyth_spined-slap", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -8873,9 +9276,10 @@ "parent": "tob2_noth-norren_slam", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D10", @@ -8896,8 +9300,9 @@ "attack_type": "WEAPON", "to_hit_mod": 8, "reach_ft": null, - "range_ft": 60, - "long_range_ft": 180, + "range_ft": 60.0, + "long_range_ft": 180.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D8", @@ -8917,9 +9322,10 @@ "parent": "tob2_nyctli-swarm_stingers", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 0, + "reach_ft": 0.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, "damage_die_type": "D6) piercing", @@ -8939,9 +9345,10 @@ "parent": "tob2_nyctli_stingers", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "Damage plus 3 (1", @@ -8961,9 +9368,10 @@ "parent": "tob2_oasis-keeper_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -8983,9 +9391,10 @@ "parent": "tob2_oasis-keeper_stinger", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -9005,9 +9414,10 @@ "parent": "tob2_ogrepede_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -9027,9 +9437,10 @@ "parent": "tob2_ogrepede_slam", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -9049,9 +9460,10 @@ "parent": "tob2_one-horned-ogre_greatsword", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6", @@ -9071,9 +9483,10 @@ "parent": "tob2_one-horned-ogre_javelin", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, - "range_ft": 30, - "long_range_ft": 120, + "reach_ft": 5.0, + "range_ft": 30.0, + "long_range_ft": 120.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -9094,8 +9507,9 @@ "attack_type": "SPELL", "to_hit_mod": 8, "reach_ft": null, - "range_ft": 30, - "long_range_ft": 120, + "range_ft": 30.0, + "long_range_ft": 120.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -9115,9 +9529,10 @@ "parent": "tob2_onyx-magistrate_scepter", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -9137,9 +9552,10 @@ "parent": "tob2_ophidiotaur_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -9159,9 +9575,10 @@ "parent": "tob2_ophidiotaur_poisoned-glaive", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -9181,9 +9598,10 @@ "parent": "tob2_ophinix_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -9203,9 +9621,10 @@ "parent": "tob2_ophinix_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -9225,9 +9644,10 @@ "parent": "tob2_orniraptor_peck", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -9248,8 +9668,9 @@ "attack_type": "WEAPON", "to_hit_mod": 3, "reach_ft": null, - "range_ft": 20, - "long_range_ft": 60, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -9269,9 +9690,10 @@ "parent": "tob2_orphan-of-the-black_slam", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -9291,9 +9713,10 @@ "parent": "tob2_ortifex_slam", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -9314,8 +9737,9 @@ "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": null, - "range_ft": 20, - "long_range_ft": 60, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -9335,9 +9759,10 @@ "parent": "tob2_otterfolk_dagger", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -9357,9 +9782,10 @@ "parent": "tob2_overshadow_strength-drain", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -9379,9 +9805,10 @@ "parent": "tob2_pal-rai-yuk_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D10", @@ -9401,9 +9828,10 @@ "parent": "tob2_pale-screamer_tentacle", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -9423,9 +9851,10 @@ "parent": "tob2_parzzval_oversized-fist", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -9445,9 +9874,10 @@ "parent": "tob2_parzzval_oversized-maw", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -9467,9 +9897,10 @@ "parent": "tob2_peat-mammoth_slam", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -9489,9 +9920,10 @@ "parent": "tob2_pestilence-swarm_diseased-bites", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 0, + "reach_ft": 0.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D4) piercing", @@ -9512,8 +9944,9 @@ "attack_type": "WEAPON", "to_hit_mod": 8, "reach_ft": null, - "range_ft": 60, - "long_range_ft": 240, + "range_ft": 60.0, + "long_range_ft": 240.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -9533,9 +9966,10 @@ "parent": "tob2_phase-giant_spiked-fist", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -9556,8 +9990,9 @@ "attack_type": "WEAPON", "to_hit_mod": 9, "reach_ft": null, - "range_ft": 30, - "long_range_ft": 120, + "range_ft": 30.0, + "long_range_ft": 120.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -9577,9 +10012,10 @@ "parent": "tob2_pine-doom_slam", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -9599,9 +10035,10 @@ "parent": "tob2_plague-spirit_censer", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -9621,9 +10058,10 @@ "parent": "tob2_plague-spirit_enfeebling-touch", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6) necrotic", @@ -9643,9 +10081,10 @@ "parent": "tob2_primal-oozer_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -9665,9 +10104,10 @@ "parent": "tob2_psychic-vampire_unarmed-strike", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -9687,9 +10127,10 @@ "parent": "tob2_pustulent-shambler_pseudopod", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -9709,9 +10150,10 @@ "parent": "tob2_putrescent-slime_pseudopod", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -9731,9 +10173,10 @@ "parent": "tob2_qiqirn_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -9753,9 +10196,10 @@ "parent": "tob2_quickserpent_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -9775,9 +10219,10 @@ "parent": "tob2_quickserpent_constrict", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -9797,9 +10242,10 @@ "parent": "tob2_quoreq_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -9819,9 +10265,10 @@ "parent": "tob2_quoreq_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -9841,9 +10288,10 @@ "parent": "tob2_radiant-spark-swarm_radiant-sparks", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 0, + "reach_ft": 0.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8) ra", @@ -9863,9 +10311,10 @@ "parent": "tob2_repository_slash", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -9885,9 +10334,10 @@ "parent": "tob2_resinous-frog_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -9907,9 +10357,10 @@ "parent": "tob2_resinous-frog_tongue", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -9929,9 +10380,10 @@ "parent": "tob2_righteous-sentinel_slam", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -9952,8 +10404,9 @@ "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 20, - "long_range_ft": 60, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -9973,9 +10426,10 @@ "parent": "tob2_rock-roach_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -9995,9 +10449,10 @@ "parent": "tob2_rotsam-swarm_diseased-bites", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 0, + "reach_ft": 0.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D4) piercing", @@ -10017,9 +10472,10 @@ "parent": "tob2_rotsam_diseased-bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -10039,9 +10495,10 @@ "parent": "tob2_rum-lord_ale-tap-scepter", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -10061,9 +10518,10 @@ "parent": "tob2_rum-lord_broken-bottle-shiv", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -10083,9 +10541,10 @@ "parent": "tob2_runeswarm_cutting-runes", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 0, + "reach_ft": 0.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, "damage_die_type": "D4) slashing", @@ -10105,9 +10564,10 @@ "parent": "tob2_salamander-monarch_tail", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -10127,9 +10587,10 @@ "parent": "tob2_salamander-monarch_trident", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -10149,9 +10610,10 @@ "parent": "tob2_sanddrift-drake_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -10171,9 +10633,10 @@ "parent": "tob2_sanddrift-drake_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -10193,9 +10656,10 @@ "parent": "tob2_sapphire-jelly_freezing-slam", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -10215,9 +10679,10 @@ "parent": "tob2_sarsaok_gore", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -10237,9 +10702,10 @@ "parent": "tob2_sarsaok_hooves", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -10259,9 +10725,10 @@ "parent": "tob2_sasori-fukurowashi_claw", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -10281,9 +10748,10 @@ "parent": "tob2_sasori-fukurowashi_sting", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -10303,9 +10771,10 @@ "parent": "tob2_sasori-fukurowashi_talons", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -10325,9 +10794,10 @@ "parent": "tob2_sasquatch_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -10347,9 +10817,10 @@ "parent": "tob2_sasquatch_fist", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -10370,8 +10841,9 @@ "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": null, - "range_ft": 20, - "long_range_ft": 60, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -10391,9 +10863,10 @@ "parent": "tob2_scarlet-ibis_beak", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -10413,9 +10886,10 @@ "parent": "tob2_scarlet-ibis_talons", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -10435,9 +10909,10 @@ "parent": "tob2_scribe-devil_claws", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -10457,9 +10932,10 @@ "parent": "tob2_scribe-devil_tail", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -10479,9 +10955,10 @@ "parent": "tob2_scrofin_fist", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -10501,9 +10978,10 @@ "parent": "tob2_scrofin_gore", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -10523,9 +11001,10 @@ "parent": "tob2_scroll-mummy_spell-siphoning-fist", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -10545,9 +11024,10 @@ "parent": "tob2_servant-of-the-unsated-god_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -10568,8 +11048,9 @@ "attack_type": "WEAPON", "to_hit_mod": 3, "reach_ft": null, - "range_ft": 80, - "long_range_ft": 320, + "range_ft": 80.0, + "long_range_ft": 320.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -10589,9 +11070,10 @@ "parent": "tob2_servant-of-the-unsated-god_mace-of-the-devourer", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -10611,9 +11093,10 @@ "parent": "tob2_shadow-boxer_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -10633,9 +11116,10 @@ "parent": "tob2_shadow-boxer_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -10655,9 +11139,10 @@ "parent": "tob2_shadow-giant_tenebrous-talons", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -10677,9 +11162,10 @@ "parent": "tob2_shadow-of-death_shortsword", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -10699,9 +11185,10 @@ "parent": "tob2_shiftshroom_slam", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -10721,9 +11208,10 @@ "parent": "tob2_shimmer-seal_tusk", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -10743,9 +11231,10 @@ "parent": "tob2_shriekbat_bite", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -10765,9 +11254,10 @@ "parent": "tob2_shriekbat_talons", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -10787,9 +11277,10 @@ "parent": "tob2_shukankor_beak", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -10809,9 +11300,10 @@ "parent": "tob2_shukankor_claws", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -10831,9 +11323,10 @@ "parent": "tob2_shurale_battleaxe", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -10853,9 +11346,10 @@ "parent": "tob2_shurale_gore", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -10876,8 +11370,9 @@ "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": null, - "range_ft": 20, - "long_range_ft": 40, + "range_ft": 20.0, + "long_range_ft": 40.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D4", @@ -10897,9 +11392,10 @@ "parent": "tob2_silenal_tankard", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -10919,9 +11415,10 @@ "parent": "tob2_silver-dragon-wyrmling-skeleton_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -10941,9 +11438,10 @@ "parent": "tob2_snake-with-a-hundred-mage-hands_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -10963,9 +11461,10 @@ "parent": "tob2_snow-giant_club", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D4", @@ -10986,8 +11485,9 @@ "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": null, - "range_ft": 60, - "long_range_ft": 240, + "range_ft": 60.0, + "long_range_ft": 240.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -11007,9 +11507,10 @@ "parent": "tob2_snow-terror_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -11029,9 +11530,10 @@ "parent": "tob2_somberweave_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -11051,9 +11553,10 @@ "parent": "tob2_somberweave_claws", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -11074,8 +11577,9 @@ "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": null, - "range_ft": 30, - "long_range_ft": 60, + "range_ft": 30.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": null, "damage_die_type": null, @@ -11095,9 +11599,10 @@ "parent": "tob2_spawn-of-alquam_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -11118,8 +11623,9 @@ "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": null, - "range_ft": 30, + "range_ft": 30.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -11139,9 +11645,10 @@ "parent": "tob2_spawn-of-alquam_talon", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -11161,9 +11668,10 @@ "parent": "tob2_spawn-of-hriggala_bite", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -11183,9 +11691,10 @@ "parent": "tob2_spawn-of-hriggala_tendrils", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -11205,9 +11714,10 @@ "parent": "tob2_spawn-of-rhopalocerex_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -11227,9 +11737,10 @@ "parent": "tob2_spawn-of-rhopalocerex_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, - "range_ft": 5, + "reach_ft": 5.0, + "range_ft": 5.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -11249,9 +11760,10 @@ "parent": "tob2_spellhound_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -11271,9 +11783,10 @@ "parent": "tob2_sporous-crab_claw", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -11293,9 +11806,10 @@ "parent": "tob2_spurred-water-skate_stabbing-forelimbs", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -11315,9 +11829,10 @@ "parent": "tob2_ssadar_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -11337,9 +11852,10 @@ "parent": "tob2_ssadar_longsword", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -11360,8 +11876,9 @@ "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 60, + "range_ft": 60.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6) fire", @@ -11382,8 +11899,9 @@ "attack_type": "SPELL", "to_hit_mod": 8, "reach_ft": null, - "range_ft": 120, + "range_ft": 120.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 7, "damage_die_type": "D6) force", @@ -11403,9 +11921,10 @@ "parent": "tob2_stellar-rorqual_head-smash", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D10", @@ -11425,9 +11944,10 @@ "parent": "tob2_stellar-rorqual_tail-slap", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D8", @@ -11448,8 +11968,9 @@ "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 20, - "long_range_ft": 60, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -11469,9 +11990,10 @@ "parent": "tob2_stone-creeper_thorned-vine", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -11492,8 +12014,9 @@ "attack_type": "SPELL", "to_hit_mod": 5, "reach_ft": null, - "range_ft": 120, + "range_ft": 120.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6) lightning", @@ -11513,9 +12036,10 @@ "parent": "tob2_storm-maiden_thunderous-slam", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -11535,9 +12059,10 @@ "parent": "tob2_stormboar_tusk", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -11557,9 +12082,10 @@ "parent": "tob2_strobing-fungus_chemical-burn", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": 30, - "long_range_ft": 120, + "reach_ft": 5.0, + "range_ft": 30.0, + "long_range_ft": 120.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -11579,9 +12105,10 @@ "parent": "tob2_sulsha_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -11602,8 +12129,9 @@ "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": null, - "range_ft": 20, - "long_range_ft": 60, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -11623,9 +12151,10 @@ "parent": "tob2_sulsha_slam", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -11645,9 +12174,10 @@ "parent": "tob2_sulsha_tail-spur", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -11667,9 +12197,10 @@ "parent": "tob2_swamp-lily_root", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -11689,9 +12220,10 @@ "parent": "tob2_swamp-naga_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -11711,9 +12243,10 @@ "parent": "tob2_swamp-naga_constrict", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -11733,9 +12266,10 @@ "parent": "tob2_swampgas-bubble_pseudopod", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -11755,9 +12289,10 @@ "parent": "tob2_swampgas-bubble_suffocating-grasp", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -11777,9 +12312,10 @@ "parent": "tob2_swarm-of-compsognathus_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 0, + "reach_ft": 0.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6) piercing", @@ -11799,9 +12335,10 @@ "parent": "tob2_swarm-of-esteron_bites", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 0, + "reach_ft": 0.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6) piercing", @@ -11822,8 +12359,9 @@ "attack_type": "WEAPON", "to_hit_mod": 2, "reach_ft": null, - "range_ft": 60, + "range_ft": 60.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6) necrotic", @@ -11843,9 +12381,10 @@ "parent": "tob2_tar-ooze_pseudopod", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -11865,9 +12404,10 @@ "parent": "tob2_tembril_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -11887,9 +12427,10 @@ "parent": "tob2_tembril_claws", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -11909,9 +12450,10 @@ "parent": "tob2_tetomatli_head-slam", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -11931,9 +12473,10 @@ "parent": "tob2_tetomatli_wing-buffet", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -11953,9 +12496,10 @@ "parent": "tob2_thin-giant_claw", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 20, + "reach_ft": 20.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -11975,9 +12519,10 @@ "parent": "tob2_thin-giant_consuming-bite", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -11997,9 +12542,10 @@ "parent": "tob2_thornheart-guardian_barbed-greatsword", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -12019,9 +12565,10 @@ "parent": "tob2_thornheart-guardian_thorny-whip", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -12041,9 +12588,10 @@ "parent": "tob2_thrummren_gore", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D12", @@ -12063,9 +12611,10 @@ "parent": "tob2_thrummren_hooves", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -12085,9 +12634,10 @@ "parent": "tob2_tidehunter_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -12108,8 +12658,9 @@ "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": null, - "range_ft": 20, - "long_range_ft": 60, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": null, "damage_die_type": null, @@ -12129,9 +12680,10 @@ "parent": "tob2_timingila_bite", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D10", @@ -12151,9 +12703,10 @@ "parent": "tob2_timingila_flipper", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -12173,9 +12726,10 @@ "parent": "tob2_timingila_tail-slap", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 20, + "reach_ft": 20.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -12195,9 +12749,10 @@ "parent": "tob2_tormented-qiqirn_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -12217,9 +12772,10 @@ "parent": "tob2_transcendent-lunarchida_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -12239,9 +12795,10 @@ "parent": "tob2_transcendent-lunarchida_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -12261,9 +12818,10 @@ "parent": "tob2_tree-skinner_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -12283,9 +12841,10 @@ "parent": "tob2_tree-skinner_vine-whip", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 20, + "reach_ft": 20.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -12305,9 +12864,10 @@ "parent": "tob2_tricenatorus_bite", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D12", @@ -12327,9 +12887,10 @@ "parent": "tob2_tricenatorus_gore", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D8", @@ -12350,8 +12911,9 @@ "attack_type": "WEAPON", "to_hit_mod": 12, "reach_ft": null, - "range_ft": 150, - "long_range_ft": 300, + "range_ft": 150.0, + "long_range_ft": 300.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D8", @@ -12371,9 +12933,10 @@ "parent": "tob2_trollkin-raider_bite", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -12393,9 +12956,10 @@ "parent": "tob2_trollkin-raider_claw", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -12415,9 +12979,10 @@ "parent": "tob2_trollkin-raider_spear", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -12437,9 +13002,10 @@ "parent": "tob2_tzepharion_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -12459,9 +13025,10 @@ "parent": "tob2_tzepharion_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -12481,9 +13048,10 @@ "parent": "tob2_ulnorya_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -12503,9 +13071,10 @@ "parent": "tob2_ulnorya_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -12525,9 +13094,10 @@ "parent": "tob2_ulnorya_tentacle", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -12547,9 +13117,10 @@ "parent": "tob2_uridimmu_bite", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -12569,9 +13140,10 @@ "parent": "tob2_uridimmu_mace", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -12591,9 +13163,10 @@ "parent": "tob2_valkruung_claws", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -12613,9 +13186,10 @@ "parent": "tob2_vallowex_spiked-tongue", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -12635,9 +13209,10 @@ "parent": "tob2_vallowex_tail", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -12658,8 +13233,9 @@ "attack_type": "SPELL", "to_hit_mod": 5, "reach_ft": null, - "range_ft": 120, + "range_ft": 120.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6) thun", @@ -12679,9 +13255,10 @@ "parent": "tob2_vangsluagh_tentacle-lash", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -12701,9 +13278,10 @@ "parent": "tob2_vent-linnorm_bite", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -12723,9 +13301,10 @@ "parent": "tob2_vent-linnorm_tail", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 20, + "reach_ft": 20.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -12746,8 +13325,9 @@ "attack_type": "WEAPON", "to_hit_mod": 3, "reach_ft": null, - "range_ft": 100, - "long_range_ft": 400, + "range_ft": 100.0, + "long_range_ft": 400.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -12767,9 +13347,10 @@ "parent": "tob2_veteran-swordbreaker-skeleton_longsword", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -12789,9 +13370,10 @@ "parent": "tob2_veteran-swordbreaker-skeleton_shortsword", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -12811,9 +13393,10 @@ "parent": "tob2_vexxeh_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -12833,9 +13416,10 @@ "parent": "tob2_vexxeh_claw", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -12855,9 +13439,10 @@ "parent": "tob2_viiret_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -12877,9 +13462,10 @@ "parent": "tob2_viiret_vine", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D4", @@ -12899,9 +13485,10 @@ "parent": "tob2_vine-drake_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -12921,9 +13508,10 @@ "parent": "tob2_vine-drake_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -12943,9 +13531,10 @@ "parent": "tob2_vine-drake_vine-lash", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -12965,9 +13554,10 @@ "parent": "tob2_vine-golem_thorned-embrace", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -12987,9 +13577,10 @@ "parent": "tob2_vine-golem_thorned-vine", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 15, + "reach_ft": 15.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -13009,9 +13600,10 @@ "parent": "tob2_virtuoso-lich_artistic-flourish", "attack_type": "SPELL", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -13031,9 +13623,10 @@ "parent": "tob2_voidpool_pseudopod", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -13053,9 +13646,10 @@ "parent": "tob2_walled-horror_spectral-claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -13076,8 +13670,9 @@ "attack_type": "SPELL", "to_hit_mod": 7, "reach_ft": null, - "range_ft": 60, + "range_ft": 60.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D8) psychic", @@ -13097,9 +13692,10 @@ "parent": "tob2_wanyudo_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -13119,9 +13715,10 @@ "parent": "tob2_wardu_proboscis", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -13141,9 +13738,10 @@ "parent": "tob2_warmth-thief_freezing-claw", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -13163,9 +13761,10 @@ "parent": "tob2_web-zombie_slam", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -13186,8 +13785,9 @@ "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": null, - "range_ft": 80, - "long_range_ft": 320, + "range_ft": 80.0, + "long_range_ft": 320.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -13207,9 +13807,10 @@ "parent": "tob2_wereowl_shortsword", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -13229,9 +13830,10 @@ "parent": "tob2_wereowl_talon", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -13251,9 +13853,10 @@ "parent": "tob2_wereshark_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -13273,9 +13876,10 @@ "parent": "tob2_wereshark_trident", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -13295,9 +13899,10 @@ "parent": "tob2_werynax_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D10", @@ -13317,9 +13922,10 @@ "parent": "tob2_werynax_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -13339,9 +13945,10 @@ "parent": "tob2_wicked-skull_pseudopod", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -13361,9 +13968,10 @@ "parent": "tob2_willowhaunt_slam", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D12", @@ -13383,9 +13991,10 @@ "parent": "tob2_windy-wailer_chilling-touch", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -13406,8 +14015,9 @@ "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": null, - "range_ft": 120, + "range_ft": 120.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6) col", @@ -13427,9 +14037,10 @@ "parent": "tob2_winterghast_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -13449,9 +14060,10 @@ "parent": "tob2_winterghast_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -13471,9 +14083,10 @@ "parent": "tob2_wintergrim_fist", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -13493,9 +14106,10 @@ "parent": "tob2_wintergrim_handaxe", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, + "reach_ft": 5.0, + "range_ft": 20.0, + "long_range_ft": 60.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -13515,9 +14129,10 @@ "parent": "tob2_woe-siphon_siphoning-fist", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -13537,9 +14152,10 @@ "parent": "tob2_wood-ward_slam", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -13559,9 +14175,10 @@ "parent": "tob2_wraith-bear_life-drain", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, "damage_die_type": "D8", @@ -13581,9 +14198,10 @@ "parent": "tob2_xing-tian_battleaxe", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D8", @@ -13603,9 +14221,10 @@ "parent": "tob2_xing-tian_shield-slam", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, "damage_die_type": "D6", @@ -13626,8 +14245,9 @@ "attack_type": "SPELL", "to_hit_mod": 10, "reach_ft": null, - "range_ft": 60, + "range_ft": 60.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, "damage_die_type": "D8) ra", @@ -13647,9 +14267,10 @@ "parent": "tob2_yaojing_sacred-fist", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -13669,9 +14290,10 @@ "parent": "tob2_yathon_claw", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, - "range_ft": 5, + "reach_ft": 5.0, + "range_ft": 5.0, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -13691,9 +14313,10 @@ "parent": "tob2_yathon_greatsword", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, "damage_die_type": "D6", @@ -13713,9 +14336,10 @@ "parent": "tob2_yathon_longbow", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": 150, - "long_range_ft": 600, + "reach_ft": 5.0, + "range_ft": 150.0, + "long_range_ft": 600.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -13735,9 +14359,10 @@ "parent": "tob2_yavalnoi_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -13757,9 +14382,10 @@ "parent": "tob2_yavalnoi_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", @@ -13779,9 +14405,10 @@ "parent": "tob2_yavalnoi_tail", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -13801,9 +14428,10 @@ "parent": "tob2_young-blue-dragon-zombie_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -13823,9 +14451,10 @@ "parent": "tob2_young-blue-dragon-zombie_claw", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -13845,9 +14474,10 @@ "parent": "tob2_young-boreal-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -13867,9 +14497,10 @@ "parent": "tob2_young-boreal-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -13889,9 +14520,10 @@ "parent": "tob2_young-imperial-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D10", @@ -13911,9 +14543,10 @@ "parent": "tob2_young-imperial-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -13933,9 +14566,10 @@ "parent": "tob2_yowler_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -13955,9 +14589,10 @@ "parent": "tob2_yowler_claws", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -13977,9 +14612,10 @@ "parent": "tob2_yumerai_psychic-lash", "attack_type": "SPELL", "to_hit_mod": 5, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6) psychic", @@ -13999,9 +14635,10 @@ "parent": "tob2_zalikum_beak", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -14021,9 +14658,10 @@ "parent": "tob2_zalikum_talon", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", @@ -14043,9 +14681,10 @@ "parent": "tob2_zeitgeist_darting-rend", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10, + "reach_ft": 10.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D4", @@ -14065,9 +14704,10 @@ "parent": "tob2_zeitgeist_sluggish-slam", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -14087,9 +14727,10 @@ "parent": "tob2_zouyu_bite", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D8", @@ -14109,9 +14750,10 @@ "parent": "tob2_zouyu_claw", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, "damage_die_type": "D6", diff --git a/data/v2/wizards-of-the-coast/srd/CreatureActionAttack.json b/data/v2/wizards-of-the-coast/srd/CreatureActionAttack.json index ae42d4e1..53a7d0be 100644 --- a/data/v2/wizards-of-the-coast/srd/CreatureActionAttack.json +++ b/data/v2/wizards-of-the-coast/srd/CreatureActionAttack.json @@ -8,8 +8,9 @@ "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 30, - "long_range_ft": 120, + "range_ft": 30.0, + "long_range_ft": 120.0, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -29,9 +30,10 @@ "parent": "srd_elf-drow_shortsword", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D6", @@ -52,8 +54,9 @@ "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, - "range_ft": 30, - "long_range_ft": 120, + "range_ft": 30.0, + "long_range_ft": 120.0, + "distance_unit": null, "target_creature_only": true, "damage_die_count": 1, "damage_die_type": "D4", @@ -73,9 +76,10 @@ "parent": "srd_gnome-deep-svirfneblin_war-pick", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5, + "reach_ft": 5.0, "range_ft": null, "long_range_ft": null, + "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, "damage_die_type": "D8", From 958eee9c87c94e7d5164ea161b6bbf815ea618c2 Mon Sep 17 00:00:00 2001 From: August Johnson Date: Wed, 9 Oct 2024 11:19:20 -0500 Subject: [PATCH 02/11] Rename to standard approach. --- ...reatureactionattack_long_range_and_more.py | 28 +++++++++++++++++++ api_v2/models/creature.py | 6 ++-- 2 files changed, 31 insertions(+), 3 deletions(-) create mode 100644 api_v2/migrations/0003_rename_long_range_ft_creatureactionattack_long_range_and_more.py diff --git a/api_v2/migrations/0003_rename_long_range_ft_creatureactionattack_long_range_and_more.py b/api_v2/migrations/0003_rename_long_range_ft_creatureactionattack_long_range_and_more.py new file mode 100644 index 00000000..387f4c63 --- /dev/null +++ b/api_v2/migrations/0003_rename_long_range_ft_creatureactionattack_long_range_and_more.py @@ -0,0 +1,28 @@ +# Generated by Django 5.1.1 on 2024-10-09 16:18 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('api_v2', '0002_creatureactionattack_distance_unit_and_more'), + ] + + operations = [ + migrations.RenameField( + model_name='creatureactionattack', + old_name='long_range_ft', + new_name='long_range', + ), + migrations.RenameField( + model_name='creatureactionattack', + old_name='range_ft', + new_name='range', + ), + migrations.RenameField( + model_name='creatureactionattack', + old_name='reach_ft', + new_name='reach', + ), + ] diff --git a/api_v2/models/creature.py b/api_v2/models/creature.py index 9d99e238..8f538a82 100644 --- a/api_v2/models/creature.py +++ b/api_v2/models/creature.py @@ -235,9 +235,9 @@ class CreatureActionAttack(HasName): help_text='Attack roll modifier.' ) - reach_ft = distance_field() - range_ft = distance_field() - long_range_ft = distance_field() + reach = distance_field() + range = distance_field() + long_range = distance_field() distance_unit = distance_unit_field() def get_distance_unit(self): From 6478cfb1781fc063b2ca662e09f8018b287a8543 Mon Sep 17 00:00:00 2001 From: August Johnson Date: Wed, 9 Oct 2024 11:28:00 -0500 Subject: [PATCH 03/11] Progress, refactoring in creature. --- api_v2/models/creature.py | 3 + api_v2/serializers/creature.py | 101 ++------------------------------- 2 files changed, 8 insertions(+), 96 deletions(-) diff --git a/api_v2/models/creature.py b/api_v2/models/creature.py index 8f538a82..d0301347 100644 --- a/api_v2/models/creature.py +++ b/api_v2/models/creature.py @@ -213,6 +213,9 @@ def as_text(self): return text + def attacks(self): + return self.creatureactionattack_set + class CreatureActionAttack(HasName): """Describes an attack action used by a creature.""" diff --git a/api_v2/serializers/creature.py b/api_v2/serializers/creature.py index 88d2df7c..9e45a44b 100644 --- a/api_v2/serializers/creature.py +++ b/api_v2/serializers/creature.py @@ -10,96 +10,15 @@ from .size import SizeSerializer - -def calc_damage_amount(die_count, die_type, bonus): - '''Calculates the average value of a given die roll.''' - die_values = { - 'D4': 2.5, - 'D6': 3.5, - 'D8': 4.5, - 'D10': 5.5, - 'D12': 6.5, - 'D20': 10.5, - } - return floor(die_count * die_values[die_type] + bonus) - -def make_damage_obj(die_count, die_type, bonus, damage_type): - '''Structures an object in a way that can be consistently referenced.''' - if die_count: - return { - 'amount': calc_damage_amount( - die_count, - die_type, - bonus - ), - 'die_count': die_count, - 'die_type': die_type, - 'bonus': bonus, - 'type': damage_type, - } - return { - 'amount': 1, - 'type': damage_type, - } - -def make_attack_obj(attack): - '''Structures an object in a way that can be consistently referenced.''' - obj = { - 'name': attack.name, - 'attack_type': attack.attack_type, - 'to_hit_mod': attack.to_hit_mod, - } - - if attack.reach_ft: - obj['reach_ft'] = attack.reach_ft - if attack.range_ft: - obj['range_ft'] = attack.range_ft - if attack.long_range_ft: - obj['long_range_ft'] = attack.long_range_ft - - obj['target_creature_only'] = attack.target_creature_only - - if attack.damage_type: - obj['damage'] = make_damage_obj( - attack.damage_die_count, - attack.damage_die_type, - attack.damage_bonus, - attack.damage_type.key - ) - - if attack.extra_damage_type: - obj['extra_damage'] = make_damage_obj( - attack.extra_damage_die_count, - attack.extra_damage_die_type, - attack.extra_damage_bonus, - attack.extra_damage_type.key - ) - - return obj - -def make_action_obj(action): - '''Structures an object in a way that can be consistently referenced.''' - return action - obj = { 'name': action.name, 'desc': action.desc } - - match action.uses_type: - case 'PER_DAY': - obj['uses_per_day'] = action.uses_param - case 'RECHARGE_ON_ROLL': - obj['recharge_on_roll'] = action.uses_param - case 'RECHARGE_AFTER_REST': - obj['recharge_after_rest'] = True - - attacks = action.creatureactionattack_set.all() - - if len(attacks) > 0: - obj['attacks'] = [make_attack_obj(attack) for attack in attacks] - - return obj +class CreatureActionAttackSerializer(serializers.ModelSerializer): + class Meta: + model = models.CreatureActionAttack + fields = '__all__' class CreatureActionSerializer(serializers.ModelSerializer): key = serializers.ReadOnlyField() + attacks = CreatureActionAttackSerializer(many=True, context={'request': {}}) class Meta: model = models.CreatureAction @@ -235,14 +154,6 @@ def get_speed_all(self, creature): '''Implicit speed helper method.''' return creature.get_speed_all() -# def get_actions(self, creature): -# '''Actions helper method.''' -# result = [] -# for action in creature.creatureaction_set.all(): -# action_obj = make_action_obj(action) -# result.append(action_obj) -# return result - def get_challenge_rating_text(self, creature): return creature.challenge_rating_text @@ -259,5 +170,3 @@ class Meta: '''Meta options for serializer.''' model = models.CreatureSet fields = '__all__' - - From 40de875c9091c0ea5dce4114b1f94199bacbda83 Mon Sep 17 00:00:00 2001 From: August Johnson Date: Wed, 9 Oct 2024 11:38:35 -0500 Subject: [PATCH 04/11] distance on creature action attack working --- api_v2/models/creature.py | 4 ++-- api_v2/serializers/creature.py | 5 +++++ 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/api_v2/models/creature.py b/api_v2/models/creature.py index d0301347..5fe293ee 100644 --- a/api_v2/models/creature.py +++ b/api_v2/models/creature.py @@ -243,12 +243,12 @@ class CreatureActionAttack(HasName): long_range = distance_field() distance_unit = distance_unit_field() + @property def get_distance_unit(self): if self.distance_unit is None: - return self.document.distance_unit + return self.parent.parent.document.distance_unit return self.distance_unit - target_creature_only = models.BooleanField( help_text='If an attack can target creatures only and not objects.' ) diff --git a/api_v2/serializers/creature.py b/api_v2/serializers/creature.py index 9e45a44b..55386f56 100644 --- a/api_v2/serializers/creature.py +++ b/api_v2/serializers/creature.py @@ -11,10 +11,15 @@ class CreatureActionAttackSerializer(serializers.ModelSerializer): + + distance_unit = serializers.SerializerMethodField() + class Meta: model = models.CreatureActionAttack fields = '__all__' + def get_distance_unit(self, CreatureActionAttack): + return CreatureActionAttack.get_distance_unit class CreatureActionSerializer(serializers.ModelSerializer): key = serializers.ReadOnlyField() From 09ed0da8aa1eeba73f88e628337234bf109a9323 Mon Sep 17 00:00:00 2001 From: August Johnson Date: Wed, 9 Oct 2024 11:38:52 -0500 Subject: [PATCH 05/11] Whitespace. --- api_v2/serializers/creature.py | 1 + 1 file changed, 1 insertion(+) diff --git a/api_v2/serializers/creature.py b/api_v2/serializers/creature.py index 55386f56..638155ec 100644 --- a/api_v2/serializers/creature.py +++ b/api_v2/serializers/creature.py @@ -21,6 +21,7 @@ class Meta: def get_distance_unit(self, CreatureActionAttack): return CreatureActionAttack.get_distance_unit + class CreatureActionSerializer(serializers.ModelSerializer): key = serializers.ReadOnlyField() attacks = CreatureActionAttackSerializer(many=True, context={'request': {}}) From b27fec402bbd9abbbbb1043335f1d7dc9959606c Mon Sep 17 00:00:00 2001 From: August Johnson Date: Wed, 9 Oct 2024 11:40:38 -0500 Subject: [PATCH 06/11] Migrated space over to distance field. --- .../0004_alter_size_space_diameter.py | 19 + .../mmenag/CreatureActionAttack.json | 6042 ++++++++--------- 2 files changed, 3040 insertions(+), 3021 deletions(-) create mode 100644 api_v2/migrations/0004_alter_size_space_diameter.py diff --git a/api_v2/migrations/0004_alter_size_space_diameter.py b/api_v2/migrations/0004_alter_size_space_diameter.py new file mode 100644 index 00000000..c5c5ab8e --- /dev/null +++ b/api_v2/migrations/0004_alter_size_space_diameter.py @@ -0,0 +1,19 @@ +# Generated by Django 5.1.1 on 2024-10-09 16:39 + +import django.core.validators +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('api_v2', '0003_rename_long_range_ft_creatureactionattack_long_range_and_more'), + ] + + operations = [ + migrations.AlterField( + model_name='size', + name='space_diameter', + field=models.FloatField(blank=True, help_text='Used to measure distance.', null=True, validators=[django.core.validators.MinValueValidator(0)]), + ), + ] diff --git a/data/v2/en-publishing/mmenag/CreatureActionAttack.json b/data/v2/en-publishing/mmenag/CreatureActionAttack.json index 48874466..afe43159 100644 --- a/data/v2/en-publishing/mmenag/CreatureActionAttack.json +++ b/data/v2/en-publishing/mmenag/CreatureActionAttack.json @@ -7,9 +7,9 @@ "parent": "mmenag_aboleth-thrall_poison-ink-knife", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -30,9 +30,9 @@ "parent": "mmenag_aboleth_tentacle", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -53,9 +53,9 @@ "parent": "mmenag_abominable-snowman_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -76,9 +76,9 @@ "parent": "mmenag_accursed-guardian-naga_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -99,9 +99,9 @@ "parent": "mmenag_accursed-guardian-naga_spit-poison", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": null, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": null, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 10, @@ -122,9 +122,9 @@ "parent": "mmenag_accursed-spirit-naga_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -145,9 +145,9 @@ "parent": "mmenag_acolyte_club", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -168,9 +168,9 @@ "parent": "mmenag_adult-amethyst-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -191,9 +191,9 @@ "parent": "mmenag_adult-amethyst-dragon_claws", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -214,9 +214,9 @@ "parent": "mmenag_adult-black-dragon-lich_bite", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -237,9 +237,9 @@ "parent": "mmenag_adult-black-dragon-lich_claw", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -260,9 +260,9 @@ "parent": "mmenag_adult-black-dragon-lich_tail", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -283,9 +283,9 @@ "parent": "mmenag_adult-black-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -306,9 +306,9 @@ "parent": "mmenag_adult-black-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -329,9 +329,9 @@ "parent": "mmenag_adult-black-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -352,9 +352,9 @@ "parent": "mmenag_adult-blue-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -375,9 +375,9 @@ "parent": "mmenag_adult-blue-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -398,9 +398,9 @@ "parent": "mmenag_adult-blue-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -421,9 +421,9 @@ "parent": "mmenag_adult-brass-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -444,9 +444,9 @@ "parent": "mmenag_adult-brass-dragon_claws", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -467,9 +467,9 @@ "parent": "mmenag_adult-brass-dragon_staff", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -490,9 +490,9 @@ "parent": "mmenag_adult-brass-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -513,9 +513,9 @@ "parent": "mmenag_adult-bronze-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -536,9 +536,9 @@ "parent": "mmenag_adult-bronze-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -559,9 +559,9 @@ "parent": "mmenag_adult-bronze-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -582,9 +582,9 @@ "parent": "mmenag_adult-bronze-dragon_trident", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -605,9 +605,9 @@ "parent": "mmenag_adult-copper-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -628,9 +628,9 @@ "parent": "mmenag_adult-copper-dragon_claws", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -651,9 +651,9 @@ "parent": "mmenag_adult-copper-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -674,9 +674,9 @@ "parent": "mmenag_adult-copper-dragon_war-pick", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -697,9 +697,9 @@ "parent": "mmenag_adult-earth-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -720,9 +720,9 @@ "parent": "mmenag_adult-earth-dragon_slam", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -743,9 +743,9 @@ "parent": "mmenag_adult-emerald-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -766,9 +766,9 @@ "parent": "mmenag_adult-emerald-dragon_claws", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -789,9 +789,9 @@ "parent": "mmenag_adult-gold-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 18, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -812,9 +812,9 @@ "parent": "mmenag_adult-gold-dragon_claws", "attack_type": "WEAPON", "to_hit_mod": 18, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -835,9 +835,9 @@ "parent": "mmenag_adult-gold-dragon_greatsword", "attack_type": "WEAPON", "to_hit_mod": 18, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -858,9 +858,9 @@ "parent": "mmenag_adult-gold-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 18, - "reach_ft": 20.0, - "range_ft": null, - "long_range_ft": null, + "reach": 20.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -881,9 +881,9 @@ "parent": "mmenag_adult-green-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -904,9 +904,9 @@ "parent": "mmenag_adult-green-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -927,9 +927,9 @@ "parent": "mmenag_adult-green-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -950,9 +950,9 @@ "parent": "mmenag_adult-red-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -973,9 +973,9 @@ "parent": "mmenag_adult-red-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -996,9 +996,9 @@ "parent": "mmenag_adult-red-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1019,9 +1019,9 @@ "parent": "mmenag_adult-river-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -1042,9 +1042,9 @@ "parent": "mmenag_adult-river-dragon_claws", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -1065,9 +1065,9 @@ "parent": "mmenag_adult-sapphire-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -1088,9 +1088,9 @@ "parent": "mmenag_adult-sapphire-dragon_claws", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -1111,9 +1111,9 @@ "parent": "mmenag_adult-shadow-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -1134,9 +1134,9 @@ "parent": "mmenag_adult-shadow-dragon_claws", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -1157,9 +1157,9 @@ "parent": "mmenag_adult-silver-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -1180,9 +1180,9 @@ "parent": "mmenag_adult-silver-dragon_claws", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -1203,9 +1203,9 @@ "parent": "mmenag_adult-silver-dragon_rapier", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -1226,9 +1226,9 @@ "parent": "mmenag_adult-silver-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1249,9 +1249,9 @@ "parent": "mmenag_adult-white-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -1272,9 +1272,9 @@ "parent": "mmenag_adult-white-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -1295,9 +1295,9 @@ "parent": "mmenag_adult-white-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1318,9 +1318,9 @@ "parent": "mmenag_air-elemental_slam", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -1341,9 +1341,9 @@ "parent": "mmenag_aklea_maul", "attack_type": "WEAPON", "to_hit_mod": 17, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 8, @@ -1364,9 +1364,9 @@ "parent": "mmenag_alchemist_dagger", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -1387,9 +1387,9 @@ "parent": "mmenag_allosaurus_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -1410,9 +1410,9 @@ "parent": "mmenag_alpha-werewolf_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -1433,9 +1433,9 @@ "parent": "mmenag_alpha-werewolf_claw", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -1456,9 +1456,9 @@ "parent": "mmenag_alpha-werewolf_greatclub", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -1479,9 +1479,9 @@ "parent": "mmenag_amethyst-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1502,9 +1502,9 @@ "parent": "mmenag_ancient-aboleth_tentacle", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -1525,9 +1525,9 @@ "parent": "mmenag_ancient-amethyst-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -1548,9 +1548,9 @@ "parent": "mmenag_ancient-amethyst-dragon_claws", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -1571,9 +1571,9 @@ "parent": "mmenag_ancient-black-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -1594,9 +1594,9 @@ "parent": "mmenag_ancient-black-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -1617,9 +1617,9 @@ "parent": "mmenag_ancient-black-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 20.0, - "range_ft": null, - "long_range_ft": null, + "reach": 20.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -1640,9 +1640,9 @@ "parent": "mmenag_ancient-blue-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 17, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -1663,9 +1663,9 @@ "parent": "mmenag_ancient-blue-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 17, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -1686,9 +1686,9 @@ "parent": "mmenag_ancient-blue-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 17, - "reach_ft": 20.0, - "range_ft": null, - "long_range_ft": null, + "reach": 20.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -1709,9 +1709,9 @@ "parent": "mmenag_ancient-brass-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -1732,9 +1732,9 @@ "parent": "mmenag_ancient-brass-dragon_claws", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -1755,9 +1755,9 @@ "parent": "mmenag_ancient-brass-dragon_staff", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -1778,9 +1778,9 @@ "parent": "mmenag_ancient-brass-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 20.0, - "range_ft": null, - "long_range_ft": null, + "reach": 20.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -1801,9 +1801,9 @@ "parent": "mmenag_ancient-bronze-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 16, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -1824,9 +1824,9 @@ "parent": "mmenag_ancient-bronze-dragon_claws", "attack_type": "WEAPON", "to_hit_mod": 16, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -1847,9 +1847,9 @@ "parent": "mmenag_ancient-bronze-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 16, - "reach_ft": 20.0, - "range_ft": null, - "long_range_ft": null, + "reach": 20.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -1870,9 +1870,9 @@ "parent": "mmenag_ancient-bronze-dragon_trident", "attack_type": "WEAPON", "to_hit_mod": 16, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -1893,9 +1893,9 @@ "parent": "mmenag_ancient-copper-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -1916,9 +1916,9 @@ "parent": "mmenag_ancient-copper-dragon_claws", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -1939,9 +1939,9 @@ "parent": "mmenag_ancient-copper-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 20.0, - "range_ft": null, - "long_range_ft": null, + "reach": 20.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -1962,9 +1962,9 @@ "parent": "mmenag_ancient-copper-dragon_war-pick", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -1985,9 +1985,9 @@ "parent": "mmenag_ancient-earth-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, @@ -2008,9 +2008,9 @@ "parent": "mmenag_ancient-earth-dragon_slam", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -2031,9 +2031,9 @@ "parent": "mmenag_ancient-emerald-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -2054,9 +2054,9 @@ "parent": "mmenag_ancient-emerald-dragon_claws", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -2077,9 +2077,9 @@ "parent": "mmenag_ancient-gold-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 18, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -2100,9 +2100,9 @@ "parent": "mmenag_ancient-gold-dragon_claws", "attack_type": "WEAPON", "to_hit_mod": 18, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -2123,9 +2123,9 @@ "parent": "mmenag_ancient-gold-dragon_greatsword", "attack_type": "WEAPON", "to_hit_mod": 18, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -2146,9 +2146,9 @@ "parent": "mmenag_ancient-gold-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 18, - "reach_ft": 20.0, - "range_ft": null, - "long_range_ft": null, + "reach": 20.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -2169,9 +2169,9 @@ "parent": "mmenag_ancient-green-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -2192,9 +2192,9 @@ "parent": "mmenag_ancient-green-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -2215,9 +2215,9 @@ "parent": "mmenag_ancient-green-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 20.0, - "range_ft": null, - "long_range_ft": null, + "reach": 20.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -2238,9 +2238,9 @@ "parent": "mmenag_ancient-red-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 18, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -2261,9 +2261,9 @@ "parent": "mmenag_ancient-red-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 18, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -2284,9 +2284,9 @@ "parent": "mmenag_ancient-red-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 18, - "reach_ft": 20.0, - "range_ft": null, - "long_range_ft": null, + "reach": 20.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -2307,9 +2307,9 @@ "parent": "mmenag_ancient-river-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -2330,9 +2330,9 @@ "parent": "mmenag_ancient-river-dragon_claws", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -2353,9 +2353,9 @@ "parent": "mmenag_ancient-sapphire-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -2376,9 +2376,9 @@ "parent": "mmenag_ancient-sapphire-dragon_claws", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -2399,9 +2399,9 @@ "parent": "mmenag_ancient-shadow-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -2422,9 +2422,9 @@ "parent": "mmenag_ancient-shadow-dragon_claws", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -2445,9 +2445,9 @@ "parent": "mmenag_ancient-silver-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 17, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -2468,9 +2468,9 @@ "parent": "mmenag_ancient-silver-dragon_claws", "attack_type": "WEAPON", "to_hit_mod": 17, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -2491,9 +2491,9 @@ "parent": "mmenag_ancient-silver-dragon_rapier", "attack_type": "WEAPON", "to_hit_mod": 17, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2514,9 +2514,9 @@ "parent": "mmenag_ancient-silver-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 17, - "reach_ft": 20.0, - "range_ft": null, - "long_range_ft": null, + "reach": 20.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -2537,9 +2537,9 @@ "parent": "mmenag_ancient-white-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -2560,9 +2560,9 @@ "parent": "mmenag_ancient-white-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -2583,9 +2583,9 @@ "parent": "mmenag_ancient-white-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 20.0, - "range_ft": null, - "long_range_ft": null, + "reach": 20.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -2606,9 +2606,9 @@ "parent": "mmenag_animated-armor_weapon", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2629,9 +2629,9 @@ "parent": "mmenag_ankheg-queen_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -2652,9 +2652,9 @@ "parent": "mmenag_ankheg-queen_claws", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -2675,9 +2675,9 @@ "parent": "mmenag_ankheg-spawn_acid-spit", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": null, - "range_ft": 30.0, - "long_range_ft": null, + "reach": null, + "range": 30.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2698,9 +2698,9 @@ "parent": "mmenag_ankheg-spawn_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2721,9 +2721,9 @@ "parent": "mmenag_ankheg-spawn_claws", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2744,9 +2744,9 @@ "parent": "mmenag_ankheg_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -2767,9 +2767,9 @@ "parent": "mmenag_ankheg_claws", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -2790,9 +2790,9 @@ "parent": "mmenag_ankylosaurus_tail", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -2813,9 +2813,9 @@ "parent": "mmenag_ape_fists", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2836,9 +2836,9 @@ "parent": "mmenag_ape_rock", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 25.0, - "long_range_ft": 50.0, + "reach": null, + "range": 25.0, + "long_range": 50.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2859,9 +2859,9 @@ "parent": "mmenag_apprentice-mage_dagger", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2882,9 +2882,9 @@ "parent": "mmenag_apprentice-mage_fire-bolt", "attack_type": "SPELL", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 120.0, - "long_range_ft": null, + "reach": null, + "range": 120.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2905,9 +2905,9 @@ "parent": "mmenag_arcane-blademaster_composite-longbow", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": null, - "range_ft": 150.0, - "long_range_ft": 600.0, + "reach": null, + "range": 150.0, + "long_range": 600.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2928,9 +2928,9 @@ "parent": "mmenag_arcane-blademaster_fire-bolt", "attack_type": "SPELL", "to_hit_mod": 11, - "reach_ft": null, - "range_ft": 120.0, - "long_range_ft": null, + "reach": null, + "range": 120.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -2951,9 +2951,9 @@ "parent": "mmenag_arcane-blademaster_longsword", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2974,9 +2974,9 @@ "parent": "mmenag_arcane-blademaster_shocking-grasp", "attack_type": "SPELL", "to_hit_mod": 11, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -2997,9 +2997,9 @@ "parent": "mmenag_archfey_gleaming-longbow", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": null, - "range_ft": 150.0, - "long_range_ft": 600.0, + "reach": null, + "range": 150.0, + "long_range": 600.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3020,9 +3020,9 @@ "parent": "mmenag_archfey_glittering-scimitar", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3043,9 +3043,9 @@ "parent": "mmenag_archmage_dagger", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3066,9 +3066,9 @@ "parent": "mmenag_archmage_fire-bolt", "attack_type": "SPELL", "to_hit_mod": 9, - "reach_ft": null, - "range_ft": 120.0, - "long_range_ft": null, + "reach": null, + "range": 120.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -3089,9 +3089,9 @@ "parent": "mmenag_archpriest_mace", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3112,9 +3112,9 @@ "parent": "mmenag_ascetic-grandmaster_unarmed-strike", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3135,9 +3135,9 @@ "parent": "mmenag_assassin_hand-crossbow", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": null, - "range_ft": 30.0, - "long_range_ft": 120.0, + "reach": null, + "range": 30.0, + "long_range": 120.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3158,9 +3158,9 @@ "parent": "mmenag_assassin_shortsword", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3181,9 +3181,9 @@ "parent": "mmenag_awakened-shrub_rake", "attack_type": "WEAPON", "to_hit_mod": 1, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": null, @@ -3204,9 +3204,9 @@ "parent": "mmenag_awakened-tree_slam", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -3227,9 +3227,9 @@ "parent": "mmenag_axe-beak_beak", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3250,9 +3250,9 @@ "parent": "mmenag_azer-forgemaster_returning-hammer", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": null, + "reach": 5.0, + "range": 20.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3273,9 +3273,9 @@ "parent": "mmenag_azer_hammer", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3296,9 +3296,9 @@ "parent": "mmenag_azer_heat-metal", "attack_type": "SPELL", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": null, + "reach": null, + "range": 60.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -3319,9 +3319,9 @@ "parent": "mmenag_baboon_bite", "attack_type": "WEAPON", "to_hit_mod": 1, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": null, @@ -3342,9 +3342,9 @@ "parent": "mmenag_badger_bite", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": null, @@ -3365,9 +3365,9 @@ "parent": "mmenag_balor-general_fire-whip", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 45.0, - "range_ft": null, - "long_range_ft": null, + "reach": 45.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -3388,9 +3388,9 @@ "parent": "mmenag_balor-general_lightning-sword", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -3411,9 +3411,9 @@ "parent": "mmenag_balor_fire-whip", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 45.0, - "range_ft": null, - "long_range_ft": null, + "reach": 45.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -3434,9 +3434,9 @@ "parent": "mmenag_balor_lightning-sword", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -3457,9 +3457,9 @@ "parent": "mmenag_bandit-captain_dagger", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": null, + "reach": 5.0, + "range": 20.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3480,9 +3480,9 @@ "parent": "mmenag_bandit-captain_scimitar", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3503,9 +3503,9 @@ "parent": "mmenag_bandit_light-crossbow", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": null, - "range_ft": 80.0, - "long_range_ft": 320.0, + "reach": null, + "range": 80.0, + "long_range": 320.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3526,9 +3526,9 @@ "parent": "mmenag_bandit_scimitar", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3549,9 +3549,9 @@ "parent": "mmenag_barbed-devil_claws", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3572,9 +3572,9 @@ "parent": "mmenag_barbed-devil_hurl-flame", "attack_type": "SPELL", "to_hit_mod": 6, - "reach_ft": null, - "range_ft": 150.0, - "long_range_ft": null, + "reach": null, + "range": 150.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -3595,9 +3595,9 @@ "parent": "mmenag_barbed-devil_tail", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -3618,9 +3618,9 @@ "parent": "mmenag_basilisk_venomous-bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3641,9 +3641,9 @@ "parent": "mmenag_bat_bite", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": null, @@ -3664,9 +3664,9 @@ "parent": "mmenag_bearded-devil_beard", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3687,9 +3687,9 @@ "parent": "mmenag_bearded-devil_glaive", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3710,9 +3710,9 @@ "parent": "mmenag_behir-magus_bite", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -3733,9 +3733,9 @@ "parent": "mmenag_behir-magus_constrict", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -3756,9 +3756,9 @@ "parent": "mmenag_behir_bite", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -3779,9 +3779,9 @@ "parent": "mmenag_behir_constrict", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -3802,9 +3802,9 @@ "parent": "mmenag_berserker_greataxe", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3825,9 +3825,9 @@ "parent": "mmenag_berserker_handaxe", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3848,9 +3848,9 @@ "parent": "mmenag_black-bear_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3871,9 +3871,9 @@ "parent": "mmenag_black-bear_claws", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3894,9 +3894,9 @@ "parent": "mmenag_black-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -3917,9 +3917,9 @@ "parent": "mmenag_black-pudding_pseudopod", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3940,9 +3940,9 @@ "parent": "mmenag_blackguard_greatsword", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -3963,9 +3963,9 @@ "parent": "mmenag_blackguard_heavy-crossbow", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 100.0, - "long_range_ft": 400.0, + "reach": null, + "range": 100.0, + "long_range": 400.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3986,9 +3986,9 @@ "parent": "mmenag_blackguard_lance", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -4009,9 +4009,9 @@ "parent": "mmenag_blink-dog_bite", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -4032,9 +4032,9 @@ "parent": "mmenag_blood-hawk_beak", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -4055,9 +4055,9 @@ "parent": "mmenag_blue-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -4078,9 +4078,9 @@ "parent": "mmenag_boar_tusk", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -4101,9 +4101,9 @@ "parent": "mmenag_boggard-bravo_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -4124,9 +4124,9 @@ "parent": "mmenag_boggard-bravo_spear", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -4147,9 +4147,9 @@ "parent": "mmenag_boggard-sovereign_parting-bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -4170,9 +4170,9 @@ "parent": "mmenag_boggard_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -4193,9 +4193,9 @@ "parent": "mmenag_boggard_spear", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -4216,9 +4216,9 @@ "parent": "mmenag_bolt-thrower_heavy-crossbow", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 100.0, - "long_range_ft": 400.0, + "reach": null, + "range": 100.0, + "long_range": 400.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -4239,9 +4239,9 @@ "parent": "mmenag_bolt-thrower_light-crossbow", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 80.0, - "long_range_ft": 320.0, + "reach": null, + "range": 80.0, + "long_range": 320.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -4262,9 +4262,9 @@ "parent": "mmenag_bone-devil_barbed-spear", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 10.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -4285,9 +4285,9 @@ "parent": "mmenag_bone-devil_claw", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -4308,9 +4308,9 @@ "parent": "mmenag_brass-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -4331,9 +4331,9 @@ "parent": "mmenag_bronze-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -4354,9 +4354,9 @@ "parent": "mmenag_brown-bear_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -4377,9 +4377,9 @@ "parent": "mmenag_brown-bear_claws", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -4400,9 +4400,9 @@ "parent": "mmenag_bugbear-chief_javelin", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": 30.0, - "long_range_ft": 120.0, + "reach": 5.0, + "range": 30.0, + "long_range": 120.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -4423,9 +4423,9 @@ "parent": "mmenag_bugbear-chief_maul", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -4446,9 +4446,9 @@ "parent": "mmenag_bugbear_javelin", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": 30.0, - "long_range_ft": 120.0, + "reach": 5.0, + "range": 30.0, + "long_range": 120.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -4469,9 +4469,9 @@ "parent": "mmenag_bugbear_maul", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -4492,9 +4492,9 @@ "parent": "mmenag_bugbear_strangle", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -4515,9 +4515,9 @@ "parent": "mmenag_bulette_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -4538,9 +4538,9 @@ "parent": "mmenag_bunyip_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -4561,9 +4561,9 @@ "parent": "mmenag_bunyip_slam", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -4584,9 +4584,9 @@ "parent": "mmenag_cambion_black-iron-blade", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -4607,9 +4607,9 @@ "parent": "mmenag_cambion_fire-blast", "attack_type": "SPELL", "to_hit_mod": 7, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": null, + "reach": null, + "range": 60.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -4630,9 +4630,9 @@ "parent": "mmenag_camel_bite", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -4653,9 +4653,9 @@ "parent": "mmenag_cat_claws", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": null, @@ -4676,9 +4676,9 @@ "parent": "mmenag_cave-bear_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -4699,9 +4699,9 @@ "parent": "mmenag_cave-bear_claws", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -4722,9 +4722,9 @@ "parent": "mmenag_cave-ogre_greatclub", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -4745,9 +4745,9 @@ "parent": "mmenag_cave-ogre_javelin", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": 30.0, - "long_range_ft": 120.0, + "reach": 5.0, + "range": 30.0, + "long_range": 120.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -4768,9 +4768,9 @@ "parent": "mmenag_cave-ogre_sweeping-strike", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -4791,9 +4791,9 @@ "parent": "mmenag_cave-troll_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -4814,9 +4814,9 @@ "parent": "mmenag_cave-troll_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -4837,9 +4837,9 @@ "parent": "mmenag_cave-troll_rock", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": null, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": null, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -4860,9 +4860,9 @@ "parent": "mmenag_centaur_hooves", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -4883,9 +4883,9 @@ "parent": "mmenag_centaur_pike", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -4906,9 +4906,9 @@ "parent": "mmenag_centaur_shortbow", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 80.0, - "long_range_ft": 320.0, + "reach": null, + "range": 80.0, + "long_range": 320.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -4929,9 +4929,9 @@ "parent": "mmenag_chain-devil_chain", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -4952,9 +4952,9 @@ "parent": "mmenag_champion-warrior_greataxe", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -4975,9 +4975,9 @@ "parent": "mmenag_chimera_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -4998,9 +4998,9 @@ "parent": "mmenag_chimera_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -5021,9 +5021,9 @@ "parent": "mmenag_chimera_headbutt", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -5044,9 +5044,9 @@ "parent": "mmenag_chuul_pincer", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -5067,9 +5067,9 @@ "parent": "mmenag_clay-guardian_slam", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -5090,9 +5090,9 @@ "parent": "mmenag_cloaker_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -5113,9 +5113,9 @@ "parent": "mmenag_cloaker_tail", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5136,9 +5136,9 @@ "parent": "mmenag_clockwork-sentinel_halberd", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5159,9 +5159,9 @@ "parent": "mmenag_cloud-giant-noble_glaive", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -5182,9 +5182,9 @@ "parent": "mmenag_cloud-giant-noble_rock", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": 240.0, + "reach": null, + "range": 60.0, + "long_range": 240.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 9, @@ -5205,9 +5205,9 @@ "parent": "mmenag_cloud-giant_glaive", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -5228,9 +5228,9 @@ "parent": "mmenag_cloud-giant_rock", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": 240.0, + "reach": null, + "range": 60.0, + "long_range": 240.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 9, @@ -5251,9 +5251,9 @@ "parent": "mmenag_cockatrice_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5274,9 +5274,9 @@ "parent": "mmenag_commoner-mob_clubs", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -5297,9 +5297,9 @@ "parent": "mmenag_commoner-mob_stones", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": null, - "range_ft": 10.0, - "long_range_ft": 30.0, + "reach": null, + "range": 10.0, + "long_range": 30.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -5320,9 +5320,9 @@ "parent": "mmenag_commoner_club", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5343,9 +5343,9 @@ "parent": "mmenag_commoner_stone", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": null, - "range_ft": 10.0, - "long_range_ft": 30.0, + "reach": null, + "range": 10.0, + "long_range": 30.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5366,9 +5366,9 @@ "parent": "mmenag_constrictor-snake_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5389,9 +5389,9 @@ "parent": "mmenag_constrictor-snake_constrict", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5412,9 +5412,9 @@ "parent": "mmenag_copper-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -5435,9 +5435,9 @@ "parent": "mmenag_coralfish_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5458,9 +5458,9 @@ "parent": "mmenag_corrupted-unicorn_hooves", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5481,9 +5481,9 @@ "parent": "mmenag_corrupted-unicorn_horn", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5504,9 +5504,9 @@ "parent": "mmenag_cosmopolitan-alchemist_dagger", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5527,9 +5527,9 @@ "parent": "mmenag_couatl_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5550,9 +5550,9 @@ "parent": "mmenag_couatl_constrict", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -5573,9 +5573,9 @@ "parent": "mmenag_coven-green-hag_claws", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -5596,9 +5596,9 @@ "parent": "mmenag_coven-night-hag_claws", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -5619,9 +5619,9 @@ "parent": "mmenag_coven-night-hag_sleep-touch", "attack_type": "SPELL", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": null, @@ -5642,9 +5642,9 @@ "parent": "mmenag_coven-sea-hag_claws", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -5665,9 +5665,9 @@ "parent": "mmenag_coven-winter-hag_claws", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -5688,9 +5688,9 @@ "parent": "mmenag_coven-winter-hag_ice-bolt", "attack_type": "SPELL", "to_hit_mod": 7, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": null, + "reach": null, + "range": 60.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -5711,9 +5711,9 @@ "parent": "mmenag_crab_claws", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": null, @@ -5734,9 +5734,9 @@ "parent": "mmenag_crime-boss_dagger", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5757,9 +5757,9 @@ "parent": "mmenag_crime-boss_shortsword", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5780,9 +5780,9 @@ "parent": "mmenag_crocodile_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5803,9 +5803,9 @@ "parent": "mmenag_crusher_ram", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -5826,9 +5826,9 @@ "parent": "mmenag_cult-fanatic_dagger", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5849,9 +5849,9 @@ "parent": "mmenag_cult-fanatic_inflict-wounds", "attack_type": "SPELL", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -5872,9 +5872,9 @@ "parent": "mmenag_cultist_dagger", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5895,9 +5895,9 @@ "parent": "mmenag_cutthroat_hand-crossbow", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 30.0, - "long_range_ft": 120.0, + "reach": null, + "range": 30.0, + "long_range": 120.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5918,9 +5918,9 @@ "parent": "mmenag_cutthroat_shortsword", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5941,9 +5941,9 @@ "parent": "mmenag_cyclops-myrmidon_maul", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, @@ -5964,9 +5964,9 @@ "parent": "mmenag_cyclops-myrmidon_rock", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": null, - "range_ft": 120.0, - "long_range_ft": null, + "reach": null, + "range": 120.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, @@ -5987,9 +5987,9 @@ "parent": "mmenag_cyclops_club", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -6010,9 +6010,9 @@ "parent": "mmenag_cyclops_rock", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": null, - "range_ft": 120.0, - "long_range_ft": null, + "reach": null, + "range": 120.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, @@ -6033,9 +6033,9 @@ "parent": "mmenag_darkmantle_crush", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6056,9 +6056,9 @@ "parent": "mmenag_dead-mans-fingers_tendril-ethereal-or-material-plane", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 20.0, - "range_ft": null, - "long_range_ft": null, + "reach": 20.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6079,9 +6079,9 @@ "parent": "mmenag_death-dog_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6102,9 +6102,9 @@ "parent": "mmenag_deep-dwarf-soldier_heavy-crossbow", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": null, - "range_ft": 100.0, - "long_range_ft": 400.0, + "reach": null, + "range": 100.0, + "long_range": 400.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6125,9 +6125,9 @@ "parent": "mmenag_deep-dwarf-soldier_war-pick", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6148,9 +6148,9 @@ "parent": "mmenag_deep-gnome-scout_war-pick", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6171,9 +6171,9 @@ "parent": "mmenag_deer_bite", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": null, @@ -6194,9 +6194,9 @@ "parent": "mmenag_deer_headbutt", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6217,9 +6217,9 @@ "parent": "mmenag_deva_celestial-hammer", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6240,9 +6240,9 @@ "parent": "mmenag_deva_divine-blast", "attack_type": "SPELL", "to_hit_mod": 8, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": null, + "reach": null, + "range": 60.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, @@ -6263,9 +6263,9 @@ "parent": "mmenag_diplodocus_stomp", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -6286,9 +6286,9 @@ "parent": "mmenag_diplodocus_tail", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -6309,9 +6309,9 @@ "parent": "mmenag_dire-centipede_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6332,9 +6332,9 @@ "parent": "mmenag_dire-tyrannosaurus-rex_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -6355,9 +6355,9 @@ "parent": "mmenag_dire-tyrannosaurus-rex_tail", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -6378,9 +6378,9 @@ "parent": "mmenag_dire-wolf_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -6401,9 +6401,9 @@ "parent": "mmenag_diseased-giant-rat_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6424,9 +6424,9 @@ "parent": "mmenag_divi-noble_crushing-hand", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -6447,9 +6447,9 @@ "parent": "mmenag_divi-noble_stone-club", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -6470,9 +6470,9 @@ "parent": "mmenag_divi_crushing-hand", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -6493,9 +6493,9 @@ "parent": "mmenag_divi_stone-club", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -6516,9 +6516,9 @@ "parent": "mmenag_djinni-noble_lightning-blast", "attack_type": "SPELL", "to_hit_mod": 9, - "reach_ft": null, - "range_ft": 90.0, - "long_range_ft": null, + "reach": null, + "range": 90.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 10, @@ -6539,9 +6539,9 @@ "parent": "mmenag_djinni-noble_scimitar", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -6562,9 +6562,9 @@ "parent": "mmenag_djinni_lightning-blast", "attack_type": "SPELL", "to_hit_mod": 9, - "reach_ft": null, - "range_ft": 90.0, - "long_range_ft": null, + "reach": null, + "range": 90.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 10, @@ -6585,9 +6585,9 @@ "parent": "mmenag_djinni_scimitar", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -6608,9 +6608,9 @@ "parent": "mmenag_doppelganger_precise-strike", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -6631,9 +6631,9 @@ "parent": "mmenag_draft-horse_hooves", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6654,9 +6654,9 @@ "parent": "mmenag_dragon-cultist_dagger", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6677,9 +6677,9 @@ "parent": "mmenag_dragon-cultist_inflict-wounds", "attack_type": "SPELL", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -6700,9 +6700,9 @@ "parent": "mmenag_dragon-turtle_bite", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 7, @@ -6723,9 +6723,9 @@ "parent": "mmenag_dragon-turtle_ram", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, @@ -6746,9 +6746,9 @@ "parent": "mmenag_dragon-turtle_tail", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, @@ -6769,9 +6769,9 @@ "parent": "mmenag_dragonbound-warrior_spear", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6792,9 +6792,9 @@ "parent": "mmenag_drainpipe-gargoyle_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6815,9 +6815,9 @@ "parent": "mmenag_drainpipe-gargoyle_claws", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6838,9 +6838,9 @@ "parent": "mmenag_drainpipe-gargoyle_rock", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": null, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -6861,9 +6861,9 @@ "parent": "mmenag_dread-knight-champion_cursed-greatsword", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -6884,9 +6884,9 @@ "parent": "mmenag_dread-knight_cursed-greatsword", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -6907,9 +6907,9 @@ "parent": "mmenag_dretch_bite", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6930,9 +6930,9 @@ "parent": "mmenag_drider_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6953,9 +6953,9 @@ "parent": "mmenag_drider_claws", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -6976,9 +6976,9 @@ "parent": "mmenag_drider_longbow", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": null, - "range_ft": 120.0, - "long_range_ft": 600.0, + "reach": null, + "range": 120.0, + "long_range": 600.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6999,9 +6999,9 @@ "parent": "mmenag_drider_longsword-wielded-two-handed", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -7022,9 +7022,9 @@ "parent": "mmenag_drop-bear_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -7045,9 +7045,9 @@ "parent": "mmenag_drop-bear_claws", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -7068,9 +7068,9 @@ "parent": "mmenag_druid_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -7091,9 +7091,9 @@ "parent": "mmenag_druid_produce-flame", "attack_type": "SPELL", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 30.0, - "long_range_ft": null, + "reach": null, + "range": 30.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -7114,9 +7114,9 @@ "parent": "mmenag_druid_shillelagh", "attack_type": "SPELL", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -7137,9 +7137,9 @@ "parent": "mmenag_dryad_club", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -7160,9 +7160,9 @@ "parent": "mmenag_duelist_rapier", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -7183,9 +7183,9 @@ "parent": "mmenag_dust-mephit_claws", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -7206,9 +7206,9 @@ "parent": "mmenag_eagle_talons", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": null, @@ -7229,9 +7229,9 @@ "parent": "mmenag_earth-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -7252,9 +7252,9 @@ "parent": "mmenag_earth-elemental_earths-embrace", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -7275,9 +7275,9 @@ "parent": "mmenag_earth-elemental_rock", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": null, - "range_ft": 30.0, - "long_range_ft": 90.0, + "reach": null, + "range": 30.0, + "long_range": 90.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -7298,9 +7298,9 @@ "parent": "mmenag_earth-elemental_slam", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -7321,9 +7321,9 @@ "parent": "mmenag_efreeti-noble_brass-sword", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -7344,9 +7344,9 @@ "parent": "mmenag_efreeti-noble_hurl-flame", "attack_type": "SPELL", "to_hit_mod": 7, - "reach_ft": null, - "range_ft": 120.0, - "long_range_ft": null, + "reach": null, + "range": 120.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, @@ -7367,9 +7367,9 @@ "parent": "mmenag_efreeti-noble_kick", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -7390,9 +7390,9 @@ "parent": "mmenag_efreeti_brass-sword", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -7413,9 +7413,9 @@ "parent": "mmenag_efreeti_hurl-flame", "attack_type": "SPELL", "to_hit_mod": 7, - "reach_ft": null, - "range_ft": 120.0, - "long_range_ft": null, + "reach": null, + "range": 120.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, @@ -7436,9 +7436,9 @@ "parent": "mmenag_efreeti_kick", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -7459,9 +7459,9 @@ "parent": "mmenag_elder-black-pudding_pseudopod", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -7482,9 +7482,9 @@ "parent": "mmenag_elder-vampire_grab", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -7505,9 +7505,9 @@ "parent": "mmenag_elephant_gore", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -7528,9 +7528,9 @@ "parent": "mmenag_elephant_stomp", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -7551,9 +7551,9 @@ "parent": "mmenag_elk_ram", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -7574,9 +7574,9 @@ "parent": "mmenag_emerald-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -7597,9 +7597,9 @@ "parent": "mmenag_empyrean_maul", "attack_type": "WEAPON", "to_hit_mod": 17, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 8, @@ -7620,9 +7620,9 @@ "parent": "mmenag_erinyes_lasso", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": null, @@ -7643,9 +7643,9 @@ "parent": "mmenag_erinyes_longbow", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": null, - "range_ft": 150.0, - "long_range_ft": 600.0, + "reach": null, + "range": 150.0, + "long_range": 600.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -7666,9 +7666,9 @@ "parent": "mmenag_erinyes_longsword", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -7689,9 +7689,9 @@ "parent": "mmenag_ettercap_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -7712,9 +7712,9 @@ "parent": "mmenag_ettercap_claws", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -7735,9 +7735,9 @@ "parent": "mmenag_ettercap_strangle", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -7758,9 +7758,9 @@ "parent": "mmenag_ettin_battleaxe", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -7781,9 +7781,9 @@ "parent": "mmenag_ettin_club", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -7804,9 +7804,9 @@ "parent": "mmenag_ettin_rock", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": null, - "range_ft": 30.0, - "long_range_ft": 90.0, + "reach": null, + "range": 30.0, + "long_range": 90.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -7827,9 +7827,9 @@ "parent": "mmenag_faerie-dragon-familiar_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": null, @@ -7850,9 +7850,9 @@ "parent": "mmenag_faerie-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": null, @@ -7873,9 +7873,9 @@ "parent": "mmenag_faerie-eater-troll_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -7896,9 +7896,9 @@ "parent": "mmenag_faerie-eater-troll_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -7919,9 +7919,9 @@ "parent": "mmenag_faerie-noble_gleaming-longbow", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": null, - "range_ft": 150.0, - "long_range_ft": 600.0, + "reach": null, + "range": 150.0, + "long_range": 600.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -7942,9 +7942,9 @@ "parent": "mmenag_faerie-noble_glittering-scimitar", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -7965,9 +7965,9 @@ "parent": "mmenag_fallen-deva_celestial-hammer", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -7988,9 +7988,9 @@ "parent": "mmenag_fallen-deva_divine-blast", "attack_type": "SPELL", "to_hit_mod": 8, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": null, + "reach": null, + "range": 60.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, @@ -8011,9 +8011,9 @@ "parent": "mmenag_fallen-planetar_flaming-sword", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -8034,9 +8034,9 @@ "parent": "mmenag_fallen-solar_holy-sword", "attack_type": "WEAPON", "to_hit_mod": 16, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -8057,9 +8057,9 @@ "parent": "mmenag_fell-nightmare_hooves", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -8080,9 +8080,9 @@ "parent": "mmenag_fey-knight_glittering-scimitar", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -8103,9 +8103,9 @@ "parent": "mmenag_fey-knight_longbow", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": null, - "range_ft": 150.0, - "long_range_ft": 600.0, + "reach": null, + "range": 150.0, + "long_range": 600.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -8126,9 +8126,9 @@ "parent": "mmenag_fire-elemental_slam", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -8149,9 +8149,9 @@ "parent": "mmenag_fire-giant-war-priest_greatsword", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, @@ -8172,9 +8172,9 @@ "parent": "mmenag_fire-giant-war-priest_rock", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": 240.0, + "reach": null, + "range": 60.0, + "long_range": 240.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 10, @@ -8195,9 +8195,9 @@ "parent": "mmenag_fire-giant_greatsword", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, @@ -8218,9 +8218,9 @@ "parent": "mmenag_fire-giant_rock", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": 240.0, + "reach": null, + "range": 60.0, + "long_range": 240.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 10, @@ -8241,9 +8241,9 @@ "parent": "mmenag_flesh-guardian_hurl-object", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": null, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": null, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -8264,9 +8264,9 @@ "parent": "mmenag_flesh-guardian_slam", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -8287,9 +8287,9 @@ "parent": "mmenag_flumph_tendrils", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -8310,9 +8310,9 @@ "parent": "mmenag_flying-lion_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -8333,9 +8333,9 @@ "parent": "mmenag_flying-lion_talons", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -8356,9 +8356,9 @@ "parent": "mmenag_flying-snake_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -8379,9 +8379,9 @@ "parent": "mmenag_flying-sword_longsword", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -8402,9 +8402,9 @@ "parent": "mmenag_fomorian_warhammer", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -8425,9 +8425,9 @@ "parent": "mmenag_forest-gnome-illusionist_dagger", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -8448,9 +8448,9 @@ "parent": "mmenag_forest-gnome-illusionist_fire-bolt", "attack_type": "SPELL", "to_hit_mod": 6, - "reach_ft": null, - "range_ft": 120.0, - "long_range_ft": null, + "reach": null, + "range": 120.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -8471,9 +8471,9 @@ "parent": "mmenag_forest-gnome-scout_longbow", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 150.0, - "long_range_ft": 600.0, + "reach": null, + "range": 150.0, + "long_range": 600.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -8494,9 +8494,9 @@ "parent": "mmenag_forest-gnome-scout_shortsword", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -8517,9 +8517,9 @@ "parent": "mmenag_forgotten-god_divine-weapon", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -8540,9 +8540,9 @@ "parent": "mmenag_frost-giant-jarl_battleaxe", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -8563,9 +8563,9 @@ "parent": "mmenag_frost-giant-jarl_rock", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": 240.0, + "reach": null, + "range": 60.0, + "long_range": 240.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 9, @@ -8586,9 +8586,9 @@ "parent": "mmenag_frost-giant_battleaxe", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -8609,9 +8609,9 @@ "parent": "mmenag_frost-giant_rock", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": 240.0, + "reach": null, + "range": 60.0, + "long_range": 240.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 9, @@ -8632,9 +8632,9 @@ "parent": "mmenag_gargoyle_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -8655,9 +8655,9 @@ "parent": "mmenag_gargoyle_claws", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -8678,9 +8678,9 @@ "parent": "mmenag_gargoyle_rock", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": null, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -8701,9 +8701,9 @@ "parent": "mmenag_gear-spider_claw", "attack_type": "WEAPON", "to_hit_mod": 0, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": null, @@ -8724,9 +8724,9 @@ "parent": "mmenag_gear-spider_needle", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -8747,9 +8747,9 @@ "parent": "mmenag_gelatinous-cube_pseudopod", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -8770,9 +8770,9 @@ "parent": "mmenag_gelatinous-wall_pseudopod", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -8793,9 +8793,9 @@ "parent": "mmenag_ghast_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -8816,9 +8816,9 @@ "parent": "mmenag_ghast_paralyzing-claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -8839,9 +8839,9 @@ "parent": "mmenag_ghost_withering-touch", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -8862,9 +8862,9 @@ "parent": "mmenag_ghoul_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -8885,9 +8885,9 @@ "parent": "mmenag_ghoul_paralyzing-claw", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -8908,9 +8908,9 @@ "parent": "mmenag_giant-air-elemental_slam", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, @@ -8931,9 +8931,9 @@ "parent": "mmenag_giant-ape_fists", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -8954,9 +8954,9 @@ "parent": "mmenag_giant-ape_rock", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": null, - "range_ft": 50.0, - "long_range_ft": 100.0, + "reach": null, + "range": 50.0, + "long_range": 100.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, @@ -8977,9 +8977,9 @@ "parent": "mmenag_giant-badger_bite", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -9000,9 +9000,9 @@ "parent": "mmenag_giant-bat_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -9023,9 +9023,9 @@ "parent": "mmenag_giant-boar_tusk", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -9046,9 +9046,9 @@ "parent": "mmenag_giant-centipede_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -9069,9 +9069,9 @@ "parent": "mmenag_giant-constrictor-snake_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -9092,9 +9092,9 @@ "parent": "mmenag_giant-constrictor-snake_constrict", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -9115,9 +9115,9 @@ "parent": "mmenag_giant-crab_claw", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -9138,9 +9138,9 @@ "parent": "mmenag_giant-crocodile_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -9161,9 +9161,9 @@ "parent": "mmenag_giant-crocodile_tail", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -9184,9 +9184,9 @@ "parent": "mmenag_giant-eagle_talons", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -9207,9 +9207,9 @@ "parent": "mmenag_giant-earth-elemental_earths-embrace", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -9230,9 +9230,9 @@ "parent": "mmenag_giant-earth-elemental_rock", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": null, - "range_ft": 30.0, - "long_range_ft": 90.0, + "reach": null, + "range": 30.0, + "long_range": 90.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -9253,9 +9253,9 @@ "parent": "mmenag_giant-earth-elemental_slam", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -9276,9 +9276,9 @@ "parent": "mmenag_giant-elk_ram", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -9299,9 +9299,9 @@ "parent": "mmenag_giant-fire-beetle_bite", "attack_type": "WEAPON", "to_hit_mod": 1, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": null, @@ -9322,9 +9322,9 @@ "parent": "mmenag_giant-fire-elemental_slam", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -9345,9 +9345,9 @@ "parent": "mmenag_giant-frog_bite", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -9368,9 +9368,9 @@ "parent": "mmenag_giant-goat_ram", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -9391,9 +9391,9 @@ "parent": "mmenag_giant-grick_tentacles", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 20.0, - "range_ft": null, - "long_range_ft": null, + "reach": 20.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -9414,9 +9414,9 @@ "parent": "mmenag_giant-hyena_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -9437,9 +9437,9 @@ "parent": "mmenag_giant-lanternfish_claws", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -9460,9 +9460,9 @@ "parent": "mmenag_giant-lanternfish_dagger", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -9483,9 +9483,9 @@ "parent": "mmenag_giant-lanternfish_dizzying-touch", "attack_type": "SPELL", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": null, @@ -9506,9 +9506,9 @@ "parent": "mmenag_giant-lizard_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -9529,9 +9529,9 @@ "parent": "mmenag_giant-octopus_tentacles", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -9552,9 +9552,9 @@ "parent": "mmenag_giant-owl_talons", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -9575,9 +9575,9 @@ "parent": "mmenag_giant-poisonous-snake_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -9598,9 +9598,9 @@ "parent": "mmenag_giant-rat_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -9621,9 +9621,9 @@ "parent": "mmenag_giant-scorpion_claws", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -9644,9 +9644,9 @@ "parent": "mmenag_giant-scorpion_sting", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -9667,9 +9667,9 @@ "parent": "mmenag_giant-seahorse_ram", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -9690,9 +9690,9 @@ "parent": "mmenag_giant-shark_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -9713,9 +9713,9 @@ "parent": "mmenag_giant-shark_tail", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -9736,9 +9736,9 @@ "parent": "mmenag_giant-spider_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -9759,9 +9759,9 @@ "parent": "mmenag_giant-toad_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -9782,9 +9782,9 @@ "parent": "mmenag_giant-vulture_beak", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -9805,9 +9805,9 @@ "parent": "mmenag_giant-vulture_talons", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -9828,9 +9828,9 @@ "parent": "mmenag_giant-wasp_sting", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -9851,9 +9851,9 @@ "parent": "mmenag_giant-water-elemental_slam", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -9874,9 +9874,9 @@ "parent": "mmenag_giant-weasel_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -9897,9 +9897,9 @@ "parent": "mmenag_giant-weasel_grab", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": null, @@ -9920,9 +9920,9 @@ "parent": "mmenag_giant-wolf-spider_bite", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -9943,9 +9943,9 @@ "parent": "mmenag_gibbering-mouther_bite", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -9966,9 +9966,9 @@ "parent": "mmenag_glabrezu_pincer", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -9989,9 +9989,9 @@ "parent": "mmenag_gladiator_javelin", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": 30.0, - "long_range_ft": 120.0, + "reach": 5.0, + "range": 30.0, + "long_range": 120.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -10012,9 +10012,9 @@ "parent": "mmenag_gladiator_shield", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -10035,9 +10035,9 @@ "parent": "mmenag_gladiator_spear", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -10058,9 +10058,9 @@ "parent": "mmenag_gnoll-demonfang_charging-claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10081,9 +10081,9 @@ "parent": "mmenag_gnoll-pack-leader_spear", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10104,9 +10104,9 @@ "parent": "mmenag_gnoll_spear", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10127,9 +10127,9 @@ "parent": "mmenag_goat_ram", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10150,9 +10150,9 @@ "parent": "mmenag_goblin-alchemist_shortbow", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": null, - "range_ft": 80.0, - "long_range_ft": 320.0, + "reach": null, + "range": 80.0, + "long_range": 320.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10173,9 +10173,9 @@ "parent": "mmenag_goblin-alchemist_shortsword", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10196,9 +10196,9 @@ "parent": "mmenag_goblin-alchemist_throw-vial", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": null, - "range_ft": 20.0, - "long_range_ft": 40.0, + "reach": null, + "range": 20.0, + "long_range": 40.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10219,9 +10219,9 @@ "parent": "mmenag_goblin-boss_scimitar", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10242,9 +10242,9 @@ "parent": "mmenag_goblin-boss_shortbow", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 80.0, - "long_range_ft": 320.0, + "reach": null, + "range": 80.0, + "long_range": 320.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10265,9 +10265,9 @@ "parent": "mmenag_goblin-dreadnought_sabre", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10288,9 +10288,9 @@ "parent": "mmenag_goblin-dreadnought_shortbow", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": null, - "range_ft": 80.0, - "long_range_ft": 320.0, + "reach": null, + "range": 80.0, + "long_range": 320.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10311,9 +10311,9 @@ "parent": "mmenag_goblin-musketeer_musket", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": 180.0, + "reach": null, + "range": 60.0, + "long_range": 180.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -10334,9 +10334,9 @@ "parent": "mmenag_goblin-musketeer_shortsword", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10357,9 +10357,9 @@ "parent": "mmenag_goblin-shieldbearer_shortbow", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": null, - "range_ft": 80.0, - "long_range_ft": 320.0, + "reach": null, + "range": 80.0, + "long_range": 320.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10380,9 +10380,9 @@ "parent": "mmenag_goblin-shieldbearer_shortsword", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10403,9 +10403,9 @@ "parent": "mmenag_goblin-skulker_shortbow", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": null, - "range_ft": 80.0, - "long_range_ft": 320.0, + "reach": null, + "range": 80.0, + "long_range": 320.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10426,9 +10426,9 @@ "parent": "mmenag_goblin-skulker_shortsword", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10449,9 +10449,9 @@ "parent": "mmenag_goblin-warlock_dagger", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10472,9 +10472,9 @@ "parent": "mmenag_goblin-warlock_silver-fire", "attack_type": "SPELL", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": null, + "reach": null, + "range": 60.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -10495,9 +10495,9 @@ "parent": "mmenag_goblin_shortbow", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": null, - "range_ft": 80.0, - "long_range_ft": 320.0, + "reach": null, + "range": 80.0, + "long_range": 320.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10518,9 +10518,9 @@ "parent": "mmenag_goblin_shortsword", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10541,9 +10541,9 @@ "parent": "mmenag_gold-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10564,9 +10564,9 @@ "parent": "mmenag_gorgon_gore", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -10587,9 +10587,9 @@ "parent": "mmenag_gorgon_hooves", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -10610,9 +10610,9 @@ "parent": "mmenag_gray-ooze_pseudopod", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10633,9 +10633,9 @@ "parent": "mmenag_great-wyrm-black-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -10656,9 +10656,9 @@ "parent": "mmenag_great-wyrm-black-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -10679,9 +10679,9 @@ "parent": "mmenag_great-wyrm-black-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 20.0, - "range_ft": null, - "long_range_ft": null, + "reach": 20.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -10702,9 +10702,9 @@ "parent": "mmenag_great-wyrm-blue-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 17, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -10725,9 +10725,9 @@ "parent": "mmenag_great-wyrm-blue-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 17, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -10748,9 +10748,9 @@ "parent": "mmenag_great-wyrm-blue-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 17, - "reach_ft": 20.0, - "range_ft": null, - "long_range_ft": null, + "reach": 20.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -10771,9 +10771,9 @@ "parent": "mmenag_great-wyrm-gold-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 18, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -10794,9 +10794,9 @@ "parent": "mmenag_great-wyrm-gold-dragon_claws", "attack_type": "WEAPON", "to_hit_mod": 18, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -10817,9 +10817,9 @@ "parent": "mmenag_great-wyrm-gold-dragon_greatsword", "attack_type": "WEAPON", "to_hit_mod": 18, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -10840,9 +10840,9 @@ "parent": "mmenag_great-wyrm-gold-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 18, - "reach_ft": 20.0, - "range_ft": null, - "long_range_ft": null, + "reach": 20.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -10863,9 +10863,9 @@ "parent": "mmenag_great-wyrm-green-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -10886,9 +10886,9 @@ "parent": "mmenag_great-wyrm-green-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -10909,9 +10909,9 @@ "parent": "mmenag_great-wyrm-green-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 20.0, - "range_ft": null, - "long_range_ft": null, + "reach": 20.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -10932,9 +10932,9 @@ "parent": "mmenag_great-wyrm-red-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 18, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -10955,9 +10955,9 @@ "parent": "mmenag_great-wyrm-red-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 18, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -10978,9 +10978,9 @@ "parent": "mmenag_great-wyrm-red-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 18, - "reach_ft": 20.0, - "range_ft": null, - "long_range_ft": null, + "reach": 20.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -11001,9 +11001,9 @@ "parent": "mmenag_great-wyrm-white-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -11024,9 +11024,9 @@ "parent": "mmenag_great-wyrm-white-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -11047,9 +11047,9 @@ "parent": "mmenag_great-wyrm-white-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 20.0, - "range_ft": null, - "long_range_ft": null, + "reach": 20.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -11070,9 +11070,9 @@ "parent": "mmenag_greater-sphinx_claw", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -11093,9 +11093,9 @@ "parent": "mmenag_green-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -11116,9 +11116,9 @@ "parent": "mmenag_green-hag_claws", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -11139,9 +11139,9 @@ "parent": "mmenag_grick_tentacles", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -11162,9 +11162,9 @@ "parent": "mmenag_griffon_beak", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -11185,9 +11185,9 @@ "parent": "mmenag_griffon_talons", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11208,9 +11208,9 @@ "parent": "mmenag_grimalkin_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11231,9 +11231,9 @@ "parent": "mmenag_grimalkin_claws", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11254,9 +11254,9 @@ "parent": "mmenag_grimlock-technical_lightning-stick", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11277,9 +11277,9 @@ "parent": "mmenag_grimlock-technical_silenced-blunderbuss", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 30.0, - "long_range_ft": 120.0, + "reach": null, + "range": 30.0, + "long_range": 120.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -11300,9 +11300,9 @@ "parent": "mmenag_grimlock-technical_sling", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 30.0, - "long_range_ft": 120.0, + "reach": null, + "range": 30.0, + "long_range": 120.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11323,9 +11323,9 @@ "parent": "mmenag_grimlock-technical_throttle", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11346,9 +11346,9 @@ "parent": "mmenag_grimlock_sling", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 30.0, - "long_range_ft": 120.0, + "reach": null, + "range": 30.0, + "long_range": 120.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11369,9 +11369,9 @@ "parent": "mmenag_grimlock_spiked-club", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11392,9 +11392,9 @@ "parent": "mmenag_grimlock_throttle", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11415,9 +11415,9 @@ "parent": "mmenag_guard-squad_spears", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": null, + "reach": 5.0, + "range": 20.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, @@ -11438,9 +11438,9 @@ "parent": "mmenag_guard_spear", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11461,9 +11461,9 @@ "parent": "mmenag_guardian-naga_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -11484,9 +11484,9 @@ "parent": "mmenag_guardian-naga_spit-poison", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": null, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": null, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 10, @@ -11507,9 +11507,9 @@ "parent": "mmenag_half-red-dragon-veteran_heavy-crossbow", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": null, - "range_ft": 100.0, - "long_range_ft": 400.0, + "reach": null, + "range": 100.0, + "long_range": 400.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11530,9 +11530,9 @@ "parent": "mmenag_half-red-dragon-veteran_longsword", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11553,9 +11553,9 @@ "parent": "mmenag_half-red-dragon-veteran_shortsword", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11576,9 +11576,9 @@ "parent": "mmenag_half-shadow-dragon-assassin_hand-crossbow", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": null, - "range_ft": 30.0, - "long_range_ft": 120.0, + "reach": null, + "range": 30.0, + "long_range": 120.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11599,9 +11599,9 @@ "parent": "mmenag_half-shadow-dragon-assassin_shortsword", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11622,9 +11622,9 @@ "parent": "mmenag_harpy_claw", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11645,9 +11645,9 @@ "parent": "mmenag_hawk_talons", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": null, @@ -11668,9 +11668,9 @@ "parent": "mmenag_hell-hound_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11691,9 +11691,9 @@ "parent": "mmenag_hezrou_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -11714,9 +11714,9 @@ "parent": "mmenag_hezrou_claws", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -11737,9 +11737,9 @@ "parent": "mmenag_high-elf-noble_rapier", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11760,9 +11760,9 @@ "parent": "mmenag_high-elf-noble_ray-of-frost", "attack_type": "SPELL", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": null, + "reach": null, + "range": 60.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11783,9 +11783,9 @@ "parent": "mmenag_high-priest_mace", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11806,9 +11806,9 @@ "parent": "mmenag_hill-dwarf-wrestler_body-slam", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, @@ -11829,9 +11829,9 @@ "parent": "mmenag_hill-dwarf-wrestler_fists", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11852,9 +11852,9 @@ "parent": "mmenag_hill-dwarf-wrestler_grab", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -11875,9 +11875,9 @@ "parent": "mmenag_hill-dwarf-wrestler_pin", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -11898,9 +11898,9 @@ "parent": "mmenag_hill-giant-chief_greatclub", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -11921,9 +11921,9 @@ "parent": "mmenag_hill-giant-chief_rock", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": 240.0, + "reach": null, + "range": 60.0, + "long_range": 240.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, @@ -11944,9 +11944,9 @@ "parent": "mmenag_hill-giant_greatclub", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -11967,9 +11967,9 @@ "parent": "mmenag_hill-giant_rock", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": 240.0, + "reach": null, + "range": 60.0, + "long_range": 240.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, @@ -11990,9 +11990,9 @@ "parent": "mmenag_hippogriff_claws", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -12013,9 +12013,9 @@ "parent": "mmenag_hobgoblin-captain_greatsword", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -12036,9 +12036,9 @@ "parent": "mmenag_hobgoblin-captain_javelin", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": 30.0, - "long_range_ft": 120.0, + "reach": 5.0, + "range": 30.0, + "long_range": 120.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -12059,9 +12059,9 @@ "parent": "mmenag_hobgoblin-warlord_greatsword", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -12082,9 +12082,9 @@ "parent": "mmenag_hobgoblin-warlord_javelin", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": 30.0, - "long_range_ft": 120.0, + "reach": 5.0, + "range": 30.0, + "long_range": 120.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -12105,9 +12105,9 @@ "parent": "mmenag_hobgoblin_longbow", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": null, - "range_ft": 150.0, - "long_range_ft": 600.0, + "reach": null, + "range": 150.0, + "long_range": 600.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -12128,9 +12128,9 @@ "parent": "mmenag_hobgoblin_longsword", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -12151,9 +12151,9 @@ "parent": "mmenag_holy-knight_greatsword", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -12174,9 +12174,9 @@ "parent": "mmenag_holy-knight_lance", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -12197,9 +12197,9 @@ "parent": "mmenag_homunculus_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": null, @@ -12220,9 +12220,9 @@ "parent": "mmenag_horde-demon-band_mob-attack", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 10, @@ -12243,9 +12243,9 @@ "parent": "mmenag_horde-of-shadows_claw", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -12266,9 +12266,9 @@ "parent": "mmenag_horned-devil_fork", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -12289,9 +12289,9 @@ "parent": "mmenag_horned-devil_hurl-flame", "attack_type": "SPELL", "to_hit_mod": 7, - "reach_ft": null, - "range_ft": 150.0, - "long_range_ft": null, + "reach": null, + "range": 150.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -12312,9 +12312,9 @@ "parent": "mmenag_horned-devil_tail", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -12335,9 +12335,9 @@ "parent": "mmenag_horned-tauric_gore", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -12358,9 +12358,9 @@ "parent": "mmenag_horned-tauric_hooves", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -12381,9 +12381,9 @@ "parent": "mmenag_horned-tauric_shortbow", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 80.0, - "long_range_ft": 320.0, + "reach": null, + "range": 80.0, + "long_range": 320.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -12404,9 +12404,9 @@ "parent": "mmenag_hound-guardian_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -12427,9 +12427,9 @@ "parent": "mmenag_hunter-shark_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -12450,9 +12450,9 @@ "parent": "mmenag_hydra_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -12473,9 +12473,9 @@ "parent": "mmenag_hyena_bite", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -12496,9 +12496,9 @@ "parent": "mmenag_ice-devil_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -12519,9 +12519,9 @@ "parent": "mmenag_ice-devil_claws", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -12542,9 +12542,9 @@ "parent": "mmenag_ice-devil_spear", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -12565,9 +12565,9 @@ "parent": "mmenag_ice-mephit_claws", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -12588,9 +12588,9 @@ "parent": "mmenag_ice-worm_bite", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -12611,9 +12611,9 @@ "parent": "mmenag_ice-worm_tail-stinger", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -12634,9 +12634,9 @@ "parent": "mmenag_imp-familiar_sting-bite-while-shapeshifted", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -12657,9 +12657,9 @@ "parent": "mmenag_imp_sting-bite-while-shapeshifted", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -12680,9 +12680,9 @@ "parent": "mmenag_intellect-devourer_claws", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -12703,9 +12703,9 @@ "parent": "mmenag_invisible-stalker_slam", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -12726,9 +12726,9 @@ "parent": "mmenag_iron-guardian_sword", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -12749,9 +12749,9 @@ "parent": "mmenag_jackal_bite", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": null, @@ -12772,9 +12772,9 @@ "parent": "mmenag_jackalope_gore", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -12795,9 +12795,9 @@ "parent": "mmenag_jackalwere-pack-leader_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -12818,9 +12818,9 @@ "parent": "mmenag_jackalwere-pack-leader_scimitar", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -12841,9 +12841,9 @@ "parent": "mmenag_jackalwere_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -12864,9 +12864,9 @@ "parent": "mmenag_jackalwere_scimitar", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -12887,9 +12887,9 @@ "parent": "mmenag_kech_claw", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -12910,9 +12910,9 @@ "parent": "mmenag_kech_strangle", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -12933,9 +12933,9 @@ "parent": "mmenag_khalkos-spawn_sting", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -12956,9 +12956,9 @@ "parent": "mmenag_khalkos_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -12979,9 +12979,9 @@ "parent": "mmenag_killer-whale_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -13002,9 +13002,9 @@ "parent": "mmenag_king-fomor_maul", "attack_type": "WEAPON", "to_hit_mod": 17, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 8, @@ -13025,9 +13025,9 @@ "parent": "mmenag_knight-captain_composite-longbow", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": null, - "range_ft": 150.0, - "long_range_ft": 600.0, + "reach": null, + "range": 150.0, + "long_range": 600.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13048,9 +13048,9 @@ "parent": "mmenag_knight-captain_longsword", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13071,9 +13071,9 @@ "parent": "mmenag_knight_greatsword", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -13094,9 +13094,9 @@ "parent": "mmenag_knight_heavy-crossbow", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": null, - "range_ft": 100.0, - "long_range_ft": 400.0, + "reach": null, + "range": 100.0, + "long_range": 400.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13117,9 +13117,9 @@ "parent": "mmenag_knight_lance", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13140,9 +13140,9 @@ "parent": "mmenag_kobold-broodguard-dragon-servitor_bill-hook", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13163,9 +13163,9 @@ "parent": "mmenag_kobold-broodguard-dragon-servitor_sling", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 30.0, - "long_range_ft": 120.0, + "reach": null, + "range": 30.0, + "long_range": 120.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13186,9 +13186,9 @@ "parent": "mmenag_kobold-broodguard-dragon-servitor_spiked-shield", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13209,9 +13209,9 @@ "parent": "mmenag_kobold-broodguard_bill-hook", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13232,9 +13232,9 @@ "parent": "mmenag_kobold-broodguard_sling", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 30.0, - "long_range_ft": 120.0, + "reach": null, + "range": 30.0, + "long_range": 120.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13255,9 +13255,9 @@ "parent": "mmenag_kobold-broodguard_spiked-shield", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13278,9 +13278,9 @@ "parent": "mmenag_kobold-dragon-servitor_shiv", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13301,9 +13301,9 @@ "parent": "mmenag_kobold-dragon-servitor_sling", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 30.0, - "long_range_ft": 120.0, + "reach": null, + "range": 30.0, + "long_range": 120.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13324,9 +13324,9 @@ "parent": "mmenag_kobold-sorcerer-dragon-servitor_flame-bolt", "attack_type": "SPELL", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 120.0, - "long_range_ft": null, + "reach": null, + "range": 120.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13347,9 +13347,9 @@ "parent": "mmenag_kobold-sorcerer-dragon-servitor_shiv", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13370,9 +13370,9 @@ "parent": "mmenag_kobold-sorcerer_flame-bolt", "attack_type": "SPELL", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 120.0, - "long_range_ft": null, + "reach": null, + "range": 120.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13393,9 +13393,9 @@ "parent": "mmenag_kobold-sorcerer_shiv", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13416,9 +13416,9 @@ "parent": "mmenag_kobold_shiv", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13439,9 +13439,9 @@ "parent": "mmenag_kobold_sling", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 30.0, - "long_range_ft": 120.0, + "reach": null, + "range": 30.0, + "long_range": 120.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13462,9 +13462,9 @@ "parent": "mmenag_kraken_bite", "attack_type": "WEAPON", "to_hit_mod": 18, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -13485,9 +13485,9 @@ "parent": "mmenag_kraken_tentacle", "attack_type": "WEAPON", "to_hit_mod": 18, - "reach_ft": 30.0, - "range_ft": null, - "long_range_ft": null, + "reach": 30.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -13508,9 +13508,9 @@ "parent": "mmenag_lacedon_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13531,9 +13531,9 @@ "parent": "mmenag_lacedon_paralyzing-claw", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13554,9 +13554,9 @@ "parent": "mmenag_lamia_claws", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -13577,9 +13577,9 @@ "parent": "mmenag_lamia_dagger", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13600,9 +13600,9 @@ "parent": "mmenag_lamia_dizzying-touch", "attack_type": "SPELL", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": null, @@ -13623,9 +13623,9 @@ "parent": "mmenag_lemure-band_fists", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, @@ -13646,9 +13646,9 @@ "parent": "mmenag_lemure_fist", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13669,9 +13669,9 @@ "parent": "mmenag_lich_fire-bolt", "attack_type": "SPELL", "to_hit_mod": 12, - "reach_ft": null, - "range_ft": 120.0, - "long_range_ft": null, + "reach": null, + "range": 120.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -13692,9 +13692,9 @@ "parent": "mmenag_lich_paralyzing-touch", "attack_type": "SPELL", "to_hit_mod": 12, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -13715,9 +13715,9 @@ "parent": "mmenag_lion_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13738,9 +13738,9 @@ "parent": "mmenag_lion_claws", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13761,9 +13761,9 @@ "parent": "mmenag_lizard_bite", "attack_type": "WEAPON", "to_hit_mod": 0, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": null, @@ -13784,9 +13784,9 @@ "parent": "mmenag_lizardfolk-chosen-one_shield", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13807,9 +13807,9 @@ "parent": "mmenag_lizardfolk-chosen-one_trident", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -13830,9 +13830,9 @@ "parent": "mmenag_lizardfolk_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13853,9 +13853,9 @@ "parent": "mmenag_lizardfolk_club", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13876,9 +13876,9 @@ "parent": "mmenag_lizardfolk_javelin", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": 30.0, - "long_range_ft": 120.0, + "reach": 5.0, + "range": 30.0, + "long_range": 120.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13899,9 +13899,9 @@ "parent": "mmenag_lizardfolk_shield", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13922,9 +13922,9 @@ "parent": "mmenag_mage_dagger", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13945,9 +13945,9 @@ "parent": "mmenag_mage_fire-bolt", "attack_type": "SPELL", "to_hit_mod": 6, - "reach_ft": null, - "range_ft": 120.0, - "long_range_ft": null, + "reach": null, + "range": 120.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -13968,9 +13968,9 @@ "parent": "mmenag_magma-mephit_claws", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13991,9 +13991,9 @@ "parent": "mmenag_magma-mephit_heat-metal", "attack_type": "SPELL", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": null, + "reach": null, + "range": 60.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -14014,9 +14014,9 @@ "parent": "mmenag_magmin_spurt-magma", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 30.0, - "long_range_ft": null, + "reach": null, + "range": 30.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -14037,9 +14037,9 @@ "parent": "mmenag_magmin_touch", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -14060,9 +14060,9 @@ "parent": "mmenag_malcubus_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -14083,9 +14083,9 @@ "parent": "mmenag_mammoth_gore", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -14106,9 +14106,9 @@ "parent": "mmenag_mammoth_stomp", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -14129,9 +14129,9 @@ "parent": "mmenag_manticore_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -14152,9 +14152,9 @@ "parent": "mmenag_manticore_claws", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -14175,9 +14175,9 @@ "parent": "mmenag_manticore_tail", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -14198,9 +14198,9 @@ "parent": "mmenag_marid-noble_net", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": null, - "range_ft": 5.0, - "long_range_ft": 15.0, + "reach": null, + "range": 5.0, + "long_range": 15.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": null, @@ -14221,9 +14221,9 @@ "parent": "mmenag_marid-noble_trident", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 10.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -14244,9 +14244,9 @@ "parent": "mmenag_marid_net", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": null, - "range_ft": 5.0, - "long_range_ft": 15.0, + "reach": null, + "range": 5.0, + "long_range": 15.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": null, @@ -14267,9 +14267,9 @@ "parent": "mmenag_marid_trident", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 10.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -14290,9 +14290,9 @@ "parent": "mmenag_marilith_longsword", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -14313,9 +14313,9 @@ "parent": "mmenag_master-assassin_light-crossbow", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": null, - "range_ft": 80.0, - "long_range_ft": 320.0, + "reach": null, + "range": 80.0, + "long_range": 320.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -14336,9 +14336,9 @@ "parent": "mmenag_master-assassin_shortsword", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -14359,9 +14359,9 @@ "parent": "mmenag_master-thief_light-crossbow", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": null, - "range_ft": 80.0, - "long_range_ft": 320.0, + "reach": null, + "range": 80.0, + "long_range": 320.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -14382,9 +14382,9 @@ "parent": "mmenag_master-thief_shortsword", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -14405,9 +14405,9 @@ "parent": "mmenag_mastiff_bite", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -14428,9 +14428,9 @@ "parent": "mmenag_medusa-queen_longbow", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": null, - "range_ft": 150.0, - "long_range_ft": 600.0, + "reach": null, + "range": 150.0, + "long_range": 600.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -14451,9 +14451,9 @@ "parent": "mmenag_medusa-queen_snake-hair", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -14474,9 +14474,9 @@ "parent": "mmenag_medusa_longbow", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": null, - "range_ft": 150.0, - "long_range_ft": 600.0, + "reach": null, + "range": 150.0, + "long_range": 600.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -14497,9 +14497,9 @@ "parent": "mmenag_medusa_snake-hair", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -14520,9 +14520,9 @@ "parent": "mmenag_merclops_club", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -14543,9 +14543,9 @@ "parent": "mmenag_merclops_harpoon", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": 90.0, - "long_range_ft": null, + "reach": 10.0, + "range": 90.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -14566,9 +14566,9 @@ "parent": "mmenag_merfolk-knight_lance", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -14589,9 +14589,9 @@ "parent": "mmenag_merfolk-knight_trident", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -14612,9 +14612,9 @@ "parent": "mmenag_merfolk_trident", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -14635,9 +14635,9 @@ "parent": "mmenag_merrow-mage_claws", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -14658,9 +14658,9 @@ "parent": "mmenag_merrow-mage_harpoon", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 10.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -14681,9 +14681,9 @@ "parent": "mmenag_merrow_claws", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -14704,9 +14704,9 @@ "parent": "mmenag_merrow_harpoon", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 10.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -14727,9 +14727,9 @@ "parent": "mmenag_mimic_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -14750,9 +14750,9 @@ "parent": "mmenag_mimic_pseudopod", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -14773,9 +14773,9 @@ "parent": "mmenag_minotaur-champion_gore", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -14796,9 +14796,9 @@ "parent": "mmenag_minotaur-champion_greataxe", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -14819,9 +14819,9 @@ "parent": "mmenag_minotaur_gore", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -14842,9 +14842,9 @@ "parent": "mmenag_minotaur_greataxe", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -14865,9 +14865,9 @@ "parent": "mmenag_minstrel_rapier", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -14888,9 +14888,9 @@ "parent": "mmenag_mirage-monster_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -14911,9 +14911,9 @@ "parent": "mmenag_mirage-monster_pseudopod", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -14934,9 +14934,9 @@ "parent": "mmenag_miremuck-goblin-king_rapier", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -14957,9 +14957,9 @@ "parent": "mmenag_mountain-dwarf-defender_heavy-crossbow", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": null, - "range_ft": 100.0, - "long_range_ft": 400.0, + "reach": null, + "range": 100.0, + "long_range": 400.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -14980,9 +14980,9 @@ "parent": "mmenag_mountain-dwarf-defender_lance", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -15003,9 +15003,9 @@ "parent": "mmenag_mountain-dwarf-defender_warhammer", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -15026,9 +15026,9 @@ "parent": "mmenag_mountain-dwarf-lord_battleaxe", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -15049,9 +15049,9 @@ "parent": "mmenag_mountain-dwarf-lord_composite-longbow", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": null, - "range_ft": 150.0, - "long_range_ft": 600.0, + "reach": null, + "range": 150.0, + "long_range": 600.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -15072,9 +15072,9 @@ "parent": "mmenag_mountain-dwarf-soldier_handaxe", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -15095,9 +15095,9 @@ "parent": "mmenag_mountain-dwarf-soldier_heavy-crossbow", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": null, - "range_ft": 100.0, - "long_range_ft": 400.0, + "reach": null, + "range": 100.0, + "long_range": 400.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -15118,9 +15118,9 @@ "parent": "mmenag_mule_hooves", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -15141,9 +15141,9 @@ "parent": "mmenag_mummy-lord_contagion", "attack_type": "SPELL", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": null, @@ -15164,9 +15164,9 @@ "parent": "mmenag_mummy-lord_rotting-fist", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -15187,9 +15187,9 @@ "parent": "mmenag_mummy_rotting-fist", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -15210,9 +15210,9 @@ "parent": "mmenag_murmuring-worm_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -15233,9 +15233,9 @@ "parent": "mmenag_murmuring-worm_constrict", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -15256,9 +15256,9 @@ "parent": "mmenag_naiad_watery-grasp", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -15279,9 +15279,9 @@ "parent": "mmenag_nalfeshnee_bite", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, @@ -15302,9 +15302,9 @@ "parent": "mmenag_nalfeshnee_claws", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -15325,9 +15325,9 @@ "parent": "mmenag_necromancer_dagger", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -15348,9 +15348,9 @@ "parent": "mmenag_necromancer_fire-bolt", "attack_type": "SPELL", "to_hit_mod": 6, - "reach_ft": null, - "range_ft": 120.0, - "long_range_ft": null, + "reach": null, + "range": 120.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -15371,9 +15371,9 @@ "parent": "mmenag_night-hag_claws", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -15394,9 +15394,9 @@ "parent": "mmenag_night-hag_sleep-touch", "attack_type": "SPELL", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": null, @@ -15417,9 +15417,9 @@ "parent": "mmenag_nightmare_hooves", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -15440,9 +15440,9 @@ "parent": "mmenag_nilbog_fetid-sling", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": null, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": null, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -15463,9 +15463,9 @@ "parent": "mmenag_nilbog_rat-flail", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -15486,9 +15486,9 @@ "parent": "mmenag_noble_rapier", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -15509,9 +15509,9 @@ "parent": "mmenag_ochre-jelly_pseudopod", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -15532,9 +15532,9 @@ "parent": "mmenag_octopus_tentacles", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": null, @@ -15555,9 +15555,9 @@ "parent": "mmenag_ogre-flesh-heap_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -15578,9 +15578,9 @@ "parent": "mmenag_ogre-flesh-heap_grab", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -15601,9 +15601,9 @@ "parent": "mmenag_ogre-flesh-heap_greatclub", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -15624,9 +15624,9 @@ "parent": "mmenag_ogre-flesh-heap_sweeping-strike", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -15647,9 +15647,9 @@ "parent": "mmenag_ogre-mage_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -15670,9 +15670,9 @@ "parent": "mmenag_ogre-mage_iron-club", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -15693,9 +15693,9 @@ "parent": "mmenag_ogre-zombie_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -15716,9 +15716,9 @@ "parent": "mmenag_ogre-zombie_grab", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -15739,9 +15739,9 @@ "parent": "mmenag_ogre-zombie_greatclub", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -15762,9 +15762,9 @@ "parent": "mmenag_ogre-zombie_sweeping-strike", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -15785,9 +15785,9 @@ "parent": "mmenag_ogre_greatclub", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -15808,9 +15808,9 @@ "parent": "mmenag_ogre_javelin", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": 30.0, - "long_range_ft": 120.0, + "reach": 5.0, + "range": 30.0, + "long_range": 120.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -15831,9 +15831,9 @@ "parent": "mmenag_ogre_sweeping-strike", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -15854,9 +15854,9 @@ "parent": "mmenag_ogrekin_battleaxe", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -15877,9 +15877,9 @@ "parent": "mmenag_ogrekin_handaxe", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -15900,9 +15900,9 @@ "parent": "mmenag_orcish-wildling-minstrel_rapier", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -15923,9 +15923,9 @@ "parent": "mmenag_ork-urk_greataxe", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -15946,9 +15946,9 @@ "parent": "mmenag_ork-urk_handaxe", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -15969,9 +15969,9 @@ "parent": "mmenag_otyugh_tentacle", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -15992,9 +15992,9 @@ "parent": "mmenag_owl_talons", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": null, @@ -16015,9 +16015,9 @@ "parent": "mmenag_owlbear-recluse_beak", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -16038,9 +16038,9 @@ "parent": "mmenag_owlbear-recluse_claws", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -16061,9 +16061,9 @@ "parent": "mmenag_owlbear_beak", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -16084,9 +16084,9 @@ "parent": "mmenag_owlbear_claws", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -16107,9 +16107,9 @@ "parent": "mmenag_panther_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -16130,9 +16130,9 @@ "parent": "mmenag_panther_claws", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -16153,9 +16153,9 @@ "parent": "mmenag_pegasus_hooves", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -16176,9 +16176,9 @@ "parent": "mmenag_peryton_gore", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -16199,9 +16199,9 @@ "parent": "mmenag_peryton_talons", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -16222,9 +16222,9 @@ "parent": "mmenag_phase-monster_claws", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -16245,9 +16245,9 @@ "parent": "mmenag_phase-monster_horns", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -16268,9 +16268,9 @@ "parent": "mmenag_phase-spider_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -16291,9 +16291,9 @@ "parent": "mmenag_piercer_pierce", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": null, - "range_ft": null, - "long_range_ft": null, + "reach": null, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -16314,9 +16314,9 @@ "parent": "mmenag_pirate-captain_dagger", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": null, + "reach": 5.0, + "range": 20.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -16337,9 +16337,9 @@ "parent": "mmenag_pirate-captain_scimitar", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -16360,9 +16360,9 @@ "parent": "mmenag_pirate_light-crossbow", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": null, - "range_ft": 80.0, - "long_range_ft": 320.0, + "reach": null, + "range": 80.0, + "long_range": 320.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -16383,9 +16383,9 @@ "parent": "mmenag_pirate_scimitar", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -16406,9 +16406,9 @@ "parent": "mmenag_pit-fiend-general_bite", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -16429,9 +16429,9 @@ "parent": "mmenag_pit-fiend-general_mace", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -16452,9 +16452,9 @@ "parent": "mmenag_pit-fiend_bite", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -16475,9 +16475,9 @@ "parent": "mmenag_pit-fiend_mace", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -16498,9 +16498,9 @@ "parent": "mmenag_pixie_thorn-dagger", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": 10.0, - "long_range_ft": 30.0, + "reach": 5.0, + "range": 10.0, + "long_range": 30.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": null, @@ -16521,9 +16521,9 @@ "parent": "mmenag_planetar_flaming-sword", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -16544,9 +16544,9 @@ "parent": "mmenag_plesiosaurus_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -16567,9 +16567,9 @@ "parent": "mmenag_poisonous-snake_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -16590,9 +16590,9 @@ "parent": "mmenag_polar-bear_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -16613,9 +16613,9 @@ "parent": "mmenag_polar-bear_claws", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -16636,9 +16636,9 @@ "parent": "mmenag_pony_hooves", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -16659,9 +16659,9 @@ "parent": "mmenag_priest_guiding-bolt", "attack_type": "SPELL", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 120.0, - "long_range_ft": null, + "reach": null, + "range": 120.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -16682,9 +16682,9 @@ "parent": "mmenag_priest_mace", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -16705,9 +16705,9 @@ "parent": "mmenag_pseudodragon-familiar_sting", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -16728,9 +16728,9 @@ "parent": "mmenag_pseudodragon_sting", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -16751,9 +16751,9 @@ "parent": "mmenag_pteranodon_bite", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -16774,9 +16774,9 @@ "parent": "mmenag_pugilist_fists", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -16797,9 +16797,9 @@ "parent": "mmenag_purple-worm_bite", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -16820,9 +16820,9 @@ "parent": "mmenag_purple-worm_tail-stinger", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -16843,9 +16843,9 @@ "parent": "mmenag_pyrohydra_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -16866,9 +16866,9 @@ "parent": "mmenag_quasit-familiar_claws-bite-while-shapeshifted", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -16889,9 +16889,9 @@ "parent": "mmenag_quasit_claws-bite-while-shapeshifted", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -16912,9 +16912,9 @@ "parent": "mmenag_quipper_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": null, @@ -16935,9 +16935,9 @@ "parent": "mmenag_rakshasa_claw", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -16958,9 +16958,9 @@ "parent": "mmenag_rakshasa_rapier", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -16981,9 +16981,9 @@ "parent": "mmenag_raptor_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -17004,9 +17004,9 @@ "parent": "mmenag_rat_bite", "attack_type": "WEAPON", "to_hit_mod": 1, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": null, @@ -17027,9 +17027,9 @@ "parent": "mmenag_raven_beak", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": null, @@ -17050,9 +17050,9 @@ "parent": "mmenag_red-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -17073,9 +17073,9 @@ "parent": "mmenag_reef-shark_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -17096,9 +17096,9 @@ "parent": "mmenag_remorhaz-spawn_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -17119,9 +17119,9 @@ "parent": "mmenag_remorhaz-spawn_constrict", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -17142,9 +17142,9 @@ "parent": "mmenag_remorhaz_bite", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -17165,9 +17165,9 @@ "parent": "mmenag_remorhaz_constrict", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -17188,9 +17188,9 @@ "parent": "mmenag_revenant_strangle", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -17211,9 +17211,9 @@ "parent": "mmenag_revilock_sling", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 30.0, - "long_range_ft": 120.0, + "reach": null, + "range": 30.0, + "long_range": 120.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -17234,9 +17234,9 @@ "parent": "mmenag_revilock_spiked-club", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -17257,9 +17257,9 @@ "parent": "mmenag_revilock_throttle", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -17280,9 +17280,9 @@ "parent": "mmenag_rhinoceros_gore", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -17303,9 +17303,9 @@ "parent": "mmenag_riding-horse_hooves", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -17326,9 +17326,9 @@ "parent": "mmenag_river-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -17349,9 +17349,9 @@ "parent": "mmenag_roc-juvenile_beak", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -17372,9 +17372,9 @@ "parent": "mmenag_roc-juvenile_talons", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -17395,9 +17395,9 @@ "parent": "mmenag_roc_beak", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -17418,9 +17418,9 @@ "parent": "mmenag_roc_talons", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -17441,9 +17441,9 @@ "parent": "mmenag_roper_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -17464,9 +17464,9 @@ "parent": "mmenag_roper_tendril", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 50.0, - "range_ft": null, - "long_range_ft": null, + "reach": 50.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": null, @@ -17487,9 +17487,9 @@ "parent": "mmenag_rug-of-smothering_smother", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": null, @@ -17510,9 +17510,9 @@ "parent": "mmenag_rust-monster_bite", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -17533,9 +17533,9 @@ "parent": "mmenag_saber-toothed-tiger_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -17556,9 +17556,9 @@ "parent": "mmenag_saber-toothed-tiger_claws", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -17579,9 +17579,9 @@ "parent": "mmenag_sahuagin-champion_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -17602,9 +17602,9 @@ "parent": "mmenag_sahuagin-champion_trident", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -17625,9 +17625,9 @@ "parent": "mmenag_sahuagin_claw", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -17648,9 +17648,9 @@ "parent": "mmenag_sahuagin_trident", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -17671,9 +17671,9 @@ "parent": "mmenag_salamander-noble_pike", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -17694,9 +17694,9 @@ "parent": "mmenag_salamander-noble_tail", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -17717,9 +17717,9 @@ "parent": "mmenag_salamander-nymph_tail", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -17740,9 +17740,9 @@ "parent": "mmenag_salamander_pike", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -17763,9 +17763,9 @@ "parent": "mmenag_salamander_tail", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -17786,9 +17786,9 @@ "parent": "mmenag_sand-ray_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -17809,9 +17809,9 @@ "parent": "mmenag_sand-ray_tail", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -17832,9 +17832,9 @@ "parent": "mmenag_sand-worm_bite", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -17855,9 +17855,9 @@ "parent": "mmenag_sand-worm_tail-stinger", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -17878,9 +17878,9 @@ "parent": "mmenag_sapphire-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -17901,9 +17901,9 @@ "parent": "mmenag_satyr_ram", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -17924,9 +17924,9 @@ "parent": "mmenag_satyr_rapier", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -17947,9 +17947,9 @@ "parent": "mmenag_satyr_shortbow", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 80.0, - "long_range_ft": 320.0, + "reach": null, + "range": 80.0, + "long_range": 320.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -17970,9 +17970,9 @@ "parent": "mmenag_scarecrow-harvester_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -17993,9 +17993,9 @@ "parent": "mmenag_scarecrow_slam", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -18016,9 +18016,9 @@ "parent": "mmenag_scorpion_sting", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -18039,9 +18039,9 @@ "parent": "mmenag_scorpionfolk-imperator_claw", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -18062,9 +18062,9 @@ "parent": "mmenag_scorpionfolk-imperator_javelin", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": 30.0, - "long_range_ft": 120.0, + "reach": 5.0, + "range": 30.0, + "long_range": 120.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -18085,9 +18085,9 @@ "parent": "mmenag_scorpionfolk_claw", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -18108,9 +18108,9 @@ "parent": "mmenag_scorpionfolk_javelin", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": 30.0, - "long_range_ft": 120.0, + "reach": 5.0, + "range": 30.0, + "long_range": 120.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -18131,9 +18131,9 @@ "parent": "mmenag_scout_longbow", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 150.0, - "long_range_ft": 600.0, + "reach": null, + "range": 150.0, + "long_range": 600.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -18154,9 +18154,9 @@ "parent": "mmenag_scout_shortsword", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -18177,9 +18177,9 @@ "parent": "mmenag_scrag_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -18200,9 +18200,9 @@ "parent": "mmenag_scrag_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -18223,9 +18223,9 @@ "parent": "mmenag_sea-hag_claws", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -18246,9 +18246,9 @@ "parent": "mmenag_sea-serpent_bite", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -18269,9 +18269,9 @@ "parent": "mmenag_sea-serpent_coils", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -18292,9 +18292,9 @@ "parent": "mmenag_sea-serpent_tail", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -18315,9 +18315,9 @@ "parent": "mmenag_shadow-demon_claws", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -18338,9 +18338,9 @@ "parent": "mmenag_shadow-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -18361,9 +18361,9 @@ "parent": "mmenag_shadow-elf-champion-warrior_hand-crossbow", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": null, - "range_ft": 30.0, - "long_range_ft": 120.0, + "reach": null, + "range": 30.0, + "long_range": 120.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -18384,9 +18384,9 @@ "parent": "mmenag_shadow-elf-champion-warrior_shortsword", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -18407,9 +18407,9 @@ "parent": "mmenag_shadow-elf-high-priest_mace", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -18430,9 +18430,9 @@ "parent": "mmenag_shadow-elf-mage_dagger", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -18453,9 +18453,9 @@ "parent": "mmenag_shadow-elf-mage_fire-bolt", "attack_type": "SPELL", "to_hit_mod": 6, - "reach_ft": null, - "range_ft": 120.0, - "long_range_ft": null, + "reach": null, + "range": 120.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -18476,9 +18476,9 @@ "parent": "mmenag_shadow-elf-spellcaster-drider_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -18499,9 +18499,9 @@ "parent": "mmenag_shadow-elf-spellcaster-drider_claws", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -18522,9 +18522,9 @@ "parent": "mmenag_shadow-elf-spellcaster-drider_longbow", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": null, - "range_ft": 120.0, - "long_range_ft": 600.0, + "reach": null, + "range": 120.0, + "long_range": 600.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -18545,9 +18545,9 @@ "parent": "mmenag_shadow-elf-spellcaster-drider_longsword-wielded-two-handed", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -18568,9 +18568,9 @@ "parent": "mmenag_shadow-elf-warrior_hand-crossbow", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": null, - "range_ft": 30.0, - "long_range_ft": 120.0, + "reach": null, + "range": 30.0, + "long_range": 120.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -18591,9 +18591,9 @@ "parent": "mmenag_shadow-elf-warrior_shortsword", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -18614,9 +18614,9 @@ "parent": "mmenag_shadow_claw", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -18637,9 +18637,9 @@ "parent": "mmenag_shambling-mound_slam", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -18660,9 +18660,9 @@ "parent": "mmenag_shield-guardian_fist", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -18683,9 +18683,9 @@ "parent": "mmenag_shroud-ray_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -18706,9 +18706,9 @@ "parent": "mmenag_shroud-ray_tail", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -18729,9 +18729,9 @@ "parent": "mmenag_silver-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -18752,9 +18752,9 @@ "parent": "mmenag_siren_claw", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -18775,9 +18775,9 @@ "parent": "mmenag_skeletal-champion_heavy-crossbow", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 100.0, - "long_range_ft": 400.0, + "reach": null, + "range": 100.0, + "long_range": 400.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -18798,9 +18798,9 @@ "parent": "mmenag_skeletal-champion_longsword", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -18821,9 +18821,9 @@ "parent": "mmenag_skeletal-tyrannosaurus-rex_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -18844,9 +18844,9 @@ "parent": "mmenag_skeletal-tyrannosaurus-rex_tail", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -18867,9 +18867,9 @@ "parent": "mmenag_skeletal-warhorse_hooves", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -18890,9 +18890,9 @@ "parent": "mmenag_skeleton-horde_shortbow", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 80.0, - "long_range_ft": 320.0, + "reach": null, + "range": 80.0, + "long_range": 320.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, @@ -18913,9 +18913,9 @@ "parent": "mmenag_skeleton-horde_shortsword", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, @@ -18936,9 +18936,9 @@ "parent": "mmenag_skeleton_shortbow", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 80.0, - "long_range_ft": 320.0, + "reach": null, + "range": 80.0, + "long_range": 320.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -18959,9 +18959,9 @@ "parent": "mmenag_skeleton_shortsword", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -18982,9 +18982,9 @@ "parent": "mmenag_snake-lamia_constrict", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -19005,9 +19005,9 @@ "parent": "mmenag_snake-lamia_dagger", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -19028,9 +19028,9 @@ "parent": "mmenag_snake-lamia_dizzying-touch", "attack_type": "SPELL", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": null, @@ -19051,9 +19051,9 @@ "parent": "mmenag_solar_holy-sword", "attack_type": "WEAPON", "to_hit_mod": 16, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -19074,9 +19074,9 @@ "parent": "mmenag_soldier-squad_spears", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, @@ -19097,9 +19097,9 @@ "parent": "mmenag_soldier_heavy-crossbow", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": null, - "range_ft": 100.0, - "long_range_ft": 400.0, + "reach": null, + "range": 100.0, + "long_range": 400.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -19120,9 +19120,9 @@ "parent": "mmenag_soldier_spear", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -19143,9 +19143,9 @@ "parent": "mmenag_spark-mephit_claws", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -19166,9 +19166,9 @@ "parent": "mmenag_specter_life-drain", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -19189,9 +19189,9 @@ "parent": "mmenag_spell-warped-chuul_pincer", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -19212,9 +19212,9 @@ "parent": "mmenag_sphinx_claw", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -19235,9 +19235,9 @@ "parent": "mmenag_spider_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -19258,9 +19258,9 @@ "parent": "mmenag_spirit-naga_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -19281,9 +19281,9 @@ "parent": "mmenag_sprite_rapier", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -19304,9 +19304,9 @@ "parent": "mmenag_sprite_shortbow", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": null, - "range_ft": 40.0, - "long_range_ft": 160.0, + "reach": null, + "range": 40.0, + "long_range": 160.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -19327,9 +19327,9 @@ "parent": "mmenag_spy_hand-crossbow", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 30.0, - "long_range_ft": 120.0, + "reach": null, + "range": 30.0, + "long_range": 120.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -19350,9 +19350,9 @@ "parent": "mmenag_spy_shortsword", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -19373,9 +19373,9 @@ "parent": "mmenag_spymaster_hand-crossbow", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": null, - "range_ft": 30.0, - "long_range_ft": 120.0, + "reach": null, + "range": 30.0, + "long_range": 120.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -19396,9 +19396,9 @@ "parent": "mmenag_spymaster_shortsword", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -19419,9 +19419,9 @@ "parent": "mmenag_steam-mephit_claws", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -19442,9 +19442,9 @@ "parent": "mmenag_stegosaurus_tail", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -19465,9 +19465,9 @@ "parent": "mmenag_stirge_proboscis", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": null, @@ -19488,9 +19488,9 @@ "parent": "mmenag_stone-colossus_rock", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": 240.0, + "reach": null, + "range": 60.0, + "long_range": 240.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 7, @@ -19511,9 +19511,9 @@ "parent": "mmenag_stone-colossus_slam", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -19534,9 +19534,9 @@ "parent": "mmenag_stone-giant-stonetalker_greatclub", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -19557,9 +19557,9 @@ "parent": "mmenag_stone-giant-stonetalker_rock", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": 240.0, + "reach": null, + "range": 60.0, + "long_range": 240.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -19580,9 +19580,9 @@ "parent": "mmenag_stone-giant_greatclub", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -19603,9 +19603,9 @@ "parent": "mmenag_stone-giant_rock", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": 240.0, + "reach": null, + "range": 60.0, + "long_range": 240.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -19626,9 +19626,9 @@ "parent": "mmenag_stone-guardian_rock", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": 240.0, + "reach": null, + "range": 60.0, + "long_range": 240.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 7, @@ -19649,9 +19649,9 @@ "parent": "mmenag_stone-guardian_slam", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -19672,9 +19672,9 @@ "parent": "mmenag_storm-giant-monarch_greatsword", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, @@ -19695,9 +19695,9 @@ "parent": "mmenag_storm-giant-monarch_rock", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": 240.0, + "reach": null, + "range": 60.0, + "long_range": 240.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 10, @@ -19718,9 +19718,9 @@ "parent": "mmenag_storm-giant_greatsword", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, @@ -19741,9 +19741,9 @@ "parent": "mmenag_storm-giant_rock", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": 240.0, + "reach": null, + "range": 60.0, + "long_range": 240.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 10, @@ -19764,9 +19764,9 @@ "parent": "mmenag_stout-halfling-guard_spear", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -19787,9 +19787,9 @@ "parent": "mmenag_strider_shortbow", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": null, - "range_ft": 80.0, - "long_range_ft": 320.0, + "reach": null, + "range": 80.0, + "long_range": 320.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -19810,9 +19810,9 @@ "parent": "mmenag_strider_shortsword", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -19833,9 +19833,9 @@ "parent": "mmenag_swarm-of-bats_bites", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 0.0, - "range_ft": null, - "long_range_ft": null, + "reach": 0.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -19856,9 +19856,9 @@ "parent": "mmenag_swarm-of-insects_bites", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 0.0, - "range_ft": null, - "long_range_ft": null, + "reach": 0.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -19879,9 +19879,9 @@ "parent": "mmenag_swarm-of-insects_venom", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 0.0, - "range_ft": null, - "long_range_ft": null, + "reach": 0.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -19902,9 +19902,9 @@ "parent": "mmenag_swarm-of-khalkos-spawn_sting", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -19925,9 +19925,9 @@ "parent": "mmenag_swarm-of-poisonous-snakes_bites", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 0.0, - "range_ft": null, - "long_range_ft": null, + "reach": 0.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -19948,9 +19948,9 @@ "parent": "mmenag_swarm-of-quippers_bites", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 0.0, - "range_ft": null, - "long_range_ft": null, + "reach": 0.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -19971,9 +19971,9 @@ "parent": "mmenag_swarm-of-rats_bites", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": 0.0, - "range_ft": null, - "long_range_ft": null, + "reach": 0.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -19994,9 +19994,9 @@ "parent": "mmenag_swarm-of-ravens_beaks", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 0.0, - "range_ft": null, - "long_range_ft": null, + "reach": 0.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -20017,9 +20017,9 @@ "parent": "mmenag_tarrasque_bite", "attack_type": "WEAPON", "to_hit_mod": 19, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, @@ -20040,9 +20040,9 @@ "parent": "mmenag_tarrasque_claw", "attack_type": "WEAPON", "to_hit_mod": 19, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, @@ -20063,9 +20063,9 @@ "parent": "mmenag_tarrasque_horns", "attack_type": "WEAPON", "to_hit_mod": 19, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, @@ -20086,9 +20086,9 @@ "parent": "mmenag_tarrasque_tail", "attack_type": "WEAPON", "to_hit_mod": 19, - "reach_ft": 20.0, - "range_ft": null, - "long_range_ft": null, + "reach": 20.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, @@ -20109,9 +20109,9 @@ "parent": "mmenag_thug_brass-knuckles", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -20132,9 +20132,9 @@ "parent": "mmenag_thug_heavy-crossbow", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 100.0, - "long_range_ft": null, + "reach": null, + "range": 100.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -20155,9 +20155,9 @@ "parent": "mmenag_thunderbird_beak", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -20178,9 +20178,9 @@ "parent": "mmenag_thunderbird_talons", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -20201,9 +20201,9 @@ "parent": "mmenag_tiger_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -20224,9 +20224,9 @@ "parent": "mmenag_tiger_claws", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -20247,9 +20247,9 @@ "parent": "mmenag_titanic-dragon-turtle_bite", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 7, @@ -20270,9 +20270,9 @@ "parent": "mmenag_titanic-dragon-turtle_ram", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, @@ -20293,9 +20293,9 @@ "parent": "mmenag_titanic-dragon-turtle_tail", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, @@ -20316,9 +20316,9 @@ "parent": "mmenag_titanic-kraken_bite", "attack_type": "WEAPON", "to_hit_mod": 18, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -20339,9 +20339,9 @@ "parent": "mmenag_titanic-kraken_tentacle", "attack_type": "WEAPON", "to_hit_mod": 18, - "reach_ft": 30.0, - "range_ft": null, - "long_range_ft": null, + "reach": 30.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -20362,9 +20362,9 @@ "parent": "mmenag_treant_rock", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": 180.0, + "reach": null, + "range": 60.0, + "long_range": 180.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -20385,9 +20385,9 @@ "parent": "mmenag_treant_slam", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -20408,9 +20408,9 @@ "parent": "mmenag_triceratops_defensive-gore", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -20431,9 +20431,9 @@ "parent": "mmenag_trickster-priest_mace", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -20454,9 +20454,9 @@ "parent": "mmenag_troglodyte_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -20477,9 +20477,9 @@ "parent": "mmenag_troglodyte_claws", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -20500,9 +20500,9 @@ "parent": "mmenag_troglodyte_dart", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": null, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -20523,9 +20523,9 @@ "parent": "mmenag_troll_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -20546,9 +20546,9 @@ "parent": "mmenag_troll_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -20569,9 +20569,9 @@ "parent": "mmenag_tyrannosaurus-rex_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -20592,9 +20592,9 @@ "parent": "mmenag_tyrannosaurus-rex_tail", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -20615,9 +20615,9 @@ "parent": "mmenag_unicorn_hooves", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -20638,9 +20638,9 @@ "parent": "mmenag_unicorn_horn", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -20661,9 +20661,9 @@ "parent": "mmenag_ur-otyugh_tentacle", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -20684,9 +20684,9 @@ "parent": "mmenag_vampire-assassin_grab", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -20707,9 +20707,9 @@ "parent": "mmenag_vampire-mage_grab", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -20730,9 +20730,9 @@ "parent": "mmenag_vampire-spawn_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -20753,9 +20753,9 @@ "parent": "mmenag_vampire-spawn_grab", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -20776,9 +20776,9 @@ "parent": "mmenag_vampire-warrior_grab", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -20799,9 +20799,9 @@ "parent": "mmenag_vampire-warrior_reaping-greatsword", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -20822,9 +20822,9 @@ "parent": "mmenag_vampire_grab", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -20845,9 +20845,9 @@ "parent": "mmenag_vengeful-ghost_withering-touch", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -20868,9 +20868,9 @@ "parent": "mmenag_veteran_heavy-crossbow", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": null, - "range_ft": 100.0, - "long_range_ft": 400.0, + "reach": null, + "range": 100.0, + "long_range": 400.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -20891,9 +20891,9 @@ "parent": "mmenag_veteran_longsword", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -20914,9 +20914,9 @@ "parent": "mmenag_veteran_shortsword", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -20937,9 +20937,9 @@ "parent": "mmenag_violet-fungus_rotting-touch", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -20960,9 +20960,9 @@ "parent": "mmenag_vrock_beak", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -20983,9 +20983,9 @@ "parent": "mmenag_vrock_talons", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -21006,9 +21006,9 @@ "parent": "mmenag_vulture_beak", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -21029,9 +21029,9 @@ "parent": "mmenag_walking-statue_smash", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -21052,9 +21052,9 @@ "parent": "mmenag_wallflower_tentacles", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -21075,9 +21075,9 @@ "parent": "mmenag_warhordling-orc-eye_guiding-bolt", "attack_type": "SPELL", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 120.0, - "long_range_ft": null, + "reach": null, + "range": 120.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -21098,9 +21098,9 @@ "parent": "mmenag_warhordling-orc-eye_mace", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -21121,9 +21121,9 @@ "parent": "mmenag_warhordling-orc-war-chief_greataxe", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -21144,9 +21144,9 @@ "parent": "mmenag_warhordling-orc-warrior_greataxe", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -21167,9 +21167,9 @@ "parent": "mmenag_warhorse_hooves", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -21190,9 +21190,9 @@ "parent": "mmenag_warrior-band_spears", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, @@ -21213,9 +21213,9 @@ "parent": "mmenag_warrior_spear", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -21236,9 +21236,9 @@ "parent": "mmenag_water-elemental_slam", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -21259,9 +21259,9 @@ "parent": "mmenag_weasel_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": null, @@ -21282,9 +21282,9 @@ "parent": "mmenag_werebear_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -21305,9 +21305,9 @@ "parent": "mmenag_werebear_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -21328,9 +21328,9 @@ "parent": "mmenag_werebear_greataxe", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -21351,9 +21351,9 @@ "parent": "mmenag_werebear_handaxe", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -21374,9 +21374,9 @@ "parent": "mmenag_wereboar_maul", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -21397,9 +21397,9 @@ "parent": "mmenag_wereboar_tusks", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -21420,9 +21420,9 @@ "parent": "mmenag_wererat_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -21443,9 +21443,9 @@ "parent": "mmenag_wererat_hand-crossbow", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 30.0, - "long_range_ft": 120.0, + "reach": null, + "range": 30.0, + "long_range": 120.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -21466,9 +21466,9 @@ "parent": "mmenag_wererat_shortsword", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -21489,9 +21489,9 @@ "parent": "mmenag_weretiger_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -21512,9 +21512,9 @@ "parent": "mmenag_weretiger_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -21535,9 +21535,9 @@ "parent": "mmenag_weretiger_longbow", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 150.0, - "long_range_ft": 600.0, + "reach": null, + "range": 150.0, + "long_range": 600.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -21558,9 +21558,9 @@ "parent": "mmenag_weretiger_longsword", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -21581,9 +21581,9 @@ "parent": "mmenag_werewolf_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -21604,9 +21604,9 @@ "parent": "mmenag_werewolf_claw", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -21627,9 +21627,9 @@ "parent": "mmenag_werewolf_greatclub", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -21650,9 +21650,9 @@ "parent": "mmenag_white-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -21673,9 +21673,9 @@ "parent": "mmenag_wight_longbow", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 150.0, - "long_range_ft": 600.0, + "reach": null, + "range": 150.0, + "long_range": 600.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -21696,9 +21696,9 @@ "parent": "mmenag_wight_longsword", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -21719,9 +21719,9 @@ "parent": "mmenag_wight_seize", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -21742,9 +21742,9 @@ "parent": "mmenag_will-o-wisp_shock", "attack_type": "SPELL", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -21765,9 +21765,9 @@ "parent": "mmenag_winter-hag_claws", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -21788,9 +21788,9 @@ "parent": "mmenag_winter-hag_ice-bolt", "attack_type": "SPELL", "to_hit_mod": 7, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": null, + "reach": null, + "range": 60.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -21811,9 +21811,9 @@ "parent": "mmenag_winter-wolf_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -21834,9 +21834,9 @@ "parent": "mmenag_wolf_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -21857,9 +21857,9 @@ "parent": "mmenag_wood-elf-scout_longbow", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 150.0, - "long_range_ft": 600.0, + "reach": null, + "range": 150.0, + "long_range": 600.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -21880,9 +21880,9 @@ "parent": "mmenag_wood-elf-scout_shortsword", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -21903,9 +21903,9 @@ "parent": "mmenag_wood-elf-sharpshooter_longbow", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": null, - "range_ft": 150.0, - "long_range_ft": 600.0, + "reach": null, + "range": 150.0, + "long_range": 600.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -21926,9 +21926,9 @@ "parent": "mmenag_wood-elf-sharpshooter_longsword", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -21949,9 +21949,9 @@ "parent": "mmenag_worg_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -21972,9 +21972,9 @@ "parent": "mmenag_wraith-lord_greatsword", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -21995,9 +21995,9 @@ "parent": "mmenag_wyvern_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -22018,9 +22018,9 @@ "parent": "mmenag_wyvern_claws", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -22041,9 +22041,9 @@ "parent": "mmenag_wyvern_stinger", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -22064,9 +22064,9 @@ "parent": "mmenag_xorn_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -22087,9 +22087,9 @@ "parent": "mmenag_xorn_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -22110,9 +22110,9 @@ "parent": "mmenag_yeti_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -22133,9 +22133,9 @@ "parent": "mmenag_yobbo_mangler", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -22156,9 +22156,9 @@ "parent": "mmenag_yobbo_spike-ball", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 30.0, - "long_range_ft": 90.0, + "reach": null, + "range": 30.0, + "long_range": 90.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -22179,9 +22179,9 @@ "parent": "mmenag_young-amethyst-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -22202,9 +22202,9 @@ "parent": "mmenag_young-amethyst-dragon_claws", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -22225,9 +22225,9 @@ "parent": "mmenag_young-black-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -22248,9 +22248,9 @@ "parent": "mmenag_young-black-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -22271,9 +22271,9 @@ "parent": "mmenag_young-blue-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -22294,9 +22294,9 @@ "parent": "mmenag_young-blue-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -22317,9 +22317,9 @@ "parent": "mmenag_young-brass-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -22340,9 +22340,9 @@ "parent": "mmenag_young-brass-dragon_claws", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -22363,9 +22363,9 @@ "parent": "mmenag_young-bronze-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -22386,9 +22386,9 @@ "parent": "mmenag_young-bronze-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -22409,9 +22409,9 @@ "parent": "mmenag_young-bronze-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -22432,9 +22432,9 @@ "parent": "mmenag_young-bronze-dragon_trident", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -22455,9 +22455,9 @@ "parent": "mmenag_young-copper-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -22478,9 +22478,9 @@ "parent": "mmenag_young-copper-dragon_claws", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -22501,9 +22501,9 @@ "parent": "mmenag_young-earth-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -22524,9 +22524,9 @@ "parent": "mmenag_young-earth-dragon_slam", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -22547,9 +22547,9 @@ "parent": "mmenag_young-emerald-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -22570,9 +22570,9 @@ "parent": "mmenag_young-emerald-dragon_claws", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -22593,9 +22593,9 @@ "parent": "mmenag_young-gold-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -22616,9 +22616,9 @@ "parent": "mmenag_young-gold-dragon_claws", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -22639,9 +22639,9 @@ "parent": "mmenag_young-green-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -22662,9 +22662,9 @@ "parent": "mmenag_young-green-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -22685,9 +22685,9 @@ "parent": "mmenag_young-red-dragon-zombie_bite", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -22708,9 +22708,9 @@ "parent": "mmenag_young-red-dragon-zombie_claws", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -22731,9 +22731,9 @@ "parent": "mmenag_young-red-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -22754,9 +22754,9 @@ "parent": "mmenag_young-red-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -22777,9 +22777,9 @@ "parent": "mmenag_young-river-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -22800,9 +22800,9 @@ "parent": "mmenag_young-river-dragon_claws", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -22823,9 +22823,9 @@ "parent": "mmenag_young-sapphire-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -22846,9 +22846,9 @@ "parent": "mmenag_young-sapphire-dragon_claws", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -22869,9 +22869,9 @@ "parent": "mmenag_young-shadow-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -22892,9 +22892,9 @@ "parent": "mmenag_young-shadow-dragon_claws", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -22915,9 +22915,9 @@ "parent": "mmenag_young-silver-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -22938,9 +22938,9 @@ "parent": "mmenag_young-silver-dragon_claws", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -22961,9 +22961,9 @@ "parent": "mmenag_young-white-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -22984,9 +22984,9 @@ "parent": "mmenag_young-white-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -23007,9 +23007,9 @@ "parent": "mmenag_zombie-horde_bite", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, @@ -23030,9 +23030,9 @@ "parent": "mmenag_zombie-horde_grab", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, @@ -23053,9 +23053,9 @@ "parent": "mmenag_zombie-knight_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -23076,9 +23076,9 @@ "parent": "mmenag_zombie-knight_grab", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -23099,9 +23099,9 @@ "parent": "mmenag_zombie-knight_greatsword", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -23122,9 +23122,9 @@ "parent": "mmenag_zombie_bite", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -23145,9 +23145,9 @@ "parent": "mmenag_zombie_grab", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, From 7b87df22c2b09cd872792aa4b9957962777cb0a6 Mon Sep 17 00:00:00 2001 From: August Johnson Date: Wed, 9 Oct 2024 11:40:58 -0500 Subject: [PATCH 07/11] Size distance conversion. --- api_v2/models/size.py | 8 +- data/v2/en-publishing/mmenag/Size.json | 2 +- .../tdcs/CreatureActionAttack.json | 24 +- .../bfrd/CreatureActionAttack.json | 3954 +++++++-------- .../ccdx/CreatureActionAttack.json | 3624 +++++++------- .../tob-2023/CreatureActionAttack.json | 4434 ++++++++--------- .../tob/CreatureActionAttack.json | 3942 +++++++-------- .../tob2/CreatureActionAttack.json | 3852 +++++++------- .../srd/CreatureActionAttack.json | 24 +- data/v2/wizards-of-the-coast/srd/Size.json | 12 +- 10 files changed, 9936 insertions(+), 9940 deletions(-) diff --git a/api_v2/models/size.py b/api_v2/models/size.py index b5e95fd4..1ec59d81 100644 --- a/api_v2/models/size.py +++ b/api_v2/models/size.py @@ -2,6 +2,7 @@ from django.core.validators import MinValueValidator from .abstracts import HasName +from .abstracts import distance_field from .document import FromDocument class Size(HasName, FromDocument): @@ -16,9 +17,4 @@ class Size(HasName, FromDocument): unique=True, help_text='Ranking of the size, smallest has the lowest values.') - space_diameter = models.DecimalField( - default=0, - max_digits=10, - decimal_places=3, - validators=[MinValueValidator(0)], - help_text='Number representing the diameter of the space controlled by the object.') + space_diameter = distance_field() \ No newline at end of file diff --git a/data/v2/en-publishing/mmenag/Size.json b/data/v2/en-publishing/mmenag/Size.json index 3042d34f..d4ab8328 100644 --- a/data/v2/en-publishing/mmenag/Size.json +++ b/data/v2/en-publishing/mmenag/Size.json @@ -6,7 +6,7 @@ "name": "Titanic", "document": "mmenag", "rank": 7, - "space_diameter": "25.000" + "space_diameter": 25.0 } } ] diff --git a/data/v2/green-ronin/tdcs/CreatureActionAttack.json b/data/v2/green-ronin/tdcs/CreatureActionAttack.json index 8cc08178..7488d287 100644 --- a/data/v2/green-ronin/tdcs/CreatureActionAttack.json +++ b/data/v2/green-ronin/tdcs/CreatureActionAttack.json @@ -7,9 +7,9 @@ "parent": "tdcs_firetamer_scimitar", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -30,9 +30,9 @@ "parent": "tdcs_skydancer_skysail-staff", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -53,9 +53,9 @@ "parent": "tdcs_stoneguard_granite-maul", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -76,9 +76,9 @@ "parent": "tdcs_waverider_harpoon", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, diff --git a/data/v2/kobold-press/bfrd/CreatureActionAttack.json b/data/v2/kobold-press/bfrd/CreatureActionAttack.json index c3a72498..40150dad 100644 --- a/data/v2/kobold-press/bfrd/CreatureActionAttack.json +++ b/data/v2/kobold-press/bfrd/CreatureActionAttack.json @@ -7,9 +7,9 @@ "parent": "bfrd_aboleth_psychic-bolt", "attack_type": "SPELL", "to_hit_mod": 8, - "reach_ft": null, - "range_ft": 120.0, - "long_range_ft": null, + "reach": null, + "range": 120.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -30,9 +30,9 @@ "parent": "bfrd_aboleth_tentacle", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -53,9 +53,9 @@ "parent": "bfrd_acolyte_mace", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -76,9 +76,9 @@ "parent": "bfrd_acolyte_radiant-bolt", "attack_type": "SPELL", "to_hit_mod": 6, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": null, + "reach": null, + "range": 60.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -99,9 +99,9 @@ "parent": "bfrd_adult-black-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -122,9 +122,9 @@ "parent": "bfrd_adult-black-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -145,9 +145,9 @@ "parent": "bfrd_adult-black-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -168,9 +168,9 @@ "parent": "bfrd_adult-blue-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -191,9 +191,9 @@ "parent": "bfrd_adult-blue-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -214,9 +214,9 @@ "parent": "bfrd_adult-blue-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -237,9 +237,9 @@ "parent": "bfrd_adult-brass-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -260,9 +260,9 @@ "parent": "bfrd_adult-brass-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -283,9 +283,9 @@ "parent": "bfrd_adult-brass-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -306,9 +306,9 @@ "parent": "bfrd_adult-bronze-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -329,9 +329,9 @@ "parent": "bfrd_adult-bronze-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -352,9 +352,9 @@ "parent": "bfrd_adult-bronze-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -375,9 +375,9 @@ "parent": "bfrd_adult-copper-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -398,9 +398,9 @@ "parent": "bfrd_adult-copper-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -421,9 +421,9 @@ "parent": "bfrd_adult-copper-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -444,9 +444,9 @@ "parent": "bfrd_adult-gold-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -467,9 +467,9 @@ "parent": "bfrd_adult-gold-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -490,9 +490,9 @@ "parent": "bfrd_adult-gold-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -513,9 +513,9 @@ "parent": "bfrd_adult-green-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -536,9 +536,9 @@ "parent": "bfrd_adult-green-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -559,9 +559,9 @@ "parent": "bfrd_adult-green-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -582,9 +582,9 @@ "parent": "bfrd_adult-red-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -605,9 +605,9 @@ "parent": "bfrd_adult-red-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -628,9 +628,9 @@ "parent": "bfrd_adult-red-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -651,9 +651,9 @@ "parent": "bfrd_adult-silver-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -674,9 +674,9 @@ "parent": "bfrd_adult-silver-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -697,9 +697,9 @@ "parent": "bfrd_adult-silver-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -720,9 +720,9 @@ "parent": "bfrd_adult-white-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -743,9 +743,9 @@ "parent": "bfrd_adult-white-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -766,9 +766,9 @@ "parent": "bfrd_adult-white-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -789,9 +789,9 @@ "parent": "bfrd_air-elemental_lightning-bolt", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": null, - "range_ft": 30.0, - "long_range_ft": 120.0, + "reach": null, + "range": 30.0, + "long_range": 120.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -812,9 +812,9 @@ "parent": "bfrd_air-elemental_wind-lash", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -835,9 +835,9 @@ "parent": "bfrd_ambush-hag_claw", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -858,9 +858,9 @@ "parent": "bfrd_ambush-hag_poison-spray", "attack_type": "SPELL", "to_hit_mod": 8, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": null, + "reach": null, + "range": 60.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -881,9 +881,9 @@ "parent": "bfrd_ancient-black-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -904,9 +904,9 @@ "parent": "bfrd_ancient-black-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -927,9 +927,9 @@ "parent": "bfrd_ancient-black-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 20.0, - "range_ft": null, - "long_range_ft": null, + "reach": 20.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -950,9 +950,9 @@ "parent": "bfrd_ancient-blue-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -973,9 +973,9 @@ "parent": "bfrd_ancient-blue-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -996,9 +996,9 @@ "parent": "bfrd_ancient-blue-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 20.0, - "range_ft": null, - "long_range_ft": null, + "reach": 20.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1019,9 +1019,9 @@ "parent": "bfrd_ancient-brass-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1042,9 +1042,9 @@ "parent": "bfrd_ancient-brass-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1065,9 +1065,9 @@ "parent": "bfrd_ancient-brass-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 20.0, - "range_ft": null, - "long_range_ft": null, + "reach": 20.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1088,9 +1088,9 @@ "parent": "bfrd_ancient-bronze-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1111,9 +1111,9 @@ "parent": "bfrd_ancient-bronze-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1134,9 +1134,9 @@ "parent": "bfrd_ancient-bronze-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 20.0, - "range_ft": null, - "long_range_ft": null, + "reach": 20.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1157,9 +1157,9 @@ "parent": "bfrd_ancient-copper-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1180,9 +1180,9 @@ "parent": "bfrd_ancient-copper-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1203,9 +1203,9 @@ "parent": "bfrd_ancient-copper-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 20.0, - "range_ft": null, - "long_range_ft": null, + "reach": 20.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1226,9 +1226,9 @@ "parent": "bfrd_ancient-gold-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 17, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1249,9 +1249,9 @@ "parent": "bfrd_ancient-gold-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 17, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1272,9 +1272,9 @@ "parent": "bfrd_ancient-gold-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 17, - "reach_ft": 20.0, - "range_ft": null, - "long_range_ft": null, + "reach": 20.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1295,9 +1295,9 @@ "parent": "bfrd_ancient-green-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1318,9 +1318,9 @@ "parent": "bfrd_ancient-green-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -1341,9 +1341,9 @@ "parent": "bfrd_ancient-green-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 20.0, - "range_ft": null, - "long_range_ft": null, + "reach": 20.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1364,9 +1364,9 @@ "parent": "bfrd_ancient-red-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 17, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1387,9 +1387,9 @@ "parent": "bfrd_ancient-red-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 17, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1410,9 +1410,9 @@ "parent": "bfrd_ancient-red-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 17, - "reach_ft": 20.0, - "range_ft": null, - "long_range_ft": null, + "reach": 20.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1433,9 +1433,9 @@ "parent": "bfrd_ancient-silver-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 17, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1456,9 +1456,9 @@ "parent": "bfrd_ancient-silver-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 17, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1479,9 +1479,9 @@ "parent": "bfrd_ancient-silver-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 17, - "reach_ft": 20.0, - "range_ft": null, - "long_range_ft": null, + "reach": 20.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1502,9 +1502,9 @@ "parent": "bfrd_ancient-white-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1525,9 +1525,9 @@ "parent": "bfrd_ancient-white-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1548,9 +1548,9 @@ "parent": "bfrd_ancient-white-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 20.0, - "range_ft": null, - "long_range_ft": null, + "reach": 20.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1571,9 +1571,9 @@ "parent": "bfrd_androsphinx_arcane-bolt", "attack_type": "SPELL", "to_hit_mod": 12, - "reach_ft": null, - "range_ft": 120.0, - "long_range_ft": null, + "reach": null, + "range": 120.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -1594,9 +1594,9 @@ "parent": "bfrd_androsphinx_claw", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1617,9 +1617,9 @@ "parent": "bfrd_animated-armor_slam", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -1640,9 +1640,9 @@ "parent": "bfrd_ankheg_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1663,9 +1663,9 @@ "parent": "bfrd_ape-giant_fist", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -1686,9 +1686,9 @@ "parent": "bfrd_ape-giant_rock", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": null, - "range_ft": 50.0, - "long_range_ft": 100.0, + "reach": null, + "range": 50.0, + "long_range": 100.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -1709,9 +1709,9 @@ "parent": "bfrd_ape_fist", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -1732,9 +1732,9 @@ "parent": "bfrd_ape_rock", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 25.0, - "long_range_ft": 50.0, + "reach": null, + "range": 25.0, + "long_range": 50.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -1755,9 +1755,9 @@ "parent": "bfrd_archdruid_natures-wrath", "attack_type": "SPELL", "to_hit_mod": 9, - "reach_ft": null, - "range_ft": 120.0, - "long_range_ft": null, + "reach": null, + "range": 120.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, @@ -1778,9 +1778,9 @@ "parent": "bfrd_archdruid_thorned-staff", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": null, - "range_ft": null, - "long_range_ft": null, + "reach": null, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1801,9 +1801,9 @@ "parent": "bfrd_archmage_arcane-blast", "attack_type": "SPELL", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": 60.0, - "long_range_ft": null, + "reach": 5.0, + "range": 60.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -1824,9 +1824,9 @@ "parent": "bfrd_assassin_hand-crossbow", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": null, - "range_ft": 30.0, - "long_range_ft": 120.0, + "reach": null, + "range": 30.0, + "long_range": 120.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -1847,9 +1847,9 @@ "parent": "bfrd_assassin_shortsword", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -1870,9 +1870,9 @@ "parent": "bfrd_awakened-shrub_rake", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -1893,9 +1893,9 @@ "parent": "bfrd_awakened-shrub_thorn", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": null, - "range_ft": 15.0, - "long_range_ft": 30.0, + "reach": null, + "range": 15.0, + "long_range": 30.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -1916,9 +1916,9 @@ "parent": "bfrd_awakened-tree_broken-branch", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": null, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": null, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -1939,9 +1939,9 @@ "parent": "bfrd_awakened-tree_slam", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -1962,9 +1962,9 @@ "parent": "bfrd_axe-beak_beak", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -1985,9 +1985,9 @@ "parent": "bfrd_azer_warhammer", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2008,9 +2008,9 @@ "parent": "bfrd_baboon_bite", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2031,9 +2031,9 @@ "parent": "bfrd_badger-giant_bite", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2054,9 +2054,9 @@ "parent": "bfrd_badger-giant_claws", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2077,9 +2077,9 @@ "parent": "bfrd_badger_bite", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2100,9 +2100,9 @@ "parent": "bfrd_balara_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -2123,9 +2123,9 @@ "parent": "bfrd_balara_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -2146,9 +2146,9 @@ "parent": "bfrd_balara_necrotic-bolt", "attack_type": "SPELL", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": null, + "reach": null, + "range": 60.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -2169,9 +2169,9 @@ "parent": "bfrd_balor_gore", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -2192,9 +2192,9 @@ "parent": "bfrd_balor_longsword", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -2215,9 +2215,9 @@ "parent": "bfrd_balor_whip", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 30.0, - "range_ft": null, - "long_range_ft": null, + "reach": 30.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -2238,9 +2238,9 @@ "parent": "bfrd_bandit-captain_dagger", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2261,9 +2261,9 @@ "parent": "bfrd_bandit-captain_scimitar", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2284,9 +2284,9 @@ "parent": "bfrd_bandit_light-crossbow", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": null, - "range_ft": 80.0, - "long_range_ft": 320.0, + "reach": null, + "range": 80.0, + "long_range": 320.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2307,9 +2307,9 @@ "parent": "bfrd_bandit_scimitar", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2330,9 +2330,9 @@ "parent": "bfrd_barbed-devil_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -2353,9 +2353,9 @@ "parent": "bfrd_barbed-devil_hurl-flame", "attack_type": "SPELL", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 150.0, - "long_range_ft": null, + "reach": null, + "range": 150.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -2376,9 +2376,9 @@ "parent": "bfrd_barbed-devil_tail", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -2399,9 +2399,9 @@ "parent": "bfrd_bard_hand-crossbow", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": null, - "range_ft": 30.0, - "long_range_ft": 120.0, + "reach": null, + "range": 30.0, + "long_range": 120.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2422,9 +2422,9 @@ "parent": "bfrd_bard_rapier", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": null, - "range_ft": null, - "long_range_ft": null, + "reach": null, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2445,9 +2445,9 @@ "parent": "bfrd_basilisk_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2468,9 +2468,9 @@ "parent": "bfrd_basilisk_poison-spit", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": null, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -2491,9 +2491,9 @@ "parent": "bfrd_bat-giant_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2514,9 +2514,9 @@ "parent": "bfrd_bat-swarm-of-bats_bites", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 0.0, - "range_ft": null, - "long_range_ft": null, + "reach": 0.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -2537,9 +2537,9 @@ "parent": "bfrd_bat_bite", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2560,9 +2560,9 @@ "parent": "bfrd_bear-black_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2583,9 +2583,9 @@ "parent": "bfrd_bear-black_claws", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2606,9 +2606,9 @@ "parent": "bfrd_bear-brown_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2629,9 +2629,9 @@ "parent": "bfrd_bear-brown_claws", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -2652,9 +2652,9 @@ "parent": "bfrd_bear-polar_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2675,9 +2675,9 @@ "parent": "bfrd_bear-polar_claws", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -2698,9 +2698,9 @@ "parent": "bfrd_bearded-devil_beard-spines", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -2721,9 +2721,9 @@ "parent": "bfrd_bearded-devil_glaive", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2744,9 +2744,9 @@ "parent": "bfrd_behir_bite", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -2767,9 +2767,9 @@ "parent": "bfrd_behir_constrict", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -2790,9 +2790,9 @@ "parent": "bfrd_berserker_greataxe", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2813,9 +2813,9 @@ "parent": "bfrd_black-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2836,9 +2836,9 @@ "parent": "bfrd_black-dragon-wyrmling_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2859,9 +2859,9 @@ "parent": "bfrd_black-pudding_pseudopod", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2882,9 +2882,9 @@ "parent": "bfrd_blink-dog_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2905,9 +2905,9 @@ "parent": "bfrd_bloatblossom_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2928,9 +2928,9 @@ "parent": "bfrd_bloatblossom_slam", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2951,9 +2951,9 @@ "parent": "bfrd_bloatblossom_toxic-nodule", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 30.0, - "long_range_ft": 60.0, + "reach": null, + "range": 30.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -2974,9 +2974,9 @@ "parent": "bfrd_blue-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2997,9 +2997,9 @@ "parent": "bfrd_blue-dragon-wyrmling_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3020,9 +3020,9 @@ "parent": "bfrd_boar-giant_tusk", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -3043,9 +3043,9 @@ "parent": "bfrd_boar_tusk", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3066,9 +3066,9 @@ "parent": "bfrd_bone-devil_claw", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -3089,9 +3089,9 @@ "parent": "bfrd_bone-devil_sting", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -3112,9 +3112,9 @@ "parent": "bfrd_brass-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3135,9 +3135,9 @@ "parent": "bfrd_brass-dragon-wyrmling_claw", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3158,9 +3158,9 @@ "parent": "bfrd_bronze-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3181,9 +3181,9 @@ "parent": "bfrd_bronze-dragon-wyrmling_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3204,9 +3204,9 @@ "parent": "bfrd_bugbear-champion_javelin", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": 30.0, - "long_range_ft": 120.0, + "reach": 5.0, + "range": 30.0, + "long_range": 120.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -3227,9 +3227,9 @@ "parent": "bfrd_bugbear-champion_shield-smash", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -3250,9 +3250,9 @@ "parent": "bfrd_bugbear-champion_spiked-club", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -3273,9 +3273,9 @@ "parent": "bfrd_bugbear_javelin", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": 30.0, - "long_range_ft": 120.0, + "reach": 5.0, + "range": 30.0, + "long_range": 120.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -3296,9 +3296,9 @@ "parent": "bfrd_bugbear_spiked-club", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -3319,9 +3319,9 @@ "parent": "bfrd_bulette_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -3342,9 +3342,9 @@ "parent": "bfrd_camel_bile-spit", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": null, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": null, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3365,9 +3365,9 @@ "parent": "bfrd_camel_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3388,9 +3388,9 @@ "parent": "bfrd_cat_claws", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3411,9 +3411,9 @@ "parent": "bfrd_centaur_hooves", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -3434,9 +3434,9 @@ "parent": "bfrd_centaur_longbow", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 150.0, - "long_range_ft": 600.0, + "reach": null, + "range": 150.0, + "long_range": 600.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3457,9 +3457,9 @@ "parent": "bfrd_centaur_pike", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3480,9 +3480,9 @@ "parent": "bfrd_chain-devil_chain", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3503,9 +3503,9 @@ "parent": "bfrd_chimera_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -3526,9 +3526,9 @@ "parent": "bfrd_chimera_claws", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -3549,9 +3549,9 @@ "parent": "bfrd_chimera_headbutt", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3572,9 +3572,9 @@ "parent": "bfrd_chuul_pincer", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -3595,9 +3595,9 @@ "parent": "bfrd_clay-golem_slam", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -3618,9 +3618,9 @@ "parent": "bfrd_cloaker_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -3641,9 +3641,9 @@ "parent": "bfrd_cloaker_tail", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -3664,9 +3664,9 @@ "parent": "bfrd_cloud-giant_cloud-coated-mace", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -3687,9 +3687,9 @@ "parent": "bfrd_cloud-giant_wind-burst", "attack_type": "SPELL", "to_hit_mod": 8, - "reach_ft": null, - "range_ft": 150.0, - "long_range_ft": null, + "reach": null, + "range": 150.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, @@ -3710,9 +3710,9 @@ "parent": "bfrd_cockatrice_serrated-beak", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -3733,9 +3733,9 @@ "parent": "bfrd_commoner_club", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3756,9 +3756,9 @@ "parent": "bfrd_commoner_sling", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": null, - "range_ft": 30.0, - "long_range_ft": 120.0, + "reach": null, + "range": 30.0, + "long_range": 120.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3779,9 +3779,9 @@ "parent": "bfrd_copper-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3802,9 +3802,9 @@ "parent": "bfrd_copper-dragon-wyrmling_claw", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3825,9 +3825,9 @@ "parent": "bfrd_couatl_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3848,9 +3848,9 @@ "parent": "bfrd_couatl_constrict", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -3871,9 +3871,9 @@ "parent": "bfrd_crab-giant_pincer", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3894,9 +3894,9 @@ "parent": "bfrd_crab_claw", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3917,9 +3917,9 @@ "parent": "bfrd_crimson-jelly_feeding-paddles", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3940,9 +3940,9 @@ "parent": "bfrd_crocodile-giant_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -3963,9 +3963,9 @@ "parent": "bfrd_crocodile-giant_tail", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -3986,9 +3986,9 @@ "parent": "bfrd_crocodile_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -4009,9 +4009,9 @@ "parent": "bfrd_cultist-fanatic_sacrificial-dagger", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -4032,9 +4032,9 @@ "parent": "bfrd_cultist-fanatic_unholy-bolt", "attack_type": "SPELL", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": null, + "reach": null, + "range": 60.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -4055,9 +4055,9 @@ "parent": "bfrd_cultist_sacrificial-dagger", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -4078,9 +4078,9 @@ "parent": "bfrd_darkmantle_crush", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -4101,9 +4101,9 @@ "parent": "bfrd_death-dog_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -4124,9 +4124,9 @@ "parent": "bfrd_death-knight_greatsword", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -4147,9 +4147,9 @@ "parent": "bfrd_death-knight_necrotic-bolt", "attack_type": "SPELL", "to_hit_mod": 7, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": null, + "reach": null, + "range": 60.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -4170,9 +4170,9 @@ "parent": "bfrd_deep-gnome_crystalline-dart", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 30.0, - "long_range_ft": 120.0, + "reach": null, + "range": 30.0, + "long_range": 120.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -4193,9 +4193,9 @@ "parent": "bfrd_deep-gnome_war-pick", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -4216,9 +4216,9 @@ "parent": "bfrd_deer_kick", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -4239,9 +4239,9 @@ "parent": "bfrd_deva_mace", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -4262,9 +4262,9 @@ "parent": "bfrd_djinni_scimitar", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -4285,9 +4285,9 @@ "parent": "bfrd_djinni_storm-bolt", "attack_type": "SPELL", "to_hit_mod": 9, - "reach_ft": null, - "range_ft": 120.0, - "long_range_ft": null, + "reach": null, + "range": 120.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -4308,9 +4308,9 @@ "parent": "bfrd_doppelganger_psychic-bolt", "attack_type": "SPELL", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": null, + "reach": null, + "range": 60.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -4331,9 +4331,9 @@ "parent": "bfrd_doppelganger_slam", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -4354,9 +4354,9 @@ "parent": "bfrd_dragon-turtle_bite", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -4377,9 +4377,9 @@ "parent": "bfrd_dragon-turtle_claw", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -4400,9 +4400,9 @@ "parent": "bfrd_dragon-turtle_tail", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -4423,9 +4423,9 @@ "parent": "bfrd_dretch_claws", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -4446,9 +4446,9 @@ "parent": "bfrd_drider_longsword", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -4469,9 +4469,9 @@ "parent": "bfrd_drider_skewer", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -4492,9 +4492,9 @@ "parent": "bfrd_drider_web-shot", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": null, - "range_ft": 30.0, - "long_range_ft": 60.0, + "reach": null, + "range": 30.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -4515,9 +4515,9 @@ "parent": "bfrd_drow_hand-crossbow", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 30.0, - "long_range_ft": 120.0, + "reach": null, + "range": 30.0, + "long_range": 120.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -4538,9 +4538,9 @@ "parent": "bfrd_drow_shortsword", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -4561,9 +4561,9 @@ "parent": "bfrd_druid_flowering-quarterstaff", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -4584,9 +4584,9 @@ "parent": "bfrd_druid_poison-bolt", "attack_type": "SPELL", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": null, + "reach": null, + "range": 60.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -4607,9 +4607,9 @@ "parent": "bfrd_dryad_blast-of-pollen", "attack_type": "SPELL", "to_hit_mod": 6, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": null, + "reach": null, + "range": 60.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -4630,9 +4630,9 @@ "parent": "bfrd_dryad_vine-whip", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -4653,9 +4653,9 @@ "parent": "bfrd_duergar_javelin", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": 30.0, - "long_range_ft": 120.0, + "reach": 5.0, + "range": 30.0, + "long_range": 120.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -4676,9 +4676,9 @@ "parent": "bfrd_duergar_war-pick", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -4699,9 +4699,9 @@ "parent": "bfrd_dust-mephit_claws", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -4722,9 +4722,9 @@ "parent": "bfrd_dust-mephit_dust-blast", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": null, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -4745,9 +4745,9 @@ "parent": "bfrd_eagle-giant_beak", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -4768,9 +4768,9 @@ "parent": "bfrd_eagle-giant_talons", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -4791,9 +4791,9 @@ "parent": "bfrd_eagle_talons", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -4814,9 +4814,9 @@ "parent": "bfrd_earth-elemental_lob-stone", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": null, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": null, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -4837,9 +4837,9 @@ "parent": "bfrd_earth-elemental_slam", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -4860,9 +4860,9 @@ "parent": "bfrd_efreeti_hurl-flame", "attack_type": "SPELL", "to_hit_mod": 7, - "reach_ft": null, - "range_ft": 120.0, - "long_range_ft": null, + "reach": null, + "range": 120.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, @@ -4883,9 +4883,9 @@ "parent": "bfrd_efreeti_scimitar", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -4906,9 +4906,9 @@ "parent": "bfrd_elephant_gore", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -4929,9 +4929,9 @@ "parent": "bfrd_elephant_stomp", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -4952,9 +4952,9 @@ "parent": "bfrd_elk-giant_kick", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -4975,9 +4975,9 @@ "parent": "bfrd_elk-giant_ram", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -4998,9 +4998,9 @@ "parent": "bfrd_elk_kick", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5021,9 +5021,9 @@ "parent": "bfrd_elk_ram", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5044,9 +5044,9 @@ "parent": "bfrd_erinyes_longbow", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": null, - "range_ft": 150.0, - "long_range_ft": 600.0, + "reach": null, + "range": 150.0, + "long_range": 600.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5067,9 +5067,9 @@ "parent": "bfrd_erinyes_longsword", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5090,9 +5090,9 @@ "parent": "bfrd_ettercap_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5113,9 +5113,9 @@ "parent": "bfrd_ettercap_claws", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -5136,9 +5136,9 @@ "parent": "bfrd_ettercap_spit-poison", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": null, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -5159,9 +5159,9 @@ "parent": "bfrd_ettin_knobbed-club", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -5182,9 +5182,9 @@ "parent": "bfrd_ettin_spiked-club", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -5205,9 +5205,9 @@ "parent": "bfrd_feral-hunter_hunting-knife", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -5228,9 +5228,9 @@ "parent": "bfrd_feral-hunter_longbow", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 150.0, - "long_range_ft": 600.0, + "reach": null, + "range": 150.0, + "long_range": 600.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -5251,9 +5251,9 @@ "parent": "bfrd_fire-elemental_fiery-touch", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -5274,9 +5274,9 @@ "parent": "bfrd_fire-elemental_spit-fire", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": null, - "range_ft": 30.0, - "long_range_ft": 120.0, + "reach": null, + "range": 30.0, + "long_range": 120.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -5297,9 +5297,9 @@ "parent": "bfrd_fire-giant_flaming-greatsword", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, @@ -5320,9 +5320,9 @@ "parent": "bfrd_fire-giant_lava-boulder", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": 240.0, + "reach": null, + "range": 60.0, + "long_range": 240.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -5343,9 +5343,9 @@ "parent": "bfrd_flesh-golem_slam", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -5366,9 +5366,9 @@ "parent": "bfrd_flinderbeast_acid-spit", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": null, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": null, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -5389,9 +5389,9 @@ "parent": "bfrd_flinderbeast_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -5412,9 +5412,9 @@ "parent": "bfrd_flying-sword_slash", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5435,9 +5435,9 @@ "parent": "bfrd_frog-giant-poisonous_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5458,9 +5458,9 @@ "parent": "bfrd_frog-giant_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5481,9 +5481,9 @@ "parent": "bfrd_frog_bite", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5504,9 +5504,9 @@ "parent": "bfrd_frost-giant_ice-boulder", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": 240.0, + "reach": null, + "range": 60.0, + "long_range": 240.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -5527,9 +5527,9 @@ "parent": "bfrd_frost-giant_icy-greataxe", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -5550,9 +5550,9 @@ "parent": "bfrd_gargoyle_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -5573,9 +5573,9 @@ "parent": "bfrd_gargoyle_claws", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -5596,9 +5596,9 @@ "parent": "bfrd_gelatinous-cube_pseudopod", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -5619,9 +5619,9 @@ "parent": "bfrd_ghast_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5642,9 +5642,9 @@ "parent": "bfrd_ghast_claws", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -5665,9 +5665,9 @@ "parent": "bfrd_ghost_telekinetic-throw", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": null, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, @@ -5688,9 +5688,9 @@ "parent": "bfrd_ghost_withering-touch", "attack_type": "SPELL", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -5711,9 +5711,9 @@ "parent": "bfrd_ghoul_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5734,9 +5734,9 @@ "parent": "bfrd_ghoul_claws", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -5757,9 +5757,9 @@ "parent": "bfrd_gibbering-mouther_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -5780,9 +5780,9 @@ "parent": "bfrd_glabrezu_claw", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -5803,9 +5803,9 @@ "parent": "bfrd_glabrezu_crackling-flame-bolt", "attack_type": "SPELL", "to_hit_mod": 7, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": null, + "reach": null, + "range": 60.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5826,9 +5826,9 @@ "parent": "bfrd_glabrezu_pincer", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -5849,9 +5849,9 @@ "parent": "bfrd_gladiator_shield-bash", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -5872,9 +5872,9 @@ "parent": "bfrd_gladiator_spear", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -5895,9 +5895,9 @@ "parent": "bfrd_gnoll_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5918,9 +5918,9 @@ "parent": "bfrd_gnoll_spear", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5941,9 +5941,9 @@ "parent": "bfrd_goat-giant_ram", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -5964,9 +5964,9 @@ "parent": "bfrd_goat_ram", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5987,9 +5987,9 @@ "parent": "bfrd_goblin-captain_scimitar", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6010,9 +6010,9 @@ "parent": "bfrd_goblin-captain_shortbow", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 80.0, - "long_range_ft": 320.0, + "reach": null, + "range": 80.0, + "long_range": 320.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6033,9 +6033,9 @@ "parent": "bfrd_goblin_scimitar", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6056,9 +6056,9 @@ "parent": "bfrd_goblin_shortbow", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 80.0, - "long_range_ft": 320.0, + "reach": null, + "range": 80.0, + "long_range": 320.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6079,9 +6079,9 @@ "parent": "bfrd_gold-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6102,9 +6102,9 @@ "parent": "bfrd_gold-dragon-wyrmling_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6125,9 +6125,9 @@ "parent": "bfrd_golmana_claws", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -6148,9 +6148,9 @@ "parent": "bfrd_golmana_tail", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -6171,9 +6171,9 @@ "parent": "bfrd_gorgon_gore", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -6194,9 +6194,9 @@ "parent": "bfrd_gorgon_hooves", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -6217,9 +6217,9 @@ "parent": "bfrd_gray-ooze_pseudopod", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6240,9 +6240,9 @@ "parent": "bfrd_green-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6263,9 +6263,9 @@ "parent": "bfrd_green-dragon-wyrmling_claw", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6286,9 +6286,9 @@ "parent": "bfrd_green-hag_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -6309,9 +6309,9 @@ "parent": "bfrd_green-hag_torment", "attack_type": "SPELL", "to_hit_mod": 6, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": null, + "reach": null, + "range": 60.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -6332,9 +6332,9 @@ "parent": "bfrd_grick_beak", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -6355,9 +6355,9 @@ "parent": "bfrd_grick_tentacles", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -6378,9 +6378,9 @@ "parent": "bfrd_griffon_beak", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6401,9 +6401,9 @@ "parent": "bfrd_griffon_claws", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -6424,9 +6424,9 @@ "parent": "bfrd_grimlock_spiked-club", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6447,9 +6447,9 @@ "parent": "bfrd_guard_spear", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6470,9 +6470,9 @@ "parent": "bfrd_guardian-naga_constrict", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6493,9 +6493,9 @@ "parent": "bfrd_guardian-naga_slam", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -6516,9 +6516,9 @@ "parent": "bfrd_guardian-naga_spit-poison", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": null, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": null, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -6539,9 +6539,9 @@ "parent": "bfrd_gynosphinx_claw", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -6562,9 +6562,9 @@ "parent": "bfrd_gynosphinx_psychic-bolt", "attack_type": "SPELL", "to_hit_mod": 9, - "reach_ft": null, - "range_ft": 120.0, - "long_range_ft": null, + "reach": null, + "range": 120.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -6585,9 +6585,9 @@ "parent": "bfrd_harpy_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -6608,9 +6608,9 @@ "parent": "bfrd_harpy_screech", "attack_type": "SPELL", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 30.0, - "long_range_ft": 120.0, + "reach": null, + "range": 30.0, + "long_range": 120.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -6631,9 +6631,9 @@ "parent": "bfrd_hawk-blood_beak", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6654,9 +6654,9 @@ "parent": "bfrd_hawk_talons", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6677,9 +6677,9 @@ "parent": "bfrd_hell-hound_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6700,9 +6700,9 @@ "parent": "bfrd_hezrou_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -6723,9 +6723,9 @@ "parent": "bfrd_hezrou_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -6746,9 +6746,9 @@ "parent": "bfrd_hezrou_sticky-tongue", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 20.0, - "range_ft": null, - "long_range_ft": null, + "reach": 20.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -6769,9 +6769,9 @@ "parent": "bfrd_hill-giant_rotten-snack", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": 240.0, + "reach": null, + "range": 60.0, + "long_range": 240.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -6792,9 +6792,9 @@ "parent": "bfrd_hill-giant_spiked-tree-branch", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -6815,9 +6815,9 @@ "parent": "bfrd_hinn_gem-studded-mace", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -6838,9 +6838,9 @@ "parent": "bfrd_hinn_lob-stone", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": null, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": null, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -6861,9 +6861,9 @@ "parent": "bfrd_hippocampus_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6884,9 +6884,9 @@ "parent": "bfrd_hippocampus_tail-slap", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6907,9 +6907,9 @@ "parent": "bfrd_hippogriff_beak", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6930,9 +6930,9 @@ "parent": "bfrd_hippogriff_claws", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -6953,9 +6953,9 @@ "parent": "bfrd_hivebound_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -6976,9 +6976,9 @@ "parent": "bfrd_hivebound_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -6999,9 +6999,9 @@ "parent": "bfrd_hivebound_spit-insect", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": null, - "range_ft": 30.0, - "long_range_ft": 120.0, + "reach": null, + "range": 30.0, + "long_range": 120.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -7022,9 +7022,9 @@ "parent": "bfrd_hobgoblin-commander_greatsword", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -7045,9 +7045,9 @@ "parent": "bfrd_hobgoblin-commander_longbow", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 150.0, - "long_range_ft": 600.0, + "reach": null, + "range": 150.0, + "long_range": 600.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -7068,9 +7068,9 @@ "parent": "bfrd_hobgoblin_longbow", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": null, - "range_ft": 150.0, - "long_range_ft": 600.0, + "reach": null, + "range": 150.0, + "long_range": 600.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -7091,9 +7091,9 @@ "parent": "bfrd_hobgoblin_longsword", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -7114,9 +7114,9 @@ "parent": "bfrd_homunculus_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -7137,9 +7137,9 @@ "parent": "bfrd_horned-devil_fork", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -7160,9 +7160,9 @@ "parent": "bfrd_horned-devil_hurl-flame", "attack_type": "SPELL", "to_hit_mod": 7, - "reach_ft": null, - "range_ft": 150.0, - "long_range_ft": null, + "reach": null, + "range": 150.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, @@ -7183,9 +7183,9 @@ "parent": "bfrd_horned-devil_tail", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -7206,9 +7206,9 @@ "parent": "bfrd_horse-draft_hooves", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -7229,9 +7229,9 @@ "parent": "bfrd_horse-riding_hooves", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -7252,9 +7252,9 @@ "parent": "bfrd_horse-war_hooves", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -7275,9 +7275,9 @@ "parent": "bfrd_husk-demon_life-drain", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -7298,9 +7298,9 @@ "parent": "bfrd_hydra_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -7321,9 +7321,9 @@ "parent": "bfrd_hyena-giant_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -7344,9 +7344,9 @@ "parent": "bfrd_hyena_bite", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -7367,9 +7367,9 @@ "parent": "bfrd_ice-devil_claws", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -7390,9 +7390,9 @@ "parent": "bfrd_ice-devil_icicle-shard", "attack_type": "SPELL", "to_hit_mod": 9, - "reach_ft": null, - "range_ft": 120.0, - "long_range_ft": null, + "reach": null, + "range": 120.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -7413,9 +7413,9 @@ "parent": "bfrd_ice-devil_tail", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -7436,9 +7436,9 @@ "parent": "bfrd_ice-mephit_claws", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -7459,9 +7459,9 @@ "parent": "bfrd_ice-mephit_ice-shard", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": null, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -7482,9 +7482,9 @@ "parent": "bfrd_imp_slam", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -7505,9 +7505,9 @@ "parent": "bfrd_imp_sting", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -7528,9 +7528,9 @@ "parent": "bfrd_insatiable-brood_bites", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 0.0, - "range_ft": null, - "long_range_ft": null, + "reach": 0.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -7551,9 +7551,9 @@ "parent": "bfrd_insect-giant-centipede_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -7574,9 +7574,9 @@ "parent": "bfrd_insect-giant-fire-beetle_bite", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -7597,9 +7597,9 @@ "parent": "bfrd_insect-giant-fire-beetle_igniting-mucus", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": null, - "range_ft": 15.0, - "long_range_ft": 30.0, + "reach": null, + "range": 15.0, + "long_range": 30.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -7620,9 +7620,9 @@ "parent": "bfrd_insect-giant-scorpion_claw", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -7643,9 +7643,9 @@ "parent": "bfrd_insect-giant-scorpion_sting", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -7666,9 +7666,9 @@ "parent": "bfrd_insect-giant-wasp_sting", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -7689,9 +7689,9 @@ "parent": "bfrd_insect-scorpion_sting", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -7712,9 +7712,9 @@ "parent": "bfrd_insect-swarm-of-insects_bites", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 0.0, - "range_ft": null, - "long_range_ft": null, + "reach": 0.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -7735,9 +7735,9 @@ "parent": "bfrd_invisible-stalker_slam", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -7758,9 +7758,9 @@ "parent": "bfrd_iron-golem_shield-bash", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -7781,9 +7781,9 @@ "parent": "bfrd_iron-golem_spear-arm", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -7804,9 +7804,9 @@ "parent": "bfrd_jackal_bite", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -7827,9 +7827,9 @@ "parent": "bfrd_knight_greatsword", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -7850,9 +7850,9 @@ "parent": "bfrd_knight_javelin", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": 30.0, - "long_range_ft": 120.0, + "reach": 5.0, + "range": 30.0, + "long_range": 120.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -7873,9 +7873,9 @@ "parent": "bfrd_kobold-swiftblade_hand-crossbow", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": null, - "range_ft": 30.0, - "long_range_ft": 120.0, + "reach": null, + "range": 30.0, + "long_range": 120.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -7896,9 +7896,9 @@ "parent": "bfrd_kobold-swiftblade_scimitar", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -7919,9 +7919,9 @@ "parent": "bfrd_kobold-witch_eldritch-burst", "attack_type": "SPELL", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": 60.0, - "long_range_ft": null, + "reach": 5.0, + "range": 60.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -7942,9 +7942,9 @@ "parent": "bfrd_kobold_dagger", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -7965,9 +7965,9 @@ "parent": "bfrd_kobold_sling", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 30.0, - "long_range_ft": 120.0, + "reach": null, + "range": 30.0, + "long_range": 120.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -7988,9 +7988,9 @@ "parent": "bfrd_kraken_bite", "attack_type": "WEAPON", "to_hit_mod": 17, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -8011,9 +8011,9 @@ "parent": "bfrd_kraken_tentacle", "attack_type": "WEAPON", "to_hit_mod": 17, - "reach_ft": 30.0, - "range_ft": null, - "long_range_ft": null, + "reach": 30.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -8034,9 +8034,9 @@ "parent": "bfrd_lamia_arcane-bolt", "attack_type": "SPELL", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": null, + "reach": null, + "range": 60.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -8057,9 +8057,9 @@ "parent": "bfrd_lamia_dagger", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -8080,9 +8080,9 @@ "parent": "bfrd_lamia_hooves", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -8103,9 +8103,9 @@ "parent": "bfrd_lantern-hagfish_bite", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -8126,9 +8126,9 @@ "parent": "bfrd_lemure_fist", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -8149,9 +8149,9 @@ "parent": "bfrd_lich_arcane-death-burst", "attack_type": "SPELL", "to_hit_mod": 12, - "reach_ft": 5.0, - "range_ft": 120.0, - "long_range_ft": null, + "reach": 5.0, + "range": 120.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -8172,9 +8172,9 @@ "parent": "bfrd_lich_death-infused-rod", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -8195,9 +8195,9 @@ "parent": "bfrd_lion_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -8218,9 +8218,9 @@ "parent": "bfrd_lion_claws", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -8241,9 +8241,9 @@ "parent": "bfrd_living-colossus_slam", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -8264,9 +8264,9 @@ "parent": "bfrd_living-colossus_spirit-blast", "attack_type": "SPELL", "to_hit_mod": 11, - "reach_ft": null, - "range_ft": 120.0, - "long_range_ft": null, + "reach": null, + "range": 120.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -8287,9 +8287,9 @@ "parent": "bfrd_lizard-giant_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -8310,9 +8310,9 @@ "parent": "bfrd_lizard_bite", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -8333,9 +8333,9 @@ "parent": "bfrd_lizardfolk-ruler_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -8356,9 +8356,9 @@ "parent": "bfrd_lizardfolk-ruler_greataxe", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -8379,9 +8379,9 @@ "parent": "bfrd_lizardfolk-ruler_javelin", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": 30.0, - "long_range_ft": 120.0, + "reach": 5.0, + "range": 30.0, + "long_range": 120.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -8402,9 +8402,9 @@ "parent": "bfrd_lizardfolk-shaman_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -8425,9 +8425,9 @@ "parent": "bfrd_lizardfolk-shaman_ritual-staff", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -8448,9 +8448,9 @@ "parent": "bfrd_lizardfolk-shaman_swamp-bolt", "attack_type": "SPELL", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": null, + "reach": null, + "range": 60.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -8471,9 +8471,9 @@ "parent": "bfrd_lizardfolk_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -8494,9 +8494,9 @@ "parent": "bfrd_lizardfolk_heavy-club", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -8517,9 +8517,9 @@ "parent": "bfrd_lizardfolk_javelin", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": 30.0, - "long_range_ft": 120.0, + "reach": 5.0, + "range": 30.0, + "long_range": 120.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -8540,9 +8540,9 @@ "parent": "bfrd_mage-apprentice_arcane-bolt", "attack_type": "SPELL", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": null, + "reach": null, + "range": 60.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -8563,9 +8563,9 @@ "parent": "bfrd_mage-apprentice_dagger", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -8586,9 +8586,9 @@ "parent": "bfrd_mage_arcane-bolt", "attack_type": "SPELL", "to_hit_mod": 6, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": null, + "reach": null, + "range": 60.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -8609,9 +8609,9 @@ "parent": "bfrd_mage_dagger", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -8632,9 +8632,9 @@ "parent": "bfrd_magma-mephit_claws", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -8655,9 +8655,9 @@ "parent": "bfrd_magma-mephit_lob-magma", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": null, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": null, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -8678,9 +8678,9 @@ "parent": "bfrd_magmin_burning-slam", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -8701,9 +8701,9 @@ "parent": "bfrd_mammoth_gore", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -8724,9 +8724,9 @@ "parent": "bfrd_mammoth_stomp", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -8747,9 +8747,9 @@ "parent": "bfrd_manticore_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -8770,9 +8770,9 @@ "parent": "bfrd_manticore_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -8793,9 +8793,9 @@ "parent": "bfrd_manticore_tail-spike", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 100.0, - "long_range_ft": 200.0, + "reach": null, + "range": 100.0, + "long_range": 200.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -8816,9 +8816,9 @@ "parent": "bfrd_marilith_dagger", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -8839,9 +8839,9 @@ "parent": "bfrd_marilith_longsword", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -8862,9 +8862,9 @@ "parent": "bfrd_marilith_mace", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -8885,9 +8885,9 @@ "parent": "bfrd_marilith_tail", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -8908,9 +8908,9 @@ "parent": "bfrd_master-alchemist_hasty-concoction", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -8931,9 +8931,9 @@ "parent": "bfrd_mastiff_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -8954,9 +8954,9 @@ "parent": "bfrd_mechanist_light-crossbow", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": null, - "range_ft": 80.0, - "long_range_ft": 320.0, + "reach": null, + "range": 80.0, + "long_range": 320.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -8977,9 +8977,9 @@ "parent": "bfrd_mechanist_warhammer", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -9000,9 +9000,9 @@ "parent": "bfrd_medusa_longbow", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": null, - "range_ft": 150.0, - "long_range_ft": 600.0, + "reach": null, + "range": 150.0, + "long_range": 600.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -9023,9 +9023,9 @@ "parent": "bfrd_medusa_shortsword", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -9046,9 +9046,9 @@ "parent": "bfrd_medusa_snake-hair", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -9069,9 +9069,9 @@ "parent": "bfrd_merfolk_coral-spear", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -9092,9 +9092,9 @@ "parent": "bfrd_merfolk_sharpened-shell", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": null, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": null, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -9115,9 +9115,9 @@ "parent": "bfrd_merrow_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -9138,9 +9138,9 @@ "parent": "bfrd_merrow_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -9161,9 +9161,9 @@ "parent": "bfrd_merrow_harpoon", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -9184,9 +9184,9 @@ "parent": "bfrd_mimic_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -9207,9 +9207,9 @@ "parent": "bfrd_mimic_pseudopod", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -9230,9 +9230,9 @@ "parent": "bfrd_minotaur-skeleton_gore", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -9253,9 +9253,9 @@ "parent": "bfrd_minotaur-skeleton_greataxe", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -9276,9 +9276,9 @@ "parent": "bfrd_minotaur_gore", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -9299,9 +9299,9 @@ "parent": "bfrd_minotaur_greataxe", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -9322,9 +9322,9 @@ "parent": "bfrd_mire-fiend_mandibles", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -9345,9 +9345,9 @@ "parent": "bfrd_mire-fiend_spear", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -9368,9 +9368,9 @@ "parent": "bfrd_mire-fiend_stinger", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -9391,9 +9391,9 @@ "parent": "bfrd_mordovermis_sting", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -9414,9 +9414,9 @@ "parent": "bfrd_mule_hooves", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -9437,9 +9437,9 @@ "parent": "bfrd_mummy-lord_blessed-khopesh", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -9460,9 +9460,9 @@ "parent": "bfrd_mummy-lord_divine-bolt", "attack_type": "SPELL", "to_hit_mod": 9, - "reach_ft": null, - "range_ft": 120.0, - "long_range_ft": null, + "reach": null, + "range": 120.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, @@ -9483,9 +9483,9 @@ "parent": "bfrd_mummy-lord_rotting-fist", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -9506,9 +9506,9 @@ "parent": "bfrd_mummy_rotting-fist", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -9529,9 +9529,9 @@ "parent": "bfrd_mycolid-commoner_gardening-pick", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -9552,9 +9552,9 @@ "parent": "bfrd_mycolid-spore-lord_fungal-staff", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -9575,9 +9575,9 @@ "parent": "bfrd_mycolid-spore-lord_hurl-sap", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 30.0, - "long_range_ft": 120.0, + "reach": null, + "range": 30.0, + "long_range": 120.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -9598,9 +9598,9 @@ "parent": "bfrd_nalfeshnee_bite", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -9621,9 +9621,9 @@ "parent": "bfrd_nalfeshnee_claw", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -9644,9 +9644,9 @@ "parent": "bfrd_nalfeshnee_gore", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -9667,9 +9667,9 @@ "parent": "bfrd_night-hag_arcane-bolt", "attack_type": "SPELL", "to_hit_mod": 6, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": null, + "reach": null, + "range": 60.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -9690,9 +9690,9 @@ "parent": "bfrd_night-hag_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -9713,9 +9713,9 @@ "parent": "bfrd_nightmare_flaming-hoof", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -9736,9 +9736,9 @@ "parent": "bfrd_noble_rapier", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -9759,9 +9759,9 @@ "parent": "bfrd_ochre-jelly_pseudopod", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -9782,9 +9782,9 @@ "parent": "bfrd_octopus-giant_tentacles", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -9805,9 +9805,9 @@ "parent": "bfrd_octopus_tentacles", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -9828,9 +9828,9 @@ "parent": "bfrd_ogre-zombie_greatclub", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -9851,9 +9851,9 @@ "parent": "bfrd_ogre_greatclub", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -9874,9 +9874,9 @@ "parent": "bfrd_ogre_javelin", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": 30.0, - "long_range_ft": 120.0, + "reach": 5.0, + "range": 30.0, + "long_range": 120.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -9897,9 +9897,9 @@ "parent": "bfrd_oni_arcane-bolt", "attack_type": "SPELL", "to_hit_mod": 6, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": null, + "reach": null, + "range": 60.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -9920,9 +9920,9 @@ "parent": "bfrd_oni_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -9943,9 +9943,9 @@ "parent": "bfrd_oni_glaive", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -9966,9 +9966,9 @@ "parent": "bfrd_orc-warlord_longbow", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 150.0, - "long_range_ft": 600.0, + "reach": null, + "range": 150.0, + "long_range": 600.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -9989,9 +9989,9 @@ "parent": "bfrd_orc-warlord_longsword", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -10012,9 +10012,9 @@ "parent": "bfrd_orc-warlord_skull-club", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -10035,9 +10035,9 @@ "parent": "bfrd_orc_greataxe", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10058,9 +10058,9 @@ "parent": "bfrd_orc_javelin", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": 30.0, - "long_range_ft": 120.0, + "reach": 5.0, + "range": 30.0, + "long_range": 120.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10081,9 +10081,9 @@ "parent": "bfrd_orca_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -10104,9 +10104,9 @@ "parent": "bfrd_otyugh_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -10127,9 +10127,9 @@ "parent": "bfrd_otyugh_tentacle", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10150,9 +10150,9 @@ "parent": "bfrd_owl-giant_talons", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10173,9 +10173,9 @@ "parent": "bfrd_owl_talons", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10196,9 +10196,9 @@ "parent": "bfrd_owlbear_beak", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10219,9 +10219,9 @@ "parent": "bfrd_owlbear_claws", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -10242,9 +10242,9 @@ "parent": "bfrd_panther_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10265,9 +10265,9 @@ "parent": "bfrd_panther_claw", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10288,9 +10288,9 @@ "parent": "bfrd_pegasus_hooves", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -10311,9 +10311,9 @@ "parent": "bfrd_phase-spider_barbed-legs", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -10334,9 +10334,9 @@ "parent": "bfrd_phase-spider_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10357,9 +10357,9 @@ "parent": "bfrd_phase-spider_phasing-web", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 30.0, - "long_range_ft": 60.0, + "reach": null, + "range": 30.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": null, @@ -10380,9 +10380,9 @@ "parent": "bfrd_pit-fiend_bite", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -10403,9 +10403,9 @@ "parent": "bfrd_pit-fiend_gore", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -10426,9 +10426,9 @@ "parent": "bfrd_pit-fiend_hurl-flame", "attack_type": "SPELL", "to_hit_mod": 10, - "reach_ft": null, - "range_ft": 120.0, - "long_range_ft": null, + "reach": null, + "range": 120.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, @@ -10449,9 +10449,9 @@ "parent": "bfrd_pit-fiend_mace", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -10472,9 +10472,9 @@ "parent": "bfrd_pit-fiend_tail", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -10495,9 +10495,9 @@ "parent": "bfrd_planetar_greatsword", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -10518,9 +10518,9 @@ "parent": "bfrd_planetar_radiant-bolt", "attack_type": "SPELL", "to_hit_mod": 11, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": null, + "reach": null, + "range": 60.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, @@ -10541,9 +10541,9 @@ "parent": "bfrd_plesiosaurus_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -10564,9 +10564,9 @@ "parent": "bfrd_pony_hooves", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10587,9 +10587,9 @@ "parent": "bfrd_priest_divine-bolt", "attack_type": "SPELL", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": null, + "reach": null, + "range": 60.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -10610,9 +10610,9 @@ "parent": "bfrd_priest_mace", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10633,9 +10633,9 @@ "parent": "bfrd_pseudodragon_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10656,9 +10656,9 @@ "parent": "bfrd_pseudodragon_sting", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10679,9 +10679,9 @@ "parent": "bfrd_purple-worm_bite", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -10702,9 +10702,9 @@ "parent": "bfrd_purple-worm_tail-stinger", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -10725,9 +10725,9 @@ "parent": "bfrd_quasit_claws", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10748,9 +10748,9 @@ "parent": "bfrd_quasit_slam", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -10771,9 +10771,9 @@ "parent": "bfrd_quipper-swarm-of-quippers_bites", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 0.0, - "range_ft": null, - "long_range_ft": null, + "reach": 0.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -10794,9 +10794,9 @@ "parent": "bfrd_quipper_bite", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10817,9 +10817,9 @@ "parent": "bfrd_rakshasa_arcane-bolt", "attack_type": "SPELL", "to_hit_mod": 10, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": null, + "reach": null, + "range": 60.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, @@ -10840,9 +10840,9 @@ "parent": "bfrd_rakshasa_claw", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -10863,9 +10863,9 @@ "parent": "bfrd_rat-giant_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10886,9 +10886,9 @@ "parent": "bfrd_rat-swarm-of-rats_bites", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": 0.0, - "range_ft": null, - "long_range_ft": null, + "reach": 0.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -10909,9 +10909,9 @@ "parent": "bfrd_rat_bite", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10932,9 +10932,9 @@ "parent": "bfrd_raven-swarm-of-ravens_beaks", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -10955,9 +10955,9 @@ "parent": "bfrd_raven_beak", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10978,9 +10978,9 @@ "parent": "bfrd_red-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11001,9 +11001,9 @@ "parent": "bfrd_red-dragon-wyrmling_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11024,9 +11024,9 @@ "parent": "bfrd_remorhaz_bite", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, @@ -11047,9 +11047,9 @@ "parent": "bfrd_rhinoceros_gore", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -11070,9 +11070,9 @@ "parent": "bfrd_robot-drone_flame-jet", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": null, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -11093,9 +11093,9 @@ "parent": "bfrd_robot-drone_slam", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11116,9 +11116,9 @@ "parent": "bfrd_roc_beak", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -11139,9 +11139,9 @@ "parent": "bfrd_roc_talon", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -11162,9 +11162,9 @@ "parent": "bfrd_roper_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -11185,9 +11185,9 @@ "parent": "bfrd_roper_grasping-tendril", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 50.0, - "range_ft": null, - "long_range_ft": null, + "reach": 50.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11208,9 +11208,9 @@ "parent": "bfrd_rug-of-smothering_smother", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -11231,9 +11231,9 @@ "parent": "bfrd_rust-monster_bite", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -11254,9 +11254,9 @@ "parent": "bfrd_sahuagin_bite", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11277,9 +11277,9 @@ "parent": "bfrd_sahuagin_claws", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -11300,9 +11300,9 @@ "parent": "bfrd_sahuagin_trident", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11323,9 +11323,9 @@ "parent": "bfrd_salamander_fire-bolt", "attack_type": "SPELL", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": null, - "long_range_ft": null, + "reach": null, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -11346,9 +11346,9 @@ "parent": "bfrd_salamander_tail", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -11369,9 +11369,9 @@ "parent": "bfrd_salamander_trident", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -11392,9 +11392,9 @@ "parent": "bfrd_satarre_claw", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11415,9 +11415,9 @@ "parent": "bfrd_satarre_spear", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11438,9 +11438,9 @@ "parent": "bfrd_satyr_intoxicating-bolt", "attack_type": "SPELL", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": null, + "reach": null, + "range": 60.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11461,9 +11461,9 @@ "parent": "bfrd_satyr_ram", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -11484,9 +11484,9 @@ "parent": "bfrd_scorch-drake_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -11507,9 +11507,9 @@ "parent": "bfrd_scorch-drake_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -11530,9 +11530,9 @@ "parent": "bfrd_scout_shortbow", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": null, - "long_range_ft": null, + "reach": null, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11553,9 +11553,9 @@ "parent": "bfrd_scout_shortsword", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11576,9 +11576,9 @@ "parent": "bfrd_sea-hag_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -11599,9 +11599,9 @@ "parent": "bfrd_seahorse-giant_ram", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -11622,9 +11622,9 @@ "parent": "bfrd_seahorse_ram", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11645,9 +11645,9 @@ "parent": "bfrd_shadow_strength-drain", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -11668,9 +11668,9 @@ "parent": "bfrd_shambling-mound_slam", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -11691,9 +11691,9 @@ "parent": "bfrd_shark-giant_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -11714,9 +11714,9 @@ "parent": "bfrd_shark-hunter_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -11737,9 +11737,9 @@ "parent": "bfrd_shark-reef_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11760,9 +11760,9 @@ "parent": "bfrd_shield-guardian_rune-bolt", "attack_type": "SPELL", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": null, + "reach": null, + "range": 60.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -11783,9 +11783,9 @@ "parent": "bfrd_shield-guardian_runed-fist", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -11806,9 +11806,9 @@ "parent": "bfrd_sila_cold-infused-jambiya", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -11829,9 +11829,9 @@ "parent": "bfrd_sila_water-burst", "attack_type": "SPELL", "to_hit_mod": 9, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": null, + "reach": null, + "range": 60.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -11852,9 +11852,9 @@ "parent": "bfrd_silver-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11875,9 +11875,9 @@ "parent": "bfrd_silver-dragon-wyrmling_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11898,9 +11898,9 @@ "parent": "bfrd_skeleton_shortbow", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 80.0, - "long_range_ft": 320.0, + "reach": null, + "range": 80.0, + "long_range": 320.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11921,9 +11921,9 @@ "parent": "bfrd_skeleton_shortsword", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11944,9 +11944,9 @@ "parent": "bfrd_skullbloom_bite", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11967,9 +11967,9 @@ "parent": "bfrd_skullbloom_slam", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11990,9 +11990,9 @@ "parent": "bfrd_snake-constrictor_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -12013,9 +12013,9 @@ "parent": "bfrd_snake-constrictor_constrict", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -12036,9 +12036,9 @@ "parent": "bfrd_snake-flying_bite", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -12059,9 +12059,9 @@ "parent": "bfrd_snake-giant-constrictor_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -12082,9 +12082,9 @@ "parent": "bfrd_snake-giant-constrictor_constrict", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -12105,9 +12105,9 @@ "parent": "bfrd_snake-giant-poisonous_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -12128,9 +12128,9 @@ "parent": "bfrd_snake-poisonous_bite", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -12151,9 +12151,9 @@ "parent": "bfrd_snake-swarm-of-poisonous-snakes_bites", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 0.0, - "range_ft": null, - "long_range_ft": null, + "reach": 0.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -12174,9 +12174,9 @@ "parent": "bfrd_solar_greatsword", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -12197,9 +12197,9 @@ "parent": "bfrd_solar_holy-fire-bolt", "attack_type": "SPELL", "to_hit_mod": 14, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": null, + "reach": null, + "range": 60.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, @@ -12220,9 +12220,9 @@ "parent": "bfrd_specter_life-drain", "attack_type": "SPELL", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -12243,9 +12243,9 @@ "parent": "bfrd_spider-giant-wolf_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -12266,9 +12266,9 @@ "parent": "bfrd_spider-giant_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -12289,9 +12289,9 @@ "parent": "bfrd_spider_bite", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -12312,9 +12312,9 @@ "parent": "bfrd_spirit-naga_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -12335,9 +12335,9 @@ "parent": "bfrd_spirit-naga_spit-poison", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": null, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": null, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -12358,9 +12358,9 @@ "parent": "bfrd_sprite_shortbow", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 80.0, - "long_range_ft": 320.0, + "reach": null, + "range": 80.0, + "long_range": 320.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -12381,9 +12381,9 @@ "parent": "bfrd_sprite_shortsword", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -12404,9 +12404,9 @@ "parent": "bfrd_spy_hand-crossbow", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 30.0, - "long_range_ft": 120.0, + "reach": null, + "range": 30.0, + "long_range": 120.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -12427,9 +12427,9 @@ "parent": "bfrd_spy_shortsword", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -12450,9 +12450,9 @@ "parent": "bfrd_star-crow_radiant-touch", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -12473,9 +12473,9 @@ "parent": "bfrd_steam-mephit_claws", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -12496,9 +12496,9 @@ "parent": "bfrd_steam-mephit_steam-blast", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": null, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -12519,9 +12519,9 @@ "parent": "bfrd_stirge_blood-drain", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -12542,9 +12542,9 @@ "parent": "bfrd_stone-giant_rock", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": 240.0, + "reach": null, + "range": 60.0, + "long_range": 240.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -12565,9 +12565,9 @@ "parent": "bfrd_stone-giant_stony-fist", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -12588,9 +12588,9 @@ "parent": "bfrd_stone-golem_slam", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -12611,9 +12611,9 @@ "parent": "bfrd_storm-giant_greatsword", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, @@ -12634,9 +12634,9 @@ "parent": "bfrd_storm-giant_lightning-bolt", "attack_type": "SPELL", "to_hit_mod": 9, - "reach_ft": null, - "range_ft": 150.0, - "long_range_ft": null, + "reach": null, + "range": 150.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -12657,9 +12657,9 @@ "parent": "bfrd_succubus_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -12680,9 +12680,9 @@ "parent": "bfrd_succubus_draining-kiss", "attack_type": "SPELL", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -12703,9 +12703,9 @@ "parent": "bfrd_tarrasque_acid-spit", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": null, - "range_ft": 100.0, - "long_range_ft": 400.0, + "reach": null, + "range": 100.0, + "long_range": 400.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, @@ -12726,9 +12726,9 @@ "parent": "bfrd_tarrasque_bite", "attack_type": "WEAPON", "to_hit_mod": 19, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -12749,9 +12749,9 @@ "parent": "bfrd_tarrasque_claw", "attack_type": "WEAPON", "to_hit_mod": 19, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -12772,9 +12772,9 @@ "parent": "bfrd_tarrasque_spiked-tail", "attack_type": "WEAPON", "to_hit_mod": 19, - "reach_ft": 20.0, - "range_ft": null, - "long_range_ft": null, + "reach": 20.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -12795,9 +12795,9 @@ "parent": "bfrd_thug_club", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -12818,9 +12818,9 @@ "parent": "bfrd_thug_heavy-crossbow", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": null, - "range_ft": 100.0, - "long_range_ft": 400.0, + "reach": null, + "range": 100.0, + "long_range": 400.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -12841,9 +12841,9 @@ "parent": "bfrd_tiger-saber-toothed_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -12864,9 +12864,9 @@ "parent": "bfrd_tiger-saber-toothed_claws", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -12887,9 +12887,9 @@ "parent": "bfrd_tiger_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -12910,9 +12910,9 @@ "parent": "bfrd_tiger_claws", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -12933,9 +12933,9 @@ "parent": "bfrd_treant_slam", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -12956,9 +12956,9 @@ "parent": "bfrd_treant_throw-rock", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": 180.0, + "reach": null, + "range": 60.0, + "long_range": 180.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, @@ -12979,9 +12979,9 @@ "parent": "bfrd_triceratops_gore", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -13002,9 +13002,9 @@ "parent": "bfrd_triceratops_stomp", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -13025,9 +13025,9 @@ "parent": "bfrd_troll_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -13048,9 +13048,9 @@ "parent": "bfrd_troll_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -13071,9 +13071,9 @@ "parent": "bfrd_tyrannosaurus-rex_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -13094,9 +13094,9 @@ "parent": "bfrd_tyrannosaurus-rex_tail", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -13117,9 +13117,9 @@ "parent": "bfrd_unicorn_hooves", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -13140,9 +13140,9 @@ "parent": "bfrd_unicorn_horn-bolt", "attack_type": "SPELL", "to_hit_mod": 6, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": null, + "reach": null, + "range": 60.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -13163,9 +13163,9 @@ "parent": "bfrd_unicorn_horn", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13186,9 +13186,9 @@ "parent": "bfrd_unska_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -13209,9 +13209,9 @@ "parent": "bfrd_unska_ink-blast", "attack_type": "SPELL", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": null, + "reach": null, + "range": 60.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -13232,9 +13232,9 @@ "parent": "bfrd_unska_tongue", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -13255,9 +13255,9 @@ "parent": "bfrd_vampire-spawn_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -13278,9 +13278,9 @@ "parent": "bfrd_vampire-spawn_draining-bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -13301,9 +13301,9 @@ "parent": "bfrd_vampire-thrall_rapier", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13324,9 +13324,9 @@ "parent": "bfrd_vampire_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -13347,9 +13347,9 @@ "parent": "bfrd_vampire_claw", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -13370,9 +13370,9 @@ "parent": "bfrd_vampire_draining-bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -13393,9 +13393,9 @@ "parent": "bfrd_velociraptor_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13416,9 +13416,9 @@ "parent": "bfrd_velociraptor_claws", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13439,9 +13439,9 @@ "parent": "bfrd_veteran_heavy-crossbow", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 100.0, - "long_range_ft": 400.0, + "reach": null, + "range": 100.0, + "long_range": 400.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13462,9 +13462,9 @@ "parent": "bfrd_veteran_longsword", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13485,9 +13485,9 @@ "parent": "bfrd_veteran_shortsword", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13508,9 +13508,9 @@ "parent": "bfrd_violet-fungus_rotting-touch", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -13531,9 +13531,9 @@ "parent": "bfrd_virtuoso-lich_artistic-flourish", "attack_type": "SPELL", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": 60.0, - "long_range_ft": null, + "reach": 5.0, + "range": 60.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -13554,9 +13554,9 @@ "parent": "bfrd_vrock_beak", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -13577,9 +13577,9 @@ "parent": "bfrd_vrock_talon", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -13600,9 +13600,9 @@ "parent": "bfrd_vulture-giant_beak", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13623,9 +13623,9 @@ "parent": "bfrd_vulture-giant_talons", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -13646,9 +13646,9 @@ "parent": "bfrd_vulture_beak", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13669,9 +13669,9 @@ "parent": "bfrd_war-horse-skeleton_hooves", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -13692,9 +13692,9 @@ "parent": "bfrd_water-elemental_water-bolt", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 30.0, - "long_range_ft": 120.0, + "reach": null, + "range": 30.0, + "long_range": 120.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -13715,9 +13715,9 @@ "parent": "bfrd_water-elemental_water-tendril", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -13738,9 +13738,9 @@ "parent": "bfrd_weasel-giant_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13761,9 +13761,9 @@ "parent": "bfrd_weasel_bite", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13784,9 +13784,9 @@ "parent": "bfrd_werebear_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -13807,9 +13807,9 @@ "parent": "bfrd_werebear_claw", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -13830,9 +13830,9 @@ "parent": "bfrd_werebear_greataxe", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13853,9 +13853,9 @@ "parent": "bfrd_wereboar_maul", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -13876,9 +13876,9 @@ "parent": "bfrd_wereboar_slam", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -13899,9 +13899,9 @@ "parent": "bfrd_wereboar_tusks", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -13922,9 +13922,9 @@ "parent": "bfrd_wererat_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -13945,9 +13945,9 @@ "parent": "bfrd_wererat_claw", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -13968,9 +13968,9 @@ "parent": "bfrd_wererat_hand-crossbow", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 30.0, - "long_range_ft": 120.0, + "reach": null, + "range": 30.0, + "long_range": 120.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13991,9 +13991,9 @@ "parent": "bfrd_wererat_shortsword", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -14014,9 +14014,9 @@ "parent": "bfrd_weretiger_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -14037,9 +14037,9 @@ "parent": "bfrd_weretiger_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -14060,9 +14060,9 @@ "parent": "bfrd_weretiger_longbow", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 150.0, - "long_range_ft": 600.0, + "reach": null, + "range": 150.0, + "long_range": 600.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -14083,9 +14083,9 @@ "parent": "bfrd_weretiger_scimitar", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -14106,9 +14106,9 @@ "parent": "bfrd_werewolf_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -14129,9 +14129,9 @@ "parent": "bfrd_werewolf_claws", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -14152,9 +14152,9 @@ "parent": "bfrd_werewolf_spear", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -14175,9 +14175,9 @@ "parent": "bfrd_white-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -14198,9 +14198,9 @@ "parent": "bfrd_white-dragon-wyrmling_claw", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -14221,9 +14221,9 @@ "parent": "bfrd_wight_life-drain", "attack_type": "SPELL", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -14244,9 +14244,9 @@ "parent": "bfrd_wight_longbow", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 150.0, - "long_range_ft": 600.0, + "reach": null, + "range": 150.0, + "long_range": 600.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -14267,9 +14267,9 @@ "parent": "bfrd_wight_longsword", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -14290,9 +14290,9 @@ "parent": "bfrd_wild-warrior_spear", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -14313,9 +14313,9 @@ "parent": "bfrd_will-o-wisp_shock", "attack_type": "SPELL", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -14336,9 +14336,9 @@ "parent": "bfrd_winter-wolf_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -14359,9 +14359,9 @@ "parent": "bfrd_wolf-dire_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -14382,9 +14382,9 @@ "parent": "bfrd_wolf_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -14405,9 +14405,9 @@ "parent": "bfrd_wood-herald_hurl-thorn", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": null, - "range_ft": 30.0, - "long_range_ft": 120.0, + "reach": null, + "range": 30.0, + "long_range": 120.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -14428,9 +14428,9 @@ "parent": "bfrd_wood-herald_slam", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -14451,9 +14451,9 @@ "parent": "bfrd_wood-herald_wooden-greataxe", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -14474,9 +14474,9 @@ "parent": "bfrd_worg_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -14497,9 +14497,9 @@ "parent": "bfrd_wraith_life-drain", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -14520,9 +14520,9 @@ "parent": "bfrd_wyrdling_psychic-burst", "attack_type": "SPELL", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": 60.0, - "long_range_ft": null, + "reach": 5.0, + "range": 60.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -14543,9 +14543,9 @@ "parent": "bfrd_wyvern_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -14566,9 +14566,9 @@ "parent": "bfrd_wyvern_claws", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -14589,9 +14589,9 @@ "parent": "bfrd_wyvern_stinger", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -14612,9 +14612,9 @@ "parent": "bfrd_xorn_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -14635,9 +14635,9 @@ "parent": "bfrd_xorn_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -14658,9 +14658,9 @@ "parent": "bfrd_xorn_lob-stone", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": null, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": null, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -14681,9 +14681,9 @@ "parent": "bfrd_young-black-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -14704,9 +14704,9 @@ "parent": "bfrd_young-black-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -14727,9 +14727,9 @@ "parent": "bfrd_young-blue-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -14750,9 +14750,9 @@ "parent": "bfrd_young-blue-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -14773,9 +14773,9 @@ "parent": "bfrd_young-brass-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -14796,9 +14796,9 @@ "parent": "bfrd_young-brass-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -14819,9 +14819,9 @@ "parent": "bfrd_young-bronze-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -14842,9 +14842,9 @@ "parent": "bfrd_young-bronze-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -14865,9 +14865,9 @@ "parent": "bfrd_young-copper-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -14888,9 +14888,9 @@ "parent": "bfrd_young-copper-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -14911,9 +14911,9 @@ "parent": "bfrd_young-gold-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -14934,9 +14934,9 @@ "parent": "bfrd_young-gold-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -14957,9 +14957,9 @@ "parent": "bfrd_young-green-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -14980,9 +14980,9 @@ "parent": "bfrd_young-green-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -15003,9 +15003,9 @@ "parent": "bfrd_young-red-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -15026,9 +15026,9 @@ "parent": "bfrd_young-red-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -15049,9 +15049,9 @@ "parent": "bfrd_young-silver-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -15072,9 +15072,9 @@ "parent": "bfrd_young-silver-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -15095,9 +15095,9 @@ "parent": "bfrd_young-white-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -15118,9 +15118,9 @@ "parent": "bfrd_young-white-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -15141,9 +15141,9 @@ "parent": "bfrd_zombie_slam", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, diff --git a/data/v2/kobold-press/ccdx/CreatureActionAttack.json b/data/v2/kobold-press/ccdx/CreatureActionAttack.json index b812dc01..ce4a1d63 100644 --- a/data/v2/kobold-press/ccdx/CreatureActionAttack.json +++ b/data/v2/kobold-press/ccdx/CreatureActionAttack.json @@ -7,9 +7,9 @@ "parent": "ccdx_aatxe_gore", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -30,9 +30,9 @@ "parent": "ccdx_acid-ant_acid-spit", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": null, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": null, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -53,9 +53,9 @@ "parent": "ccdx_acid-ant_bite", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -76,9 +76,9 @@ "parent": "ccdx_adult-light-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -99,9 +99,9 @@ "parent": "ccdx_adult-light-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -122,9 +122,9 @@ "parent": "ccdx_adult-light-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -145,9 +145,9 @@ "parent": "ccdx_adult-wasteland-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -168,9 +168,9 @@ "parent": "ccdx_adult-wasteland-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -191,9 +191,9 @@ "parent": "ccdx_adult-wasteland-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -214,9 +214,9 @@ "parent": "ccdx_agnibarra_burning-claw", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -237,9 +237,9 @@ "parent": "ccdx_agnibarra_spit-fire", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 15.0, - "long_range_ft": 30.0, + "reach": null, + "range": 15.0, + "long_range": 30.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -260,9 +260,9 @@ "parent": "ccdx_ahu-nixta_bashing-rod", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -283,9 +283,9 @@ "parent": "ccdx_ahu-nixta_pronged-scepter", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -306,9 +306,9 @@ "parent": "ccdx_ahu-nixta_whirring-blades", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -329,9 +329,9 @@ "parent": "ccdx_ahuizotl_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -352,9 +352,9 @@ "parent": "ccdx_ahuizotl_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -375,9 +375,9 @@ "parent": "ccdx_alabaster-tree_slam", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -398,9 +398,9 @@ "parent": "ccdx_albino-death-weasel_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -421,9 +421,9 @@ "parent": "ccdx_albino-death-weasel_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -444,9 +444,9 @@ "parent": "ccdx_alchemical-apprentice_magical-burble", "attack_type": "SPELL", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": null, + "reach": null, + "range": 60.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -467,9 +467,9 @@ "parent": "ccdx_alchemical-apprentice_pseudopod", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -490,9 +490,9 @@ "parent": "ccdx_alchemical-golem_slam", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -513,9 +513,9 @@ "parent": "ccdx_alchemist-archer_longbow", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": null, - "range_ft": 150.0, - "long_range_ft": 600.0, + "reach": null, + "range": 150.0, + "long_range": 600.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -536,9 +536,9 @@ "parent": "ccdx_alchemist-archer_scimitar", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -559,9 +559,9 @@ "parent": "ccdx_alkonost_claws", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -582,9 +582,9 @@ "parent": "ccdx_alliumite_grass-blade", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -605,9 +605,9 @@ "parent": "ccdx_alliumite_thorn-dart", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": null, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": null, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -628,9 +628,9 @@ "parent": "ccdx_alnaar_fiery-fangs", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -651,9 +651,9 @@ "parent": "ccdx_alp_sleepers-slap", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -674,9 +674,9 @@ "parent": "ccdx_alpha-yek_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -697,9 +697,9 @@ "parent": "ccdx_alpha-yek_bone-shard", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -720,9 +720,9 @@ "parent": "ccdx_alpha-yek_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -743,9 +743,9 @@ "parent": "ccdx_altar-flame-golem_slam", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -766,9 +766,9 @@ "parent": "ccdx_ammut_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, @@ -789,9 +789,9 @@ "parent": "ccdx_ancient-light-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -812,9 +812,9 @@ "parent": "ccdx_ancient-light-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -835,9 +835,9 @@ "parent": "ccdx_ancient-light-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 20.0, - "range_ft": null, - "long_range_ft": null, + "reach": 20.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -858,9 +858,9 @@ "parent": "ccdx_ancient-mandriano_swipe", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -881,9 +881,9 @@ "parent": "ccdx_ancient-wasteland-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 16, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -904,9 +904,9 @@ "parent": "ccdx_ancient-wasteland-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 16, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -927,9 +927,9 @@ "parent": "ccdx_ancient-wasteland-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 16, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -950,9 +950,9 @@ "parent": "ccdx_ankou-soul-herald_bite", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -973,9 +973,9 @@ "parent": "ccdx_ankou-soul-herald_claw", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -996,9 +996,9 @@ "parent": "ccdx_ankou-soul-herald_tail", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 20.0, - "range_ft": null, - "long_range_ft": null, + "reach": 20.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1019,9 +1019,9 @@ "parent": "ccdx_ankou-soul-seeker_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1042,9 +1042,9 @@ "parent": "ccdx_ankou-soul-seeker_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1065,9 +1065,9 @@ "parent": "ccdx_anophiloi_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -1088,9 +1088,9 @@ "parent": "ccdx_anophiloi_claws", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -1111,9 +1111,9 @@ "parent": "ccdx_arborcyte_animated-tendril", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -1134,9 +1134,9 @@ "parent": "ccdx_arborcyte_thorn-vine", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -1157,9 +1157,9 @@ "parent": "ccdx_arcamag_attach", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": null, @@ -1180,9 +1180,9 @@ "parent": "ccdx_arcanaphage_tentacle", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1203,9 +1203,9 @@ "parent": "ccdx_archaeopteryx_beak", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -1226,9 +1226,9 @@ "parent": "ccdx_archaeopteryx_talons", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -1249,9 +1249,9 @@ "parent": "ccdx_armory-golem_crossbow-barrage", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 80.0, - "long_range_ft": 320.0, + "reach": null, + "range": 80.0, + "long_range": 320.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1272,9 +1272,9 @@ "parent": "ccdx_armory-golem_polearm-strike", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -1295,9 +1295,9 @@ "parent": "ccdx_armory-golem_slam", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -1318,9 +1318,9 @@ "parent": "ccdx_astral-snapper_claws", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1341,9 +1341,9 @@ "parent": "ccdx_avatar-of-shoth_oozing-tentacle", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -1364,9 +1364,9 @@ "parent": "ccdx_azeban_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1387,9 +1387,9 @@ "parent": "ccdx_azeban_claws", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1410,9 +1410,9 @@ "parent": "ccdx_azi-dahaka_bite", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -1433,9 +1433,9 @@ "parent": "ccdx_azi-dahaka_claw", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1456,9 +1456,9 @@ "parent": "ccdx_bar-brawl_barstool", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 0.0, - "long_range_ft": null, + "reach": null, + "range": 0.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -1479,9 +1479,9 @@ "parent": "ccdx_bar-brawl_broken-bottles", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 0.0, - "long_range_ft": null, + "reach": null, + "range": 0.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -1502,9 +1502,9 @@ "parent": "ccdx_bar-brawl_darts", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": null, - "range_ft": 20.0, - "long_range_ft": 40.0, + "reach": null, + "range": 20.0, + "long_range": 40.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -1525,9 +1525,9 @@ "parent": "ccdx_barong_bite", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -1548,9 +1548,9 @@ "parent": "ccdx_barong_claws", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -1571,9 +1571,9 @@ "parent": "ccdx_bathhouse-drake_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -1594,9 +1594,9 @@ "parent": "ccdx_bathhouse-drake_claw", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -1617,9 +1617,9 @@ "parent": "ccdx_bathhouse-drake_scalding-jet", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": null, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1640,9 +1640,9 @@ "parent": "ccdx_bearfolk-chieftain_battleaxe", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1663,9 +1663,9 @@ "parent": "ccdx_bearfolk-chieftain_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1686,9 +1686,9 @@ "parent": "ccdx_bearmit-crab_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -1709,9 +1709,9 @@ "parent": "ccdx_bearmit-crab_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -1732,9 +1732,9 @@ "parent": "ccdx_bilwis_slam", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1755,9 +1755,9 @@ "parent": "ccdx_black-sun-orc_greatclub", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -1778,9 +1778,9 @@ "parent": "ccdx_black-sun-orc_sling", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 30.0, - "long_range_ft": 120.0, + "reach": null, + "range": 30.0, + "long_range": 120.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -1801,9 +1801,9 @@ "parent": "ccdx_black-sun-priestess_greatclub", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -1824,9 +1824,9 @@ "parent": "ccdx_blood-elemental_slam", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1847,9 +1847,9 @@ "parent": "ccdx_blood-giant_blood-spear", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": null, - "range_ft": 15.0, - "long_range_ft": null, + "reach": null, + "range": 15.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -1870,9 +1870,9 @@ "parent": "ccdx_blood-giant_rock", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": 240.0, + "reach": null, + "range": 60.0, + "long_range": 240.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -1893,9 +1893,9 @@ "parent": "ccdx_blood-ooze_pseudopod", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -1916,9 +1916,9 @@ "parent": "ccdx_blood-zombie_slam", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -1939,9 +1939,9 @@ "parent": "ccdx_bloody-bones_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1962,9 +1962,9 @@ "parent": "ccdx_bone-golem_bone-shard", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": 240.0, + "reach": null, + "range": 60.0, + "long_range": 240.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -1985,9 +1985,9 @@ "parent": "ccdx_bone-golem_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -2008,9 +2008,9 @@ "parent": "ccdx_bookkeeper_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": null, @@ -2031,9 +2031,9 @@ "parent": "ccdx_bookkeeper_ink-splash", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 20.0, - "long_range_ft": null, + "reach": null, + "range": 20.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2054,9 +2054,9 @@ "parent": "ccdx_boot-grabber_adhesive-hands", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -2077,9 +2077,9 @@ "parent": "ccdx_bronze-golem_slam", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2100,9 +2100,9 @@ "parent": "ccdx_cacus-giant_greatclub", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -2123,9 +2123,9 @@ "parent": "ccdx_cacus-giant_rock", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": null, - "range_ft": 30.0, - "long_range_ft": 120.0, + "reach": null, + "range": 30.0, + "long_range": 120.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -2146,9 +2146,9 @@ "parent": "ccdx_carbuncle_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2169,9 +2169,9 @@ "parent": "ccdx_carbuncle_claw", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2192,9 +2192,9 @@ "parent": "ccdx_cats-of-ulthar_bites", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 0.0, - "range_ft": null, - "long_range_ft": null, + "reach": 0.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -2215,9 +2215,9 @@ "parent": "ccdx_cauldronborn_slam", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -2238,9 +2238,9 @@ "parent": "ccdx_cave-giant_handaxe", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 10.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 10.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -2261,9 +2261,9 @@ "parent": "ccdx_cave-giant_rock", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": 240.0, + "reach": null, + "range": 60.0, + "long_range": 240.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -2284,9 +2284,9 @@ "parent": "ccdx_cave-giant_tusks", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -2307,9 +2307,9 @@ "parent": "ccdx_centaur-chieftain_hooves", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -2330,9 +2330,9 @@ "parent": "ccdx_centaur-chieftain_longbow", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 150.0, - "long_range_ft": 600.0, + "reach": null, + "range": 150.0, + "long_range": 600.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2353,9 +2353,9 @@ "parent": "ccdx_centaur-chieftain_pike", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2376,9 +2376,9 @@ "parent": "ccdx_chaos-spawn-goblin_scimitar", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2399,9 +2399,9 @@ "parent": "ccdx_child-of-yggdrasil_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2422,9 +2422,9 @@ "parent": "ccdx_chuhaister_greatclub", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, @@ -2445,9 +2445,9 @@ "parent": "ccdx_chuhaister_rock", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": null, - "range_ft": 30.0, - "long_range_ft": 120.0, + "reach": null, + "range": 30.0, + "long_range": 120.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, @@ -2468,9 +2468,9 @@ "parent": "ccdx_chupacabra_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2491,9 +2491,9 @@ "parent": "ccdx_cipactli_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2514,9 +2514,9 @@ "parent": "ccdx_clacking-skeleton_glaive", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2537,9 +2537,9 @@ "parent": "ccdx_clacking-skeleton_gore", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2560,9 +2560,9 @@ "parent": "ccdx_clacking-skeleton_shortbow", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": null, - "range_ft": 80.0, - "long_range_ft": 320.0, + "reach": null, + "range": 80.0, + "long_range": 320.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2583,9 +2583,9 @@ "parent": "ccdx_clockwork-assassin_rapier", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2606,9 +2606,9 @@ "parent": "ccdx_clockwork-servant_slam", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2629,9 +2629,9 @@ "parent": "ccdx_clockwork-soldier_halberd", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2652,9 +2652,9 @@ "parent": "ccdx_corpse-thief_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2675,9 +2675,9 @@ "parent": "ccdx_crypt-spider_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2698,9 +2698,9 @@ "parent": "ccdx_crypt-spider_web", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 30.0, - "long_range_ft": 60.0, + "reach": null, + "range": 30.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": null, @@ -2721,9 +2721,9 @@ "parent": "ccdx_cueyatl-moon-priest_morningstar", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2744,9 +2744,9 @@ "parent": "ccdx_cueyatl-sea-priest_trident", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2767,9 +2767,9 @@ "parent": "ccdx_cueyatl-warrior_battleaxe", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2790,9 +2790,9 @@ "parent": "ccdx_cueyatl_spear", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2813,9 +2813,9 @@ "parent": "ccdx_darakhul-high-priestess_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2836,9 +2836,9 @@ "parent": "ccdx_darakhul-high-priestess_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -2859,9 +2859,9 @@ "parent": "ccdx_darakhul-shadowmancer_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -2882,9 +2882,9 @@ "parent": "ccdx_darakhul-shadowmancer_dagger", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2905,9 +2905,9 @@ "parent": "ccdx_dark-eye_dagger", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2928,9 +2928,9 @@ "parent": "ccdx_dark-father_life-drain", "attack_type": "SPELL", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -2951,9 +2951,9 @@ "parent": "ccdx_dark-servant_light-crossbow", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": null, - "range_ft": 80.0, - "long_range_ft": 320.0, + "reach": null, + "range": 80.0, + "long_range": 320.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2974,9 +2974,9 @@ "parent": "ccdx_dark-servant_sickle", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2997,9 +2997,9 @@ "parent": "ccdx_dark-voice_heavy-crossbow", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": null, - "range_ft": 100.0, - "long_range_ft": 400.0, + "reach": null, + "range": 100.0, + "long_range": 400.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3020,9 +3020,9 @@ "parent": "ccdx_dark-voice_mace", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3043,9 +3043,9 @@ "parent": "ccdx_deathsworn-elf_longbow", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": null, - "range_ft": 150.0, - "long_range_ft": 600.0, + "reach": null, + "range": 150.0, + "long_range": 600.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3066,9 +3066,9 @@ "parent": "ccdx_deathsworn-elf_scimitar", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3089,9 +3089,9 @@ "parent": "ccdx_desert-troll_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3112,9 +3112,9 @@ "parent": "ccdx_desert-troll_claws", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -3135,9 +3135,9 @@ "parent": "ccdx_devil-bough_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -3158,9 +3158,9 @@ "parent": "ccdx_devil-bough_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -3181,9 +3181,9 @@ "parent": "ccdx_devil-shark_bite", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -3204,9 +3204,9 @@ "parent": "ccdx_dhampir-commander_dark-thirst", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3227,9 +3227,9 @@ "parent": "ccdx_dhampir-commander_rapier", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3250,9 +3250,9 @@ "parent": "ccdx_dhampir-commander_shortbow", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": null, - "range_ft": 80.0, - "long_range_ft": 320.0, + "reach": null, + "range": 80.0, + "long_range": 320.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3273,9 +3273,9 @@ "parent": "ccdx_dhampir_dark-thirst", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3296,9 +3296,9 @@ "parent": "ccdx_dhampir_rapier", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3319,9 +3319,9 @@ "parent": "ccdx_dhampir_shortbow", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 80.0, - "long_range_ft": 320.0, + "reach": null, + "range": 80.0, + "long_range": 320.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3342,9 +3342,9 @@ "parent": "ccdx_doom-golem_bite", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -3365,9 +3365,9 @@ "parent": "ccdx_doom-golem_doom-claw", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -3388,9 +3388,9 @@ "parent": "ccdx_dracotaur_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -3411,9 +3411,9 @@ "parent": "ccdx_dracotaur_claws", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -3434,9 +3434,9 @@ "parent": "ccdx_dracotaur_longbow", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": null, - "range_ft": 150.0, - "long_range_ft": 600.0, + "reach": null, + "range": 150.0, + "long_range": 600.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -3457,9 +3457,9 @@ "parent": "ccdx_dream-squire_light-crossbow", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 80.0, - "long_range_ft": 320.0, + "reach": null, + "range": 80.0, + "long_range": 320.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3480,9 +3480,9 @@ "parent": "ccdx_dream-squire_mace", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3503,9 +3503,9 @@ "parent": "ccdx_dream-wraith_sleep-touch", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -3526,9 +3526,9 @@ "parent": "ccdx_droth_oozing-crush", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -3549,9 +3549,9 @@ "parent": "ccdx_dust-goblin-chieftain_light-crossbow", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": null, - "range_ft": 80.0, - "long_range_ft": 320.0, + "reach": null, + "range": 80.0, + "long_range": 320.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3572,9 +3572,9 @@ "parent": "ccdx_dust-goblin-chieftain_shortsword", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3595,9 +3595,9 @@ "parent": "ccdx_dvarapala_gada", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, @@ -3618,9 +3618,9 @@ "parent": "ccdx_dvarapala_javelin", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 10.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -3641,9 +3641,9 @@ "parent": "ccdx_echo_iron-claws", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -3664,9 +3664,9 @@ "parent": "ccdx_ecstatic-bloom_gilded-beam", "attack_type": "SPELL", "to_hit_mod": 9, - "reach_ft": null, - "range_ft": 150.0, - "long_range_ft": null, + "reach": null, + "range": 150.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, @@ -3687,9 +3687,9 @@ "parent": "ccdx_edjet_halberd", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3710,9 +3710,9 @@ "parent": "ccdx_edjet_shortbow", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 80.0, - "long_range_ft": 320.0, + "reach": null, + "range": 80.0, + "long_range": 320.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3733,9 +3733,9 @@ "parent": "ccdx_edjet_shortsword", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3756,9 +3756,9 @@ "parent": "ccdx_elder-ghost-boar_tusk", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -3779,9 +3779,9 @@ "parent": "ccdx_elementalist_scimitar", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3802,9 +3802,9 @@ "parent": "ccdx_elite-kobold_mining-pick", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3825,9 +3825,9 @@ "parent": "ccdx_elite-kobold_sling", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 30.0, - "long_range_ft": 120.0, + "reach": null, + "range": 30.0, + "long_range": 120.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3848,9 +3848,9 @@ "parent": "ccdx_elophar_slam", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -3871,9 +3871,9 @@ "parent": "ccdx_enchanter_dagger", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3894,9 +3894,9 @@ "parent": "ccdx_execrable-shrub_burning-slash", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3917,9 +3917,9 @@ "parent": "ccdx_exploding-toad_bite", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3940,9 +3940,9 @@ "parent": "ccdx_eye-of-the-gods_slam", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3963,9 +3963,9 @@ "parent": "ccdx_fang-of-the-great-wolf_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -3986,9 +3986,9 @@ "parent": "ccdx_far-wanderer_stardust-blade", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -4009,9 +4009,9 @@ "parent": "ccdx_far-wanderer_stardust-bow", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": null, - "range_ft": 150.0, - "long_range_ft": 600.0, + "reach": null, + "range": 150.0, + "long_range": 600.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -4032,9 +4032,9 @@ "parent": "ccdx_fear-liath_slam", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -4055,9 +4055,9 @@ "parent": "ccdx_fey-drake_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -4078,9 +4078,9 @@ "parent": "ccdx_fierstjerren_sword", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -4101,9 +4101,9 @@ "parent": "ccdx_fire-imp_fire-touch", "attack_type": "SPELL", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -4124,9 +4124,9 @@ "parent": "ccdx_fire-imp_hurl-flame", "attack_type": "SPELL", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 150.0, - "long_range_ft": null, + "reach": null, + "range": 150.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -4147,9 +4147,9 @@ "parent": "ccdx_flame-eater-swarm_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 0.0, - "range_ft": null, - "long_range_ft": null, + "reach": 0.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -4170,9 +4170,9 @@ "parent": "ccdx_flame-scourged-scion_tentacle", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -4193,9 +4193,9 @@ "parent": "ccdx_flesh-reaver_claw", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -4216,9 +4216,9 @@ "parent": "ccdx_flesh-reaver_consume-flesh", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -4239,9 +4239,9 @@ "parent": "ccdx_fleshpod-hornet_slam", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -4262,9 +4262,9 @@ "parent": "ccdx_fleshpod-hornet_stinger", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -4285,9 +4285,9 @@ "parent": "ccdx_flying-polyp_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -4308,9 +4308,9 @@ "parent": "ccdx_flying-polyp_tentacle", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -4331,9 +4331,9 @@ "parent": "ccdx_forest-drake_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -4354,9 +4354,9 @@ "parent": "ccdx_forest-drake_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -4377,9 +4377,9 @@ "parent": "ccdx_foxfire-ooze_pseudopod", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -4400,9 +4400,9 @@ "parent": "ccdx_foxin_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -4423,9 +4423,9 @@ "parent": "ccdx_fractal-golem_slam", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -4446,9 +4446,9 @@ "parent": "ccdx_fragrite_strike", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -4469,9 +4469,9 @@ "parent": "ccdx_fulad-zereh_barbed-whip", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 30.0, - "range_ft": null, - "long_range_ft": null, + "reach": 30.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -4492,9 +4492,9 @@ "parent": "ccdx_fulad-zereh_battleaxe", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -4515,9 +4515,9 @@ "parent": "ccdx_fulminar_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -4538,9 +4538,9 @@ "parent": "ccdx_fulminar_claw", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -4561,9 +4561,9 @@ "parent": "ccdx_gaki_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -4584,9 +4584,9 @@ "parent": "ccdx_gaki_spit-acid", "attack_type": "SPELL", "to_hit_mod": 6, - "reach_ft": null, - "range_ft": 30.0, - "long_range_ft": null, + "reach": null, + "range": 30.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, @@ -4607,9 +4607,9 @@ "parent": "ccdx_gargoctopus_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -4630,9 +4630,9 @@ "parent": "ccdx_gargoctopus_tentacle", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -4653,9 +4653,9 @@ "parent": "ccdx_ghast-of-leng_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -4676,9 +4676,9 @@ "parent": "ccdx_ghast-of-leng_claws", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -4699,9 +4699,9 @@ "parent": "ccdx_ghost-boar_tusk", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -4722,9 +4722,9 @@ "parent": "ccdx_ghost-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -4745,9 +4745,9 @@ "parent": "ccdx_ghost-dragon_withering-bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -4768,9 +4768,9 @@ "parent": "ccdx_ghost-dwarf_ghostly-axe", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -4791,9 +4791,9 @@ "parent": "ccdx_ghost-dwarf_hand-of-the-grave", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -4814,9 +4814,9 @@ "parent": "ccdx_ghoulsteed_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -4837,9 +4837,9 @@ "parent": "ccdx_giant-albino-bat_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -4860,9 +4860,9 @@ "parent": "ccdx_giant-albino-bat_claws", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -4883,9 +4883,9 @@ "parent": "ccdx_giant-moth_proboscis", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -4906,9 +4906,9 @@ "parent": "ccdx_giant-shark-bowl_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -4929,9 +4929,9 @@ "parent": "ccdx_giant-shark-bowl_pseudopod", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -4952,9 +4952,9 @@ "parent": "ccdx_giant-sloth_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -4975,9 +4975,9 @@ "parent": "ccdx_giant-sloth_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -4998,9 +4998,9 @@ "parent": "ccdx_giant-vampire-bat_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5021,9 +5021,9 @@ "parent": "ccdx_glass-golem_shard", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -5044,9 +5044,9 @@ "parent": "ccdx_gloomflower_psychic-strike", "attack_type": "SPELL", "to_hit_mod": 6, - "reach_ft": null, - "range_ft": 120.0, - "long_range_ft": null, + "reach": null, + "range": 120.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -5067,9 +5067,9 @@ "parent": "ccdx_gnoll-slaver_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5090,9 +5090,9 @@ "parent": "ccdx_gnoll-slaver_longbow", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 150.0, - "long_range_ft": 600.0, + "reach": null, + "range": 150.0, + "long_range": 600.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5113,9 +5113,9 @@ "parent": "ccdx_gnoll-slaver_whip", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5136,9 +5136,9 @@ "parent": "ccdx_goliath-longlegs_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5159,9 +5159,9 @@ "parent": "ccdx_goliath-longlegs_leg", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5182,9 +5182,9 @@ "parent": "ccdx_goliath-longlegs_paralytic-web", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 30.0, - "long_range_ft": 60.0, + "reach": null, + "range": 30.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": null, @@ -5205,9 +5205,9 @@ "parent": "ccdx_goreling_slam", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5228,9 +5228,9 @@ "parent": "ccdx_grave-behemoth_gorge", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -5251,9 +5251,9 @@ "parent": "ccdx_grave-behemoth_slam", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -5274,9 +5274,9 @@ "parent": "ccdx_great-mandrake_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -5297,9 +5297,9 @@ "parent": "ccdx_greater-rakshasa_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -5320,9 +5320,9 @@ "parent": "ccdx_greater-scrag_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -5343,9 +5343,9 @@ "parent": "ccdx_greater-scrag_claws", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -5366,9 +5366,9 @@ "parent": "ccdx_green-abyss-orc_poisoned-spear", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5389,9 +5389,9 @@ "parent": "ccdx_green-knight-of-the-woods_battle-axe", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5412,9 +5412,9 @@ "parent": "ccdx_green-knight-of-the-woods_javelin", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": 30.0, - "long_range_ft": 120.0, + "reach": 5.0, + "range": 30.0, + "long_range": 120.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5435,9 +5435,9 @@ "parent": "ccdx_green-knight-of-the-woods_shield-bash", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5458,9 +5458,9 @@ "parent": "ccdx_grindylow_bite", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5481,9 +5481,9 @@ "parent": "ccdx_grindylow_claws", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -5504,9 +5504,9 @@ "parent": "ccdx_gugalanna_horns", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, @@ -5527,9 +5527,9 @@ "parent": "ccdx_gugalanna_kick", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -5550,9 +5550,9 @@ "parent": "ccdx_gulon_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -5573,9 +5573,9 @@ "parent": "ccdx_gulon_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -5596,9 +5596,9 @@ "parent": "ccdx_gumienniki_flaming-hand-scythe", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5619,9 +5619,9 @@ "parent": "ccdx_hair-golem_lash", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5642,9 +5642,9 @@ "parent": "ccdx_hallowed-reed_searing-grasp", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5665,9 +5665,9 @@ "parent": "ccdx_haunted-giant_greatclub", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -5688,9 +5688,9 @@ "parent": "ccdx_haunted-giant_rock", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": 240.0, + "reach": null, + "range": 60.0, + "long_range": 240.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -5711,9 +5711,9 @@ "parent": "ccdx_heavy-cavalry_heavy-crossbow", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": null, - "range_ft": 100.0, - "long_range_ft": 400.0, + "reach": null, + "range": 100.0, + "long_range": 400.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5734,9 +5734,9 @@ "parent": "ccdx_heavy-cavalry_lance", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5757,9 +5757,9 @@ "parent": "ccdx_heavy-cavalry_trample", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -5780,9 +5780,9 @@ "parent": "ccdx_hierophant-lich_unholy-smite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -5803,9 +5803,9 @@ "parent": "ccdx_horned-serpent_bite", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -5826,9 +5826,9 @@ "parent": "ccdx_horned-serpent_gore", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -5849,9 +5849,9 @@ "parent": "ccdx_hound-of-tindalos_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -5872,9 +5872,9 @@ "parent": "ccdx_hound-of-tindalos_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -5895,9 +5895,9 @@ "parent": "ccdx_hound-of-tindalos_tongue", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5918,9 +5918,9 @@ "parent": "ccdx_ichneumon_bite", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -5941,9 +5941,9 @@ "parent": "ccdx_ichneumon_claws", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -5964,9 +5964,9 @@ "parent": "ccdx_ijiraq_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5987,9 +5987,9 @@ "parent": "ccdx_ijiraq_gore", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6010,9 +6010,9 @@ "parent": "ccdx_incinis_magma-fist", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -6033,9 +6033,9 @@ "parent": "ccdx_infernal-knight_greatsword", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -6056,9 +6056,9 @@ "parent": "ccdx_infernal-knight_hellfire-bolt", "attack_type": "SPELL", "to_hit_mod": 10, - "reach_ft": null, - "range_ft": 120.0, - "long_range_ft": null, + "reach": null, + "range": 120.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -6079,9 +6079,9 @@ "parent": "ccdx_ink-guardian_pseudopod", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6102,9 +6102,9 @@ "parent": "ccdx_inkling_lash", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6125,9 +6125,9 @@ "parent": "ccdx_iron-sphere_blade", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6148,9 +6148,9 @@ "parent": "ccdx_iron-sphere_piston", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6171,9 +6171,9 @@ "parent": "ccdx_iron-sphere_spike", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6194,9 +6194,9 @@ "parent": "ccdx_jaanavar-jal_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -6217,9 +6217,9 @@ "parent": "ccdx_jaanavar-jal_constrict", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6240,9 +6240,9 @@ "parent": "ccdx_jiangshi_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -6263,9 +6263,9 @@ "parent": "ccdx_jiangshi_life-drain", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -6286,9 +6286,9 @@ "parent": "ccdx_jinmenju_root", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -6309,9 +6309,9 @@ "parent": "ccdx_junk-shaman_flame-jet", "attack_type": "SPELL", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 120.0, - "long_range_ft": null, + "reach": null, + "range": 120.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -6332,9 +6332,9 @@ "parent": "ccdx_junk-shaman_junk-staff", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6355,9 +6355,9 @@ "parent": "ccdx_kallikantzaros_handsaw", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6378,9 +6378,9 @@ "parent": "ccdx_kallikantzaros_spear", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6401,9 +6401,9 @@ "parent": "ccdx_kapi_quarterstaff", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6424,9 +6424,9 @@ "parent": "ccdx_kapi_sling", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": null, - "range_ft": 30.0, - "long_range_ft": 120.0, + "reach": null, + "range": 30.0, + "long_range": 120.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6447,9 +6447,9 @@ "parent": "ccdx_kapi_tail-trip", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": null, @@ -6470,9 +6470,9 @@ "parent": "ccdx_kappa_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -6493,9 +6493,9 @@ "parent": "ccdx_karakura_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6516,9 +6516,9 @@ "parent": "ccdx_keg-golem_slam", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6539,9 +6539,9 @@ "parent": "ccdx_king-kobold_hand-crossbow", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": null, - "range_ft": 30.0, - "long_range_ft": 120.0, + "reach": null, + "range": 30.0, + "long_range": 120.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6562,9 +6562,9 @@ "parent": "ccdx_king-kobold_shortsword", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6585,9 +6585,9 @@ "parent": "ccdx_kinnara_shortbow", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 80.0, - "long_range_ft": 320.0, + "reach": null, + "range": 80.0, + "long_range": 320.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6608,9 +6608,9 @@ "parent": "ccdx_kinnara_shortsword", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6631,9 +6631,9 @@ "parent": "ccdx_kitsune_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -6654,9 +6654,9 @@ "parent": "ccdx_kitsune_rapier", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6677,9 +6677,9 @@ "parent": "ccdx_knight-of-the-road_lance", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6700,9 +6700,9 @@ "parent": "ccdx_knight-of-the-road_longsword", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6723,9 +6723,9 @@ "parent": "ccdx_knight-of-the-road_shortbow", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": null, - "range_ft": 80.0, - "long_range_ft": 320.0, + "reach": null, + "range": 80.0, + "long_range": 320.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6746,9 +6746,9 @@ "parent": "ccdx_korrigan_dagger", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6769,9 +6769,9 @@ "parent": "ccdx_kryt_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -6792,9 +6792,9 @@ "parent": "ccdx_kryt_quarterstaff", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6815,9 +6815,9 @@ "parent": "ccdx_kulmking_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -6838,9 +6838,9 @@ "parent": "ccdx_kulmking_claws", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -6861,9 +6861,9 @@ "parent": "ccdx_kulmking_hooves", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -6884,9 +6884,9 @@ "parent": "ccdx_kuunganisha_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6907,9 +6907,9 @@ "parent": "ccdx_kuunganisha_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -6930,9 +6930,9 @@ "parent": "ccdx_labyrinth-keeper_gore", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -6953,9 +6953,9 @@ "parent": "ccdx_labyrinth-keeper_shortsword", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -6976,9 +6976,9 @@ "parent": "ccdx_lady-in-white_grasp", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6999,9 +6999,9 @@ "parent": "ccdx_laestrigonian-giant_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -7022,9 +7022,9 @@ "parent": "ccdx_laestrigonian-giant_greatclub", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -7045,9 +7045,9 @@ "parent": "ccdx_laestrigonian-giant_rock", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": 60.0, - "long_range_ft": 240.0, + "reach": 5.0, + "range": 60.0, + "long_range": 240.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -7068,9 +7068,9 @@ "parent": "ccdx_lamassu_claw", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -7091,9 +7091,9 @@ "parent": "ccdx_leonino_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -7114,9 +7114,9 @@ "parent": "ccdx_lesser-scrag_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -7137,9 +7137,9 @@ "parent": "ccdx_lesser-scrag_claws", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -7160,9 +7160,9 @@ "parent": "ccdx_light-cavalry_cavalry-saber", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -7183,9 +7183,9 @@ "parent": "ccdx_light-cavalry_shortbow", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": null, - "range_ft": 80.0, - "long_range_ft": 320.0, + "reach": null, + "range": 80.0, + "long_range": 320.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -7206,9 +7206,9 @@ "parent": "ccdx_light-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -7229,9 +7229,9 @@ "parent": "ccdx_living-shade_shadow-touch", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -7252,9 +7252,9 @@ "parent": "ccdx_living-star_silvered-ray", "attack_type": "SPELL", "to_hit_mod": 12, - "reach_ft": null, - "range_ft": 150.0, - "long_range_ft": null, + "reach": null, + "range": 150.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -7275,9 +7275,9 @@ "parent": "ccdx_living-star_starflare", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -7298,9 +7298,9 @@ "parent": "ccdx_lord-zombie_life-drain", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -7321,9 +7321,9 @@ "parent": "ccdx_lord-zombie_slam", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -7344,9 +7344,9 @@ "parent": "ccdx_lost-minotaur_gore", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -7367,9 +7367,9 @@ "parent": "ccdx_lost-minotaur_twilight-greataxe", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -7390,9 +7390,9 @@ "parent": "ccdx_lotus-golem_arcane-water", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -7413,9 +7413,9 @@ "parent": "ccdx_lou-carcolh_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -7436,9 +7436,9 @@ "parent": "ccdx_lou-carcolh_spit-venom", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 30.0, - "long_range_ft": 120.0, + "reach": null, + "range": 30.0, + "long_range": 120.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -7459,9 +7459,9 @@ "parent": "ccdx_lou-carcolh_sticky-tongue", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 60.0, - "range_ft": null, - "long_range_ft": null, + "reach": 60.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": null, @@ -7482,9 +7482,9 @@ "parent": "ccdx_lystrosaurus_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -7505,9 +7505,9 @@ "parent": "ccdx_lystrosaurus_ram", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -7528,9 +7528,9 @@ "parent": "ccdx_manastorm-golem_force-bolt", "attack_type": "SPELL", "to_hit_mod": 6, - "reach_ft": null, - "range_ft": 120.0, - "long_range_ft": 480.0, + "reach": null, + "range": 120.0, + "long_range": 480.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -7551,9 +7551,9 @@ "parent": "ccdx_manastorm-golem_slam", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -7574,9 +7574,9 @@ "parent": "ccdx_mandrake_bite", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -7597,9 +7597,9 @@ "parent": "ccdx_mandriano_swipe", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -7620,9 +7620,9 @@ "parent": "ccdx_matriarch-serpentine-lamia_constrict", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -7643,9 +7643,9 @@ "parent": "ccdx_matriarch-serpentine-lamia_debilitating-touch", "attack_type": "SPELL", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": null, @@ -7666,9 +7666,9 @@ "parent": "ccdx_matriarch-serpentine-lamia_scimitar", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -7689,9 +7689,9 @@ "parent": "ccdx_megapede_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -7712,9 +7712,9 @@ "parent": "ccdx_megapede_stinger", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -7735,9 +7735,9 @@ "parent": "ccdx_mold-zombie_slam", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -7758,9 +7758,9 @@ "parent": "ccdx_monarch-skeleton_dreadblade", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -7781,9 +7781,9 @@ "parent": "ccdx_monkey-king_enlightened-ray", "attack_type": "SPELL", "to_hit_mod": 12, - "reach_ft": null, - "range_ft": 100.0, - "long_range_ft": null, + "reach": null, + "range": 100.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -7804,9 +7804,9 @@ "parent": "ccdx_monkey-king_golden-staff", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -7827,9 +7827,9 @@ "parent": "ccdx_monkey-king_tail", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -7850,9 +7850,9 @@ "parent": "ccdx_moon-drake_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -7873,9 +7873,9 @@ "parent": "ccdx_moon-drake_claw", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -7896,9 +7896,9 @@ "parent": "ccdx_moon-drake_moonlight-nip", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": null, @@ -7919,9 +7919,9 @@ "parent": "ccdx_moon-nymph_beguiling-touch", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -7942,9 +7942,9 @@ "parent": "ccdx_moon-nymph_moonbeam", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": null, - "range_ft": 120.0, - "long_range_ft": null, + "reach": null, + "range": 120.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -7965,9 +7965,9 @@ "parent": "ccdx_moonchild-naga_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -7988,9 +7988,9 @@ "parent": "ccdx_moonchild-naga_constrict", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -8011,9 +8011,9 @@ "parent": "ccdx_morko_spear", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -8034,9 +8034,9 @@ "parent": "ccdx_mountain-giant_boulder", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": null, - "range_ft": 100.0, - "long_range_ft": 400.0, + "reach": null, + "range": 100.0, + "long_range": 400.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, @@ -8057,9 +8057,9 @@ "parent": "ccdx_mountain-giant_slam", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 20.0, - "range_ft": null, - "long_range_ft": null, + "reach": 20.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -8080,9 +8080,9 @@ "parent": "ccdx_mud-golem_mud-ball", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": null, - "range_ft": 30.0, - "long_range_ft": 120.0, + "reach": null, + "range": 30.0, + "long_range": 120.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -8103,9 +8103,9 @@ "parent": "ccdx_mud-golem_slam", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -8126,9 +8126,9 @@ "parent": "ccdx_mytholabe_heroic-jab", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -8149,9 +8149,9 @@ "parent": "ccdx_nachzehrer_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -8172,9 +8172,9 @@ "parent": "ccdx_nachzehrer_fist", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -8195,9 +8195,9 @@ "parent": "ccdx_nalusa-falaya_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -8218,9 +8218,9 @@ "parent": "ccdx_nalusa-falaya_claw", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -8241,9 +8241,9 @@ "parent": "ccdx_necrophage-ghast_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -8264,9 +8264,9 @@ "parent": "ccdx_necrophage-ghast_claws", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -8287,9 +8287,9 @@ "parent": "ccdx_necrotic-tick_blood-drain", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": null, @@ -8310,9 +8310,9 @@ "parent": "ccdx_neophron_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -8333,9 +8333,9 @@ "parent": "ccdx_neophron_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -8356,9 +8356,9 @@ "parent": "ccdx_nian_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -8379,9 +8379,9 @@ "parent": "ccdx_nian_gore", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -8402,9 +8402,9 @@ "parent": "ccdx_nian_stomp", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -8425,9 +8425,9 @@ "parent": "ccdx_nightgaunt_barbed-tail", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -8448,9 +8448,9 @@ "parent": "ccdx_nightgaunt_clutching-claws", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -8471,9 +8471,9 @@ "parent": "ccdx_ningyo_barbed-tentacle", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -8494,9 +8494,9 @@ "parent": "ccdx_nodosaurus_tail", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -8517,9 +8517,9 @@ "parent": "ccdx_oliphaunt_gore", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, @@ -8540,9 +8540,9 @@ "parent": "ccdx_oliphaunt_stomp", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, @@ -8563,9 +8563,9 @@ "parent": "ccdx_oliphaunt_trunk", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": null, @@ -8586,9 +8586,9 @@ "parent": "ccdx_one-headed-clockwork-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -8609,9 +8609,9 @@ "parent": "ccdx_one-headed-clockwork-dragon_fist", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -8632,9 +8632,9 @@ "parent": "ccdx_ophanim_light-of-judgment", "attack_type": "SPELL", "to_hit_mod": 13, - "reach_ft": null, - "range_ft": 80.0, - "long_range_ft": 320.0, + "reach": null, + "range": 80.0, + "long_range": 320.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -8655,9 +8655,9 @@ "parent": "ccdx_orthrus_bite-canine-head", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -8678,9 +8678,9 @@ "parent": "ccdx_orthrus_bite-snake-head", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -8701,9 +8701,9 @@ "parent": "ccdx_oth_greatsword", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -8724,9 +8724,9 @@ "parent": "ccdx_oth_oozing-slam", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -8747,9 +8747,9 @@ "parent": "ccdx_ouroban_greatsword", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -8770,9 +8770,9 @@ "parent": "ccdx_ouroban_heavy-crossbow", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 100.0, - "long_range_ft": 400.0, + "reach": null, + "range": 100.0, + "long_range": 400.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -8793,9 +8793,9 @@ "parent": "ccdx_ouroboros_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -8816,9 +8816,9 @@ "parent": "ccdx_pact-drake_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -8839,9 +8839,9 @@ "parent": "ccdx_pact-drake_claw", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -8862,9 +8862,9 @@ "parent": "ccdx_pact-lich_enhanced-eldritch-blast", "attack_type": "SPELL", "to_hit_mod": 10, - "reach_ft": null, - "range_ft": 300.0, - "long_range_ft": null, + "reach": null, + "range": 300.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -8885,9 +8885,9 @@ "parent": "ccdx_pact-lich_maddening-touch", "attack_type": "SPELL", "to_hit_mod": 10, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -8908,9 +8908,9 @@ "parent": "ccdx_paper-golem-swarm_paper-cut", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 0.0, - "range_ft": null, - "long_range_ft": null, + "reach": 0.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -8931,9 +8931,9 @@ "parent": "ccdx_paper-golem_paper-cut", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -8954,9 +8954,9 @@ "parent": "ccdx_pattern-dancer_longbow", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 150.0, - "long_range_ft": 600.0, + "reach": null, + "range": 150.0, + "long_range": 600.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -8977,9 +8977,9 @@ "parent": "ccdx_pattern-dancer_shortsword", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -9000,9 +9000,9 @@ "parent": "ccdx_pech-lithlord_hammer", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -9023,9 +9023,9 @@ "parent": "ccdx_pech-lithlord_pick", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -9046,9 +9046,9 @@ "parent": "ccdx_pech-stonemaster_hammer", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -9069,9 +9069,9 @@ "parent": "ccdx_pech-stonemaster_pick", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -9092,9 +9092,9 @@ "parent": "ccdx_pech_hammer", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -9115,9 +9115,9 @@ "parent": "ccdx_pech_pick", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -9138,9 +9138,9 @@ "parent": "ccdx_peluda-drake_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -9161,9 +9161,9 @@ "parent": "ccdx_peluda-drake_quill", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 20.0, - "long_range_ft": 80.0, + "reach": null, + "range": 20.0, + "long_range": 80.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -9184,9 +9184,9 @@ "parent": "ccdx_peluda-drake_tail", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -9207,9 +9207,9 @@ "parent": "ccdx_phantom_ghostly-grasp", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -9230,9 +9230,9 @@ "parent": "ccdx_philosophers-ghost_burning-touch", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -9253,9 +9253,9 @@ "parent": "ccdx_piasa_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -9276,9 +9276,9 @@ "parent": "ccdx_piasa_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -9299,9 +9299,9 @@ "parent": "ccdx_piasa_tail", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -9322,9 +9322,9 @@ "parent": "ccdx_pishacha_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -9345,9 +9345,9 @@ "parent": "ccdx_pishacha_claws", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -9368,9 +9368,9 @@ "parent": "ccdx_pixiu_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -9391,9 +9391,9 @@ "parent": "ccdx_pixiu_claws", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -9414,9 +9414,9 @@ "parent": "ccdx_plaresh_bites", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 0.0, - "range_ft": null, - "long_range_ft": null, + "reach": 0.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -9437,9 +9437,9 @@ "parent": "ccdx_preta_claws", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -9460,9 +9460,9 @@ "parent": "ccdx_purple-slime_spike", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -9483,9 +9483,9 @@ "parent": "ccdx_quickstep_hidden-dagger", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -9506,9 +9506,9 @@ "parent": "ccdx_quickstep_moonlight-rapier", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -9529,9 +9529,9 @@ "parent": "ccdx_quiet-soul_psychic-lash", "attack_type": "SPELL", "to_hit_mod": 7, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": null, + "reach": null, + "range": 60.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, @@ -9552,9 +9552,9 @@ "parent": "ccdx_rageipede_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -9575,9 +9575,9 @@ "parent": "ccdx_rageipede_claw", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -9598,9 +9598,9 @@ "parent": "ccdx_ramag-portal-master_gate-seal", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -9621,9 +9621,9 @@ "parent": "ccdx_ramag-portal-master_lightning-stroke", "attack_type": "SPELL", "to_hit_mod": 7, - "reach_ft": null, - "range_ft": 120.0, - "long_range_ft": null, + "reach": null, + "range": 120.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -9644,9 +9644,9 @@ "parent": "ccdx_ratatosk-warlord_gore", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -9667,9 +9667,9 @@ "parent": "ccdx_ratatosk-warlord_ratatosk-shortspear", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -9690,9 +9690,9 @@ "parent": "ccdx_ratfolk-mercenary_dart", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": null, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": null, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -9713,9 +9713,9 @@ "parent": "ccdx_ratfolk-mercenary_shortsword", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -9736,9 +9736,9 @@ "parent": "ccdx_ratfolk-warlock_dagger", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -9759,9 +9759,9 @@ "parent": "ccdx_ratfolk-warlock_quarterstaff", "attack_type": "WEAPON", "to_hit_mod": 1, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -9782,9 +9782,9 @@ "parent": "ccdx_rattok_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -9805,9 +9805,9 @@ "parent": "ccdx_rattok_claws", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -9828,9 +9828,9 @@ "parent": "ccdx_razorleaf_lacerating-leaves", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -9851,9 +9851,9 @@ "parent": "ccdx_rimewing_proboscis", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -9874,9 +9874,9 @@ "parent": "ccdx_ring-servant_slam", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -9897,9 +9897,9 @@ "parent": "ccdx_roachling-scout_begrimed-dart", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": null, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": null, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -9920,9 +9920,9 @@ "parent": "ccdx_roachling-scout_begrimed-shortsword", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -9943,9 +9943,9 @@ "parent": "ccdx_roggenwolf_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -9966,9 +9966,9 @@ "parent": "ccdx_ruby-ooze_pseudopod", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -9989,9 +9989,9 @@ "parent": "ccdx_sammael_greataxe", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10012,9 +10012,9 @@ "parent": "ccdx_sammael_slam", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -10035,9 +10035,9 @@ "parent": "ccdx_sammael_whip", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10058,9 +10058,9 @@ "parent": "ccdx_scitalis_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10081,9 +10081,9 @@ "parent": "ccdx_sentinel-in-darkness_stone-fist", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -10104,9 +10104,9 @@ "parent": "ccdx_serpentfolk-of-yig_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10127,9 +10127,9 @@ "parent": "ccdx_serpentfolk-of-yig_scimitar", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10150,9 +10150,9 @@ "parent": "ccdx_serpentfolk-of-yig_shortbow", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 80.0, - "long_range_ft": 320.0, + "reach": null, + "range": 80.0, + "long_range": 320.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10173,9 +10173,9 @@ "parent": "ccdx_serpentine-lamia_constrict", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10196,9 +10196,9 @@ "parent": "ccdx_serpentine-lamia_scimitar", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10219,9 +10219,9 @@ "parent": "ccdx_serpentine-lamia_shortbow", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 80.0, - "long_range_ft": 320.0, + "reach": null, + "range": 80.0, + "long_range": 320.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10242,9 +10242,9 @@ "parent": "ccdx_servant-of-the-vine_drunken-slash", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10265,9 +10265,9 @@ "parent": "ccdx_servant-of-yig_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10288,9 +10288,9 @@ "parent": "ccdx_servant-of-yig_constrict", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10311,9 +10311,9 @@ "parent": "ccdx_servant-of-yig_glaive", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10334,9 +10334,9 @@ "parent": "ccdx_shadow-blight_frozen-shadow-tendril", "attack_type": "SPELL", "to_hit_mod": 5, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -10357,9 +10357,9 @@ "parent": "ccdx_shadow-fey-ambassador_rapier", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10380,9 +10380,9 @@ "parent": "ccdx_shadow-fey-poisoner_longbow", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": null, - "range_ft": 150.0, - "long_range_ft": 600.0, + "reach": null, + "range": 150.0, + "long_range": 600.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10403,9 +10403,9 @@ "parent": "ccdx_shadow-fey-poisoner_shortsword", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10426,9 +10426,9 @@ "parent": "ccdx_shadow-goblin_kitchen-knife", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10449,9 +10449,9 @@ "parent": "ccdx_shadow-ooze_pseudopod", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -10472,9 +10472,9 @@ "parent": "ccdx_shadow-river-lord_greenfire-staff", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10495,9 +10495,9 @@ "parent": "ccdx_shadow-river-lord_shadowfrost-bolt", "attack_type": "SPELL", "to_hit_mod": 8, - "reach_ft": null, - "range_ft": 150.0, - "long_range_ft": null, + "reach": null, + "range": 150.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -10518,9 +10518,9 @@ "parent": "ccdx_shadow-skeleton_finger-darts", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 30.0, - "long_range_ft": null, + "reach": null, + "range": 30.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10541,9 +10541,9 @@ "parent": "ccdx_shadow-skeleton_scimitar", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10564,9 +10564,9 @@ "parent": "ccdx_shantak_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -10587,9 +10587,9 @@ "parent": "ccdx_shantak_talons", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -10610,9 +10610,9 @@ "parent": "ccdx_shard-swarm_shards", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 0.0, - "range_ft": null, - "long_range_ft": null, + "reach": 0.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -10633,9 +10633,9 @@ "parent": "ccdx_shard-swarm_shrapnel", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": null, - "range_ft": 30.0, - "long_range_ft": null, + "reach": null, + "range": 30.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10656,9 +10656,9 @@ "parent": "ccdx_shockwing_proboscis", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10679,9 +10679,9 @@ "parent": "ccdx_shoreline-scrapper_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -10702,9 +10702,9 @@ "parent": "ccdx_sigilian_cut", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": null, + "reach": null, + "range": 60.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10725,9 +10725,9 @@ "parent": "ccdx_sigilian_paste", "attack_type": "SPELL", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": 60.0, - "long_range_ft": null, + "reach": 5.0, + "range": 60.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": null, @@ -10748,9 +10748,9 @@ "parent": "ccdx_simhamukha_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -10771,9 +10771,9 @@ "parent": "ccdx_simhamukha_kartika", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -10794,9 +10794,9 @@ "parent": "ccdx_simurg_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -10817,9 +10817,9 @@ "parent": "ccdx_simurg_claws", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -10840,9 +10840,9 @@ "parent": "ccdx_skull-drake_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -10863,9 +10863,9 @@ "parent": "ccdx_skull-lantern_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10886,9 +10886,9 @@ "parent": "ccdx_sleipnir_rune-hooves", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -10909,9 +10909,9 @@ "parent": "ccdx_snow-cat_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10932,9 +10932,9 @@ "parent": "ccdx_snow-cat_claw", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10955,9 +10955,9 @@ "parent": "ccdx_snow-hag_claws", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -10978,9 +10978,9 @@ "parent": "ccdx_song-angel_scimitar", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -11001,9 +11001,9 @@ "parent": "ccdx_sootwing_proboscis", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11024,9 +11024,9 @@ "parent": "ccdx_sooze_longsword", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11047,9 +11047,9 @@ "parent": "ccdx_sooze_oozing-slam", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11070,9 +11070,9 @@ "parent": "ccdx_spawn-of-chernobog_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11093,9 +11093,9 @@ "parent": "ccdx_spawn-of-chernobog_claws", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -11116,9 +11116,9 @@ "parent": "ccdx_speaker-to-the-darkness_quarterstaff", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11139,9 +11139,9 @@ "parent": "ccdx_speaker-to-the-darkness_sling", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": null, - "range_ft": 30.0, - "long_range_ft": 120.0, + "reach": null, + "range": 30.0, + "long_range": 120.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11162,9 +11162,9 @@ "parent": "ccdx_spider-drake_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -11185,9 +11185,9 @@ "parent": "ccdx_spider-drake_claw", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -11208,9 +11208,9 @@ "parent": "ccdx_spider-drake_web", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": 120.0, + "reach": null, + "range": 60.0, + "long_range": 120.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": null, @@ -11231,9 +11231,9 @@ "parent": "ccdx_spirit-lamp_lantern-beam", "attack_type": "SPELL", "to_hit_mod": 7, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": null, + "reach": null, + "range": 60.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -11254,9 +11254,9 @@ "parent": "ccdx_spirit-lamp_spirit-claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11277,9 +11277,9 @@ "parent": "ccdx_spree_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11300,9 +11300,9 @@ "parent": "ccdx_storm-lord_lightning-bolt", "attack_type": "SPELL", "to_hit_mod": 9, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": null, + "reach": null, + "range": 60.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 7, @@ -11323,9 +11323,9 @@ "parent": "ccdx_storm-lord_slam", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 7, @@ -11346,9 +11346,9 @@ "parent": "ccdx_storm-spirit_shocking-bolt", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": 240.0, + "reach": null, + "range": 60.0, + "long_range": 240.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11369,9 +11369,9 @@ "parent": "ccdx_storm-spirit_thunder-slam", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11392,9 +11392,9 @@ "parent": "ccdx_sunset-raptor_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -11415,9 +11415,9 @@ "parent": "ccdx_sunset-raptor_claw", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11438,9 +11438,9 @@ "parent": "ccdx_suppurating-ooze_pseudopod", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11461,9 +11461,9 @@ "parent": "ccdx_swolbold_slam", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -11484,9 +11484,9 @@ "parent": "ccdx_tar-ghoul_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -11507,9 +11507,9 @@ "parent": "ccdx_tar-ghoul_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -11530,9 +11530,9 @@ "parent": "ccdx_terror-bird_serrated-beak", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -11553,9 +11553,9 @@ "parent": "ccdx_the-barbed_barbed-slash", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -11576,9 +11576,9 @@ "parent": "ccdx_the-barbed_javelin", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 30.0, - "long_range_ft": 120.0, + "reach": null, + "range": 30.0, + "long_range": 120.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11599,9 +11599,9 @@ "parent": "ccdx_thorned-sulfurlord_fiery-spike", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": 240.0, + "reach": null, + "range": 60.0, + "long_range": 240.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -11622,9 +11622,9 @@ "parent": "ccdx_thorned-sulfurlord_sulfur-slam", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -11645,9 +11645,9 @@ "parent": "ccdx_thread-bound-constrictor-snake_constrict", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -11668,9 +11668,9 @@ "parent": "ccdx_three-headed-clockwork-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -11691,9 +11691,9 @@ "parent": "ccdx_three-headed-clockwork-dragon_fist", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -11714,9 +11714,9 @@ "parent": "ccdx_three-headed-cobra_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11737,9 +11737,9 @@ "parent": "ccdx_tosculi-jeweled-drone_claws", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11760,9 +11760,9 @@ "parent": "ccdx_tosculi-jeweled-drone_scimitar", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11783,9 +11783,9 @@ "parent": "ccdx_trollkin-shaman_staff", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11806,9 +11806,9 @@ "parent": "ccdx_trollking-grunt_longbow", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": null, - "range_ft": 150.0, - "long_range_ft": 600.0, + "reach": null, + "range": 150.0, + "long_range": 600.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11829,9 +11829,9 @@ "parent": "ccdx_trollking-grunt_spear", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11852,9 +11852,9 @@ "parent": "ccdx_tulpa_black-claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -11875,9 +11875,9 @@ "parent": "ccdx_tulpa_psychic-blast", "attack_type": "SPELL", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 120.0, - "long_range_ft": null, + "reach": null, + "range": 120.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -11898,9 +11898,9 @@ "parent": "ccdx_tusked-crimson-ogre_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -11921,9 +11921,9 @@ "parent": "ccdx_tusked-crimson-ogre_morningstar", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -11944,9 +11944,9 @@ "parent": "ccdx_tveirherjar_niflheim-longsword", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -11967,9 +11967,9 @@ "parent": "ccdx_tveirherjar_spear-of-the-northern-sky", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": null, - "range_ft": 30.0, - "long_range_ft": 120.0, + "reach": null, + "range": 30.0, + "long_range": 120.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11990,9 +11990,9 @@ "parent": "ccdx_two-headed-eagle_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -12013,9 +12013,9 @@ "parent": "ccdx_two-headed-eagle_talons", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -12036,9 +12036,9 @@ "parent": "ccdx_undead-phoenix_claws", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -12059,9 +12059,9 @@ "parent": "ccdx_undead-phoenix_decaying-bite", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -12082,9 +12082,9 @@ "parent": "ccdx_unhatched_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -12105,9 +12105,9 @@ "parent": "ccdx_unhatched_claw", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -12128,9 +12128,9 @@ "parent": "ccdx_ursa-polaris_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -12151,9 +12151,9 @@ "parent": "ccdx_ursa-polaris_claw", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -12174,9 +12174,9 @@ "parent": "ccdx_vampire-patrician_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -12197,9 +12197,9 @@ "parent": "ccdx_vampire-patrician_rapier", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -12220,9 +12220,9 @@ "parent": "ccdx_vampire-priestess_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -12243,9 +12243,9 @@ "parent": "ccdx_vampire-priestess_scourge", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -12266,9 +12266,9 @@ "parent": "ccdx_vampiric-knight_impaling-longsword", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -12289,9 +12289,9 @@ "parent": "ccdx_vanara_slam", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -12312,9 +12312,9 @@ "parent": "ccdx_vanara_sling", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 30.0, - "long_range_ft": 120.0, + "reach": null, + "range": 30.0, + "long_range": 120.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -12335,9 +12335,9 @@ "parent": "ccdx_vellso_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -12358,9 +12358,9 @@ "parent": "ccdx_vellso_claws", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -12381,9 +12381,9 @@ "parent": "ccdx_venom-elemental_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -12404,9 +12404,9 @@ "parent": "ccdx_venom-maw-hydra_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -12427,9 +12427,9 @@ "parent": "ccdx_venom-maw-hydra_spit", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": null, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": null, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -12450,9 +12450,9 @@ "parent": "ccdx_vines-of-nemthyr_slam", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -12473,9 +12473,9 @@ "parent": "ccdx_vines-of-nemthyr_thorny-lash", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -12496,9 +12496,9 @@ "parent": "ccdx_void-giant_slam", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -12519,9 +12519,9 @@ "parent": "ccdx_war-machine-golem_slam", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -12542,9 +12542,9 @@ "parent": "ccdx_war-wyvern_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -12565,9 +12565,9 @@ "parent": "ccdx_war-wyvern_claws", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -12588,9 +12588,9 @@ "parent": "ccdx_war-wyvern_stinger", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -12611,9 +12611,9 @@ "parent": "ccdx_warlocks-trumpetbloom_stinger", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -12634,9 +12634,9 @@ "parent": "ccdx_warlocks-trumpetbloom_tendril", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -12657,9 +12657,9 @@ "parent": "ccdx_wasteland-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -12680,9 +12680,9 @@ "parent": "ccdx_water-horse_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -12703,9 +12703,9 @@ "parent": "ccdx_water-horse_longbow", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 150.0, - "long_range_ft": 600.0, + "reach": null, + "range": 150.0, + "long_range": 600.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -12726,9 +12726,9 @@ "parent": "ccdx_water-horse_longsword", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -12749,9 +12749,9 @@ "parent": "ccdx_weirding-scroll_tendril-of-light", "attack_type": "SPELL", "to_hit_mod": 5, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -12772,9 +12772,9 @@ "parent": "ccdx_wendigo_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -12795,9 +12795,9 @@ "parent": "ccdx_wendigo_frozen-spittle", "attack_type": "SPELL", "to_hit_mod": 7, - "reach_ft": null, - "range_ft": 100.0, - "long_range_ft": null, + "reach": null, + "range": 100.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 8, @@ -12818,9 +12818,9 @@ "parent": "ccdx_wendigo_icy-claw", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -12841,9 +12841,9 @@ "parent": "ccdx_werebat_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -12864,9 +12864,9 @@ "parent": "ccdx_werebat_claws", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -12887,9 +12887,9 @@ "parent": "ccdx_werebat_mace", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -12910,9 +12910,9 @@ "parent": "ccdx_werehyena_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -12933,9 +12933,9 @@ "parent": "ccdx_werehyena_claws", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -12956,9 +12956,9 @@ "parent": "ccdx_werehyena_scimitar", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -12979,9 +12979,9 @@ "parent": "ccdx_whisperer-in-darkness_grasp-of-the-void", "attack_type": "SPELL", "to_hit_mod": 12, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, @@ -13002,9 +13002,9 @@ "parent": "ccdx_white-stag_gore", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13025,9 +13025,9 @@ "parent": "ccdx_white-stag_hooves", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -13048,9 +13048,9 @@ "parent": "ccdx_wickerman_blazing-ray", "attack_type": "SPELL", "to_hit_mod": 6, - "reach_ft": null, - "range_ft": 120.0, - "long_range_ft": null, + "reach": null, + "range": 120.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, @@ -13071,9 +13071,9 @@ "parent": "ccdx_wickerman_slam", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -13094,9 +13094,9 @@ "parent": "ccdx_wind-demon_frost-claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13117,9 +13117,9 @@ "parent": "ccdx_wind-eater_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -13140,9 +13140,9 @@ "parent": "ccdx_wind-weasel_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13163,9 +13163,9 @@ "parent": "ccdx_wind-weasel_scythe-claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13186,9 +13186,9 @@ "parent": "ccdx_winds-harp_infernal-noise", "attack_type": "SPELL", "to_hit_mod": 6, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": null, + "reach": null, + "range": 60.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -13209,9 +13209,9 @@ "parent": "ccdx_wirbeln-fungi_poison-dart", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": null, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13232,9 +13232,9 @@ "parent": "ccdx_wirbeln-fungi_poison-needle", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13255,9 +13255,9 @@ "parent": "ccdx_witch-queen_maddening-scimitar", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13278,9 +13278,9 @@ "parent": "ccdx_wizard-kobold_breath-of-the-visage", "attack_type": "SPELL", "to_hit_mod": 6, - "reach_ft": null, - "range_ft": 120.0, - "long_range_ft": null, + "reach": null, + "range": 120.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -13301,9 +13301,9 @@ "parent": "ccdx_wizard-kobold_dagger", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13324,9 +13324,9 @@ "parent": "ccdx_wolpertinger_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13347,9 +13347,9 @@ "parent": "ccdx_wolpertinger_gore", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13370,9 +13370,9 @@ "parent": "ccdx_wood-golem_slam", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13393,9 +13393,9 @@ "parent": "ccdx_woodwose_club", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13416,9 +13416,9 @@ "parent": "ccdx_woodwose_shortbow", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": null, - "range_ft": 80.0, - "long_range_ft": 320.0, + "reach": null, + "range": 80.0, + "long_range": 320.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13439,9 +13439,9 @@ "parent": "ccdx_wyvern-knight_dagger", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13462,9 +13462,9 @@ "parent": "ccdx_wyvern-knight_heavy-crossbow", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": null, - "range_ft": 100.0, - "long_range_ft": 400.0, + "reach": null, + "range": 100.0, + "long_range": 400.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13485,9 +13485,9 @@ "parent": "ccdx_wyvern-knight_lance", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13508,9 +13508,9 @@ "parent": "ccdx_xenabsorber_slam", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13531,9 +13531,9 @@ "parent": "ccdx_xiphus_hidden-dagger", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13554,9 +13554,9 @@ "parent": "ccdx_yaga-goo_pseudopod", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -13577,9 +13577,9 @@ "parent": "ccdx_yakirian_gore", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13600,9 +13600,9 @@ "parent": "ccdx_yakirian_ritual-knife", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13623,9 +13623,9 @@ "parent": "ccdx_yann-an-oed_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -13646,9 +13646,9 @@ "parent": "ccdx_yann-an-oed_tentacles", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -13669,9 +13669,9 @@ "parent": "ccdx_yek_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -13692,9 +13692,9 @@ "parent": "ccdx_yek_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -13715,9 +13715,9 @@ "parent": "ccdx_young-light-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -13738,9 +13738,9 @@ "parent": "ccdx_young-wasteland-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -13761,9 +13761,9 @@ "parent": "ccdx_young-wasteland-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -13784,9 +13784,9 @@ "parent": "ccdx_ziphius_beak", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -13807,9 +13807,9 @@ "parent": "ccdx_ziphius_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -13830,9 +13830,9 @@ "parent": "ccdx_ziphius_dorsal-fin", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -13853,9 +13853,9 @@ "parent": "ccdx_zoog_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": null, @@ -13876,9 +13876,9 @@ "parent": "ccdx_zoryas_morningstar", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, diff --git a/data/v2/kobold-press/tob-2023/CreatureActionAttack.json b/data/v2/kobold-press/tob-2023/CreatureActionAttack.json index 85f98aa7..c60bcb4f 100644 --- a/data/v2/kobold-press/tob-2023/CreatureActionAttack.json +++ b/data/v2/kobold-press/tob-2023/CreatureActionAttack.json @@ -7,9 +7,9 @@ "parent": "tob-2023_abominable-beauty_slam", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -30,9 +30,9 @@ "parent": "tob-2023_accursed-defiler_slam", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -53,9 +53,9 @@ "parent": "tob-2023_adult-cave-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -76,9 +76,9 @@ "parent": "tob-2023_adult-cave-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -99,9 +99,9 @@ "parent": "tob-2023_adult-cave-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -122,9 +122,9 @@ "parent": "tob-2023_adult-flame-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -145,9 +145,9 @@ "parent": "tob-2023_adult-flame-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -168,9 +168,9 @@ "parent": "tob-2023_adult-flame-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -191,9 +191,9 @@ "parent": "tob-2023_adult-mithral-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -214,9 +214,9 @@ "parent": "tob-2023_adult-mithral-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -237,9 +237,9 @@ "parent": "tob-2023_adult-mithral-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -260,9 +260,9 @@ "parent": "tob-2023_adult-sea-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -283,9 +283,9 @@ "parent": "tob-2023_adult-sea-dragon_fin", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -306,9 +306,9 @@ "parent": "tob-2023_adult-sea-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -329,9 +329,9 @@ "parent": "tob-2023_adult-void-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -352,9 +352,9 @@ "parent": "tob-2023_adult-void-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -375,9 +375,9 @@ "parent": "tob-2023_adult-void-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -398,9 +398,9 @@ "parent": "tob-2023_adult-wind-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -421,9 +421,9 @@ "parent": "tob-2023_adult-wind-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -444,9 +444,9 @@ "parent": "tob-2023_adult-wind-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -467,9 +467,9 @@ "parent": "tob-2023_akyishigal_claw", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -490,9 +490,9 @@ "parent": "tob-2023_al-aeshma-genie_scimitar", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -513,9 +513,9 @@ "parent": "tob-2023_ala_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -536,9 +536,9 @@ "parent": "tob-2023_ala_claw", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -559,9 +559,9 @@ "parent": "tob-2023_alchemist_alchemical-bolt", "attack_type": "SPELL", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": null, + "reach": null, + "range": 60.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -582,9 +582,9 @@ "parent": "tob-2023_alchemist_alchemical-dagger", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -605,9 +605,9 @@ "parent": "tob-2023_alehouse-drake_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -628,9 +628,9 @@ "parent": "tob-2023_alehouse-drake_discombobulating-bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -651,9 +651,9 @@ "parent": "tob-2023_alehouse-drake_mocking-chortle", "attack_type": "SPELL", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": null, + "reach": null, + "range": 60.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -674,9 +674,9 @@ "parent": "tob-2023_algorith_logic-razor", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -697,9 +697,9 @@ "parent": "tob-2023_alseid_shortbow", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 80.0, - "long_range_ft": 320.0, + "reach": null, + "range": 80.0, + "long_range": 320.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -720,9 +720,9 @@ "parent": "tob-2023_alseid_spear", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -743,9 +743,9 @@ "parent": "tob-2023_alseid_thorn-bolt", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 120.0, - "long_range_ft": null, + "reach": null, + "range": 120.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -766,9 +766,9 @@ "parent": "tob-2023_alseid_thorned-staff", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -789,9 +789,9 @@ "parent": "tob-2023_amphiptere_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -812,9 +812,9 @@ "parent": "tob-2023_amphiptere_stinger", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -835,9 +835,9 @@ "parent": "tob-2023_ancient-cave-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 18, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -858,9 +858,9 @@ "parent": "tob-2023_ancient-cave-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 18, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -881,9 +881,9 @@ "parent": "tob-2023_ancient-cave-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 18, - "reach_ft": 20.0, - "range_ft": null, - "long_range_ft": null, + "reach": 20.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -904,9 +904,9 @@ "parent": "tob-2023_ancient-flame-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -927,9 +927,9 @@ "parent": "tob-2023_ancient-flame-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -950,9 +950,9 @@ "parent": "tob-2023_ancient-flame-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 20.0, - "range_ft": null, - "long_range_ft": null, + "reach": 20.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -973,9 +973,9 @@ "parent": "tob-2023_ancient-mithral-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -996,9 +996,9 @@ "parent": "tob-2023_ancient-mithral-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1019,9 +1019,9 @@ "parent": "tob-2023_ancient-mithral-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 20.0, - "range_ft": null, - "long_range_ft": null, + "reach": 20.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1042,9 +1042,9 @@ "parent": "tob-2023_ancient-sea-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 16, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1065,9 +1065,9 @@ "parent": "tob-2023_ancient-sea-dragon_fin", "attack_type": "WEAPON", "to_hit_mod": 16, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1088,9 +1088,9 @@ "parent": "tob-2023_ancient-sea-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 16, - "reach_ft": 20.0, - "range_ft": null, - "long_range_ft": null, + "reach": 20.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1111,9 +1111,9 @@ "parent": "tob-2023_ancient-titan_greatsword", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 8, @@ -1134,9 +1134,9 @@ "parent": "tob-2023_ancient-titan_word-of-pain", "attack_type": "SPELL", "to_hit_mod": 9, - "reach_ft": null, - "range_ft": 120.0, - "long_range_ft": null, + "reach": null, + "range": 120.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -1157,9 +1157,9 @@ "parent": "tob-2023_ancient-void-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 16, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1180,9 +1180,9 @@ "parent": "tob-2023_ancient-void-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 16, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1203,9 +1203,9 @@ "parent": "tob-2023_ancient-void-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 16, - "reach_ft": 20.0, - "range_ft": null, - "long_range_ft": null, + "reach": 20.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1226,9 +1226,9 @@ "parent": "tob-2023_ancient-wind-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 16, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1249,9 +1249,9 @@ "parent": "tob-2023_ancient-wind-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 16, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1272,9 +1272,9 @@ "parent": "tob-2023_ancient-wind-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 16, - "reach_ft": 20.0, - "range_ft": null, - "long_range_ft": null, + "reach": 20.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1295,9 +1295,9 @@ "parent": "tob-2023_angatra_claw", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1318,9 +1318,9 @@ "parent": "tob-2023_angler-worm_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1341,9 +1341,9 @@ "parent": "tob-2023_angler-worm_coils", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -1364,9 +1364,9 @@ "parent": "tob-2023_annelidast_slam", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1387,9 +1387,9 @@ "parent": "tob-2023_anubian_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -1410,9 +1410,9 @@ "parent": "tob-2023_apau-perape_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1433,9 +1433,9 @@ "parent": "tob-2023_apau-perape_claw", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1456,9 +1456,9 @@ "parent": "tob-2023_arboreal-grappler_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -1479,9 +1479,9 @@ "parent": "tob-2023_arboreal-grappler_tentacle", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1502,9 +1502,9 @@ "parent": "tob-2023_aridni_pixie-bow", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": null, - "range_ft": 40.0, - "long_range_ft": 160.0, + "reach": null, + "range": 40.0, + "long_range": 160.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1525,9 +1525,9 @@ "parent": "tob-2023_aridni_shortsword", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -1548,9 +1548,9 @@ "parent": "tob-2023_arx_claw", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -1571,9 +1571,9 @@ "parent": "tob-2023_arx_spear", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1594,9 +1594,9 @@ "parent": "tob-2023_asanbosam_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1617,9 +1617,9 @@ "parent": "tob-2023_asanbosam_claws", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -1640,9 +1640,9 @@ "parent": "tob-2023_ash-drake_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1663,9 +1663,9 @@ "parent": "tob-2023_ash-drake_claw", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1686,9 +1686,9 @@ "parent": "tob-2023_ashwalker_slam", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -1709,9 +1709,9 @@ "parent": "tob-2023_automata-devil_bite", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1732,9 +1732,9 @@ "parent": "tob-2023_automata-devil_claw", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1755,9 +1755,9 @@ "parent": "tob-2023_automata-devil_whip", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1778,9 +1778,9 @@ "parent": "tob-2023_azza-gremlin_lightning-jolt", "attack_type": "SPELL", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": 30.0, - "long_range_ft": null, + "reach": 5.0, + "range": 30.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -1801,9 +1801,9 @@ "parent": "tob-2023_baba-yagas-horsemen_horsemans-bolt", "attack_type": "SPELL", "to_hit_mod": 8, - "reach_ft": null, - "range_ft": 120.0, - "long_range_ft": null, + "reach": null, + "range": 120.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -1824,9 +1824,9 @@ "parent": "tob-2023_baba-yagas-horsemen_lance", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -1847,9 +1847,9 @@ "parent": "tob-2023_baba-yagas-horsemen_longsword", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -1870,9 +1870,9 @@ "parent": "tob-2023_bagiennik_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1893,9 +1893,9 @@ "parent": "tob-2023_bandit-lord_dagger", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -1916,9 +1916,9 @@ "parent": "tob-2023_bandit-lord_longsword", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1939,9 +1939,9 @@ "parent": "tob-2023_bastet-temple-cat_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -1962,9 +1962,9 @@ "parent": "tob-2023_bastet-temple-cat_claws", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1985,9 +1985,9 @@ "parent": "tob-2023_bear-king_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2008,9 +2008,9 @@ "parent": "tob-2023_bear-king_claw", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -2031,9 +2031,9 @@ "parent": "tob-2023_bear-king_honey-bolt", "attack_type": "SPELL", "to_hit_mod": 8, - "reach_ft": null, - "range_ft": 120.0, - "long_range_ft": null, + "reach": null, + "range": 120.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -2054,9 +2054,9 @@ "parent": "tob-2023_bear-king_maul", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -2077,9 +2077,9 @@ "parent": "tob-2023_bearfolk_battleaxe", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2100,9 +2100,9 @@ "parent": "tob-2023_bearfolk_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -2123,9 +2123,9 @@ "parent": "tob-2023_bearfolk_warhammer", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2146,9 +2146,9 @@ "parent": "tob-2023_beggar-ghoul_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -2169,9 +2169,9 @@ "parent": "tob-2023_beggar-ghoul_claws", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -2192,9 +2192,9 @@ "parent": "tob-2023_beheaded-vengeful-spirit_essence-of-rage", "attack_type": "SPELL", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": 30.0, - "long_range_ft": null, + "reach": 5.0, + "range": 30.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -2215,9 +2215,9 @@ "parent": "tob-2023_behtu_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2238,9 +2238,9 @@ "parent": "tob-2023_behtu_spear", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2261,9 +2261,9 @@ "parent": "tob-2023_beli_ice-dagger", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2284,9 +2284,9 @@ "parent": "tob-2023_beli_icy-shortbow", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 80.0, - "long_range_ft": 320.0, + "reach": null, + "range": 80.0, + "long_range": 320.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2307,9 +2307,9 @@ "parent": "tob-2023_bereginyas_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2330,9 +2330,9 @@ "parent": "tob-2023_berstuc_slam", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -2353,9 +2353,9 @@ "parent": "tob-2023_black-knight-commander_lance", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2376,9 +2376,9 @@ "parent": "tob-2023_black-knight-commander_mace", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2399,9 +2399,9 @@ "parent": "tob-2023_blemmyes_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -2422,9 +2422,9 @@ "parent": "tob-2023_blemmyes_rock", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": null, - "range_ft": 30.0, - "long_range_ft": 120.0, + "reach": null, + "range": 30.0, + "long_range": 120.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -2445,9 +2445,9 @@ "parent": "tob-2023_blemmyes_slam", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -2468,9 +2468,9 @@ "parent": "tob-2023_blood-hag_blood-bolt", "attack_type": "SPELL", "to_hit_mod": 9, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": null, + "reach": null, + "range": 60.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -2491,9 +2491,9 @@ "parent": "tob-2023_blood-hag_claws", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -2514,9 +2514,9 @@ "parent": "tob-2023_boloti_dagger", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2537,9 +2537,9 @@ "parent": "tob-2023_bone-collective_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -2560,9 +2560,9 @@ "parent": "tob-2023_bone-collective_claw", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -2583,9 +2583,9 @@ "parent": "tob-2023_bone-collective_piercing-bones", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 0.0, - "range_ft": null, - "long_range_ft": null, + "reach": 0.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 8, @@ -2606,9 +2606,9 @@ "parent": "tob-2023_bone-crab_claw", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -2629,9 +2629,9 @@ "parent": "tob-2023_bone-swarm_swirling-bones", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 0.0, - "range_ft": null, - "long_range_ft": null, + "reach": 0.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 8, @@ -2652,9 +2652,9 @@ "parent": "tob-2023_bonepowder-ghoul_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -2675,9 +2675,9 @@ "parent": "tob-2023_bouda_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -2698,9 +2698,9 @@ "parent": "tob-2023_bouda_mephitic-claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -2721,9 +2721,9 @@ "parent": "tob-2023_broodiken_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -2744,9 +2744,9 @@ "parent": "tob-2023_bucca_dagger", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2767,9 +2767,9 @@ "parent": "tob-2023_bukavac_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -2790,9 +2790,9 @@ "parent": "tob-2023_bukavac_claw", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2813,9 +2813,9 @@ "parent": "tob-2023_bukavac_gore", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -2836,9 +2836,9 @@ "parent": "tob-2023_buraq_hooves", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -2859,9 +2859,9 @@ "parent": "tob-2023_burrowling_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2882,9 +2882,9 @@ "parent": "tob-2023_burrowling_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2905,9 +2905,9 @@ "parent": "tob-2023_burrowling_sling", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 30.0, - "long_range_ft": 120.0, + "reach": null, + "range": 30.0, + "long_range": 120.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2928,9 +2928,9 @@ "parent": "tob-2023_cactid_tendril", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -2951,9 +2951,9 @@ "parent": "tob-2023_camazotz_bite", "attack_type": "WEAPON", "to_hit_mod": 17, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 8, @@ -2974,9 +2974,9 @@ "parent": "tob-2023_camazotz_claw", "attack_type": "WEAPON", "to_hit_mod": 17, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, @@ -2997,9 +2997,9 @@ "parent": "tob-2023_cambium_needle-fingers", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -3020,9 +3020,9 @@ "parent": "tob-2023_cambium_poison-ray", "attack_type": "SPELL", "to_hit_mod": 9, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": null, + "reach": null, + "range": 60.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -3043,9 +3043,9 @@ "parent": "tob-2023_carrion-beetle_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3066,9 +3066,9 @@ "parent": "tob-2023_carrion-beetle_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3089,9 +3089,9 @@ "parent": "tob-2023_caustic-charger_ram", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -3112,9 +3112,9 @@ "parent": "tob-2023_caustic-charger_tentacles", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3135,9 +3135,9 @@ "parent": "tob-2023_cave-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3158,9 +3158,9 @@ "parent": "tob-2023_cavelight-moss_tendrils", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -3181,9 +3181,9 @@ "parent": "tob-2023_chained-angel_fiery-greatsword", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -3204,9 +3204,9 @@ "parent": "tob-2023_chelicerae_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -3227,9 +3227,9 @@ "parent": "tob-2023_chelicerae_claw", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -3250,9 +3250,9 @@ "parent": "tob-2023_chernomoi_scimitar", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3273,9 +3273,9 @@ "parent": "tob-2023_chieftain_shortbow", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 80.0, - "long_range_ft": 320.0, + "reach": null, + "range": 80.0, + "long_range": 320.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3296,9 +3296,9 @@ "parent": "tob-2023_chieftain_spear", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -3319,9 +3319,9 @@ "parent": "tob-2023_child-of-the-briar_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3342,9 +3342,9 @@ "parent": "tob-2023_chort-devil_claw", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -3365,9 +3365,9 @@ "parent": "tob-2023_chort-devil_hurl-flame", "attack_type": "SPELL", "to_hit_mod": 9, - "reach_ft": null, - "range_ft": 120.0, - "long_range_ft": null, + "reach": null, + "range": 120.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -3388,9 +3388,9 @@ "parent": "tob-2023_chort-devil_ranseur", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3411,9 +3411,9 @@ "parent": "tob-2023_chronalmental_slam", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -3434,9 +3434,9 @@ "parent": "tob-2023_cikavak_beak", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 5.0, - "long_range_ft": null, + "reach": null, + "range": 5.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3457,9 +3457,9 @@ "parent": "tob-2023_citrullus_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -3480,9 +3480,9 @@ "parent": "tob-2023_city-watch-captain_light-crossbow", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 80.0, - "long_range_ft": 320.0, + "reach": null, + "range": 80.0, + "long_range": 320.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3503,9 +3503,9 @@ "parent": "tob-2023_city-watch-captain_rapier", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -3526,9 +3526,9 @@ "parent": "tob-2023_clockwork-abomination_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -3549,9 +3549,9 @@ "parent": "tob-2023_clockwork-abomination_slam", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -3572,9 +3572,9 @@ "parent": "tob-2023_clockwork-beetle-swarm_bites", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 0.0, - "range_ft": null, - "long_range_ft": null, + "reach": 0.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -3595,9 +3595,9 @@ "parent": "tob-2023_clockwork-beetle_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3618,9 +3618,9 @@ "parent": "tob-2023_clockwork-hound_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -3641,9 +3641,9 @@ "parent": "tob-2023_clockwork-hound_tripping-tongue", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -3664,9 +3664,9 @@ "parent": "tob-2023_clockwork-huntsman_longsword", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3687,9 +3687,9 @@ "parent": "tob-2023_clockwork-huntsman_net-cannon", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 10.0, - "long_range_ft": 20.0, + "reach": null, + "range": 10.0, + "long_range": 20.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": null, @@ -3710,9 +3710,9 @@ "parent": "tob-2023_clockwork-huntsman_slam", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -3733,9 +3733,9 @@ "parent": "tob-2023_clockwork-myrmidon_slam", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3756,9 +3756,9 @@ "parent": "tob-2023_clockwork-myrmidon_war-pick", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -3779,9 +3779,9 @@ "parent": "tob-2023_clockwork-watchman_halberd", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3802,9 +3802,9 @@ "parent": "tob-2023_clockwork-watchman_net-cannon", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": null, - "range_ft": 10.0, - "long_range_ft": 20.0, + "reach": null, + "range": 10.0, + "long_range": 20.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": null, @@ -3825,9 +3825,9 @@ "parent": "tob-2023_clockwork-watchman_slam", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3848,9 +3848,9 @@ "parent": "tob-2023_clockwork-weaving-spider_poisoned-needle-shuttle", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 30.0, - "long_range_ft": null, + "reach": null, + "range": 30.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3871,9 +3871,9 @@ "parent": "tob-2023_clockwork-weaving-spider_trimming-blade", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -3894,9 +3894,9 @@ "parent": "tob-2023_clurichaun_bawdy-remark", "attack_type": "SPELL", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 30.0, - "long_range_ft": null, + "reach": null, + "range": 30.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3917,9 +3917,9 @@ "parent": "tob-2023_clurichaun_improvised-weapon", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3940,9 +3940,9 @@ "parent": "tob-2023_clurichaun_slam", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3963,9 +3963,9 @@ "parent": "tob-2023_cobbleswarm_stings", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 0.0, - "range_ft": null, - "long_range_ft": null, + "reach": 0.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, @@ -3986,9 +3986,9 @@ "parent": "tob-2023_coral-drake_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -4009,9 +4009,9 @@ "parent": "tob-2023_coral-drake_spined-fin", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -4032,9 +4032,9 @@ "parent": "tob-2023_coral-drake_stinger", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -4055,9 +4055,9 @@ "parent": "tob-2023_corpse-mound_bone-shard", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": null, - "range_ft": 30.0, - "long_range_ft": 120.0, + "reach": null, + "range": 30.0, + "long_range": 120.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -4078,9 +4078,9 @@ "parent": "tob-2023_corpse-mound_slam", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -4101,9 +4101,9 @@ "parent": "tob-2023_corrupted-chieftain_greatclub", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -4124,9 +4124,9 @@ "parent": "tob-2023_corrupted-chieftain_javelin", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": 30.0, - "long_range_ft": 120.0, + "reach": 5.0, + "range": 30.0, + "long_range": 120.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -4147,9 +4147,9 @@ "parent": "tob-2023_corrupted-ushabti_ceremonial-greatsword", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -4170,9 +4170,9 @@ "parent": "tob-2023_corrupting-ooze_slam", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -4193,9 +4193,9 @@ "parent": "tob-2023_crimson-drake_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -4216,9 +4216,9 @@ "parent": "tob-2023_crimson-drake_stinger", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -4239,9 +4239,9 @@ "parent": "tob-2023_crystalline-devil_shard-claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -4262,9 +4262,9 @@ "parent": "tob-2023_darakhul_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -4285,9 +4285,9 @@ "parent": "tob-2023_darakhul_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -4308,9 +4308,9 @@ "parent": "tob-2023_darakhul_war-pick", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -4331,9 +4331,9 @@ "parent": "tob-2023_dau_slam", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -4354,9 +4354,9 @@ "parent": "tob-2023_death-butterfly-swarm_bites", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 0.0, - "range_ft": null, - "long_range_ft": null, + "reach": 0.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, @@ -4377,9 +4377,9 @@ "parent": "tob-2023_deathcap-myconid_spore-coated-fist", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -4400,9 +4400,9 @@ "parent": "tob-2023_deathwisp_ghostly-pike", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -4423,9 +4423,9 @@ "parent": "tob-2023_deathwisp_life-drain", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -4446,9 +4446,9 @@ "parent": "tob-2023_deep-drake_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -4469,9 +4469,9 @@ "parent": "tob-2023_deep-drake_claw", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -4492,9 +4492,9 @@ "parent": "tob-2023_deep-drake_stinger", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -4515,9 +4515,9 @@ "parent": "tob-2023_deep-one-archimandrite_claws", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -4538,9 +4538,9 @@ "parent": "tob-2023_deep-one-archimandrite_jolt", "attack_type": "SPELL", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": 60.0, - "long_range_ft": null, + "reach": 5.0, + "range": 60.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -4561,9 +4561,9 @@ "parent": "tob-2023_deep-one-archimandrite_unholy-trident", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -4584,9 +4584,9 @@ "parent": "tob-2023_deep-one-priest_claws", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -4607,9 +4607,9 @@ "parent": "tob-2023_deep-one-priest_jolting-touch", "attack_type": "SPELL", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -4630,9 +4630,9 @@ "parent": "tob-2023_deep-one_claws", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -4653,9 +4653,9 @@ "parent": "tob-2023_degenerate-titan_greatclub", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -4676,9 +4676,9 @@ "parent": "tob-2023_degenerate-titan_rock", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": 240.0, + "reach": null, + "range": 60.0, + "long_range": 240.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -4699,9 +4699,9 @@ "parent": "tob-2023_desert-giant_falchion", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, @@ -4722,9 +4722,9 @@ "parent": "tob-2023_desert-giant_rock", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": 240.0, + "reach": null, + "range": 60.0, + "long_range": 240.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -4745,9 +4745,9 @@ "parent": "tob-2023_devilbound-gnome_hellish-blast", "attack_type": "SPELL", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": 120.0, - "long_range_ft": null, + "reach": 5.0, + "range": 120.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -4768,9 +4768,9 @@ "parent": "tob-2023_dipsa_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": null, @@ -4791,9 +4791,9 @@ "parent": "tob-2023_dissimortuum_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -4814,9 +4814,9 @@ "parent": "tob-2023_dogmole-juggernaut_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -4837,9 +4837,9 @@ "parent": "tob-2023_dogmole-juggernaut_claw", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -4860,9 +4860,9 @@ "parent": "tob-2023_dogmole_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -4883,9 +4883,9 @@ "parent": "tob-2023_dogmole_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -4906,9 +4906,9 @@ "parent": "tob-2023_domovoi_slam", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -4929,9 +4929,9 @@ "parent": "tob-2023_doppelrat_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -4952,9 +4952,9 @@ "parent": "tob-2023_dorreq_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -4975,9 +4975,9 @@ "parent": "tob-2023_dorreq_tentacles", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -4998,9 +4998,9 @@ "parent": "tob-2023_dragon-eel_bite", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -5021,9 +5021,9 @@ "parent": "tob-2023_dragon-eel_tail-slap", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, @@ -5044,9 +5044,9 @@ "parent": "tob-2023_dragonleaf-tree_slam", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -5067,9 +5067,9 @@ "parent": "tob-2023_dragonleaf-tree_throw-leaves", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 30.0, - "long_range_ft": 120.0, + "reach": null, + "range": 30.0, + "long_range": 120.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -5090,9 +5090,9 @@ "parent": "tob-2023_drakon_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -5113,9 +5113,9 @@ "parent": "tob-2023_drakon_tail", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5136,9 +5136,9 @@ "parent": "tob-2023_dream-eater_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -5159,9 +5159,9 @@ "parent": "tob-2023_dream-eater_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -5182,9 +5182,9 @@ "parent": "tob-2023_drowned-maiden_hair", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 20.0, - "range_ft": null, - "long_range_ft": null, + "reach": 20.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -5205,9 +5205,9 @@ "parent": "tob-2023_duelist_dagger", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5228,9 +5228,9 @@ "parent": "tob-2023_duelist_rapier", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5251,9 +5251,9 @@ "parent": "tob-2023_dullahan_necrotic-bolt", "attack_type": "SPELL", "to_hit_mod": 7, - "reach_ft": null, - "range_ft": 120.0, - "long_range_ft": null, + "reach": null, + "range": 120.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -5274,9 +5274,9 @@ "parent": "tob-2023_dullahan_spine-whip", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -5297,9 +5297,9 @@ "parent": "tob-2023_dune-mimic_pseudopod", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -5320,9 +5320,9 @@ "parent": "tob-2023_duskthorn-dryad_thorn", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": null, - "range_ft": 80.0, - "long_range_ft": 320.0, + "reach": null, + "range": 80.0, + "long_range": 320.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -5343,9 +5343,9 @@ "parent": "tob-2023_duskthorn-dryad_thorned-slam", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -5366,9 +5366,9 @@ "parent": "tob-2023_dust-goblin_light-crossbow", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 80.0, - "long_range_ft": 320.0, + "reach": null, + "range": 80.0, + "long_range": 320.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5389,9 +5389,9 @@ "parent": "tob-2023_dust-goblin_shortsword", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5412,9 +5412,9 @@ "parent": "tob-2023_dwarven-ringmage_ring-staff", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5435,9 +5435,9 @@ "parent": "tob-2023_eala_wing-blades", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5458,9 +5458,9 @@ "parent": "tob-2023_eater-of-dust_maw-arm", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -5481,9 +5481,9 @@ "parent": "tob-2023_eater-of-dust_necrotic-burst", "attack_type": "SPELL", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": 60.0, - "long_range_ft": null, + "reach": 5.0, + "range": 60.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -5504,9 +5504,9 @@ "parent": "tob-2023_edimmu_draining-touch", "attack_type": "SPELL", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -5527,9 +5527,9 @@ "parent": "tob-2023_eel-hound_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -5550,9 +5550,9 @@ "parent": "tob-2023_einherjar_battleaxe", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5573,9 +5573,9 @@ "parent": "tob-2023_einherjar_celestial-bolt", "attack_type": "SPELL", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": null, + "reach": null, + "range": 60.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -5596,9 +5596,9 @@ "parent": "tob-2023_elder-shadow-drake_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -5619,9 +5619,9 @@ "parent": "tob-2023_elder-shadow-drake_tail-slap", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -5642,9 +5642,9 @@ "parent": "tob-2023_elemental-locus_slam", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, @@ -5665,9 +5665,9 @@ "parent": "tob-2023_elvish-veteran-archer_longbow", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": null, - "range_ft": 150.0, - "long_range_ft": 600.0, + "reach": null, + "range": 150.0, + "long_range": 600.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -5688,9 +5688,9 @@ "parent": "tob-2023_elvish-veteran-archer_shortsword", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5711,9 +5711,9 @@ "parent": "tob-2023_emerald-eye_phrenic-burst", "attack_type": "SPELL", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": null, + "reach": null, + "range": 60.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -5734,9 +5734,9 @@ "parent": "tob-2023_emerald-order-cult-leader_mace", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5757,9 +5757,9 @@ "parent": "tob-2023_emerald-order-cult-leader_radiant-bolt", "attack_type": "SPELL", "to_hit_mod": 8, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": null, + "reach": null, + "range": 60.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -5780,9 +5780,9 @@ "parent": "tob-2023_empty-cloak_razor-cloak", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5803,9 +5803,9 @@ "parent": "tob-2023_empty-cloak_shadow-slam", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5826,9 +5826,9 @@ "parent": "tob-2023_empty-cloak_shadow-snare", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": null, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": null, @@ -5849,9 +5849,9 @@ "parent": "tob-2023_enchantress_rapier", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5872,9 +5872,9 @@ "parent": "tob-2023_enchantress_shadow-bolt", "attack_type": "SPELL", "to_hit_mod": 7, - "reach_ft": null, - "range_ft": 120.0, - "long_range_ft": null, + "reach": null, + "range": 120.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -5895,9 +5895,9 @@ "parent": "tob-2023_eonic-drifter_time-warping-staff", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5918,9 +5918,9 @@ "parent": "tob-2023_erina-defender_shortbow", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 80.0, - "long_range_ft": 320.0, + "reach": null, + "range": 80.0, + "long_range": 320.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5941,9 +5941,9 @@ "parent": "tob-2023_erina-defender_shortsword", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5964,9 +5964,9 @@ "parent": "tob-2023_erina_dagger", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5987,9 +5987,9 @@ "parent": "tob-2023_erina_sling", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": null, - "range_ft": 30.0, - "long_range_ft": 120.0, + "reach": null, + "range": 30.0, + "long_range": 120.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6010,9 +6010,9 @@ "parent": "tob-2023_eye-golem_slam", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -6033,9 +6033,9 @@ "parent": "tob-2023_far-darrig_antler-glaive", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6056,9 +6056,9 @@ "parent": "tob-2023_fate-eater_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -6079,9 +6079,9 @@ "parent": "tob-2023_fear-smith_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -6102,9 +6102,9 @@ "parent": "tob-2023_fellforged_necrotic-slam", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -6125,9 +6125,9 @@ "parent": "tob-2023_fetal-savant_psychic-burst", "attack_type": "SPELL", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": 60.0, - "long_range_ft": null, + "reach": 5.0, + "range": 60.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -6148,9 +6148,9 @@ "parent": "tob-2023_fext_eldritch-blade", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -6171,9 +6171,9 @@ "parent": "tob-2023_fext_eldritch-fury", "attack_type": "SPELL", "to_hit_mod": 7, - "reach_ft": null, - "range_ft": 120.0, - "long_range_ft": null, + "reach": null, + "range": 120.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -6194,9 +6194,9 @@ "parent": "tob-2023_feyward-tree_razor-leafed-branch", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -6217,9 +6217,9 @@ "parent": "tob-2023_fidele-angel_beak", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6240,9 +6240,9 @@ "parent": "tob-2023_fidele-angel_longsword", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6263,9 +6263,9 @@ "parent": "tob-2023_fidele-angel_radiant-bolt", "attack_type": "SPELL", "to_hit_mod": 7, - "reach_ft": null, - "range_ft": 120.0, - "long_range_ft": null, + "reach": null, + "range": 120.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -6286,9 +6286,9 @@ "parent": "tob-2023_fidele-angel_talons", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -6309,9 +6309,9 @@ "parent": "tob-2023_firebird_beak", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6332,9 +6332,9 @@ "parent": "tob-2023_firebird_talon", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -6355,9 +6355,9 @@ "parent": "tob-2023_firegeist_burning-slam", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6378,9 +6378,9 @@ "parent": "tob-2023_flab-giant_slam", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -6401,9 +6401,9 @@ "parent": "tob-2023_flame-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6424,9 +6424,9 @@ "parent": "tob-2023_flutterflesh_bone-spur", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -6447,9 +6447,9 @@ "parent": "tob-2023_flutterflesh_tormenting-gaze", "attack_type": "SPELL", "to_hit_mod": 7, - "reach_ft": null, - "range_ft": 120.0, - "long_range_ft": null, + "reach": null, + "range": 120.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -6470,9 +6470,9 @@ "parent": "tob-2023_folk-of-leng_hooked-spider-net", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 10.0, - "long_range_ft": 30.0, + "reach": null, + "range": 10.0, + "long_range": 30.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6493,9 +6493,9 @@ "parent": "tob-2023_folk-of-leng_psychic-bolt", "attack_type": "SPELL", "to_hit_mod": 6, - "reach_ft": null, - "range_ft": 120.0, - "long_range_ft": null, + "reach": null, + "range": 120.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -6516,9 +6516,9 @@ "parent": "tob-2023_folk-of-leng_scimitar", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6539,9 +6539,9 @@ "parent": "tob-2023_forest-hunter_dagger", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6562,9 +6562,9 @@ "parent": "tob-2023_forest-hunter_longbow", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": null, - "range_ft": 150.0, - "long_range_ft": 600.0, + "reach": null, + "range": 150.0, + "long_range": 600.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6585,9 +6585,9 @@ "parent": "tob-2023_forest-marauder_boar-spear", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -6608,9 +6608,9 @@ "parent": "tob-2023_forest-marauder_rock", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": null, - "range_ft": 30.0, - "long_range_ft": 120.0, + "reach": null, + "range": 30.0, + "long_range": 120.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -6631,9 +6631,9 @@ "parent": "tob-2023_fraughashar_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6654,9 +6654,9 @@ "parent": "tob-2023_fraughashar_dagger", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6677,9 +6677,9 @@ "parent": "tob-2023_fraughashar_frost-bolt", "attack_type": "SPELL", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": null, + "reach": null, + "range": 60.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -6700,9 +6700,9 @@ "parent": "tob-2023_frostveil_frozen-tendril", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6723,9 +6723,9 @@ "parent": "tob-2023_garroter-crab_whip-claw", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6746,9 +6746,9 @@ "parent": "tob-2023_gbahali_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -6769,9 +6769,9 @@ "parent": "tob-2023_gbahali_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -6792,9 +6792,9 @@ "parent": "tob-2023_gearforged-templar_greatsword", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -6815,9 +6815,9 @@ "parent": "tob-2023_gearforged-templar_javelin", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": 30.0, - "long_range_ft": 120.0, + "reach": 5.0, + "range": 30.0, + "long_range": 120.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6838,9 +6838,9 @@ "parent": "tob-2023_gerridae_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6861,9 +6861,9 @@ "parent": "tob-2023_gerridae_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6884,9 +6884,9 @@ "parent": "tob-2023_ghost-knight_battleaxe", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6907,9 +6907,9 @@ "parent": "tob-2023_ghost-knight_lance", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6930,9 +6930,9 @@ "parent": "tob-2023_ghostwalk-spider_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -6953,9 +6953,9 @@ "parent": "tob-2023_giant-ant-queen_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6976,9 +6976,9 @@ "parent": "tob-2023_giant-ant-queen_sting", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6999,9 +6999,9 @@ "parent": "tob-2023_giant-ant_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -7022,9 +7022,9 @@ "parent": "tob-2023_giant-ant_sting", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -7045,9 +7045,9 @@ "parent": "tob-2023_gilded-devil_golden-flail", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -7068,9 +7068,9 @@ "parent": "tob-2023_gilded-devil_hurl-flame", "attack_type": "SPELL", "to_hit_mod": 7, - "reach_ft": null, - "range_ft": 120.0, - "long_range_ft": null, + "reach": null, + "range": 120.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -7091,9 +7091,9 @@ "parent": "tob-2023_glass-gator_claw", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -7114,9 +7114,9 @@ "parent": "tob-2023_glass-gator_constrict", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -7137,9 +7137,9 @@ "parent": "tob-2023_gnarljak_chain-tail", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -7160,9 +7160,9 @@ "parent": "tob-2023_gnarljak_gnawing-bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -7183,9 +7183,9 @@ "parent": "tob-2023_gnoll-havoc-runner_battleaxe", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -7206,9 +7206,9 @@ "parent": "tob-2023_gnoll-havoc-runner_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -7229,9 +7229,9 @@ "parent": "tob-2023_goat-man_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -7252,9 +7252,9 @@ "parent": "tob-2023_goat-man_slam", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -7275,9 +7275,9 @@ "parent": "tob-2023_gray-thirster_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -7298,9 +7298,9 @@ "parent": "tob-2023_gray-thirster_withering-turban", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -7321,9 +7321,9 @@ "parent": "tob-2023_greater-death-butterfly-swarm_bites", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 0.0, - "range_ft": null, - "long_range_ft": null, + "reach": 0.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, @@ -7344,9 +7344,9 @@ "parent": "tob-2023_greyfur_arcane-bolt", "attack_type": "SPELL", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": null, + "reach": null, + "range": 60.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -7367,9 +7367,9 @@ "parent": "tob-2023_greyfur_greyfurs-staff", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -7390,9 +7390,9 @@ "parent": "tob-2023_grim-jester_necrotic-claw", "attack_type": "SPELL", "to_hit_mod": 9, - "reach_ft": null, - "range_ft": 5.0, - "long_range_ft": null, + "reach": null, + "range": 5.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -7413,9 +7413,9 @@ "parent": "tob-2023_guardian_javelin", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": 30.0, - "long_range_ft": 120.0, + "reach": 5.0, + "range": 30.0, + "long_range": 120.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -7436,9 +7436,9 @@ "parent": "tob-2023_guardian_pike", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -7459,9 +7459,9 @@ "parent": "tob-2023_gug_grasping-claw", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -7482,9 +7482,9 @@ "parent": "tob-2023_gug_stomp", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -7505,9 +7505,9 @@ "parent": "tob-2023_gypsosphinx_beak", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -7528,9 +7528,9 @@ "parent": "tob-2023_gypsosphinx_claw", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -7551,9 +7551,9 @@ "parent": "tob-2023_haugbui_psychic-blast", "attack_type": "SPELL", "to_hit_mod": 10, - "reach_ft": null, - "range_ft": 120.0, - "long_range_ft": null, + "reach": null, + "range": 120.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, @@ -7574,9 +7574,9 @@ "parent": "tob-2023_herald-of-blood_blood-bolt", "attack_type": "SPELL", "to_hit_mod": 7, - "reach_ft": null, - "range_ft": 120.0, - "long_range_ft": null, + "reach": null, + "range": 120.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, @@ -7597,9 +7597,9 @@ "parent": "tob-2023_herald-of-blood_grasping-slam", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -7620,9 +7620,9 @@ "parent": "tob-2023_herald-of-blood_heralds-staff", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -7643,9 +7643,9 @@ "parent": "tob-2023_herald-of-darkness_embrace-darkness", "attack_type": "SPELL", "to_hit_mod": 7, - "reach_ft": 0.0, - "range_ft": null, - "long_range_ft": null, + "reach": 0.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -7666,9 +7666,9 @@ "parent": "tob-2023_herald-of-darkness_shadow-sword", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -7689,9 +7689,9 @@ "parent": "tob-2023_hoard-golem_slam", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -7712,9 +7712,9 @@ "parent": "tob-2023_horakh_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -7735,9 +7735,9 @@ "parent": "tob-2023_horakh_claw", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -7758,9 +7758,9 @@ "parent": "tob-2023_hound-of-the-night_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -7781,9 +7781,9 @@ "parent": "tob-2023_hraesvelgr_beak", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -7804,9 +7804,9 @@ "parent": "tob-2023_hraesvelgr_fist", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -7827,9 +7827,9 @@ "parent": "tob-2023_hraesvelgr_gale-blast", "attack_type": "SPELL", "to_hit_mod": 11, - "reach_ft": null, - "range_ft": 120.0, - "long_range_ft": null, + "reach": null, + "range": 120.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -7850,9 +7850,9 @@ "parent": "tob-2023_hraesvelgr_talons", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -7873,9 +7873,9 @@ "parent": "tob-2023_hulking-whelp_slam", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -7896,9 +7896,9 @@ "parent": "tob-2023_hundun_slam", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -7919,9 +7919,9 @@ "parent": "tob-2023_iaaffrat_bite", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 0.0, - "range_ft": null, - "long_range_ft": null, + "reach": 0.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, @@ -7942,9 +7942,9 @@ "parent": "tob-2023_iaaffrat_burning-claw", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -7965,9 +7965,9 @@ "parent": "tob-2023_iaaffrat_flaming-insect-bolt", "attack_type": "SPELL", "to_hit_mod": 11, - "reach_ft": null, - "range_ft": 120.0, - "long_range_ft": null, + "reach": null, + "range": 120.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -7988,9 +7988,9 @@ "parent": "tob-2023_ice-maiden_ice-blade", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -8011,9 +8011,9 @@ "parent": "tob-2023_ice-maiden_ice-bolt", "attack_type": "SPELL", "to_hit_mod": 8, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": null, + "reach": null, + "range": 60.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -8034,9 +8034,9 @@ "parent": "tob-2023_idolic-deity_slam", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -8057,9 +8057,9 @@ "parent": "tob-2023_imperial-ghoul_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -8080,9 +8080,9 @@ "parent": "tob-2023_imperial-ghoul_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": null, - "long_range_ft": null, + "reach": null, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -8103,9 +8103,9 @@ "parent": "tob-2023_imperial-ghoul_light-crossbow", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 80.0, - "long_range_ft": 320.0, + "reach": null, + "range": 80.0, + "long_range": 320.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -8126,9 +8126,9 @@ "parent": "tob-2023_ink-devil_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -8149,9 +8149,9 @@ "parent": "tob-2023_ink-devil_devils-ink", "attack_type": "SPELL", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": 60.0, - "long_range_ft": null, + "reach": 5.0, + "range": 60.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -8172,9 +8172,9 @@ "parent": "tob-2023_iron-ghoul_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -8195,9 +8195,9 @@ "parent": "tob-2023_iron-ghoul_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -8218,9 +8218,9 @@ "parent": "tob-2023_iron-ghoul_glaive", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -8241,9 +8241,9 @@ "parent": "tob-2023_iron-ghoul_heavy-crossbow", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": null, - "range_ft": 100.0, - "long_range_ft": null, + "reach": null, + "range": 100.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -8264,9 +8264,9 @@ "parent": "tob-2023_isonade_bite", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -8287,9 +8287,9 @@ "parent": "tob-2023_isonade_tail-slap", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -8310,9 +8310,9 @@ "parent": "tob-2023_jaculus_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -8333,9 +8333,9 @@ "parent": "tob-2023_jaculus_claws", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -8356,9 +8356,9 @@ "parent": "tob-2023_jba-fofi-spider_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -8379,9 +8379,9 @@ "parent": "tob-2023_jotun_greatclub", "attack_type": "WEAPON", "to_hit_mod": 17, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -8402,9 +8402,9 @@ "parent": "tob-2023_jotun_rock", "attack_type": "WEAPON", "to_hit_mod": 17, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": 240.0, + "reach": null, + "range": 60.0, + "long_range": 240.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -8425,9 +8425,9 @@ "parent": "tob-2023_kalke_slam", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -8448,9 +8448,9 @@ "parent": "tob-2023_kikimora_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -8471,9 +8471,9 @@ "parent": "tob-2023_kishi_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -8494,9 +8494,9 @@ "parent": "tob-2023_kishi_spear", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -8517,9 +8517,9 @@ "parent": "tob-2023_kongamato_beak", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -8540,9 +8540,9 @@ "parent": "tob-2023_kongamato_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -8563,9 +8563,9 @@ "parent": "tob-2023_koralk_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -8586,9 +8586,9 @@ "parent": "tob-2023_koralk_scythe", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -8609,9 +8609,9 @@ "parent": "tob-2023_koralk_stinger", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -8632,9 +8632,9 @@ "parent": "tob-2023_koralk_vestigial-arms", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": null, @@ -8655,9 +8655,9 @@ "parent": "tob-2023_kot-bayun_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -8678,9 +8678,9 @@ "parent": "tob-2023_kot-bayun_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -8701,9 +8701,9 @@ "parent": "tob-2023_krake-spawn_bite", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -8724,9 +8724,9 @@ "parent": "tob-2023_krake-spawn_freezing-water-bolt", "attack_type": "SPELL", "to_hit_mod": 9, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": null, + "reach": null, + "range": 60.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -8747,9 +8747,9 @@ "parent": "tob-2023_krake-spawn_tentacle", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -8770,9 +8770,9 @@ "parent": "tob-2023_lake-troll_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -8793,9 +8793,9 @@ "parent": "tob-2023_lake-troll_claw", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -8816,9 +8816,9 @@ "parent": "tob-2023_lantern-dragonette_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -8839,9 +8839,9 @@ "parent": "tob-2023_lemurfolk_blowgun", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 25.0, - "long_range_ft": 100.0, + "reach": null, + "range": 25.0, + "long_range": 100.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -8862,9 +8862,9 @@ "parent": "tob-2023_lemurfolk_slam", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -8885,9 +8885,9 @@ "parent": "tob-2023_leshy_club", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -8908,9 +8908,9 @@ "parent": "tob-2023_library-automaton_piston-powered-kick", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -8931,9 +8931,9 @@ "parent": "tob-2023_library-automaton_unnerving-gaze", "attack_type": "SPELL", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": null, + "reach": null, + "range": 60.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -8954,9 +8954,9 @@ "parent": "tob-2023_lich-hound_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -8977,9 +8977,9 @@ "parent": "tob-2023_likho_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -9000,9 +9000,9 @@ "parent": "tob-2023_lindwurm_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -9023,9 +9023,9 @@ "parent": "tob-2023_lindwurm_claw", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -9046,9 +9046,9 @@ "parent": "tob-2023_lindwurm_constrict", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -9069,9 +9069,9 @@ "parent": "tob-2023_liosalfar_radiant-touch", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -9092,9 +9092,9 @@ "parent": "tob-2023_liosalfar_ray-of-light", "attack_type": "SPELL", "to_hit_mod": 8, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": null, + "reach": null, + "range": 60.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, @@ -9115,9 +9115,9 @@ "parent": "tob-2023_living-wick_slam", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -9138,9 +9138,9 @@ "parent": "tob-2023_lord-of-the-hunt_longbow", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": null, - "range_ft": 150.0, - "long_range_ft": 600.0, + "reach": null, + "range": 150.0, + "long_range": 600.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -9161,9 +9161,9 @@ "parent": "tob-2023_lord-of-the-hunt_spear", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 5.0, - "range_ft": 30.0, - "long_range_ft": 120.0, + "reach": 5.0, + "range": 30.0, + "long_range": 120.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -9184,9 +9184,9 @@ "parent": "tob-2023_lorelei_corrupted-kiss", "attack_type": "SPELL", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -9207,9 +9207,9 @@ "parent": "tob-2023_lorelei_psychic-blast", "attack_type": "SPELL", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": 60.0, - "long_range_ft": null, + "reach": 5.0, + "range": 60.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -9230,9 +9230,9 @@ "parent": "tob-2023_loxoda_slam", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -9253,9 +9253,9 @@ "parent": "tob-2023_loxoda_spear", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -9276,9 +9276,9 @@ "parent": "tob-2023_loxoda_stomp", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -9299,9 +9299,9 @@ "parent": "tob-2023_lunar-devil_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -9322,9 +9322,9 @@ "parent": "tob-2023_lunar-devil_claw", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -9345,9 +9345,9 @@ "parent": "tob-2023_lunar-devil_hurl-moonlight", "attack_type": "SPELL", "to_hit_mod": 7, - "reach_ft": null, - "range_ft": 150.0, - "long_range_ft": null, + "reach": null, + "range": 150.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -9368,9 +9368,9 @@ "parent": "tob-2023_lunar-devil_tail", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -9391,9 +9391,9 @@ "parent": "tob-2023_mahoru_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -9414,9 +9414,9 @@ "parent": "tob-2023_malakbel_scorching-blast", "attack_type": "SPELL", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": 120.0, - "long_range_ft": null, + "reach": 5.0, + "range": 120.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -9437,9 +9437,9 @@ "parent": "tob-2023_mallqui_xeric-blast", "attack_type": "SPELL", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": 60.0, - "long_range_ft": null, + "reach": 5.0, + "range": 60.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -9460,9 +9460,9 @@ "parent": "tob-2023_malphas_longsword", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -9483,9 +9483,9 @@ "parent": "tob-2023_malphas_shadow-bolt", "attack_type": "SPELL", "to_hit_mod": 7, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": null, + "reach": null, + "range": 60.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -9506,9 +9506,9 @@ "parent": "tob-2023_mamura_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": null, - "range_ft": 5.0, - "long_range_ft": null, + "reach": null, + "range": 5.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -9529,9 +9529,9 @@ "parent": "tob-2023_mamura_whiptail-stinger", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": null, - "range_ft": 10.0, - "long_range_ft": null, + "reach": null, + "range": 10.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -9552,9 +9552,9 @@ "parent": "tob-2023_map-mimic_pseudopod", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -9575,9 +9575,9 @@ "parent": "tob-2023_mask-wight_khopesh-of-oblivion", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -9598,9 +9598,9 @@ "parent": "tob-2023_mask-wight_spiked-gauntlet", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -9621,9 +9621,9 @@ "parent": "tob-2023_mavka_enervating-slam", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -9644,9 +9644,9 @@ "parent": "tob-2023_mavka_necrotic-bolt", "attack_type": "SPELL", "to_hit_mod": 8, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": null, + "reach": null, + "range": 60.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -9667,9 +9667,9 @@ "parent": "tob-2023_mbielu_tail", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -9690,9 +9690,9 @@ "parent": "tob-2023_mechuiti_bite", "attack_type": "WEAPON", "to_hit_mod": 17, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -9713,9 +9713,9 @@ "parent": "tob-2023_mechuiti_claw", "attack_type": "WEAPON", "to_hit_mod": 17, - "reach_ft": 20.0, - "range_ft": null, - "long_range_ft": null, + "reach": 20.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -9736,9 +9736,9 @@ "parent": "tob-2023_mi-go_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -9759,9 +9759,9 @@ "parent": "tob-2023_mi-go_psychic-bolt", "attack_type": "SPELL", "to_hit_mod": 10, - "reach_ft": null, - "range_ft": 120.0, - "long_range_ft": null, + "reach": null, + "range": 120.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -9782,9 +9782,9 @@ "parent": "tob-2023_millitaur_handaxe", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -9805,9 +9805,9 @@ "parent": "tob-2023_mindrot-thrall_claw", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -9828,9 +9828,9 @@ "parent": "tob-2023_mirager_slam", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -9851,9 +9851,9 @@ "parent": "tob-2023_mirager_thirsting-kiss", "attack_type": "SPELL", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -9874,9 +9874,9 @@ "parent": "tob-2023_miremal_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -9897,9 +9897,9 @@ "parent": "tob-2023_miremal_claw", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -9920,9 +9920,9 @@ "parent": "tob-2023_mirror-hag_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -9943,9 +9943,9 @@ "parent": "tob-2023_mirror-hag_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -9966,9 +9966,9 @@ "parent": "tob-2023_mithral-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -9989,9 +9989,9 @@ "parent": "tob-2023_mngwa_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10012,9 +10012,9 @@ "parent": "tob-2023_mngwa_ethereal-bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10035,9 +10035,9 @@ "parent": "tob-2023_monolith-champion_greatsword", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -10058,9 +10058,9 @@ "parent": "tob-2023_monolith-champion_slam", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -10081,9 +10081,9 @@ "parent": "tob-2023_monolith-footman_shortsword", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -10104,9 +10104,9 @@ "parent": "tob-2023_moonlit-king_crystal-staff", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -10127,9 +10127,9 @@ "parent": "tob-2023_moonlit-king_moon-bolt", "attack_type": "SPELL", "to_hit_mod": 11, - "reach_ft": null, - "range_ft": 120.0, - "long_range_ft": null, + "reach": null, + "range": 120.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -10150,9 +10150,9 @@ "parent": "tob-2023_mordant-snare_acid-spike", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": null, - "range_ft": 30.0, - "long_range_ft": 120.0, + "reach": null, + "range": 30.0, + "long_range": 120.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -10173,9 +10173,9 @@ "parent": "tob-2023_mordant-snare_bite", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -10196,9 +10196,9 @@ "parent": "tob-2023_mordant-snare_tentacle", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 20.0, - "range_ft": null, - "long_range_ft": null, + "reach": 20.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -10219,9 +10219,9 @@ "parent": "tob-2023_morphoi_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10242,9 +10242,9 @@ "parent": "tob-2023_morphoi_shortbow", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 80.0, - "long_range_ft": 320.0, + "reach": null, + "range": 80.0, + "long_range": 320.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10265,9 +10265,9 @@ "parent": "tob-2023_morphoi_trident", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10288,9 +10288,9 @@ "parent": "tob-2023_moss-lurker_poisoned-claw", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10311,9 +10311,9 @@ "parent": "tob-2023_moss-lurker_throw-stone", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": null, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -10334,9 +10334,9 @@ "parent": "tob-2023_myling_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -10357,9 +10357,9 @@ "parent": "tob-2023_naina_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -10380,9 +10380,9 @@ "parent": "tob-2023_naina_claw", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -10403,9 +10403,9 @@ "parent": "tob-2023_naina_slam", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -10426,9 +10426,9 @@ "parent": "tob-2023_necrohydra_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10449,9 +10449,9 @@ "parent": "tob-2023_ngobou_gore", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -10472,9 +10472,9 @@ "parent": "tob-2023_ngobou_stomp", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -10495,9 +10495,9 @@ "parent": "tob-2023_nichny_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -10518,9 +10518,9 @@ "parent": "tob-2023_nichny_luck-stealing-bolt", "attack_type": "SPELL", "to_hit_mod": 7, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": null, + "reach": null, + "range": 60.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -10541,9 +10541,9 @@ "parent": "tob-2023_night-scorpion_claw", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10564,9 +10564,9 @@ "parent": "tob-2023_night-scorpion_sting", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10587,9 +10587,9 @@ "parent": "tob-2023_nightgarm_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -10610,9 +10610,9 @@ "parent": "tob-2023_nightgarm_claw", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -10633,9 +10633,9 @@ "parent": "tob-2023_nihileth_tail", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -10656,9 +10656,9 @@ "parent": "tob-2023_nihileth_tentacle", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -10679,9 +10679,9 @@ "parent": "tob-2023_nihileth_withering-touch", "attack_type": "SPELL", "to_hit_mod": 9, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -10702,9 +10702,9 @@ "parent": "tob-2023_nihilethic-dominator_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -10725,9 +10725,9 @@ "parent": "tob-2023_nihilethic-dominator_tendril-of-the-void", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10748,9 +10748,9 @@ "parent": "tob-2023_nihilethic-zombie_slam", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10771,9 +10771,9 @@ "parent": "tob-2023_nihilethic-zombie_withering-touch", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -10794,9 +10794,9 @@ "parent": "tob-2023_nkosi-pridelord_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -10817,9 +10817,9 @@ "parent": "tob-2023_nkosi-pridelord_mambele", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10840,9 +10840,9 @@ "parent": "tob-2023_nkosi_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10863,9 +10863,9 @@ "parent": "tob-2023_nkosi_mambele", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10886,9 +10886,9 @@ "parent": "tob-2023_noctiny_eldritch-fury", "attack_type": "SPELL", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 120.0, - "long_range_ft": null, + "reach": null, + "range": 120.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -10909,9 +10909,9 @@ "parent": "tob-2023_noctiny_quarterstaff", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10932,9 +10932,9 @@ "parent": "tob-2023_oculo-swarm_extract-eye", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 0.0, - "range_ft": null, - "long_range_ft": null, + "reach": 0.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -10955,9 +10955,9 @@ "parent": "tob-2023_oozasis_pseudopod", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -10978,9 +10978,9 @@ "parent": "tob-2023_orobas-devil_bite", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -11001,9 +11001,9 @@ "parent": "tob-2023_orobas-devil_flail", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -11024,9 +11024,9 @@ "parent": "tob-2023_orobas-devil_hurl-flame", "attack_type": "SPELL", "to_hit_mod": 10, - "reach_ft": null, - "range_ft": 120.0, - "long_range_ft": null, + "reach": null, + "range": 120.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -11047,9 +11047,9 @@ "parent": "tob-2023_orobas-devil_stomp", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11070,9 +11070,9 @@ "parent": "tob-2023_ostinato_cacophony-burst", "attack_type": "SPELL", "to_hit_mod": 7, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": null, + "reach": null, + "range": 60.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -11093,9 +11093,9 @@ "parent": "tob-2023_owl-harpy_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -11116,9 +11116,9 @@ "parent": "tob-2023_owl-harpy_talon", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -11139,9 +11139,9 @@ "parent": "tob-2023_pact-vampire_claw", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -11162,9 +11162,9 @@ "parent": "tob-2023_paper-drake_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -11185,9 +11185,9 @@ "parent": "tob-2023_paper-drake_book-flap", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -11208,9 +11208,9 @@ "parent": "tob-2023_paper-drake_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -11231,9 +11231,9 @@ "parent": "tob-2023_planewatcher_enervating-blast", "attack_type": "SPELL", "to_hit_mod": 9, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": null, + "reach": null, + "range": 60.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -11254,9 +11254,9 @@ "parent": "tob-2023_planewatcher_radiant-lasso", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 30.0, - "range_ft": null, - "long_range_ft": null, + "reach": 30.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -11277,9 +11277,9 @@ "parent": "tob-2023_pombero_slam", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -11300,9 +11300,9 @@ "parent": "tob-2023_possessed-pillar_slam", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -11323,9 +11323,9 @@ "parent": "tob-2023_psoglav_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -11346,9 +11346,9 @@ "parent": "tob-2023_putrid-haunt_slam", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -11369,9 +11369,9 @@ "parent": "tob-2023_qorgeth_bite", "attack_type": "WEAPON", "to_hit_mod": 16, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -11392,9 +11392,9 @@ "parent": "tob-2023_qorgeth_crush", "attack_type": "WEAPON", "to_hit_mod": 16, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -11415,9 +11415,9 @@ "parent": "tob-2023_qorgeth_stinger", "attack_type": "WEAPON", "to_hit_mod": 16, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -11438,9 +11438,9 @@ "parent": "tob-2023_queen-of-night-and-magic_rapier", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11461,9 +11461,9 @@ "parent": "tob-2023_queen-of-night-and-magic_star-strike", "attack_type": "SPELL", "to_hit_mod": 15, - "reach_ft": null, - "range_ft": 120.0, - "long_range_ft": null, + "reach": null, + "range": 120.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -11484,9 +11484,9 @@ "parent": "tob-2023_queen-of-witches_moonsilver-ring", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -11507,9 +11507,9 @@ "parent": "tob-2023_queen-of-witches_mystical-blast", "attack_type": "SPELL", "to_hit_mod": 12, - "reach_ft": 5.0, - "range_ft": 120.0, - "long_range_ft": null, + "reach": 5.0, + "range": 120.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -11530,9 +11530,9 @@ "parent": "tob-2023_quicksilver-siege-orb_disk-blade", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -11553,9 +11553,9 @@ "parent": "tob-2023_quicksilver-siege-orb_slam", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -11576,9 +11576,9 @@ "parent": "tob-2023_qwyllion_claw", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -11599,9 +11599,9 @@ "parent": "tob-2023_qwyllion_deadly-gaze", "attack_type": "SPELL", "to_hit_mod": 6, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": null, + "reach": null, + "range": 60.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -11622,9 +11622,9 @@ "parent": "tob-2023_ramag_scimitar", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11645,9 +11645,9 @@ "parent": "tob-2023_ramag_shortbow", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 80.0, - "long_range_ft": 320.0, + "reach": null, + "range": 80.0, + "long_range": 320.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11668,9 +11668,9 @@ "parent": "tob-2023_rat-king_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -11691,9 +11691,9 @@ "parent": "tob-2023_ratatosk_annoying-chitter", "attack_type": "SPELL", "to_hit_mod": 6, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": null, + "reach": null, + "range": 60.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -11714,9 +11714,9 @@ "parent": "tob-2023_ratatosk_gore", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11737,9 +11737,9 @@ "parent": "tob-2023_ratfolk-rogue_dagger", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11760,9 +11760,9 @@ "parent": "tob-2023_ratfolk-rogue_light-crossbow", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 80.0, - "long_range_ft": 320.0, + "reach": null, + "range": 80.0, + "long_range": 320.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11783,9 +11783,9 @@ "parent": "tob-2023_ratfolk_dagger", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11806,9 +11806,9 @@ "parent": "tob-2023_ratfolk_light-crossbow", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 80.0, - "long_range_ft": 320.0, + "reach": null, + "range": 80.0, + "long_range": 320.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11829,9 +11829,9 @@ "parent": "tob-2023_ravenala_bursting-pod", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": null, - "range_ft": 30.0, - "long_range_ft": 120.0, + "reach": null, + "range": 30.0, + "long_range": 120.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -11852,9 +11852,9 @@ "parent": "tob-2023_ravenala_slam", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -11875,9 +11875,9 @@ "parent": "tob-2023_ravenfolk-doom-croaker_peck", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -11898,9 +11898,9 @@ "parent": "tob-2023_ravenfolk-doom-croaker_rune-blast", "attack_type": "SPELL", "to_hit_mod": 7, - "reach_ft": null, - "range_ft": 120.0, - "long_range_ft": null, + "reach": null, + "range": 120.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -11921,9 +11921,9 @@ "parent": "tob-2023_ravenfolk-doom-croaker_runestaff", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11944,9 +11944,9 @@ "parent": "tob-2023_ravenfolk-scout_longbow", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 150.0, - "long_range_ft": 600.0, + "reach": null, + "range": 150.0, + "long_range": 600.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11967,9 +11967,9 @@ "parent": "tob-2023_ravenfolk-scout_peck", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -11990,9 +11990,9 @@ "parent": "tob-2023_ravenfolk-scout_rapier", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -12013,9 +12013,9 @@ "parent": "tob-2023_ravenfolk-warrior_longbow", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 150.0, - "long_range_ft": 600.0, + "reach": null, + "range": 150.0, + "long_range": 600.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -12036,9 +12036,9 @@ "parent": "tob-2023_ravenfolk-warrior_peck", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -12059,9 +12059,9 @@ "parent": "tob-2023_ravenfolk-warrior_runespear", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -12082,9 +12082,9 @@ "parent": "tob-2023_red-banded-line-spider_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -12105,9 +12105,9 @@ "parent": "tob-2023_red-hag_blood-bolt", "attack_type": "SPELL", "to_hit_mod": 8, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": null, + "reach": null, + "range": 60.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -12128,9 +12128,9 @@ "parent": "tob-2023_red-hag_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -12151,9 +12151,9 @@ "parent": "tob-2023_redcap_bleeding-bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -12174,9 +12174,9 @@ "parent": "tob-2023_redcap_pike", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -12197,9 +12197,9 @@ "parent": "tob-2023_rift-swine_tentacle", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -12220,9 +12220,9 @@ "parent": "tob-2023_rift-swine_tusk", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -12243,9 +12243,9 @@ "parent": "tob-2023_rift-swine_warping-bolt", "attack_type": "SPELL", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": null, + "reach": null, + "range": 60.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -12266,9 +12266,9 @@ "parent": "tob-2023_rime-worm-grub_rime-tendril", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -12289,9 +12289,9 @@ "parent": "tob-2023_rime-worm_rime-tendril", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -12312,9 +12312,9 @@ "parent": "tob-2023_risen-reaver_bladed-fist", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -12335,9 +12335,9 @@ "parent": "tob-2023_river-king_flood-blast", "attack_type": "SPELL", "to_hit_mod": 8, - "reach_ft": null, - "range_ft": 120.0, - "long_range_ft": null, + "reach": null, + "range": 120.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -12358,9 +12358,9 @@ "parent": "tob-2023_river-king_longsword", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -12381,9 +12381,9 @@ "parent": "tob-2023_roachling-lord_begrimed-dart", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": null, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -12404,9 +12404,9 @@ "parent": "tob-2023_roachling-lord_begrimed-shortsword", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -12427,9 +12427,9 @@ "parent": "tob-2023_roachling-skirmisher_dart", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": null, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -12450,9 +12450,9 @@ "parent": "tob-2023_roachling-skirmisher_shortsword", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -12473,9 +12473,9 @@ "parent": "tob-2023_rotting-wind_wind-of-decay", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 0.0, - "range_ft": null, - "long_range_ft": null, + "reach": 0.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -12496,9 +12496,9 @@ "parent": "tob-2023_rubezahl_claw", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -12519,9 +12519,9 @@ "parent": "tob-2023_rubezahl_gore", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -12542,9 +12542,9 @@ "parent": "tob-2023_rum-gremlin_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 5.0, - "long_range_ft": null, + "reach": null, + "range": 5.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -12565,9 +12565,9 @@ "parent": "tob-2023_rum-gremlin_claws", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 5.0, - "long_range_ft": null, + "reach": null, + "range": 5.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -12588,9 +12588,9 @@ "parent": "tob-2023_rust-drake_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -12611,9 +12611,9 @@ "parent": "tob-2023_rust-drake_tail-swipe", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -12634,9 +12634,9 @@ "parent": "tob-2023_salt-devil_scimitar", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -12657,9 +12657,9 @@ "parent": "tob-2023_salt-devil_water-draining-claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -12680,9 +12680,9 @@ "parent": "tob-2023_salt-golem_slam", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -12703,9 +12703,9 @@ "parent": "tob-2023_sand-hag_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -12726,9 +12726,9 @@ "parent": "tob-2023_sand-silhouette_slam", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -12749,9 +12749,9 @@ "parent": "tob-2023_sand-spider_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -12772,9 +12772,9 @@ "parent": "tob-2023_sand-spider_impaling-leg", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -12795,9 +12795,9 @@ "parent": "tob-2023_sandman_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -12818,9 +12818,9 @@ "parent": "tob-2023_sandwyrm_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -12841,9 +12841,9 @@ "parent": "tob-2023_sandwyrm_gore", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -12864,9 +12864,9 @@ "parent": "tob-2023_sandwyrm_stinger", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -12887,9 +12887,9 @@ "parent": "tob-2023_sap-demon_lob-sap", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": null, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -12910,9 +12910,9 @@ "parent": "tob-2023_sap-demon_slam", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -12933,9 +12933,9 @@ "parent": "tob-2023_sarcophagus-slime_slam", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -12956,9 +12956,9 @@ "parent": "tob-2023_sathaq-worm_bite", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -12979,9 +12979,9 @@ "parent": "tob-2023_sathaq-worm_slam", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -13002,9 +13002,9 @@ "parent": "tob-2023_savager_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -13025,9 +13025,9 @@ "parent": "tob-2023_savager_claw", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -13048,9 +13048,9 @@ "parent": "tob-2023_scheznyki_arcane-bolt", "attack_type": "SPELL", "to_hit_mod": 6, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": null, + "reach": null, + "range": 60.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -13071,9 +13071,9 @@ "parent": "tob-2023_scheznyki_war-pick", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -13094,9 +13094,9 @@ "parent": "tob-2023_scorpion-cultist_scimitar", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13117,9 +13117,9 @@ "parent": "tob-2023_scorpion-cultist_sling", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 30.0, - "long_range_ft": 120.0, + "reach": null, + "range": 30.0, + "long_range": 120.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13140,9 +13140,9 @@ "parent": "tob-2023_sea-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13163,9 +13163,9 @@ "parent": "tob-2023_selang_dagger", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13186,9 +13186,9 @@ "parent": "tob-2023_selang_poison-bolt", "attack_type": "SPELL", "to_hit_mod": 6, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": null, + "reach": null, + "range": 60.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -13209,9 +13209,9 @@ "parent": "tob-2023_serpopard_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -13232,9 +13232,9 @@ "parent": "tob-2023_serpopard_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -13255,9 +13255,9 @@ "parent": "tob-2023_shadhavar_gore", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13278,9 +13278,9 @@ "parent": "tob-2023_shadhavar_hooves", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -13301,9 +13301,9 @@ "parent": "tob-2023_shadow-antipaladin_heavy-crossbow", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": null, - "range_ft": 100.0, - "long_range_ft": 400.0, + "reach": null, + "range": 100.0, + "long_range": 400.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13324,9 +13324,9 @@ "parent": "tob-2023_shadow-antipaladin_scimitar", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13347,9 +13347,9 @@ "parent": "tob-2023_shadow-beast_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13370,9 +13370,9 @@ "parent": "tob-2023_shadow-beast_claw", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13393,9 +13393,9 @@ "parent": "tob-2023_shadow-fey_shortbow", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 80.0, - "long_range_ft": 320.0, + "reach": null, + "range": 80.0, + "long_range": 320.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13416,9 +13416,9 @@ "parent": "tob-2023_shadow-fey_shortsword", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13439,9 +13439,9 @@ "parent": "tob-2023_sharkjaw-skeleton_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -13462,9 +13462,9 @@ "parent": "tob-2023_shellycoat_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13485,9 +13485,9 @@ "parent": "tob-2023_shellycoat_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -13508,9 +13508,9 @@ "parent": "tob-2023_shoggoth_slam", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -13531,9 +13531,9 @@ "parent": "tob-2023_shroud_strength-drain", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13554,9 +13554,9 @@ "parent": "tob-2023_skein-witch_inexorable-thread", "attack_type": "SPELL", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": 60.0, - "long_range_ft": null, + "reach": 5.0, + "range": 60.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, @@ -13577,9 +13577,9 @@ "parent": "tob-2023_skin-bat_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13600,9 +13600,9 @@ "parent": "tob-2023_skitterhaunt_mandibles", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13623,9 +13623,9 @@ "parent": "tob-2023_skitterhaunt_sting", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13646,9 +13646,9 @@ "parent": "tob-2023_slow-storm_lightning-bolt", "attack_type": "SPELL", "to_hit_mod": 9, - "reach_ft": null, - "range_ft": 120.0, - "long_range_ft": null, + "reach": null, + "range": 120.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -13669,9 +13669,9 @@ "parent": "tob-2023_slow-storm_slam", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -13692,9 +13692,9 @@ "parent": "tob-2023_smaragdine-golem_slam", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -13715,9 +13715,9 @@ "parent": "tob-2023_snow-queen_claw", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -13738,9 +13738,9 @@ "parent": "tob-2023_snow-queen_ice-bolt", "attack_type": "SPELL", "to_hit_mod": 10, - "reach_ft": null, - "range_ft": 120.0, - "long_range_ft": null, + "reach": null, + "range": 120.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -13761,9 +13761,9 @@ "parent": "tob-2023_son-of-fenris_bite", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -13784,9 +13784,9 @@ "parent": "tob-2023_son-of-fenris_divine-bolt", "attack_type": "SPELL", "to_hit_mod": 8, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": null, + "reach": null, + "range": 60.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -13807,9 +13807,9 @@ "parent": "tob-2023_son-of-fenris_slam", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13830,9 +13830,9 @@ "parent": "tob-2023_soul-eater_claw", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -13853,9 +13853,9 @@ "parent": "tob-2023_spark_electric-touch", "attack_type": "SPELL", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -13876,9 +13876,9 @@ "parent": "tob-2023_spawn-of-akyishigal_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13899,9 +13899,9 @@ "parent": "tob-2023_spawn-of-akyishigal_sting", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -13922,9 +13922,9 @@ "parent": "tob-2023_spawn-of-arbeyach_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -13945,9 +13945,9 @@ "parent": "tob-2023_spawn-of-arbeyach_stinger", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13968,9 +13968,9 @@ "parent": "tob-2023_spectral-guardian_spectral-blade", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -13991,9 +13991,9 @@ "parent": "tob-2023_spectral-guardian_spectral-burst", "attack_type": "SPELL", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": 120.0, - "long_range_ft": null, + "reach": 5.0, + "range": 120.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -14014,9 +14014,9 @@ "parent": "tob-2023_spider-of-leng_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -14037,9 +14037,9 @@ "parent": "tob-2023_spider-of-leng_spit-venom", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": null, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": null, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -14060,9 +14060,9 @@ "parent": "tob-2023_spider-of-leng_staff-of-leng", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -14083,9 +14083,9 @@ "parent": "tob-2023_spider-thief_hooked-wire", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": 15.0, - "long_range_ft": 30.0, + "reach": 5.0, + "range": 15.0, + "long_range": 30.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -14106,9 +14106,9 @@ "parent": "tob-2023_spider-thief_sickle-claw", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -14129,9 +14129,9 @@ "parent": "tob-2023_spinosaurus_bite", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -14152,9 +14152,9 @@ "parent": "tob-2023_spinosaurus_claw", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -14175,9 +14175,9 @@ "parent": "tob-2023_spinosaurus_tail", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 20.0, - "range_ft": null, - "long_range_ft": null, + "reach": 20.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -14198,9 +14198,9 @@ "parent": "tob-2023_spire-walker_lightning-burst", "attack_type": "SPELL", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": 60.0, - "long_range_ft": null, + "reach": 5.0, + "range": 60.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -14221,9 +14221,9 @@ "parent": "tob-2023_star-drake_bite", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -14244,9 +14244,9 @@ "parent": "tob-2023_star-drake_claw", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -14267,9 +14267,9 @@ "parent": "tob-2023_star-drake_searing-star", "attack_type": "SPELL", "to_hit_mod": 12, - "reach_ft": null, - "range_ft": 120.0, - "long_range_ft": null, + "reach": null, + "range": 120.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -14290,9 +14290,9 @@ "parent": "tob-2023_star-spawn-of-cthulhu_crushing-claws", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -14313,9 +14313,9 @@ "parent": "tob-2023_star-spawn-of-cthulhu_dimensional-stomp", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -14336,9 +14336,9 @@ "parent": "tob-2023_star-spawn-of-cthulhu_void-bolt", "attack_type": "SPELL", "to_hit_mod": 15, - "reach_ft": null, - "range_ft": 120.0, - "long_range_ft": null, + "reach": null, + "range": 120.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, @@ -14359,9 +14359,9 @@ "parent": "tob-2023_steam-golem_axe-arm", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -14382,9 +14382,9 @@ "parent": "tob-2023_steam-golem_long-axe", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -14405,9 +14405,9 @@ "parent": "tob-2023_strife_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -14428,9 +14428,9 @@ "parent": "tob-2023_stryx_talons", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -14451,9 +14451,9 @@ "parent": "tob-2023_stuhac_bite", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -14474,9 +14474,9 @@ "parent": "tob-2023_stuhac_claw", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, @@ -14497,9 +14497,9 @@ "parent": "tob-2023_stygian-fat-tailed-scorpion_claw", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -14520,9 +14520,9 @@ "parent": "tob-2023_stygian-fat-tailed-scorpion_sting", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -14543,9 +14543,9 @@ "parent": "tob-2023_subek_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -14566,9 +14566,9 @@ "parent": "tob-2023_subek_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -14589,9 +14589,9 @@ "parent": "tob-2023_suturefly_sew", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -14612,9 +14612,9 @@ "parent": "tob-2023_swamp-adder_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": null, @@ -14635,9 +14635,9 @@ "parent": "tob-2023_swarm-of-fire-dancers_singe", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 0.0, - "range_ft": null, - "long_range_ft": null, + "reach": 0.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -14658,9 +14658,9 @@ "parent": "tob-2023_swarm-of-manabane-scarabs_bites", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 0.0, - "range_ft": null, - "long_range_ft": null, + "reach": 0.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 8, @@ -14681,9 +14681,9 @@ "parent": "tob-2023_swarm-of-prismatic-beetles_bites", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 0.0, - "range_ft": null, - "long_range_ft": null, + "reach": 0.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -14704,9 +14704,9 @@ "parent": "tob-2023_swarm-of-sluaghs_chilling-touch", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 0.0, - "range_ft": null, - "long_range_ft": null, + "reach": 0.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 8, @@ -14727,9 +14727,9 @@ "parent": "tob-2023_swarm-of-wharflings_pilfering-bites", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 0.0, - "range_ft": null, - "long_range_ft": null, + "reach": 0.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 8, @@ -14750,9 +14750,9 @@ "parent": "tob-2023_swarm-of-wolf-spirits_spectral-bites", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 0.0, - "range_ft": null, - "long_range_ft": null, + "reach": 0.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -14773,9 +14773,9 @@ "parent": "tob-2023_temple-dog_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -14796,9 +14796,9 @@ "parent": "tob-2023_tendril-puppet_ball-of-thorns", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": null, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -14819,9 +14819,9 @@ "parent": "tob-2023_tendril-puppet_thorned-slam", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -14842,9 +14842,9 @@ "parent": "tob-2023_thuellai_icy-claw", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -14865,9 +14865,9 @@ "parent": "tob-2023_thursir_rock", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": 240.0, + "reach": null, + "range": 60.0, + "long_range": 240.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -14888,9 +14888,9 @@ "parent": "tob-2023_thursir_warhammer", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -14911,9 +14911,9 @@ "parent": "tob-2023_titanoboa_bite", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, @@ -14934,9 +14934,9 @@ "parent": "tob-2023_titanoboa_constrict", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -14957,9 +14957,9 @@ "parent": "tob-2023_tophet_slam", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -14980,9 +14980,9 @@ "parent": "tob-2023_tosculi-drone_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -15003,9 +15003,9 @@ "parent": "tob-2023_tosculi-elite-bow-raider_claw", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -15026,9 +15026,9 @@ "parent": "tob-2023_tosculi-elite-bow-raider_longbow", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": null, - "range_ft": 150.0, - "long_range_ft": 600.0, + "reach": null, + "range": 150.0, + "long_range": 600.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -15049,9 +15049,9 @@ "parent": "tob-2023_tosculi-hive-queen_scimitar", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -15072,9 +15072,9 @@ "parent": "tob-2023_tosculi-hive-queen_stinger", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, @@ -15095,9 +15095,9 @@ "parent": "tob-2023_tosculi-warrior_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -15118,9 +15118,9 @@ "parent": "tob-2023_tosculi-warrior_stinger", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -15141,9 +15141,9 @@ "parent": "tob-2023_trapsmith_dagger", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -15164,9 +15164,9 @@ "parent": "tob-2023_trapsmith_spare-part", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": null, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -15187,9 +15187,9 @@ "parent": "tob-2023_treacle_blood-drain", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": null, @@ -15210,9 +15210,9 @@ "parent": "tob-2023_trollkin-reaver_battleaxe", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -15233,9 +15233,9 @@ "parent": "tob-2023_trollkin-reaver_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -15256,9 +15256,9 @@ "parent": "tob-2023_trollkin-reaver_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -15279,9 +15279,9 @@ "parent": "tob-2023_trollkin-reaver_handaxe", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -15302,9 +15302,9 @@ "parent": "tob-2023_tusked-skyfish_electrified-tentacles", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -15325,9 +15325,9 @@ "parent": "tob-2023_tusked-skyfish_gore", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -15348,9 +15348,9 @@ "parent": "tob-2023_umbral-vampire_shadow-touch", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -15371,9 +15371,9 @@ "parent": "tob-2023_uraeus_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -15394,9 +15394,9 @@ "parent": "tob-2023_uraeus_spit-fire", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": null, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -15417,9 +15417,9 @@ "parent": "tob-2023_urochar_tentacle", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 20.0, - "range_ft": null, - "long_range_ft": null, + "reach": 20.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -15440,9 +15440,9 @@ "parent": "tob-2023_ushabti-royal-guard_khopesh", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -15463,9 +15463,9 @@ "parent": "tob-2023_ushabti-royal-guard_medjais-scepter", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -15486,9 +15486,9 @@ "parent": "tob-2023_ushabti_nabboot", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -15509,9 +15509,9 @@ "parent": "tob-2023_valkyrie_longsword", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -15532,9 +15532,9 @@ "parent": "tob-2023_valkyrie_radiant-bolt", "attack_type": "SPELL", "to_hit_mod": 8, - "reach_ft": null, - "range_ft": 120.0, - "long_range_ft": null, + "reach": null, + "range": 120.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -15555,9 +15555,9 @@ "parent": "tob-2023_valkyrie_spear", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -15578,9 +15578,9 @@ "parent": "tob-2023_vapor-lynx_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -15601,9 +15601,9 @@ "parent": "tob-2023_vapor-lynx_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -15624,9 +15624,9 @@ "parent": "tob-2023_venomous-mummy_venomous-fist", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -15647,9 +15647,9 @@ "parent": "tob-2023_vesiculosa_root", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -15670,9 +15670,9 @@ "parent": "tob-2023_vesiculosa_spit-sweet-water", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": null, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": null, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -15693,9 +15693,9 @@ "parent": "tob-2023_vila_shortbow", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": null, - "range_ft": 80.0, - "long_range_ft": 320.0, + "reach": null, + "range": 80.0, + "long_range": 320.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -15716,9 +15716,9 @@ "parent": "tob-2023_vila_shortsword", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -15739,9 +15739,9 @@ "parent": "tob-2023_vile-barber_straight-razor", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -15762,9 +15762,9 @@ "parent": "tob-2023_vine-lord_tendril", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -15785,9 +15785,9 @@ "parent": "tob-2023_vine-lord_thorned-slam", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -15808,9 +15808,9 @@ "parent": "tob-2023_vine-troll-skeleton_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -15831,9 +15831,9 @@ "parent": "tob-2023_vine-troll-skeleton_claw", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -15854,9 +15854,9 @@ "parent": "tob-2023_vine-troll-skeleton_poisoned-thorn", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": null, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -15877,9 +15877,9 @@ "parent": "tob-2023_void-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -15900,9 +15900,9 @@ "parent": "tob-2023_voidling_necrotic-bolt", "attack_type": "SPELL", "to_hit_mod": 7, - "reach_ft": null, - "range_ft": 120.0, - "long_range_ft": null, + "reach": null, + "range": 120.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -15923,9 +15923,9 @@ "parent": "tob-2023_voidling_shadow-tendril", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -15946,9 +15946,9 @@ "parent": "tob-2023_volguloth_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -15969,9 +15969,9 @@ "parent": "tob-2023_vttir_necrotic-bolt", "attack_type": "SPELL", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 120.0, - "long_range_ft": null, + "reach": null, + "range": 120.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -15992,9 +15992,9 @@ "parent": "tob-2023_vttir_vttirs-greataxe", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -16015,9 +16015,9 @@ "parent": "tob-2023_wampus-cat_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -16038,9 +16038,9 @@ "parent": "tob-2023_war-ostrich_beak", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -16061,9 +16061,9 @@ "parent": "tob-2023_war-ostrich_claw", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -16084,9 +16084,9 @@ "parent": "tob-2023_water-leaper_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -16107,9 +16107,9 @@ "parent": "tob-2023_water-leaper_stinger", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -16130,9 +16130,9 @@ "parent": "tob-2023_weeping-treant_rock", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": 180.0, + "reach": null, + "range": 60.0, + "long_range": 180.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -16153,9 +16153,9 @@ "parent": "tob-2023_weeping-treant_slam", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -16176,9 +16176,9 @@ "parent": "tob-2023_wharfling_pilfering-bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -16199,9 +16199,9 @@ "parent": "tob-2023_white-ape_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -16222,9 +16222,9 @@ "parent": "tob-2023_white-ape_fist", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -16245,9 +16245,9 @@ "parent": "tob-2023_wind-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -16268,9 +16268,9 @@ "parent": "tob-2023_witchlight_light-blast", "attack_type": "SPELL", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 30.0, - "long_range_ft": null, + "reach": null, + "range": 30.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -16291,9 +16291,9 @@ "parent": "tob-2023_wolf-reaver-dwarf_battleaxe", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -16314,9 +16314,9 @@ "parent": "tob-2023_wolf-reaver-dwarf_handaxe", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -16337,9 +16337,9 @@ "parent": "tob-2023_wolf-reaver-dwarf_spear", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -16360,9 +16360,9 @@ "parent": "tob-2023_wormhearted-suffragan_paralyzing-bolt", "attack_type": "SPELL", "to_hit_mod": 6, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": null, + "reach": null, + "range": 60.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -16383,9 +16383,9 @@ "parent": "tob-2023_wormhearted-suffragan_worm-coated-fist", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -16406,9 +16406,9 @@ "parent": "tob-2023_xanka_dismantling-leg", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -16429,9 +16429,9 @@ "parent": "tob-2023_xhkarsh_claw", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -16452,9 +16452,9 @@ "parent": "tob-2023_xhkarsh_fate-altering-stinger", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -16475,9 +16475,9 @@ "parent": "tob-2023_ychen-bannog_gore", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -16498,9 +16498,9 @@ "parent": "tob-2023_ychen-bannog_stomp", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -16521,9 +16521,9 @@ "parent": "tob-2023_young-cave-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -16544,9 +16544,9 @@ "parent": "tob-2023_young-cave-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -16567,9 +16567,9 @@ "parent": "tob-2023_young-flame-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -16590,9 +16590,9 @@ "parent": "tob-2023_young-flame-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -16613,9 +16613,9 @@ "parent": "tob-2023_young-mithral-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -16636,9 +16636,9 @@ "parent": "tob-2023_young-mithral-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -16659,9 +16659,9 @@ "parent": "tob-2023_young-sea-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -16682,9 +16682,9 @@ "parent": "tob-2023_young-sea-dragon_fin", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -16705,9 +16705,9 @@ "parent": "tob-2023_young-spinosaurus_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -16728,9 +16728,9 @@ "parent": "tob-2023_young-spinosaurus_claw", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -16751,9 +16751,9 @@ "parent": "tob-2023_young-void-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -16774,9 +16774,9 @@ "parent": "tob-2023_young-void-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -16797,9 +16797,9 @@ "parent": "tob-2023_young-wind-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -16820,9 +16820,9 @@ "parent": "tob-2023_young-wind-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -16843,9 +16843,9 @@ "parent": "tob-2023_zanskaran-viper_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -16866,9 +16866,9 @@ "parent": "tob-2023_zimwi_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -16889,9 +16889,9 @@ "parent": "tob-2023_zimwi_claws", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -16912,9 +16912,9 @@ "parent": "tob-2023_zmey-headling_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -16935,9 +16935,9 @@ "parent": "tob-2023_zmey-headling_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -16958,9 +16958,9 @@ "parent": "tob-2023_zmey_bite", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -16981,9 +16981,9 @@ "parent": "tob-2023_zmey_claw", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, diff --git a/data/v2/kobold-press/tob/CreatureActionAttack.json b/data/v2/kobold-press/tob/CreatureActionAttack.json index 22461e95..9b9f378e 100644 --- a/data/v2/kobold-press/tob/CreatureActionAttack.json +++ b/data/v2/kobold-press/tob/CreatureActionAttack.json @@ -7,9 +7,9 @@ "parent": "tob_aboleth-nihilith_tail", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -30,9 +30,9 @@ "parent": "tob_aboleth-nihilith_tentacle", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -53,9 +53,9 @@ "parent": "tob_aboleth-nihilith_withering-touch", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -76,9 +76,9 @@ "parent": "tob_accursed-defiler_slam", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -99,9 +99,9 @@ "parent": "tob_adult-cave-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -122,9 +122,9 @@ "parent": "tob_adult-cave-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -145,9 +145,9 @@ "parent": "tob_adult-cave-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -168,9 +168,9 @@ "parent": "tob_adult-flame-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -191,9 +191,9 @@ "parent": "tob_adult-flame-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -214,9 +214,9 @@ "parent": "tob_adult-flame-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -237,9 +237,9 @@ "parent": "tob_adult-mithral-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -260,9 +260,9 @@ "parent": "tob_adult-mithral-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -283,9 +283,9 @@ "parent": "tob_adult-mithral-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -306,9 +306,9 @@ "parent": "tob_adult-rime-worm_devour", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -329,9 +329,9 @@ "parent": "tob_adult-rime-worm_tendril", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -352,9 +352,9 @@ "parent": "tob_adult-sea-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -375,9 +375,9 @@ "parent": "tob_adult-sea-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -398,9 +398,9 @@ "parent": "tob_adult-sea-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -421,9 +421,9 @@ "parent": "tob_adult-void-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -444,9 +444,9 @@ "parent": "tob_adult-void-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -467,9 +467,9 @@ "parent": "tob_adult-void-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -490,9 +490,9 @@ "parent": "tob_adult-wind-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -513,9 +513,9 @@ "parent": "tob_adult-wind-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -536,9 +536,9 @@ "parent": "tob_adult-wind-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -559,9 +559,9 @@ "parent": "tob_al-aeshma-genie_scimitar", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -582,9 +582,9 @@ "parent": "tob_ala_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -605,9 +605,9 @@ "parent": "tob_ala_claw", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -628,9 +628,9 @@ "parent": "tob_alehouse-drake_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -651,9 +651,9 @@ "parent": "tob_alehouse-drake_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -674,9 +674,9 @@ "parent": "tob_algorith_logic-razor", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -697,9 +697,9 @@ "parent": "tob_alseid-grovekeeper_quarterstaff", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -720,9 +720,9 @@ "parent": "tob_alseid-grovekeeper_shortbow", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 80.0, - "long_range_ft": 320.0, + "reach": null, + "range": 80.0, + "long_range": 320.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -743,9 +743,9 @@ "parent": "tob_alseid_shortbow", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 80.0, - "long_range_ft": 320.0, + "reach": null, + "range": 80.0, + "long_range": 320.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -766,9 +766,9 @@ "parent": "tob_alseid_spear", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -789,9 +789,9 @@ "parent": "tob_amphiptere_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -812,9 +812,9 @@ "parent": "tob_amphiptere_stinger", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -835,9 +835,9 @@ "parent": "tob_ancient-flame-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -858,9 +858,9 @@ "parent": "tob_ancient-flame-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -881,9 +881,9 @@ "parent": "tob_ancient-flame-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 20.0, - "range_ft": null, - "long_range_ft": null, + "reach": 20.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -904,9 +904,9 @@ "parent": "tob_ancient-mithral-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -927,9 +927,9 @@ "parent": "tob_ancient-mithral-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -950,9 +950,9 @@ "parent": "tob_ancient-mithral-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 20.0, - "range_ft": null, - "long_range_ft": null, + "reach": 20.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -973,9 +973,9 @@ "parent": "tob_ancient-sea-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 16, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -996,9 +996,9 @@ "parent": "tob_ancient-sea-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 16, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1019,9 +1019,9 @@ "parent": "tob_ancient-sea-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 16, - "reach_ft": 20.0, - "range_ft": null, - "long_range_ft": null, + "reach": 20.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1042,9 +1042,9 @@ "parent": "tob_ancient-titan_greatsword", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 8, @@ -1065,9 +1065,9 @@ "parent": "tob_ancient-titan_longbow", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 150.0, - "long_range_ft": 640.0, + "reach": null, + "range": 150.0, + "long_range": 640.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -1088,9 +1088,9 @@ "parent": "tob_ancient-void-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 16, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1111,9 +1111,9 @@ "parent": "tob_ancient-void-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 16, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1134,9 +1134,9 @@ "parent": "tob_ancient-void-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 16, - "reach_ft": 20.0, - "range_ft": null, - "long_range_ft": null, + "reach": 20.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1157,9 +1157,9 @@ "parent": "tob_ancient-wind-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 16, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1180,9 +1180,9 @@ "parent": "tob_ancient-wind-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 16, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1203,9 +1203,9 @@ "parent": "tob_ancient-wind-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 16, - "reach_ft": 20.0, - "range_ft": null, - "long_range_ft": null, + "reach": 20.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1226,9 +1226,9 @@ "parent": "tob_andrenjinyi_bite", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 20.0, - "range_ft": null, - "long_range_ft": null, + "reach": 20.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -1249,9 +1249,9 @@ "parent": "tob_andrenjinyi_constrict", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -1272,9 +1272,9 @@ "parent": "tob_angatra_claw", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1295,9 +1295,9 @@ "parent": "tob_angler-worm_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1318,9 +1318,9 @@ "parent": "tob_angler-worm_coils", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -1341,9 +1341,9 @@ "parent": "tob_anubian_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -1364,9 +1364,9 @@ "parent": "tob_apau-perape_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1387,9 +1387,9 @@ "parent": "tob_apau-perape_claws", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1410,9 +1410,9 @@ "parent": "tob_arbeyach_bite", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1433,9 +1433,9 @@ "parent": "tob_arbeyach_claw", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -1456,9 +1456,9 @@ "parent": "tob_arboreal-grappler_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -1479,9 +1479,9 @@ "parent": "tob_arboreal-grappler_tentacle", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1502,9 +1502,9 @@ "parent": "tob_aridni_pixie-bow", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": null, - "range_ft": 40.0, - "long_range_ft": 160.0, + "reach": null, + "range": 40.0, + "long_range": 160.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -1525,9 +1525,9 @@ "parent": "tob_aridni_shortsword", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -1548,9 +1548,9 @@ "parent": "tob_asanbosam_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1571,9 +1571,9 @@ "parent": "tob_asanbosam_claws", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -1594,9 +1594,9 @@ "parent": "tob_ash-drake_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1617,9 +1617,9 @@ "parent": "tob_ash-drake_claw", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1640,9 +1640,9 @@ "parent": "tob_automata-devil_bite", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1663,9 +1663,9 @@ "parent": "tob_automata-devil_claw", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1686,9 +1686,9 @@ "parent": "tob_automata-devil_whip", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -1709,9 +1709,9 @@ "parent": "tob_azza-gremlin_lightning-jolt", "attack_type": "SPELL", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": 30.0, - "long_range_ft": null, + "reach": 5.0, + "range": 30.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -1732,9 +1732,9 @@ "parent": "tob_baba-yagas-horsemen-black-night_lance", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -1755,9 +1755,9 @@ "parent": "tob_baba-yagas-horsemen-black-night_longsword", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -1778,9 +1778,9 @@ "parent": "tob_baba-yagas-horsemen-bright-day_lance", "attack_type": "WEAPON", "to_hit_mod": 0, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -1801,9 +1801,9 @@ "parent": "tob_baba-yagas-horsemen-bright-day_longsword", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -1824,9 +1824,9 @@ "parent": "tob_baba-yagas-horsemen-red-sun_lance", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -1847,9 +1847,9 @@ "parent": "tob_baba-yagas-horsemen-red-sun_longsword", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -1870,9 +1870,9 @@ "parent": "tob_bagiennik_acid-spray", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": null, - "range_ft": 15.0, - "long_range_ft": null, + "reach": null, + "range": 15.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1893,9 +1893,9 @@ "parent": "tob_bagiennik_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -1916,9 +1916,9 @@ "parent": "tob_bandit-lord_dagger", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -1939,9 +1939,9 @@ "parent": "tob_bandit-lord_greatsword", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1962,9 +1962,9 @@ "parent": "tob_bastet-temple-cat_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -1985,9 +1985,9 @@ "parent": "tob_bastet-temple-cat_claws", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -2008,9 +2008,9 @@ "parent": "tob_bearfolk_battleaxe", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2031,9 +2031,9 @@ "parent": "tob_bearfolk_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -2054,9 +2054,9 @@ "parent": "tob_bearfolk_warhammer", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2077,9 +2077,9 @@ "parent": "tob_beggar-ghoul_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -2100,9 +2100,9 @@ "parent": "tob_beggar-ghoul_claws", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -2123,9 +2123,9 @@ "parent": "tob_behtu_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2146,9 +2146,9 @@ "parent": "tob_behtu_shortspear", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2169,9 +2169,9 @@ "parent": "tob_beli_ice-dagger", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2192,9 +2192,9 @@ "parent": "tob_beli_icy-shortbow", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 80.0, - "long_range_ft": 320.0, + "reach": null, + "range": 80.0, + "long_range": 320.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2215,9 +2215,9 @@ "parent": "tob_bereginyas_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2238,9 +2238,9 @@ "parent": "tob_berstuc_slam", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -2261,9 +2261,9 @@ "parent": "tob_black-knight-commander_lance", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2284,9 +2284,9 @@ "parent": "tob_black-knight-commander_mace", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2307,9 +2307,9 @@ "parent": "tob_blemmyes_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -2330,9 +2330,9 @@ "parent": "tob_blemmyes_rock", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": null, - "range_ft": 30.0, - "long_range_ft": 120.0, + "reach": null, + "range": 30.0, + "long_range": 120.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -2353,9 +2353,9 @@ "parent": "tob_blemmyes_slam", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -2376,9 +2376,9 @@ "parent": "tob_blood-hag_blood-drinking-hair", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -2399,9 +2399,9 @@ "parent": "tob_blood-hag_claws", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -2422,9 +2422,9 @@ "parent": "tob_boloti_dagger", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2445,9 +2445,9 @@ "parent": "tob_bone-collective_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -2468,9 +2468,9 @@ "parent": "tob_bone-collective_claw", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -2491,9 +2491,9 @@ "parent": "tob_bone-collective_swarm", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 0.0, - "range_ft": null, - "long_range_ft": null, + "reach": 0.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 8, @@ -2514,9 +2514,9 @@ "parent": "tob_bone-crab_claw", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -2537,9 +2537,9 @@ "parent": "tob_bone-swarm_swirling-bones", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 0.0, - "range_ft": null, - "long_range_ft": null, + "reach": 0.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, @@ -2560,9 +2560,9 @@ "parent": "tob_bonepowder-ghoul_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -2583,9 +2583,9 @@ "parent": "tob_bouda_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -2606,9 +2606,9 @@ "parent": "tob_bouda_mephitic-claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -2629,9 +2629,9 @@ "parent": "tob_broodiken_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2652,9 +2652,9 @@ "parent": "tob_bukavac_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -2675,9 +2675,9 @@ "parent": "tob_bukavac_claw", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2698,9 +2698,9 @@ "parent": "tob_bukavac_gore", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -2721,9 +2721,9 @@ "parent": "tob_buraq_hooves", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -2744,9 +2744,9 @@ "parent": "tob_burrowling_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2767,9 +2767,9 @@ "parent": "tob_burrowling_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2790,9 +2790,9 @@ "parent": "tob_burrowling_sling", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 30.0, - "long_range_ft": 120.0, + "reach": null, + "range": 30.0, + "long_range": 120.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2813,9 +2813,9 @@ "parent": "tob_cactid_tendril", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -2836,9 +2836,9 @@ "parent": "tob_cambium_needle-fingers", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -2859,9 +2859,9 @@ "parent": "tob_carrion-beetle_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2882,9 +2882,9 @@ "parent": "tob_carrion-beetle_claws", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2905,9 +2905,9 @@ "parent": "tob_cave-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -2928,9 +2928,9 @@ "parent": "tob_cavelight-moss_tendrils", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -2951,9 +2951,9 @@ "parent": "tob_chelicerae_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -2974,9 +2974,9 @@ "parent": "tob_chelicerae_claw", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -2997,9 +2997,9 @@ "parent": "tob_chernomoi_scimitar", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3020,9 +3020,9 @@ "parent": "tob_child-of-the-briar_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3043,9 +3043,9 @@ "parent": "tob_child-of-the-briar_spitdart-tongue", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": null, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3066,9 +3066,9 @@ "parent": "tob_chort-devil_claw", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -3089,9 +3089,9 @@ "parent": "tob_chort-devil_flaming-ranseur", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3112,9 +3112,9 @@ "parent": "tob_chronalmental_slam", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -3135,9 +3135,9 @@ "parent": "tob_cikavak_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 5.0, - "long_range_ft": null, + "reach": null, + "range": 5.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3158,9 +3158,9 @@ "parent": "tob_city-watch-captain_dagger", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3181,9 +3181,9 @@ "parent": "tob_city-watch-captain_light-crossbow", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 80.0, - "long_range_ft": 320.0, + "reach": null, + "range": 80.0, + "long_range": 320.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3204,9 +3204,9 @@ "parent": "tob_city-watch-captain_rapier", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3227,9 +3227,9 @@ "parent": "tob_clockwork-abomination_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -3250,9 +3250,9 @@ "parent": "tob_clockwork-abomination_slam", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -3273,9 +3273,9 @@ "parent": "tob_clockwork-beetle-swarm_bites", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 0.0, - "range_ft": null, - "long_range_ft": null, + "reach": 0.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, @@ -3296,9 +3296,9 @@ "parent": "tob_clockwork-beetle_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3319,9 +3319,9 @@ "parent": "tob_clockwork-hound_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -3342,9 +3342,9 @@ "parent": "tob_clockwork-hound_tripping-tongue", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3365,9 +3365,9 @@ "parent": "tob_clockwork-huntsman_longsword", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3388,9 +3388,9 @@ "parent": "tob_clockwork-huntsman_net-cannon", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 5.0, - "long_range_ft": 15.0, + "reach": null, + "range": 5.0, + "long_range": 15.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 0, @@ -3411,9 +3411,9 @@ "parent": "tob_clockwork-huntsman_slam", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3434,9 +3434,9 @@ "parent": "tob_clockwork-myrmidon_heavy-pick", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -3457,9 +3457,9 @@ "parent": "tob_clockwork-myrmidon_slam", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3480,9 +3480,9 @@ "parent": "tob_clockwork-watchman_halberd", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3503,9 +3503,9 @@ "parent": "tob_clockwork-watchman_net-cannon", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": null, - "range_ft": 5.0, - "long_range_ft": 15.0, + "reach": null, + "range": 5.0, + "long_range": 15.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 0, @@ -3526,9 +3526,9 @@ "parent": "tob_clockwork-watchman_slam", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3549,9 +3549,9 @@ "parent": "tob_clurichaun_improvised-weapon", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3572,9 +3572,9 @@ "parent": "tob_clurichaun_unarmed-strike", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3595,9 +3595,9 @@ "parent": "tob_cobbleswarm_stings", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 0.0, - "range_ft": null, - "long_range_ft": null, + "reach": 0.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -3618,9 +3618,9 @@ "parent": "tob_coral-drake_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -3641,9 +3641,9 @@ "parent": "tob_coral-drake_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -3664,9 +3664,9 @@ "parent": "tob_coral-drake_stinger", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -3687,9 +3687,9 @@ "parent": "tob_corpse-mound_bone-shard", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": null, - "range_ft": 30.0, - "long_range_ft": 120.0, + "reach": null, + "range": 30.0, + "long_range": 120.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -3710,9 +3710,9 @@ "parent": "tob_corpse-mound_slam", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -3733,9 +3733,9 @@ "parent": "tob_corrupting-ooze_slam", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -3756,9 +3756,9 @@ "parent": "tob_crimson-drake_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3779,9 +3779,9 @@ "parent": "tob_crimson-drake_stinger", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3802,9 +3802,9 @@ "parent": "tob_crystalline-devil_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -3825,9 +3825,9 @@ "parent": "tob_dau_slam", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3848,9 +3848,9 @@ "parent": "tob_death-butterfly-swarm_bites", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 0.0, - "range_ft": null, - "long_range_ft": null, + "reach": 0.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, @@ -3871,9 +3871,9 @@ "parent": "tob_deathcap-myconid_fist", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -3894,9 +3894,9 @@ "parent": "tob_deathwisp_life-drain", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 7, @@ -3917,9 +3917,9 @@ "parent": "tob_deep-drake_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -3940,9 +3940,9 @@ "parent": "tob_deep-drake_claw", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -3963,9 +3963,9 @@ "parent": "tob_deep-drake_stinger", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -3986,9 +3986,9 @@ "parent": "tob_deep-one-archimandrite_unholy-trident", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -4009,9 +4009,9 @@ "parent": "tob_degenerate-titan_greatclub", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -4032,9 +4032,9 @@ "parent": "tob_degenerate-titan_rock", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": 240.0, + "reach": null, + "range": 60.0, + "long_range": 240.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -4055,9 +4055,9 @@ "parent": "tob_derro-shadow-antipaladin_heavy-crossbow", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": null, - "range_ft": 100.0, - "long_range_ft": 400.0, + "reach": null, + "range": 100.0, + "long_range": 400.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -4078,9 +4078,9 @@ "parent": "tob_derro-shadow-antipaladin_scimitar", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -4101,9 +4101,9 @@ "parent": "tob_desert-giant_falchion", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, @@ -4124,9 +4124,9 @@ "parent": "tob_desert-giant_rock", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": 240.0, + "reach": null, + "range": 60.0, + "long_range": 240.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -4147,9 +4147,9 @@ "parent": "tob_devilbound-gnomish-prince_dagger", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -4170,9 +4170,9 @@ "parent": "tob_dipsa_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 0.0, - "range_ft": null, - "long_range_ft": null, + "reach": 0.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -4193,9 +4193,9 @@ "parent": "tob_dissimortuum_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -4216,9 +4216,9 @@ "parent": "tob_dogmole-juggernaut_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -4239,9 +4239,9 @@ "parent": "tob_dogmole-juggernaut_claw", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -4262,9 +4262,9 @@ "parent": "tob_dogmole_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -4285,9 +4285,9 @@ "parent": "tob_dogmole_claw", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -4308,9 +4308,9 @@ "parent": "tob_domovoi_slam", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -4331,9 +4331,9 @@ "parent": "tob_doppelrat_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -4354,9 +4354,9 @@ "parent": "tob_dorreq_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -4377,9 +4377,9 @@ "parent": "tob_dorreq_tentacle", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -4400,9 +4400,9 @@ "parent": "tob_dragon-eel_bite", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -4423,9 +4423,9 @@ "parent": "tob_dragon-eel_tail-slap", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, @@ -4446,9 +4446,9 @@ "parent": "tob_dragonleaf-tree_leaves", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": null, - "range_ft": 30.0, - "long_range_ft": 60.0, + "reach": null, + "range": 30.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 10, @@ -4469,9 +4469,9 @@ "parent": "tob_dragonleaf-tree_slam", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 10, @@ -4492,9 +4492,9 @@ "parent": "tob_drakon_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -4515,9 +4515,9 @@ "parent": "tob_drakon_tail", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -4538,9 +4538,9 @@ "parent": "tob_dream-eater_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -4561,9 +4561,9 @@ "parent": "tob_dream-eater_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -4584,9 +4584,9 @@ "parent": "tob_drowned-maiden_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -4607,9 +4607,9 @@ "parent": "tob_drowned-maiden_hair", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 20.0, - "range_ft": null, - "long_range_ft": null, + "reach": 20.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -4630,9 +4630,9 @@ "parent": "tob_dullahan_spine-whip", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -4653,9 +4653,9 @@ "parent": "tob_dune-mimic_pseudopod", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -4676,9 +4676,9 @@ "parent": "tob_duskthorn-dryad_dagger", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -4699,9 +4699,9 @@ "parent": "tob_duskthorn-dryad_longbow", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": null, - "range_ft": 150.0, - "long_range_ft": 600.0, + "reach": null, + "range": 150.0, + "long_range": 600.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -4722,9 +4722,9 @@ "parent": "tob_dust-goblin_light-crossbow", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 80.0, - "long_range_ft": 320.0, + "reach": null, + "range": 80.0, + "long_range": 320.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -4745,9 +4745,9 @@ "parent": "tob_dust-goblin_shortsword", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -4768,9 +4768,9 @@ "parent": "tob_dwarven-ringmage_ring-staff", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -4791,9 +4791,9 @@ "parent": "tob_eala_wing-blades", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -4814,9 +4814,9 @@ "parent": "tob_eater-of-dust-yakat-shi_mawblade", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": null, - "range_ft": null, - "long_range_ft": null, + "reach": null, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -4837,9 +4837,9 @@ "parent": "tob_edimmu_water-siphon", "attack_type": "SPELL", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, @@ -4860,9 +4860,9 @@ "parent": "tob_eel-hound_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -4883,9 +4883,9 @@ "parent": "tob_einherjar_asgardian-battleaxe", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -4906,9 +4906,9 @@ "parent": "tob_einherjar_handaxe", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -4929,9 +4929,9 @@ "parent": "tob_elder-shadow-drake_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -4952,9 +4952,9 @@ "parent": "tob_elder-shadow-drake_tail-slap", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -4975,9 +4975,9 @@ "parent": "tob_eleinomae_dagger", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -4998,9 +4998,9 @@ "parent": "tob_eleinomae_reed-flower-net", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": null, - "range_ft": 5.0, - "long_range_ft": 15.0, + "reach": null, + "range": 5.0, + "long_range": 15.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 0, @@ -5021,9 +5021,9 @@ "parent": "tob_elemental-locus_slam", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, @@ -5044,9 +5044,9 @@ "parent": "tob_elvish-veteran-archer_longbow", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": null, - "range_ft": 150.0, - "long_range_ft": 600.0, + "reach": null, + "range": 150.0, + "long_range": 600.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5067,9 +5067,9 @@ "parent": "tob_elvish-veteran-archer_shortsword", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5090,9 +5090,9 @@ "parent": "tob_emerald-eye_slash", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, @@ -5113,9 +5113,9 @@ "parent": "tob_emerald-order-cult-leader_mace", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5136,9 +5136,9 @@ "parent": "tob_empty-cloak_razor-cloak", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5159,9 +5159,9 @@ "parent": "tob_empty-cloak_shadow-slam", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5182,9 +5182,9 @@ "parent": "tob_eonic-drifter_time-warping-staff", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5205,9 +5205,9 @@ "parent": "tob_erina-defender_shortbow", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 80.0, - "long_range_ft": 320.0, + "reach": null, + "range": 80.0, + "long_range": 320.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5228,9 +5228,9 @@ "parent": "tob_erina-defender_shortsword", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5251,9 +5251,9 @@ "parent": "tob_erina-scrounger_dagger", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5274,9 +5274,9 @@ "parent": "tob_erina-scrounger_sling", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": null, - "range_ft": 30.0, - "long_range_ft": 120.0, + "reach": null, + "range": 30.0, + "long_range": 120.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5297,9 +5297,9 @@ "parent": "tob_eye-golem_slam", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -5320,9 +5320,9 @@ "parent": "tob_far-darrig_antler-glaive", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5343,9 +5343,9 @@ "parent": "tob_fate-eater_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, @@ -5366,9 +5366,9 @@ "parent": "tob_fear-smith_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -5389,9 +5389,9 @@ "parent": "tob_fellforged_necrotic-slam", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -5412,9 +5412,9 @@ "parent": "tob_fext_eldritch-blade", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -5435,9 +5435,9 @@ "parent": "tob_fext_eldritch-fury", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": 200.0, + "reach": null, + "range": 60.0, + "long_range": 200.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -5458,9 +5458,9 @@ "parent": "tob_feyward-tree_razor-leafed-branch", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -5481,9 +5481,9 @@ "parent": "tob_fidele-angel_1-longbow", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": null, - "range_ft": 150.0, - "long_range_ft": 600.0, + "reach": null, + "range": 150.0, + "long_range": 600.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5504,9 +5504,9 @@ "parent": "tob_fidele-angel_1-longsword", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5527,9 +5527,9 @@ "parent": "tob_fidele-angel_beak", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5550,9 +5550,9 @@ "parent": "tob_fidele-angel_talons", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -5573,9 +5573,9 @@ "parent": "tob_fire-dancer-swarm_swarm", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 0.0, - "range_ft": null, - "long_range_ft": null, + "reach": 0.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, @@ -5596,9 +5596,9 @@ "parent": "tob_firebird_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5619,9 +5619,9 @@ "parent": "tob_firebird_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -5642,9 +5642,9 @@ "parent": "tob_firegeist_slam", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5665,9 +5665,9 @@ "parent": "tob_flab-giant_slam", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -5688,9 +5688,9 @@ "parent": "tob_flame-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5711,9 +5711,9 @@ "parent": "tob_flutterflesh_bone-spur", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -5734,9 +5734,9 @@ "parent": "tob_flutterflesh_slash", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -5757,9 +5757,9 @@ "parent": "tob_folk-of-leng_etheric-harpoon", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": null, - "range_ft": 30.0, - "long_range_ft": null, + "reach": null, + "range": 30.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5780,9 +5780,9 @@ "parent": "tob_folk-of-leng_psychic-scimitar", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5803,9 +5803,9 @@ "parent": "tob_forest-marauder_boar-spear", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -5826,9 +5826,9 @@ "parent": "tob_forest-marauder_rock", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 30.0, - "long_range_ft": 120.0, + "reach": null, + "range": 30.0, + "long_range": 120.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -5849,9 +5849,9 @@ "parent": "tob_fraughashar_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5872,9 +5872,9 @@ "parent": "tob_fraughashar_dagger", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5895,9 +5895,9 @@ "parent": "tob_fraughashar_sling", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 30.0, - "long_range_ft": 120.0, + "reach": null, + "range": 30.0, + "long_range": 120.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5918,9 +5918,9 @@ "parent": "tob_frostveil_tendril", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -5941,9 +5941,9 @@ "parent": "tob_garroter-crab_whip-claw", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5964,9 +5964,9 @@ "parent": "tob_gbahali-postosuchus_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -5987,9 +5987,9 @@ "parent": "tob_gbahali-postosuchus_claw", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -6010,9 +6010,9 @@ "parent": "tob_gearforged-templar_glaive", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6033,9 +6033,9 @@ "parent": "tob_gearforged-templar_javelin", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": null, - "range_ft": 30.0, - "long_range_ft": 120.0, + "reach": null, + "range": 30.0, + "long_range": 120.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6056,9 +6056,9 @@ "parent": "tob_gerridae_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6079,9 +6079,9 @@ "parent": "tob_gerridae_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6102,9 +6102,9 @@ "parent": "tob_ghost-knight_battleaxe", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6125,9 +6125,9 @@ "parent": "tob_ghost-knight_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -6148,9 +6148,9 @@ "parent": "tob_ghost-knight_claws", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -6171,9 +6171,9 @@ "parent": "tob_ghost-knight_lance", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6194,9 +6194,9 @@ "parent": "tob_ghostwalk-spider_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -6217,9 +6217,9 @@ "parent": "tob_ghoul-darakhul_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -6240,9 +6240,9 @@ "parent": "tob_ghoul-darakhul_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -6263,9 +6263,9 @@ "parent": "tob_ghoul-darakhul_war-pick", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6286,9 +6286,9 @@ "parent": "tob_ghoul-imperial_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -6309,9 +6309,9 @@ "parent": "tob_ghoul-imperial_claws", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": null, - "long_range_ft": null, + "reach": null, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -6332,9 +6332,9 @@ "parent": "tob_ghoul-imperial_light-crossbow", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 80.0, - "long_range_ft": null, + "reach": null, + "range": 80.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6355,9 +6355,9 @@ "parent": "tob_ghoul-iron_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -6378,9 +6378,9 @@ "parent": "tob_ghoul-iron_claws", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -6401,9 +6401,9 @@ "parent": "tob_ghoul-iron_glaive", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6424,9 +6424,9 @@ "parent": "tob_ghoul-iron_heavy-bone-crossbow", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": null, - "range_ft": 100.0, - "long_range_ft": null, + "reach": null, + "range": 100.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6447,9 +6447,9 @@ "parent": "tob_giant-ant-queen_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6470,9 +6470,9 @@ "parent": "tob_giant-ant-queen_sting", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6493,9 +6493,9 @@ "parent": "tob_giant-ant_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6516,9 +6516,9 @@ "parent": "tob_giant-ant_sting", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6539,9 +6539,9 @@ "parent": "tob_gilded-devil_heavy-flail-scourge-of-avarice", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6562,9 +6562,9 @@ "parent": "tob_glass-gator_claws", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -6585,9 +6585,9 @@ "parent": "tob_gnarljak_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -6608,9 +6608,9 @@ "parent": "tob_gnoll-havoc-runner_battleaxe", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6631,9 +6631,9 @@ "parent": "tob_gnoll-havoc-runner_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6654,9 +6654,9 @@ "parent": "tob_goat-man_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6677,9 +6677,9 @@ "parent": "tob_goat-man_slam", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -6700,9 +6700,9 @@ "parent": "tob_gray-thirster_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6723,9 +6723,9 @@ "parent": "tob_gray-thirster_withering-turban", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6746,9 +6746,9 @@ "parent": "tob_greater-death-butterfly-swarm_bites", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 0.0, - "range_ft": null, - "long_range_ft": null, + "reach": 0.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, @@ -6769,9 +6769,9 @@ "parent": "tob_gug_slam", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -6792,9 +6792,9 @@ "parent": "tob_gypsosphinx_bite", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -6815,9 +6815,9 @@ "parent": "tob_gypsosphinx_claws", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, @@ -6838,9 +6838,9 @@ "parent": "tob_haugbui_psychic-claw", "attack_type": "SPELL", "to_hit_mod": 10, - "reach_ft": null, - "range_ft": 40.0, - "long_range_ft": null, + "reach": null, + "range": 40.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, @@ -6861,9 +6861,9 @@ "parent": "tob_herald-of-blood_engulfing-protoplasm", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -6884,9 +6884,9 @@ "parent": "tob_herald-of-darkness_shadow-sword", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -6907,9 +6907,9 @@ "parent": "tob_hoard-golem_slam", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, @@ -6930,9 +6930,9 @@ "parent": "tob_horakh_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -6953,9 +6953,9 @@ "parent": "tob_horakh_claw", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -6976,9 +6976,9 @@ "parent": "tob_hound-of-the-night_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -6999,9 +6999,9 @@ "parent": "tob_hraesvelgr-the-corpse-swallower_beak", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -7022,9 +7022,9 @@ "parent": "tob_hraesvelgr-the-corpse-swallower_fist", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -7045,9 +7045,9 @@ "parent": "tob_hraesvelgr-the-corpse-swallower_talons", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -7068,9 +7068,9 @@ "parent": "tob_hulking-whelp_slam", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -7091,9 +7091,9 @@ "parent": "tob_hundun_slam", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -7114,9 +7114,9 @@ "parent": "tob_iaaffrat_bites", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 0.0, - "range_ft": null, - "long_range_ft": null, + "reach": 0.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, @@ -7137,9 +7137,9 @@ "parent": "tob_ice-maiden_ice-dagger", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -7160,9 +7160,9 @@ "parent": "tob_idolic-deity_slam", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -7183,9 +7183,9 @@ "parent": "tob_imy-ut-ushabti_bites", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 0.0, - "range_ft": null, - "long_range_ft": null, + "reach": 0.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -7206,9 +7206,9 @@ "parent": "tob_imy-ut-ushabti_ceremonial-greatsword", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -7229,9 +7229,9 @@ "parent": "tob_ink-devil_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -7252,9 +7252,9 @@ "parent": "tob_ink-devil_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -7275,9 +7275,9 @@ "parent": "tob_isonade_bite", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, @@ -7298,9 +7298,9 @@ "parent": "tob_isonade_tail-slap", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, @@ -7321,9 +7321,9 @@ "parent": "tob_jaculus_claws", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -7344,9 +7344,9 @@ "parent": "tob_jaculus_jaws", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -7367,9 +7367,9 @@ "parent": "tob_jba-fofi-spider_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -7390,9 +7390,9 @@ "parent": "tob_jotun-giant_greatclub", "attack_type": "WEAPON", "to_hit_mod": 16, - "reach_ft": 30.0, - "range_ft": null, - "long_range_ft": null, + "reach": 30.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 10, @@ -7413,9 +7413,9 @@ "parent": "tob_jotun-giant_rock", "attack_type": "WEAPON", "to_hit_mod": 16, - "reach_ft": null, - "range_ft": 90.0, - "long_range_ft": 240.0, + "reach": null, + "range": 90.0, + "long_range": 240.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, @@ -7436,9 +7436,9 @@ "parent": "tob_kalke_dagger", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -7459,9 +7459,9 @@ "parent": "tob_kikimora_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -7482,9 +7482,9 @@ "parent": "tob_kishi-demon_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -7505,9 +7505,9 @@ "parent": "tob_kishi-demon_spear", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -7528,9 +7528,9 @@ "parent": "tob_kobold-alchemist_dagger", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -7551,9 +7551,9 @@ "parent": "tob_kobold-alchemist_dart", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": null, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -7574,9 +7574,9 @@ "parent": "tob_kobold-chieftain_shortbow", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 80.0, - "long_range_ft": 320.0, + "reach": null, + "range": 80.0, + "long_range": 320.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -7597,9 +7597,9 @@ "parent": "tob_kobold-chieftain_shortsword", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -7620,9 +7620,9 @@ "parent": "tob_kobold-trapsmith_dagger", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -7643,9 +7643,9 @@ "parent": "tob_kobold-trapsmith_light-crossbow", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 80.0, - "long_range_ft": 320.0, + "reach": null, + "range": 80.0, + "long_range": 320.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -7666,9 +7666,9 @@ "parent": "tob_kobold-trapsmith_stunner", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": null, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -7689,9 +7689,9 @@ "parent": "tob_kongamato_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -7712,9 +7712,9 @@ "parent": "tob_kongamato_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -7735,9 +7735,9 @@ "parent": "tob_koralk-harvester-devil_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -7758,9 +7758,9 @@ "parent": "tob_koralk-harvester-devil_scythe", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -7781,9 +7781,9 @@ "parent": "tob_koralk-harvester-devil_stinger", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -7804,9 +7804,9 @@ "parent": "tob_koschei_drain-life", "attack_type": "SPELL", "to_hit_mod": 11, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -7827,9 +7827,9 @@ "parent": "tob_koschei_longsword", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -7850,9 +7850,9 @@ "parent": "tob_kot-bayun_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -7873,9 +7873,9 @@ "parent": "tob_kot-bayun_claws", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -7896,9 +7896,9 @@ "parent": "tob_krake-spawn_bite", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -7919,9 +7919,9 @@ "parent": "tob_krake-spawn_tentacle", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -7942,9 +7942,9 @@ "parent": "tob_lake-troll_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -7965,9 +7965,9 @@ "parent": "tob_lake-troll_claws", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -7988,9 +7988,9 @@ "parent": "tob_lantern-dragonette_bite", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -8011,9 +8011,9 @@ "parent": "tob_lemurfolk-greyfur_blowgun", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 25.0, - "long_range_ft": 100.0, + "reach": null, + "range": 25.0, + "long_range": 100.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -8034,9 +8034,9 @@ "parent": "tob_lemurfolk-greyfur_kukri-dagger", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": null, + "reach": 5.0, + "range": 20.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -8057,9 +8057,9 @@ "parent": "tob_lemurfolk_blowgun", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 25.0, - "long_range_ft": 100.0, + "reach": null, + "range": 25.0, + "long_range": 100.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -8080,9 +8080,9 @@ "parent": "tob_lemurfolk_kukri-dagger", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -8103,9 +8103,9 @@ "parent": "tob_leshy_club", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -8126,9 +8126,9 @@ "parent": "tob_lich-hound_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -8149,9 +8149,9 @@ "parent": "tob_likho_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -8172,9 +8172,9 @@ "parent": "tob_lindwurm_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -8195,9 +8195,9 @@ "parent": "tob_lindwurm_claws", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -8218,9 +8218,9 @@ "parent": "tob_lindwurm_constrict", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -8241,9 +8241,9 @@ "parent": "tob_liosalfar_disrupting-touch", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -8264,9 +8264,9 @@ "parent": "tob_living-wick_slam", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -8287,9 +8287,9 @@ "parent": "tob_lorelei_dagger", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -8310,9 +8310,9 @@ "parent": "tob_loxoda_javelin", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": 30.0, - "long_range_ft": 120.0, + "reach": 5.0, + "range": 30.0, + "long_range": 120.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -8333,9 +8333,9 @@ "parent": "tob_loxoda_maul", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, @@ -8356,9 +8356,9 @@ "parent": "tob_loxoda_stomp", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -8379,9 +8379,9 @@ "parent": "tob_lunar-devil_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -8402,9 +8402,9 @@ "parent": "tob_lunar-devil_claw", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -8425,9 +8425,9 @@ "parent": "tob_lunar-devil_hurl-moonlight", "attack_type": "SPELL", "to_hit_mod": 7, - "reach_ft": null, - "range_ft": 150.0, - "long_range_ft": null, + "reach": null, + "range": 150.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -8448,9 +8448,9 @@ "parent": "tob_lunar-devil_tail", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -8471,9 +8471,9 @@ "parent": "tob_mahoru_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -8494,9 +8494,9 @@ "parent": "tob_malakbel_scorching-blast", "attack_type": "SPELL", "to_hit_mod": 9, - "reach_ft": null, - "range_ft": 120.0, - "long_range_ft": null, + "reach": null, + "range": 120.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -8517,9 +8517,9 @@ "parent": "tob_mallqui_desiccating-touch", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, @@ -8540,9 +8540,9 @@ "parent": "tob_mallqui_xeric-blast", "attack_type": "SPELL", "to_hit_mod": 7, - "reach_ft": null, - "range_ft": 30.0, - "long_range_ft": 90.0, + "reach": null, + "range": 30.0, + "long_range": 90.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -8563,9 +8563,9 @@ "parent": "tob_malphas-storm-crow_longsword", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -8586,9 +8586,9 @@ "parent": "tob_mamura_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": null, - "range_ft": 5.0, - "long_range_ft": null, + "reach": null, + "range": 5.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -8609,9 +8609,9 @@ "parent": "tob_mamura_whiptail-stinger", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": null, - "range_ft": 5.0, - "long_range_ft": null, + "reach": null, + "range": 5.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -8632,9 +8632,9 @@ "parent": "tob_manabane-scarab-swarm_bites", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 0.0, - "range_ft": null, - "long_range_ft": null, + "reach": 0.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -8655,9 +8655,9 @@ "parent": "tob_map-mimic_pseudopod", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -8678,9 +8678,9 @@ "parent": "tob_mask-wight_enervating-spiked-gauntlet", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -8701,9 +8701,9 @@ "parent": "tob_mask-wight_khopesh-of-oblivion", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -8724,9 +8724,9 @@ "parent": "tob_mavka_slam", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -8747,9 +8747,9 @@ "parent": "tob_mbielu_tail", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -8770,9 +8770,9 @@ "parent": "tob_mi-go_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -8793,9 +8793,9 @@ "parent": "tob_millitaur_handaxe", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -8816,9 +8816,9 @@ "parent": "tob_mindrot-thrall_claw", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -8839,9 +8839,9 @@ "parent": "tob_mirager_slam", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -8862,9 +8862,9 @@ "parent": "tob_miremal_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -8885,9 +8885,9 @@ "parent": "tob_miremal_claws", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -8908,9 +8908,9 @@ "parent": "tob_mirror-hag_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -8931,9 +8931,9 @@ "parent": "tob_mirror-hag_quarterstaff", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -8954,9 +8954,9 @@ "parent": "tob_mngwa_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -8977,9 +8977,9 @@ "parent": "tob_mngwa_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -9000,9 +9000,9 @@ "parent": "tob_monolith-champion_greatsword", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -9023,9 +9023,9 @@ "parent": "tob_monolith-champion_slam", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -9046,9 +9046,9 @@ "parent": "tob_monolith-footman_longsword", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -9069,9 +9069,9 @@ "parent": "tob_monolith-footman_slam", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -9092,9 +9092,9 @@ "parent": "tob_mordant-snare_filaments", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -9115,9 +9115,9 @@ "parent": "tob_mordant-snare_spike", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": null, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": null, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -9138,9 +9138,9 @@ "parent": "tob_mordant-snare_tentacle", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -9161,9 +9161,9 @@ "parent": "tob_morphoi_claws", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -9184,9 +9184,9 @@ "parent": "tob_morphoi_shortbow", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 80.0, - "long_range_ft": 320.0, + "reach": null, + "range": 80.0, + "long_range": 320.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -9207,9 +9207,9 @@ "parent": "tob_morphoi_trident", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -9230,9 +9230,9 @@ "parent": "tob_moss-lurker_claw", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -9253,9 +9253,9 @@ "parent": "tob_moss-lurker_dropped-boulder", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 100.0, - "long_range_ft": null, + "reach": null, + "range": 100.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -9276,9 +9276,9 @@ "parent": "tob_moss-lurker_great-sword-or-maul", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -9299,9 +9299,9 @@ "parent": "tob_moss-lurker_mushroom-poisoned-javelin", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 30.0, - "long_range_ft": null, + "reach": null, + "range": 30.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -9322,9 +9322,9 @@ "parent": "tob_myling_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -9345,9 +9345,9 @@ "parent": "tob_myling_claw", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -9368,9 +9368,9 @@ "parent": "tob_naina_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -9391,9 +9391,9 @@ "parent": "tob_naina_claw", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -9414,9 +9414,9 @@ "parent": "tob_ngobou_gore", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, @@ -9437,9 +9437,9 @@ "parent": "tob_ngobou_stomp", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -9460,9 +9460,9 @@ "parent": "tob_nichny_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -9483,9 +9483,9 @@ "parent": "tob_night-scorpion_claw", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -9506,9 +9506,9 @@ "parent": "tob_night-scorpion_sting", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -9529,9 +9529,9 @@ "parent": "tob_nightgarm_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -9552,9 +9552,9 @@ "parent": "tob_nihilethic-zombie_slam", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -9575,9 +9575,9 @@ "parent": "tob_nihilethic-zombie_withering-touch-ethereal-form", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -9598,9 +9598,9 @@ "parent": "tob_nkosi-pridelord_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -9621,9 +9621,9 @@ "parent": "tob_nkosi-pridelord_mambele-throwing-knife", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": null, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": null, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -9644,9 +9644,9 @@ "parent": "tob_nkosi-pridelord_scimitar", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -9667,9 +9667,9 @@ "parent": "tob_nkosi-war-ostrich_claw", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -9690,9 +9690,9 @@ "parent": "tob_nkosi_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -9713,9 +9713,9 @@ "parent": "tob_nkosi_mambele-throwing-knife", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": null, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": null, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -9736,9 +9736,9 @@ "parent": "tob_nkosi_scimitar", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -9759,9 +9759,9 @@ "parent": "tob_noctiny_pact-staff", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -9782,9 +9782,9 @@ "parent": "tob_ogre-chieftain-corrupted_greatclub", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -9805,9 +9805,9 @@ "parent": "tob_ogre-chieftain-corrupted_javelin", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": 30.0, - "long_range_ft": 120.0, + "reach": 5.0, + "range": 30.0, + "long_range": 120.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -9828,9 +9828,9 @@ "parent": "tob_oozasis_pseudopod", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -9851,9 +9851,9 @@ "parent": "tob_ostinato_cacophony-ray", "attack_type": "SPELL", "to_hit_mod": 7, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": null, + "reach": null, + "range": 60.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -9874,9 +9874,9 @@ "parent": "tob_owl-harpy_claws", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -9897,9 +9897,9 @@ "parent": "tob_owl-harpy_talons", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -9920,9 +9920,9 @@ "parent": "tob_paper-drake_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -9943,9 +9943,9 @@ "parent": "tob_paper-drake_claws", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -9966,9 +9966,9 @@ "parent": "tob_paper-drake_tail", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, @@ -9989,9 +9989,9 @@ "parent": "tob_pombero_fist", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -10012,9 +10012,9 @@ "parent": "tob_possessed-pillar_slam", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -10035,9 +10035,9 @@ "parent": "tob_prismatic-beetle-swarm_bites", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 0.0, - "range_ft": null, - "long_range_ft": null, + "reach": 0.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -10058,9 +10058,9 @@ "parent": "tob_psoglav-demon_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -10081,9 +10081,9 @@ "parent": "tob_putrid-haunt_slam", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -10104,9 +10104,9 @@ "parent": "tob_qwyllion_claw", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -10127,9 +10127,9 @@ "parent": "tob_ramag_scimitar", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10150,9 +10150,9 @@ "parent": "tob_ramag_shortbow", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 80.0, - "long_range_ft": 320.0, + "reach": null, + "range": 80.0, + "long_range": 320.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10173,9 +10173,9 @@ "parent": "tob_rat-king_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -10196,9 +10196,9 @@ "parent": "tob_ratatosk_gore", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -10219,9 +10219,9 @@ "parent": "tob_ratfolk-rogue_dagger", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10242,9 +10242,9 @@ "parent": "tob_ratfolk-rogue_light-crossbow", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 80.0, - "long_range_ft": 320.0, + "reach": null, + "range": 80.0, + "long_range": 320.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10265,9 +10265,9 @@ "parent": "tob_ratfolk-rogue_rat-dagger-flurry", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": null, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10288,9 +10288,9 @@ "parent": "tob_ratfolk_dagger", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10311,9 +10311,9 @@ "parent": "tob_ratfolk_light-crossbow", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 80.0, - "long_range_ft": 320.0, + "reach": null, + "range": 80.0, + "long_range": 320.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10334,9 +10334,9 @@ "parent": "tob_ravenala_bursting-pod", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": null, - "range_ft": 30.0, - "long_range_ft": 120.0, + "reach": null, + "range": 30.0, + "long_range": 120.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10357,9 +10357,9 @@ "parent": "tob_ravenala_slam", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -10380,9 +10380,9 @@ "parent": "tob_ravenfolk-doom-croaker_radiant-runestaff", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10403,9 +10403,9 @@ "parent": "tob_ravenfolk-scout_peck", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10426,9 +10426,9 @@ "parent": "tob_ravenfolk-scout_rapier", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10449,9 +10449,9 @@ "parent": "tob_ravenfolk-warrior_peck", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10472,9 +10472,9 @@ "parent": "tob_ravenfolk-warrior_radiant-runespear", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10495,9 +10495,9 @@ "parent": "tob_ravenfolk-warrior_rapier", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10518,9 +10518,9 @@ "parent": "tob_red-banded-line-spider_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10541,9 +10541,9 @@ "parent": "tob_red-banded-line-spider_swingline", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": null, + "reach": null, + "range": 60.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 0, @@ -10564,9 +10564,9 @@ "parent": "tob_red-hag_claws", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -10587,9 +10587,9 @@ "parent": "tob_redcap_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -10610,9 +10610,9 @@ "parent": "tob_redcap_pike", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10633,9 +10633,9 @@ "parent": "tob_rift-swine_tentacle", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -10656,9 +10656,9 @@ "parent": "tob_rift-swine_tusks", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -10679,9 +10679,9 @@ "parent": "tob_rime-worm-grub_gnash", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -10702,9 +10702,9 @@ "parent": "tob_rime-worm-grub_tendril", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10725,9 +10725,9 @@ "parent": "tob_risen-reaver_blade", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -10748,9 +10748,9 @@ "parent": "tob_roachling-lord_begrimed-dart", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": null, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10771,9 +10771,9 @@ "parent": "tob_roachling-lord_begrimed-shortsword", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10794,9 +10794,9 @@ "parent": "tob_roachling-skirmisher_dart", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": null, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10817,9 +10817,9 @@ "parent": "tob_roachling-skirmisher_shortsword", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10840,9 +10840,9 @@ "parent": "tob_rotting-wind_wind-of-decay", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 0.0, - "range_ft": null, - "long_range_ft": null, + "reach": 0.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -10863,9 +10863,9 @@ "parent": "tob_rubezahl_claw", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -10886,9 +10886,9 @@ "parent": "tob_rubezahl_gore", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -10909,9 +10909,9 @@ "parent": "tob_rum-gremlin_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 5.0, - "long_range_ft": null, + "reach": null, + "range": 5.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10932,9 +10932,9 @@ "parent": "tob_rum-gremlin_claws", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 5.0, - "long_range_ft": null, + "reach": null, + "range": 5.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10955,9 +10955,9 @@ "parent": "tob_rusalka_breathless-kiss", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 0, @@ -10978,9 +10978,9 @@ "parent": "tob_rust-drake_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -11001,9 +11001,9 @@ "parent": "tob_rust-drake_tail-swipe", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -11024,9 +11024,9 @@ "parent": "tob_salt-devil_scimitar", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11047,9 +11047,9 @@ "parent": "tob_salt-golem_slam", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, @@ -11070,9 +11070,9 @@ "parent": "tob_sand-hag_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11093,9 +11093,9 @@ "parent": "tob_sand-silhouette_slam", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -11116,9 +11116,9 @@ "parent": "tob_sand-spider_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -11139,9 +11139,9 @@ "parent": "tob_sand-spider_impaling-leg", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11162,9 +11162,9 @@ "parent": "tob_sandman_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -11185,9 +11185,9 @@ "parent": "tob_sandwyrm_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -11208,9 +11208,9 @@ "parent": "tob_sandwyrm_gore", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11231,9 +11231,9 @@ "parent": "tob_sandwyrm_stinger", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -11254,9 +11254,9 @@ "parent": "tob_sap-demon_slam", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -11277,9 +11277,9 @@ "parent": "tob_sarcophagus-slime_slam", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -11300,9 +11300,9 @@ "parent": "tob_sathaq-worm_bite", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -11323,9 +11323,9 @@ "parent": "tob_savager_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -11346,9 +11346,9 @@ "parent": "tob_savager_claw", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, @@ -11369,9 +11369,9 @@ "parent": "tob_scheznyki_hand-crossbow", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 30.0, - "long_range_ft": 120.0, + "reach": null, + "range": 30.0, + "long_range": 120.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11392,9 +11392,9 @@ "parent": "tob_scheznyki_heavy-pick", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11415,9 +11415,9 @@ "parent": "tob_scorpion-cultist_scimitar", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11438,9 +11438,9 @@ "parent": "tob_scorpion-cultist_sling", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 30.0, - "long_range_ft": 120.0, + "reach": null, + "range": 30.0, + "long_range": 120.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11461,9 +11461,9 @@ "parent": "tob_sea-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11484,9 +11484,9 @@ "parent": "tob_selang_dagger", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11507,9 +11507,9 @@ "parent": "tob_selang_shortbow", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 80.0, - "long_range_ft": null, + "reach": null, + "range": 80.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11530,9 +11530,9 @@ "parent": "tob_serpopard_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -11553,9 +11553,9 @@ "parent": "tob_serpopard_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -11576,9 +11576,9 @@ "parent": "tob_shabti_nabboot", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11599,9 +11599,9 @@ "parent": "tob_shadhavar_gore", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11622,9 +11622,9 @@ "parent": "tob_shadhavar_hooves", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -11645,9 +11645,9 @@ "parent": "tob_shadow-beast_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -11668,9 +11668,9 @@ "parent": "tob_shadow-beast_claw", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -11691,9 +11691,9 @@ "parent": "tob_shadow-fey-duelist_dagger", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11714,9 +11714,9 @@ "parent": "tob_shadow-fey-duelist_rapier", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11737,9 +11737,9 @@ "parent": "tob_shadow-fey-enchantress_rapier", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11760,9 +11760,9 @@ "parent": "tob_shadow-fey-forest-hunter_longbow", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": null, - "range_ft": 150.0, - "long_range_ft": 600.0, + "reach": null, + "range": 150.0, + "long_range": 600.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11783,9 +11783,9 @@ "parent": "tob_shadow-fey-forest-hunter_rapier", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11806,9 +11806,9 @@ "parent": "tob_shadow-fey-guardian_javelin", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": null, - "range_ft": 30.0, - "long_range_ft": 120.0, + "reach": null, + "range": 30.0, + "long_range": 120.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -11829,9 +11829,9 @@ "parent": "tob_shadow-fey-guardian_pike", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -11852,9 +11852,9 @@ "parent": "tob_shadow-fey_shortbow", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 80.0, - "long_range_ft": 320.0, + "reach": null, + "range": 80.0, + "long_range": 320.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11875,9 +11875,9 @@ "parent": "tob_shadow-fey_shortsword", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11898,9 +11898,9 @@ "parent": "tob_sharkjaw-skeleton_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11921,9 +11921,9 @@ "parent": "tob_sharkjaw-skeleton_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -11944,9 +11944,9 @@ "parent": "tob_shellycoat_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11967,9 +11967,9 @@ "parent": "tob_shellycoat_claws", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -11990,9 +11990,9 @@ "parent": "tob_shoggoth_slam", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -12013,9 +12013,9 @@ "parent": "tob_shroud_strength-drain", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -12036,9 +12036,9 @@ "parent": "tob_skein-witch_inexorable-threads", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 30.0, - "range_ft": null, - "long_range_ft": null, + "reach": 30.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, @@ -12059,9 +12059,9 @@ "parent": "tob_skin-bat_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -12082,9 +12082,9 @@ "parent": "tob_skitterhaunt_claw", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -12105,9 +12105,9 @@ "parent": "tob_skitterhaunt_sting", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -12128,9 +12128,9 @@ "parent": "tob_slow-storm_slam", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -12151,9 +12151,9 @@ "parent": "tob_sluagh-swarm_chilling-touch", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 0.0, - "range_ft": null, - "long_range_ft": null, + "reach": 0.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 8, @@ -12174,9 +12174,9 @@ "parent": "tob_smaragdine-golem_slam", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -12197,9 +12197,9 @@ "parent": "tob_son-of-fenris_bite", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -12220,9 +12220,9 @@ "parent": "tob_son-of-fenris_slam", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -12243,9 +12243,9 @@ "parent": "tob_soul-eater_claw", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -12266,9 +12266,9 @@ "parent": "tob_spawn-of-arbeyach_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -12289,9 +12289,9 @@ "parent": "tob_spawn-of-arbeyach_stinger", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -12312,9 +12312,9 @@ "parent": "tob_spectral-guardian_spectral-rend", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -12335,9 +12335,9 @@ "parent": "tob_spider-of-leng_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -12358,9 +12358,9 @@ "parent": "tob_spider-of-leng_spit-venom", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": null, + "reach": null, + "range": 60.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -12381,9 +12381,9 @@ "parent": "tob_spider-of-leng_staff-of-leng", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -12404,9 +12404,9 @@ "parent": "tob_spider-thief_razor-line", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -12427,9 +12427,9 @@ "parent": "tob_spider-thief_sickle-claw", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -12450,9 +12450,9 @@ "parent": "tob_spinosaurus_bite", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -12473,9 +12473,9 @@ "parent": "tob_spinosaurus_claw", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -12496,9 +12496,9 @@ "parent": "tob_spinosaurus_tail", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 20.0, - "range_ft": null, - "long_range_ft": null, + "reach": 20.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -12519,9 +12519,9 @@ "parent": "tob_spire-walker_lightning-dart", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": null, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": null, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -12542,9 +12542,9 @@ "parent": "tob_star-drake_bite", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -12565,9 +12565,9 @@ "parent": "tob_star-drake_claw", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -12588,9 +12588,9 @@ "parent": "tob_star-drake_searing-star", "attack_type": "SPELL", "to_hit_mod": 12, - "reach_ft": null, - "range_ft": 120.0, - "long_range_ft": null, + "reach": null, + "range": 120.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 10, @@ -12611,9 +12611,9 @@ "parent": "tob_star-spawn-of-cthulhu_dimensional-stomp", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -12634,9 +12634,9 @@ "parent": "tob_star-spawn-of-cthulhu_disintegrating-gaze", "attack_type": "SPELL", "to_hit_mod": 15, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": null, + "reach": null, + "range": 60.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, @@ -12657,9 +12657,9 @@ "parent": "tob_steam-golem_ax-arm", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -12680,9 +12680,9 @@ "parent": "tob_steam-golem_long-axe", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, @@ -12703,9 +12703,9 @@ "parent": "tob_stryx_talons", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -12726,9 +12726,9 @@ "parent": "tob_stuhac_bite", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -12749,9 +12749,9 @@ "parent": "tob_stuhac_claw", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, @@ -12772,9 +12772,9 @@ "parent": "tob_stygian-fat-tailed-scorpion_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -12795,9 +12795,9 @@ "parent": "tob_stygian-fat-tailed-scorpion_sting", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, @@ -12818,9 +12818,9 @@ "parent": "tob_subek_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -12841,9 +12841,9 @@ "parent": "tob_subek_claws", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -12864,9 +12864,9 @@ "parent": "tob_subek_thrash", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -12887,9 +12887,9 @@ "parent": "tob_suturefly_sew", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -12910,9 +12910,9 @@ "parent": "tob_swamp-adder_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -12933,9 +12933,9 @@ "parent": "tob_temple-dog_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -12956,9 +12956,9 @@ "parent": "tob_temple-dog_slam", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -12979,9 +12979,9 @@ "parent": "tob_thuellai_claw", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -13002,9 +13002,9 @@ "parent": "tob_thursir-giant_rock", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": null, - "range_ft": 40.0, - "long_range_ft": 160.0, + "reach": null, + "range": 40.0, + "long_range": 160.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -13025,9 +13025,9 @@ "parent": "tob_thursir-giant_warhammer", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -13048,9 +13048,9 @@ "parent": "tob_titanoboa_bite", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -13071,9 +13071,9 @@ "parent": "tob_titanoboa_constrict", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -13094,9 +13094,9 @@ "parent": "tob_tosculi-drone_claws", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -13117,9 +13117,9 @@ "parent": "tob_tosculi-drone_light-crossbow", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 80.0, - "long_range_ft": 320.0, + "reach": null, + "range": 80.0, + "long_range": 320.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13140,9 +13140,9 @@ "parent": "tob_tosculi-elite-bow-raider_claws", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13163,9 +13163,9 @@ "parent": "tob_tosculi-elite-bow-raider_longbow", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": null, - "range_ft": 150.0, - "long_range_ft": 600.0, + "reach": null, + "range": 150.0, + "long_range": 600.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -13186,9 +13186,9 @@ "parent": "tob_tosculi-hive-queen_scimitar", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -13209,9 +13209,9 @@ "parent": "tob_tosculi-hive-queen_stinger", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13232,9 +13232,9 @@ "parent": "tob_tosculi-warrior_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13255,9 +13255,9 @@ "parent": "tob_tosculi-warrior_claws", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -13278,9 +13278,9 @@ "parent": "tob_tosculi-warrior_prepare-host", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -13301,9 +13301,9 @@ "parent": "tob_tosculi-warrior_stinger", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13324,9 +13324,9 @@ "parent": "tob_trollkin-reaver_battleaxe", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13347,9 +13347,9 @@ "parent": "tob_trollkin-reaver_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13370,9 +13370,9 @@ "parent": "tob_trollkin-reaver_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13393,9 +13393,9 @@ "parent": "tob_trollkin-reaver_handaxe", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13416,9 +13416,9 @@ "parent": "tob_tusked-skyfish_gore", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -13439,9 +13439,9 @@ "parent": "tob_tusked-skyfish_tentacles", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -13462,9 +13462,9 @@ "parent": "tob_umbral-vampire_umbral-grasp", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -13485,9 +13485,9 @@ "parent": "tob_uraeus_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13508,9 +13508,9 @@ "parent": "tob_urochar-strangling-watcher_tentacle", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 20.0, - "range_ft": null, - "long_range_ft": null, + "reach": 20.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -13531,9 +13531,9 @@ "parent": "tob_ushabti_khopesh", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -13554,9 +13554,9 @@ "parent": "tob_ushabti_medjais-scepter", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -13577,9 +13577,9 @@ "parent": "tob_vaettir_greataxe", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13600,9 +13600,9 @@ "parent": "tob_vaettir_longbow", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 150.0, - "long_range_ft": 600.0, + "reach": null, + "range": 150.0, + "long_range": 600.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13623,9 +13623,9 @@ "parent": "tob_valkyrie_longsword", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13646,9 +13646,9 @@ "parent": "tob_valkyrie_spear", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 10.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13669,9 +13669,9 @@ "parent": "tob_vapor-lynx_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -13692,9 +13692,9 @@ "parent": "tob_vapor-lynx_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -13715,9 +13715,9 @@ "parent": "tob_venomous-mummy_venomous-fist", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -13738,9 +13738,9 @@ "parent": "tob_vila_1-shortbow", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": null, - "range_ft": 80.0, - "long_range_ft": 320.0, + "reach": null, + "range": 80.0, + "long_range": 320.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13761,9 +13761,9 @@ "parent": "tob_vila_1-shortsword", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13784,9 +13784,9 @@ "parent": "tob_vile-barber_straight-razor", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13807,9 +13807,9 @@ "parent": "tob_vile-barber_unclean-cut", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13830,9 +13830,9 @@ "parent": "tob_vine-lord_claw", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13853,9 +13853,9 @@ "parent": "tob_vine-lord_tendril", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13876,9 +13876,9 @@ "parent": "tob_vine-lords-tendril-puppet_assegai", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13899,9 +13899,9 @@ "parent": "tob_vine-lords-tendril-puppet_hurl-thorns", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": null, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -13922,9 +13922,9 @@ "parent": "tob_vine-troll-skeleton_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -13945,9 +13945,9 @@ "parent": "tob_vine-troll-skeleton_claw", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -13968,9 +13968,9 @@ "parent": "tob_void-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13991,9 +13991,9 @@ "parent": "tob_voidling_tendril", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -14014,9 +14014,9 @@ "parent": "tob_wampus-cat_claws", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -14037,9 +14037,9 @@ "parent": "tob_water-leaper_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -14060,9 +14060,9 @@ "parent": "tob_water-leaper_stinger", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -14083,9 +14083,9 @@ "parent": "tob_weaving-spider_poisoned-needle-shuttle", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 30.0, - "long_range_ft": null, + "reach": null, + "range": 30.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -14106,9 +14106,9 @@ "parent": "tob_weaving-spider_trimming-blade", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -14129,9 +14129,9 @@ "parent": "tob_weeping-treant_rock", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": 180.0, + "reach": null, + "range": 60.0, + "long_range": 180.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -14152,9 +14152,9 @@ "parent": "tob_weeping-treant_slam", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -14175,9 +14175,9 @@ "parent": "tob_wharfling-swarm_bites", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 0.0, - "range_ft": null, - "long_range_ft": null, + "reach": 0.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, @@ -14198,9 +14198,9 @@ "parent": "tob_wharfling_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -14221,9 +14221,9 @@ "parent": "tob_white-ape_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -14244,9 +14244,9 @@ "parent": "tob_white-ape_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -14267,9 +14267,9 @@ "parent": "tob_witchlight_light-ray", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": null, - "range_ft": 30.0, - "long_range_ft": null, + "reach": null, + "range": 30.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -14290,9 +14290,9 @@ "parent": "tob_wolf-reaver-dwarf_battleaxe", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -14313,9 +14313,9 @@ "parent": "tob_wolf-reaver-dwarf_dagger", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -14336,9 +14336,9 @@ "parent": "tob_wolf-reaver-dwarf_spear", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -14359,9 +14359,9 @@ "parent": "tob_wolf-spirit-swarm_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -14382,9 +14382,9 @@ "parent": "tob_wormhearted-suffragan_helminth-infestation", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -14405,9 +14405,9 @@ "parent": "tob_wyrmling-wind-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -14428,9 +14428,9 @@ "parent": "tob_xanka_absorb", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -14451,9 +14451,9 @@ "parent": "tob_xhkarsh_claw", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -14474,9 +14474,9 @@ "parent": "tob_xhkarsh_stinger", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -14497,9 +14497,9 @@ "parent": "tob_ychen-bannog_gore", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -14520,9 +14520,9 @@ "parent": "tob_ychen-bannog_stomp", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -14543,9 +14543,9 @@ "parent": "tob_young-cave-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -14566,9 +14566,9 @@ "parent": "tob_young-cave-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -14589,9 +14589,9 @@ "parent": "tob_young-flame-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -14612,9 +14612,9 @@ "parent": "tob_young-flame-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -14635,9 +14635,9 @@ "parent": "tob_young-mithral-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -14658,9 +14658,9 @@ "parent": "tob_young-mithral-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -14681,9 +14681,9 @@ "parent": "tob_young-sea-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -14704,9 +14704,9 @@ "parent": "tob_young-sea-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -14727,9 +14727,9 @@ "parent": "tob_young-spinosaurus_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -14750,9 +14750,9 @@ "parent": "tob_young-spinosaurus_claw", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -14773,9 +14773,9 @@ "parent": "tob_young-void-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -14796,9 +14796,9 @@ "parent": "tob_young-void-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -14819,9 +14819,9 @@ "parent": "tob_young-wind-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -14842,9 +14842,9 @@ "parent": "tob_young-wind-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -14865,9 +14865,9 @@ "parent": "tob_zanskaran-viper_bite", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -14888,9 +14888,9 @@ "parent": "tob_zaratan_bite", "attack_type": "WEAPON", "to_hit_mod": 18, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -14911,9 +14911,9 @@ "parent": "tob_zaratan_flipper", "attack_type": "WEAPON", "to_hit_mod": 18, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -14934,9 +14934,9 @@ "parent": "tob_zimwi_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -14957,9 +14957,9 @@ "parent": "tob_zimwi_claws", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -14980,9 +14980,9 @@ "parent": "tob_zmey-headling_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -15003,9 +15003,9 @@ "parent": "tob_zmey-headling_claws", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -15026,9 +15026,9 @@ "parent": "tob_zmey-headling_tail", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 20.0, - "range_ft": null, - "long_range_ft": null, + "reach": 20.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -15049,9 +15049,9 @@ "parent": "tob_zmey_bite", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -15072,9 +15072,9 @@ "parent": "tob_zmey_claws", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -15095,9 +15095,9 @@ "parent": "tob_zmey_tail", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 20.0, - "range_ft": null, - "long_range_ft": null, + "reach": 20.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, diff --git a/data/v2/kobold-press/tob2/CreatureActionAttack.json b/data/v2/kobold-press/tob2/CreatureActionAttack.json index ca7d51ee..cfb231f4 100644 --- a/data/v2/kobold-press/tob2/CreatureActionAttack.json +++ b/data/v2/kobold-press/tob2/CreatureActionAttack.json @@ -7,9 +7,9 @@ "parent": "tob2_a-mi-kuk_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -30,9 +30,9 @@ "parent": "tob2_a-mi-kuk_grasping-claw", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -53,9 +53,9 @@ "parent": "tob2_aalpamac_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -76,9 +76,9 @@ "parent": "tob2_aalpamac_claws", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -99,9 +99,9 @@ "parent": "tob2_abbanith-giant_thumb-claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -122,9 +122,9 @@ "parent": "tob2_adult-boreal-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -145,9 +145,9 @@ "parent": "tob2_adult-boreal-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -168,9 +168,9 @@ "parent": "tob2_adult-boreal-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -191,9 +191,9 @@ "parent": "tob2_adult-imperial-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -214,9 +214,9 @@ "parent": "tob2_adult-imperial-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -237,9 +237,9 @@ "parent": "tob2_adult-imperial-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -260,9 +260,9 @@ "parent": "tob2_ahu-nixta-cataphract_arcane-cannon", "attack_type": "SPELL", "to_hit_mod": 7, - "reach_ft": null, - "range_ft": 100.0, - "long_range_ft": null, + "reach": null, + "range": 100.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -283,9 +283,9 @@ "parent": "tob2_ahu-nixta-cataphract_bashing-rod", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -306,9 +306,9 @@ "parent": "tob2_ahu-nixta-cataphract_pronged-scepter", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -329,9 +329,9 @@ "parent": "tob2_ahu-nixta-cataphract_whirring-blades", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -352,9 +352,9 @@ "parent": "tob2_ahu-nixta-drudge_whirring-blades", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -375,9 +375,9 @@ "parent": "tob2_akaasit_arm-blade", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -398,9 +398,9 @@ "parent": "tob2_akhlut_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -421,9 +421,9 @@ "parent": "tob2_akhlut_tail-slam", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -444,9 +444,9 @@ "parent": "tob2_alchemical-skunk_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -467,9 +467,9 @@ "parent": "tob2_alchemical-skunk_claws", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -490,9 +490,9 @@ "parent": "tob2_alligator-turtle_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -513,9 +513,9 @@ "parent": "tob2_alligator_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -536,9 +536,9 @@ "parent": "tob2_alpha-fish_headbutt", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -559,9 +559,9 @@ "parent": "tob2_amber-ooze_pseudopod", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -582,9 +582,9 @@ "parent": "tob2_ancient-boreal-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 16, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -605,9 +605,9 @@ "parent": "tob2_ancient-boreal-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 16, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -628,9 +628,9 @@ "parent": "tob2_ancient-boreal-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 16, - "reach_ft": 20.0, - "range_ft": null, - "long_range_ft": null, + "reach": 20.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -651,9 +651,9 @@ "parent": "tob2_ancient-imperial-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 18, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -674,9 +674,9 @@ "parent": "tob2_ancient-imperial-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 18, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -697,9 +697,9 @@ "parent": "tob2_ancient-imperial-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 18, - "reach_ft": 20.0, - "range_ft": null, - "long_range_ft": null, + "reach": 20.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -720,9 +720,9 @@ "parent": "tob2_angel-of-judgment_greataxe", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -743,9 +743,9 @@ "parent": "tob2_angelic-enforcer_bite", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -766,9 +766,9 @@ "parent": "tob2_angelic-enforcer_greatsword", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -789,9 +789,9 @@ "parent": "tob2_animated-bearskin-rug_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -812,9 +812,9 @@ "parent": "tob2_animated-bearskin-rug_claws", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -835,9 +835,9 @@ "parent": "tob2_animated-bearskin-rug_envelop", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": null, @@ -858,9 +858,9 @@ "parent": "tob2_aniwye_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -881,9 +881,9 @@ "parent": "tob2_aniwye_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -904,9 +904,9 @@ "parent": "tob2_aniwye_rock", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": 240.0, + "reach": null, + "range": 60.0, + "long_range": 240.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -927,9 +927,9 @@ "parent": "tob2_aniwye_slam", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -950,9 +950,9 @@ "parent": "tob2_anzu_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -973,9 +973,9 @@ "parent": "tob2_anzu_talons", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -996,9 +996,9 @@ "parent": "tob2_apaxrusl_slam", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -1019,9 +1019,9 @@ "parent": "tob2_arachnocrat_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -1042,9 +1042,9 @@ "parent": "tob2_arachnocrat_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1065,9 +1065,9 @@ "parent": "tob2_ash-phoenix_ash-talons", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1088,9 +1088,9 @@ "parent": "tob2_ashen-custodian_cleansing-strike", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -1111,9 +1111,9 @@ "parent": "tob2_astral-devourer_hungering-serpents", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 0.0, - "range_ft": null, - "long_range_ft": null, + "reach": 0.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1134,9 +1134,9 @@ "parent": "tob2_astri_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -1157,9 +1157,9 @@ "parent": "tob2_attercroppe_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -1180,9 +1180,9 @@ "parent": "tob2_august-rooster_talon", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1203,9 +1203,9 @@ "parent": "tob2_aurora-horribilis_blistering-touch", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -1226,9 +1226,9 @@ "parent": "tob2_avalanche-screamer_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1249,9 +1249,9 @@ "parent": "tob2_avalanche-screamer_leg", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1272,9 +1272,9 @@ "parent": "tob2_aviere_claw", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -1295,9 +1295,9 @@ "parent": "tob2_avulzor_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -1318,9 +1318,9 @@ "parent": "tob2_avulzor_synchronized-bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -1341,9 +1341,9 @@ "parent": "tob2_backup-holler-spider_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -1364,9 +1364,9 @@ "parent": "tob2_backup-holler-spider_hoot", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": null, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -1387,9 +1387,9 @@ "parent": "tob2_baliri-demon_bite", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1410,9 +1410,9 @@ "parent": "tob2_baliri-demon_pincers", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1433,9 +1433,9 @@ "parent": "tob2_balloon-spider_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -1456,9 +1456,9 @@ "parent": "tob2_balloon-spider_charged-web", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 40.0, - "long_range_ft": 80.0, + "reach": null, + "range": 40.0, + "long_range": 80.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": null, @@ -1479,9 +1479,9 @@ "parent": "tob2_barometz_gore", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1502,9 +1502,9 @@ "parent": "tob2_barometz_hooves", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1525,9 +1525,9 @@ "parent": "tob2_bearing-golem_slam", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1548,9 +1548,9 @@ "parent": "tob2_bearing-golem_steel-shot", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": null, - "range_ft": 30.0, - "long_range_ft": 120.0, + "reach": null, + "range": 30.0, + "long_range": 120.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1571,9 +1571,9 @@ "parent": "tob2_befouled-weird_slam", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1594,9 +1594,9 @@ "parent": "tob2_black-crier_bell", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -1617,9 +1617,9 @@ "parent": "tob2_bleakheart_disheartening-touch", "attack_type": "SPELL", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -1640,9 +1640,9 @@ "parent": "tob2_bloated-ghoul_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -1663,9 +1663,9 @@ "parent": "tob2_bloated-ghoul_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -1686,9 +1686,9 @@ "parent": "tob2_blood-imp_spew-blood", "attack_type": "SPELL", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": null, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1709,9 +1709,9 @@ "parent": "tob2_blood-imp_sting", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -1732,9 +1732,9 @@ "parent": "tob2_bloodsapper_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -1755,9 +1755,9 @@ "parent": "tob2_bloodsapper_draining-tongue", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1778,9 +1778,9 @@ "parent": "tob2_bloodstone-sentinel_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1801,9 +1801,9 @@ "parent": "tob2_bone-colossus_razor-teeth", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 0.0, - "range_ft": null, - "long_range_ft": null, + "reach": 0.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, @@ -1824,9 +1824,9 @@ "parent": "tob2_bone-colossus_thunderous-slam", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -1847,9 +1847,9 @@ "parent": "tob2_boneshard-wraith_spectral-claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -1870,9 +1870,9 @@ "parent": "tob2_bonespitter_bite", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -1893,9 +1893,9 @@ "parent": "tob2_bonespitter_bone-spike", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": null, - "range_ft": 30.0, - "long_range_ft": 120.0, + "reach": null, + "range": 30.0, + "long_range": 120.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -1916,9 +1916,9 @@ "parent": "tob2_boreal-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -1939,9 +1939,9 @@ "parent": "tob2_boreas-chosen_spear", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -1962,9 +1962,9 @@ "parent": "tob2_brachyura-shambler_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -1985,9 +1985,9 @@ "parent": "tob2_brachyura-shambler_diseased-spit", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": null, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": null, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -2008,9 +2008,9 @@ "parent": "tob2_brain-hood_slam", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2031,9 +2031,9 @@ "parent": "tob2_brimstone-locusthound_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2054,9 +2054,9 @@ "parent": "tob2_brimstone-locusthound_sticky-spittle", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": null, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -2077,9 +2077,9 @@ "parent": "tob2_broodmother-of-leng_claw", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -2100,9 +2100,9 @@ "parent": "tob2_broodmother-of-leng_spit-venom", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": null, + "reach": null, + "range": 60.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -2123,9 +2123,9 @@ "parent": "tob2_bulbous-violet_tendril", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2146,9 +2146,9 @@ "parent": "tob2_bull_gore", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -2169,9 +2169,9 @@ "parent": "tob2_bull_hooves", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -2192,9 +2192,9 @@ "parent": "tob2_butatsch_slam", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2215,9 +2215,9 @@ "parent": "tob2_cackling-skeleton_slam", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2238,9 +2238,9 @@ "parent": "tob2_cadaver-sprite_corrupting-bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2261,9 +2261,9 @@ "parent": "tob2_cadaver-sprite_shortbow", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": null, - "range_ft": 40.0, - "long_range_ft": 160.0, + "reach": null, + "range": 40.0, + "long_range": 160.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2284,9 +2284,9 @@ "parent": "tob2_caltrop-golem_slam", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -2307,9 +2307,9 @@ "parent": "tob2_caltrop-golem_steel-shot", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": null, - "range_ft": 30.0, - "long_range_ft": 120.0, + "reach": null, + "range": 30.0, + "long_range": 120.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -2330,9 +2330,9 @@ "parent": "tob2_carnivorous-ship_bite", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -2353,9 +2353,9 @@ "parent": "tob2_carnivorous-sod_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -2376,9 +2376,9 @@ "parent": "tob2_carnivorous-sod_grass-trip", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": null, @@ -2399,9 +2399,9 @@ "parent": "tob2_carrier-mosquito_impaling-proboscis", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -2422,9 +2422,9 @@ "parent": "tob2_catscratch_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2445,9 +2445,9 @@ "parent": "tob2_catscratch_claws", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2468,9 +2468,9 @@ "parent": "tob2_cave-drake_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -2491,9 +2491,9 @@ "parent": "tob2_cave-drake_blinding-spit", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 30.0, - "long_range_ft": null, + "reach": null, + "range": 30.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": null, @@ -2514,9 +2514,9 @@ "parent": "tob2_cave-drake_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2537,9 +2537,9 @@ "parent": "tob2_cave-giant-shaman_club", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -2560,9 +2560,9 @@ "parent": "tob2_cave-giant-shaman_rock", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": 240.0, + "reach": null, + "range": 60.0, + "long_range": 240.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -2583,9 +2583,9 @@ "parent": "tob2_cave-giant-shaman_tusks", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -2606,9 +2606,9 @@ "parent": "tob2_cave-goat_ram", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2629,9 +2629,9 @@ "parent": "tob2_cavefish-zombie_slam", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2652,9 +2652,9 @@ "parent": "tob2_chameleon-hydra_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2675,9 +2675,9 @@ "parent": "tob2_chameleon-hydra_sticky-tongue", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 50.0, - "range_ft": null, - "long_range_ft": null, + "reach": 50.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": null, @@ -2698,9 +2698,9 @@ "parent": "tob2_chamrosh_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2721,9 +2721,9 @@ "parent": "tob2_chatterlome_chisel", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -2744,9 +2744,9 @@ "parent": "tob2_cherufe_magma-ball", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": 240.0, + "reach": null, + "range": 60.0, + "long_range": 240.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -2767,9 +2767,9 @@ "parent": "tob2_cherufe_slam", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -2790,9 +2790,9 @@ "parent": "tob2_chill-haunt_shivering-touch", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -2813,9 +2813,9 @@ "parent": "tob2_chimeric-phantom_maddening-grasp", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -2836,9 +2836,9 @@ "parent": "tob2_chronomatic-enhancer_slam", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -2859,9 +2859,9 @@ "parent": "tob2_clockwork-archon_transforming-weapon", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -2882,9 +2882,9 @@ "parent": "tob2_clockwork-leech_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2905,9 +2905,9 @@ "parent": "tob2_clockwork-leech_tail", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -2928,9 +2928,9 @@ "parent": "tob2_clockwork-mantis_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -2951,9 +2951,9 @@ "parent": "tob2_clockwork-mantis_serrated-blade", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -2974,9 +2974,9 @@ "parent": "tob2_clockwork-tiger_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -2997,9 +2997,9 @@ "parent": "tob2_clockwork-tiger_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -3020,9 +3020,9 @@ "parent": "tob2_collais_gore", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -3043,9 +3043,9 @@ "parent": "tob2_collais_hooves", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -3066,9 +3066,9 @@ "parent": "tob2_compsognathus_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3089,9 +3089,9 @@ "parent": "tob2_conjoined-queen_slam", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -3112,9 +3112,9 @@ "parent": "tob2_conjoined-queen_sting", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3135,9 +3135,9 @@ "parent": "tob2_corpse-worm_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -3158,9 +3158,9 @@ "parent": "tob2_crimson-shambler_slam", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3181,9 +3181,9 @@ "parent": "tob2_crimson-shambler_slime-glob", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": null, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": null, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3204,9 +3204,9 @@ "parent": "tob2_crinaea_dagger", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3227,9 +3227,9 @@ "parent": "tob2_crocotta_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -3250,9 +3250,9 @@ "parent": "tob2_crocotta_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3273,9 +3273,9 @@ "parent": "tob2_cryoceros_gore", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -3296,9 +3296,9 @@ "parent": "tob2_cryoceros_stomp", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -3319,9 +3319,9 @@ "parent": "tob2_crystalline-monolith_mind-spear", "attack_type": "SPELL", "to_hit_mod": 7, - "reach_ft": null, - "range_ft": 30.0, - "long_range_ft": null, + "reach": null, + "range": 30.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -3342,9 +3342,9 @@ "parent": "tob2_crystalline-monolith_slam", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -3365,9 +3365,9 @@ "parent": "tob2_culicoid_needle-claws", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -3388,9 +3388,9 @@ "parent": "tob2_culicoid_proboscis", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -3411,9 +3411,9 @@ "parent": "tob2_dancing-foliage_serrated-leaves", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3434,9 +3434,9 @@ "parent": "tob2_darakhul-captain_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -3457,9 +3457,9 @@ "parent": "tob2_darakhul-captain_claw", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -3480,9 +3480,9 @@ "parent": "tob2_darakhul-captain_heavy-crossbow", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": null, - "range_ft": 100.0, - "long_range_ft": 400.0, + "reach": null, + "range": 100.0, + "long_range": 400.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3503,9 +3503,9 @@ "parent": "tob2_darakhul-captain_longsword", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3526,9 +3526,9 @@ "parent": "tob2_darakhul-spy_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -3549,9 +3549,9 @@ "parent": "tob2_darakhul-spy_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -3572,9 +3572,9 @@ "parent": "tob2_darakhul-spy_light-crossbow", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": null, - "range_ft": 80.0, - "long_range_ft": 320.0, + "reach": null, + "range": 80.0, + "long_range": 320.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3595,9 +3595,9 @@ "parent": "tob2_darakhul-spy_shortsword", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3618,9 +3618,9 @@ "parent": "tob2_de-ogen_burning-touch", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -3641,9 +3641,9 @@ "parent": "tob2_death-barque_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -3664,9 +3664,9 @@ "parent": "tob2_death-barque_tail-smash", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -3687,9 +3687,9 @@ "parent": "tob2_death-shroud-golem_smothering-slam", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -3710,9 +3710,9 @@ "parent": "tob2_death-vulture_beak", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -3733,9 +3733,9 @@ "parent": "tob2_death-vulture_talons", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -3756,9 +3756,9 @@ "parent": "tob2_deathspeaker_necrotic-ray", "attack_type": "SPELL", "to_hit_mod": 7, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": null, + "reach": null, + "range": 60.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -3779,9 +3779,9 @@ "parent": "tob2_deathspeaker_rake", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -3802,9 +3802,9 @@ "parent": "tob2_deathweaver_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -3825,9 +3825,9 @@ "parent": "tob2_deathweaver_web", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 40.0, - "long_range_ft": 80.0, + "reach": null, + "range": 40.0, + "long_range": 80.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3848,9 +3848,9 @@ "parent": "tob2_deep-troll_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3871,9 +3871,9 @@ "parent": "tob2_deep-troll_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -3894,9 +3894,9 @@ "parent": "tob2_derendian-moth-abomination_beak", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -3917,9 +3917,9 @@ "parent": "tob2_derendian-moth-abomination_tentacle", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 20.0, - "range_ft": null, - "long_range_ft": null, + "reach": 20.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3940,9 +3940,9 @@ "parent": "tob2_derro-explorer_scimitar", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3963,9 +3963,9 @@ "parent": "tob2_derro-explorer_shortbow", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 80.0, - "long_range_ft": 320.0, + "reach": null, + "range": 80.0, + "long_range": 320.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -3986,9 +3986,9 @@ "parent": "tob2_derro-guard_aklys", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": 10.0, - "long_range_ft": 30.0, + "reach": 5.0, + "range": 10.0, + "long_range": 30.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -4009,9 +4009,9 @@ "parent": "tob2_derro-guard_light-crossbow", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 80.0, - "long_range_ft": 320.0, + "reach": null, + "range": 80.0, + "long_range": 320.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -4032,9 +4032,9 @@ "parent": "tob2_derro-shadowseeker_dagger", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -4055,9 +4055,9 @@ "parent": "tob2_derro-shadowseeker_light-crossbow", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": null, - "range_ft": 80.0, - "long_range_ft": 320.0, + "reach": null, + "range": 80.0, + "long_range": 320.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -4078,9 +4078,9 @@ "parent": "tob2_destroyer_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -4101,9 +4101,9 @@ "parent": "tob2_destroyer_greataxe", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -4124,9 +4124,9 @@ "parent": "tob2_destroyer_spear", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -4147,9 +4147,9 @@ "parent": "tob2_dimensional-shambler_claw", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -4170,9 +4170,9 @@ "parent": "tob2_diminution-drake_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -4193,9 +4193,9 @@ "parent": "tob2_diminution-drake_in-one-bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": null, @@ -4216,9 +4216,9 @@ "parent": "tob2_diminution-drake_stinger", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -4239,9 +4239,9 @@ "parent": "tob2_dragonflesh-golem_bite", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -4262,9 +4262,9 @@ "parent": "tob2_dragonflesh-golem_claws", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -4285,9 +4285,9 @@ "parent": "tob2_dread-walker-excavator_excavation-beam", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": null, - "range_ft": 30.0, - "long_range_ft": 60.0, + "reach": null, + "range": 30.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, @@ -4308,9 +4308,9 @@ "parent": "tob2_dread-walker-excavator_foreleg", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -4331,9 +4331,9 @@ "parent": "tob2_edjet-initiate_shortbow", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": null, - "range_ft": 80.0, - "long_range_ft": 320.0, + "reach": null, + "range": 80.0, + "long_range": 320.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -4354,9 +4354,9 @@ "parent": "tob2_edjet-initiate_shortsword", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -4377,9 +4377,9 @@ "parent": "tob2_egret-harpy_spear", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -4400,9 +4400,9 @@ "parent": "tob2_egret-harpy_talons", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -4423,9 +4423,9 @@ "parent": "tob2_eldritch-ooze_void-infused-pseudopod", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -4446,9 +4446,9 @@ "parent": "tob2_emperors-hyena_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -4469,9 +4469,9 @@ "parent": "tob2_empusa_claw", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -4492,9 +4492,9 @@ "parent": "tob2_empusa_kick", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -4515,9 +4515,9 @@ "parent": "tob2_eonic-savant_time-warping-staff", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -4538,9 +4538,9 @@ "parent": "tob2_fabricator_disassembling-slam", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -4561,9 +4561,9 @@ "parent": "tob2_faceless-wanderer_claws", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -4584,9 +4584,9 @@ "parent": "tob2_falsifier-fog_chill", "attack_type": "SPELL", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -4607,9 +4607,9 @@ "parent": "tob2_fane-spirit_touch-of-forgetfulness", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -4630,9 +4630,9 @@ "parent": "tob2_far-dorocha_dirk", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -4653,9 +4653,9 @@ "parent": "tob2_felid-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -4676,9 +4676,9 @@ "parent": "tob2_felid-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -4699,9 +4699,9 @@ "parent": "tob2_fennec-fox_bite", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -4722,9 +4722,9 @@ "parent": "tob2_fey-revenant_longbow", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": null, - "range_ft": 120.0, - "long_range_ft": 600.0, + "reach": null, + "range": 120.0, + "long_range": 600.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -4745,9 +4745,9 @@ "parent": "tob2_fey-revenant_queens-grasp", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": null, - "range_ft": null, - "long_range_ft": null, + "reach": null, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": null, @@ -4768,9 +4768,9 @@ "parent": "tob2_fey-revenant_shortsword", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -4791,9 +4791,9 @@ "parent": "tob2_fire-infused-water-elemental_slam", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -4814,9 +4814,9 @@ "parent": "tob2_flayed-wraith_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -4837,9 +4837,9 @@ "parent": "tob2_fleshdreg_rock", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": 180.0, + "reach": null, + "range": 60.0, + "long_range": 180.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -4860,9 +4860,9 @@ "parent": "tob2_fleshdreg_slam", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -4883,9 +4883,9 @@ "parent": "tob2_fleshspurned_phantasmal-bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -4906,9 +4906,9 @@ "parent": "tob2_flithidir_beak", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -4929,9 +4929,9 @@ "parent": "tob2_flithidir_dagger", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -4952,9 +4952,9 @@ "parent": "tob2_forest-emperor_acidic-claw", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -4975,9 +4975,9 @@ "parent": "tob2_forest-emperor_tail", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -4998,9 +4998,9 @@ "parent": "tob2_forest-falcon_beak", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -5021,9 +5021,9 @@ "parent": "tob2_fragrant-one_phrenic-antennae", "attack_type": "SPELL", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5044,9 +5044,9 @@ "parent": "tob2_frost-mole_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -5067,9 +5067,9 @@ "parent": "tob2_galidroo_bite", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -5090,9 +5090,9 @@ "parent": "tob2_galidroo_claw", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -5113,9 +5113,9 @@ "parent": "tob2_galidroo_tail", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -5136,9 +5136,9 @@ "parent": "tob2_garlicle_walking-staff", "attack_type": "WEAPON", "to_hit_mod": 0, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5159,9 +5159,9 @@ "parent": "tob2_gaunt-one_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -5182,9 +5182,9 @@ "parent": "tob2_gaunt-one_extract-heart", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, @@ -5205,9 +5205,9 @@ "parent": "tob2_ghillie-dubh_slam", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -5228,9 +5228,9 @@ "parent": "tob2_ghoul-bat_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5251,9 +5251,9 @@ "parent": "tob2_ghul_claws", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -5274,9 +5274,9 @@ "parent": "tob2_giant-armadillo_claws", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5297,9 +5297,9 @@ "parent": "tob2_giant-bombardier-beetle_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5320,9 +5320,9 @@ "parent": "tob2_giant-bombardier-beetle_spray", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 15.0, - "long_range_ft": 30.0, + "reach": null, + "range": 15.0, + "long_range": 30.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -5343,9 +5343,9 @@ "parent": "tob2_giant-frilled-lizard_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -5366,9 +5366,9 @@ "parent": "tob2_giant-frilled-lizard_tail", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5389,9 +5389,9 @@ "parent": "tob2_giant-honey-bee_sting", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5412,9 +5412,9 @@ "parent": "tob2_giant-husk_smother", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": null, @@ -5435,9 +5435,9 @@ "parent": "tob2_giant-leech_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5458,9 +5458,9 @@ "parent": "tob2_giant-mongoose_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5481,9 +5481,9 @@ "parent": "tob2_giant-snow-beetle_pincer", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5504,9 +5504,9 @@ "parent": "tob2_giant-water-scorpion_claws", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5527,9 +5527,9 @@ "parent": "tob2_giant-water-scorpion_proboscis", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5550,9 +5550,9 @@ "parent": "tob2_glacial-corrupter_glacial-touch", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -5573,9 +5573,9 @@ "parent": "tob2_glacial-corrupter_longbow", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 150.0, - "long_range_ft": 600.0, + "reach": null, + "range": 150.0, + "long_range": 600.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5596,9 +5596,9 @@ "parent": "tob2_glacial-corrupter_longsword", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5619,9 +5619,9 @@ "parent": "tob2_glacier-behemoth_bite", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -5642,9 +5642,9 @@ "parent": "tob2_gorao-ka_sack-of-coins", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5665,9 +5665,9 @@ "parent": "tob2_graknork_bite", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -5688,9 +5688,9 @@ "parent": "tob2_graknork_claw", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -5711,9 +5711,9 @@ "parent": "tob2_graknork_eye-ray", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": null, - "range_ft": 30.0, - "long_range_ft": 120.0, + "reach": null, + "range": 30.0, + "long_range": 120.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, @@ -5734,9 +5734,9 @@ "parent": "tob2_graveyard-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -5757,9 +5757,9 @@ "parent": "tob2_graveyard-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -5780,9 +5780,9 @@ "parent": "tob2_gray-orc_claws", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5803,9 +5803,9 @@ "parent": "tob2_great-gray-owl_talons", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5826,9 +5826,9 @@ "parent": "tob2_greater-ghast-of-leng_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -5849,9 +5849,9 @@ "parent": "tob2_greater-ghast-of-leng_claws", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -5872,9 +5872,9 @@ "parent": "tob2_greater-lunarchidna_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -5895,9 +5895,9 @@ "parent": "tob2_greater-lunarchidna_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -5918,9 +5918,9 @@ "parent": "tob2_greed-swarm_coin-barrage", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": null, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -5941,9 +5941,9 @@ "parent": "tob2_greed-swarm_coin-slam", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 0.0, - "range_ft": null, - "long_range_ft": null, + "reach": 0.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -5964,9 +5964,9 @@ "parent": "tob2_grimmlet-swarm_crystal-edges", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 0.0, - "range_ft": null, - "long_range_ft": null, + "reach": 0.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -5987,9 +5987,9 @@ "parent": "tob2_grimmlet_crystal-edge", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6010,9 +6010,9 @@ "parent": "tob2_grove-bear_claws", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -6033,9 +6033,9 @@ "parent": "tob2_gulper-behemoth_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, @@ -6056,9 +6056,9 @@ "parent": "tob2_haleshi_stupefying-touch", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -6079,9 +6079,9 @@ "parent": "tob2_hantu-penanggal_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -6102,9 +6102,9 @@ "parent": "tob2_hantu-penanggal_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6125,9 +6125,9 @@ "parent": "tob2_hantu-penanggal_entrails", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -6148,9 +6148,9 @@ "parent": "tob2_hantu-penanggal_rapier", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6171,9 +6171,9 @@ "parent": "tob2_harbinger-of-wrath_slam", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, @@ -6194,9 +6194,9 @@ "parent": "tob2_harefolk_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6217,9 +6217,9 @@ "parent": "tob2_harefolk_shortsword", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6240,9 +6240,9 @@ "parent": "tob2_harefolk_sling", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 30.0, - "long_range_ft": 120.0, + "reach": null, + "range": 30.0, + "long_range": 120.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6263,9 +6263,9 @@ "parent": "tob2_hebi-doku_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -6286,9 +6286,9 @@ "parent": "tob2_hebi-doku_disabling-sting", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -6309,9 +6309,9 @@ "parent": "tob2_hebi-doku_toxic-spittle", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": null, - "range_ft": 30.0, - "long_range_ft": 90.0, + "reach": null, + "range": 30.0, + "long_range": 90.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -6332,9 +6332,9 @@ "parent": "tob2_heggarna_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6355,9 +6355,9 @@ "parent": "tob2_helashruu_shard-whip", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -6378,9 +6378,9 @@ "parent": "tob2_herald-of-slaughter_cleaver", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -6401,9 +6401,9 @@ "parent": "tob2_herald-of-slaughter_enkindle-hate", "attack_type": "SPELL", "to_hit_mod": 8, - "reach_ft": null, - "range_ft": 120.0, - "long_range_ft": null, + "reach": null, + "range": 120.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -6424,9 +6424,9 @@ "parent": "tob2_herald-of-slaughter_gore", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -6447,9 +6447,9 @@ "parent": "tob2_herald-of-the-void_void-claw", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -6470,9 +6470,9 @@ "parent": "tob2_herald-of-the-void_void-ray", "attack_type": "SPELL", "to_hit_mod": 8, - "reach_ft": null, - "range_ft": 120.0, - "long_range_ft": null, + "reach": null, + "range": 120.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -6493,9 +6493,9 @@ "parent": "tob2_hoard-drake_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -6516,9 +6516,9 @@ "parent": "tob2_hoard-drake_claws", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -6539,9 +6539,9 @@ "parent": "tob2_hoarfrost-drake_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6562,9 +6562,9 @@ "parent": "tob2_hoarfrost-drake_claw", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6585,9 +6585,9 @@ "parent": "tob2_hodag_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6608,9 +6608,9 @@ "parent": "tob2_hodag_claws", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6631,9 +6631,9 @@ "parent": "tob2_hodag_horns", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -6654,9 +6654,9 @@ "parent": "tob2_hodag_tail", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6677,9 +6677,9 @@ "parent": "tob2_holler-spider_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6700,9 +6700,9 @@ "parent": "tob2_holler-spider_hoot", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": null, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6723,9 +6723,9 @@ "parent": "tob2_hongaek_vaporous-tentacle", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -6746,9 +6746,9 @@ "parent": "tob2_hooden-horse_blade-of-retribution", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6769,9 +6769,9 @@ "parent": "tob2_howler-baboon_fist", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6792,9 +6792,9 @@ "parent": "tob2_howler-baboon_rock", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": null, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6815,9 +6815,9 @@ "parent": "tob2_huecambra_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -6838,9 +6838,9 @@ "parent": "tob2_huecambra_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6861,9 +6861,9 @@ "parent": "tob2_huecambra_tail", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -6884,9 +6884,9 @@ "parent": "tob2_huli-jing_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -6907,9 +6907,9 @@ "parent": "tob2_huli-jing_jade-dagger", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6930,9 +6930,9 @@ "parent": "tob2_hverhuldra_steaming-fist", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -6953,9 +6953,9 @@ "parent": "tob2_ice-bogie_icicle-fist", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6976,9 +6976,9 @@ "parent": "tob2_ice-bogie_spiteful-hail", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 30.0, - "long_range_ft": 120.0, + "reach": null, + "range": 30.0, + "long_range": 120.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -6999,9 +6999,9 @@ "parent": "tob2_ice-elemental_encase-in-ice", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -7022,9 +7022,9 @@ "parent": "tob2_ice-elemental_ice-claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -7045,9 +7045,9 @@ "parent": "tob2_ichor-ooze_hurl-mote", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 10.0, - "long_range_ft": 30.0, + "reach": null, + "range": 10.0, + "long_range": 30.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -7068,9 +7068,9 @@ "parent": "tob2_ichor-ooze_pseudopod", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -7091,9 +7091,9 @@ "parent": "tob2_ikuchi_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -7114,9 +7114,9 @@ "parent": "tob2_ikuchi_constrict", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 20.0, - "range_ft": null, - "long_range_ft": null, + "reach": 20.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -7137,9 +7137,9 @@ "parent": "tob2_illhveli-kembingur_bite", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, @@ -7160,9 +7160,9 @@ "parent": "tob2_illhveli-kembingur_tail", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 20.0, - "range_ft": null, - "long_range_ft": null, + "reach": 20.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -7183,9 +7183,9 @@ "parent": "tob2_illhveli-nauthveli_bite", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, @@ -7206,9 +7206,9 @@ "parent": "tob2_illhveli-nauthveli_tail", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 20.0, - "range_ft": null, - "long_range_ft": null, + "reach": 20.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -7229,9 +7229,9 @@ "parent": "tob2_imperial-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -7252,9 +7252,9 @@ "parent": "tob2_incarnate-gloom_despairing-touch", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -7275,9 +7275,9 @@ "parent": "tob2_infernal-centaur_dagger", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -7298,9 +7298,9 @@ "parent": "tob2_infernal-swarm_bites", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 0.0, - "range_ft": null, - "long_range_ft": null, + "reach": 0.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 8, @@ -7321,9 +7321,9 @@ "parent": "tob2_infernal-swarm_poisonous-barb", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": null, - "range_ft": 30.0, - "long_range_ft": 120.0, + "reach": null, + "range": 30.0, + "long_range": 120.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -7344,9 +7344,9 @@ "parent": "tob2_infernal-swarm_scimitar", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -7367,9 +7367,9 @@ "parent": "tob2_infernal-swarm_slam", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -7390,9 +7390,9 @@ "parent": "tob2_initiate-of-the-elder-elementals_dagger", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -7413,9 +7413,9 @@ "parent": "tob2_initiate-of-the-elder-elementals_gift-of-the-elder-elementals", "attack_type": "SPELL", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": null, + "reach": null, + "range": 60.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -7436,9 +7436,9 @@ "parent": "tob2_irid_iridescent-blast", "attack_type": "SPELL", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": null, + "reach": null, + "range": 60.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -7459,9 +7459,9 @@ "parent": "tob2_jack-of-strings_mocking-slap", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -7482,9 +7482,9 @@ "parent": "tob2_kachlian_tentacle", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -7505,9 +7505,9 @@ "parent": "tob2_kamaitachi_sickle-paw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -7528,9 +7528,9 @@ "parent": "tob2_kaveph_rock", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": null, - "range_ft": 30.0, - "long_range_ft": 120.0, + "reach": null, + "range": 30.0, + "long_range": 120.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -7551,9 +7551,9 @@ "parent": "tob2_kaveph_smash", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -7574,9 +7574,9 @@ "parent": "tob2_keelbreaker-crab_pincer", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -7597,9 +7597,9 @@ "parent": "tob2_kelp-drake_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -7620,9 +7620,9 @@ "parent": "tob2_kelp-drake_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -7643,9 +7643,9 @@ "parent": "tob2_kelp-eel_kelp-tendril", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 50.0, - "range_ft": null, - "long_range_ft": null, + "reach": 50.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": null, @@ -7666,9 +7666,9 @@ "parent": "tob2_kelp-eel_slam", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, @@ -7689,9 +7689,9 @@ "parent": "tob2_keyhole-dragonette_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -7712,9 +7712,9 @@ "parent": "tob2_keyhole-dragonette_scale-slash", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -7735,9 +7735,9 @@ "parent": "tob2_kezai_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -7758,9 +7758,9 @@ "parent": "tob2_kezai_poison-barb", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": 30.0, - "long_range_ft": 120.0, + "reach": 5.0, + "range": 30.0, + "long_range": 120.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -7781,9 +7781,9 @@ "parent": "tob2_khodumodumo_bite", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, @@ -7804,9 +7804,9 @@ "parent": "tob2_khodumodumo_tongue", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 50.0, - "range_ft": null, - "long_range_ft": null, + "reach": 50.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": null, @@ -7827,9 +7827,9 @@ "parent": "tob2_kirikari_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -7850,9 +7850,9 @@ "parent": "tob2_kirikari_slam", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -7873,9 +7873,9 @@ "parent": "tob2_knight-ab-errant_fist", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -7896,9 +7896,9 @@ "parent": "tob2_knight-ab-errant_sweeping-maul", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -7919,9 +7919,9 @@ "parent": "tob2_kobold-spellclerk_dagger", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -7942,9 +7942,9 @@ "parent": "tob2_kobold-war-machine_spiked-wheel", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -7965,9 +7965,9 @@ "parent": "tob2_kobold-war-machine_spit-fire", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": null, - "range_ft": 120.0, - "long_range_ft": null, + "reach": null, + "range": 120.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -7988,9 +7988,9 @@ "parent": "tob2_lambent-witchfyre_blazing-touch", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -8011,9 +8011,9 @@ "parent": "tob2_lantern-beetle_horn", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": null, @@ -8034,9 +8034,9 @@ "parent": "tob2_lava-keeper_lava-lob", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": 240.0, + "reach": null, + "range": 60.0, + "long_range": 240.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, @@ -8057,9 +8057,9 @@ "parent": "tob2_lava-keeper_slam", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -8080,9 +8080,9 @@ "parent": "tob2_lazavik_reed-whip", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -8103,9 +8103,9 @@ "parent": "tob2_leech-swarm_bites", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 0.0, - "range_ft": null, - "long_range_ft": null, + "reach": 0.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -8126,9 +8126,9 @@ "parent": "tob2_lesser-lunarchidna_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -8149,9 +8149,9 @@ "parent": "tob2_lesser-lunarchidna_claw", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -8172,9 +8172,9 @@ "parent": "tob2_light-drake_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -8195,9 +8195,9 @@ "parent": "tob2_liminal-drake_bite", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -8218,9 +8218,9 @@ "parent": "tob2_liminal-drake_claw", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -8241,9 +8241,9 @@ "parent": "tob2_locksmith_key-blade", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -8264,9 +8264,9 @@ "parent": "tob2_luck-leech_biting-arms", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -8287,9 +8287,9 @@ "parent": "tob2_lunarian_halberd", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -8310,9 +8310,9 @@ "parent": "tob2_lymarien-swarm_claws", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 0.0, - "range_ft": null, - "long_range_ft": null, + "reach": 0.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, @@ -8333,9 +8333,9 @@ "parent": "tob2_lymarien_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -8356,9 +8356,9 @@ "parent": "tob2_mad-piper_screaming-flail", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -8379,9 +8379,9 @@ "parent": "tob2_magma-octopus_tentacle", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -8402,9 +8402,9 @@ "parent": "tob2_magnetic-elemental_slam", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -8425,9 +8425,9 @@ "parent": "tob2_major-malleable_flesh-tendril", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -8448,9 +8448,9 @@ "parent": "tob2_manggus_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -8471,9 +8471,9 @@ "parent": "tob2_manggus_greataxe", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -8494,9 +8494,9 @@ "parent": "tob2_mangrove-treant_slam", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -8517,9 +8517,9 @@ "parent": "tob2_mari-lwyd_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -8540,9 +8540,9 @@ "parent": "tob2_mari-lwyd_hooves", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -8563,9 +8563,9 @@ "parent": "tob2_marsh-dire_claws", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -8586,9 +8586,9 @@ "parent": "tob2_marsh-dire_strangling-vine", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -8609,9 +8609,9 @@ "parent": "tob2_massive-malleable_flesh-tendril", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, @@ -8632,9 +8632,9 @@ "parent": "tob2_mead-archon_maul", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -8655,9 +8655,9 @@ "parent": "tob2_mead-archon_radiant-bolt", "attack_type": "SPELL", "to_hit_mod": 7, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": null, + "reach": null, + "range": 60.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -8678,9 +8678,9 @@ "parent": "tob2_mei-jiao-shou_head-bash", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -8701,9 +8701,9 @@ "parent": "tob2_mei-jiao-shou_stomp", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -8724,9 +8724,9 @@ "parent": "tob2_mineral-ooze_pseudopod", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -8747,9 +8747,9 @@ "parent": "tob2_minor-malleable_flesh-tendril", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -8770,9 +8770,9 @@ "parent": "tob2_moderate-malleable_flesh-tendril", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -8793,9 +8793,9 @@ "parent": "tob2_moonkite_radiant-arrow", "attack_type": "SPELL", "to_hit_mod": 7, - "reach_ft": null, - "range_ft": 150.0, - "long_range_ft": null, + "reach": null, + "range": 150.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -8816,9 +8816,9 @@ "parent": "tob2_moonkite_wing-buffet", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -8839,9 +8839,9 @@ "parent": "tob2_mountain-dryad_rock", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": 240.0, + "reach": null, + "range": 60.0, + "long_range": 240.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -8862,9 +8862,9 @@ "parent": "tob2_mountain-dryad_slam", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -8885,9 +8885,9 @@ "parent": "tob2_mountain-nymph_longbow", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": null, - "range_ft": 150.0, - "long_range_ft": 600.0, + "reach": null, + "range": 150.0, + "long_range": 600.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -8908,9 +8908,9 @@ "parent": "tob2_mountain-strider_headbutt", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -8931,9 +8931,9 @@ "parent": "tob2_mountain-strider_spear", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -8954,9 +8954,9 @@ "parent": "tob2_murgrik_bite", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -8977,9 +8977,9 @@ "parent": "tob2_murgrik_tentacles", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -9000,9 +9000,9 @@ "parent": "tob2_mydnari_acid-glob", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 30.0, - "long_range_ft": 60.0, + "reach": null, + "range": 30.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -9023,9 +9023,9 @@ "parent": "tob2_mydnari_shortsword", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -9046,9 +9046,9 @@ "parent": "tob2_mystic_void-bolt", "attack_type": "SPELL", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 50.0, - "long_range_ft": null, + "reach": null, + "range": 50.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -9069,9 +9069,9 @@ "parent": "tob2_mystic_void-claw", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -9092,9 +9092,9 @@ "parent": "tob2_naizu-ha_dagger-legs", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -9115,9 +9115,9 @@ "parent": "tob2_naizu-ha_scissor-claws", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -9138,9 +9138,9 @@ "parent": "tob2_naizu-ha_scythe-tail", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -9161,9 +9161,9 @@ "parent": "tob2_narshark_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -9184,9 +9184,9 @@ "parent": "tob2_nephirron-devil_bite", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -9207,9 +9207,9 @@ "parent": "tob2_nephirron-devil_claw", "attack_type": "WEAPON", "to_hit_mod": 13, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -9230,9 +9230,9 @@ "parent": "tob2_nharyth_spine-shot", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": null, - "range_ft": 30.0, - "long_range_ft": 120.0, + "reach": null, + "range": 30.0, + "long_range": 120.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -9253,9 +9253,9 @@ "parent": "tob2_nharyth_spined-slap", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -9276,9 +9276,9 @@ "parent": "tob2_noth-norren_slam", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -9299,9 +9299,9 @@ "parent": "tob2_noth-norren_throw-debris", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": 180.0, + "reach": null, + "range": 60.0, + "long_range": 180.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -9322,9 +9322,9 @@ "parent": "tob2_nyctli-swarm_stingers", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 0.0, - "range_ft": null, - "long_range_ft": null, + "reach": 0.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, @@ -9345,9 +9345,9 @@ "parent": "tob2_nyctli_stingers", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -9368,9 +9368,9 @@ "parent": "tob2_oasis-keeper_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -9391,9 +9391,9 @@ "parent": "tob2_oasis-keeper_stinger", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -9414,9 +9414,9 @@ "parent": "tob2_ogrepede_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -9437,9 +9437,9 @@ "parent": "tob2_ogrepede_slam", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -9460,9 +9460,9 @@ "parent": "tob2_one-horned-ogre_greatsword", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -9483,9 +9483,9 @@ "parent": "tob2_one-horned-ogre_javelin", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": 30.0, - "long_range_ft": 120.0, + "reach": 5.0, + "range": 30.0, + "long_range": 120.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -9506,9 +9506,9 @@ "parent": "tob2_onyx-magistrate_necrotic-ray", "attack_type": "SPELL", "to_hit_mod": 8, - "reach_ft": null, - "range_ft": 30.0, - "long_range_ft": 120.0, + "reach": null, + "range": 30.0, + "long_range": 120.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -9529,9 +9529,9 @@ "parent": "tob2_onyx-magistrate_scepter", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -9552,9 +9552,9 @@ "parent": "tob2_ophidiotaur_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -9575,9 +9575,9 @@ "parent": "tob2_ophidiotaur_poisoned-glaive", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -9598,9 +9598,9 @@ "parent": "tob2_ophinix_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -9621,9 +9621,9 @@ "parent": "tob2_ophinix_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -9644,9 +9644,9 @@ "parent": "tob2_orniraptor_peck", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -9667,9 +9667,9 @@ "parent": "tob2_orniraptor_spit-stone", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": null, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": null, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -9690,9 +9690,9 @@ "parent": "tob2_orphan-of-the-black_slam", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -9713,9 +9713,9 @@ "parent": "tob2_ortifex_slam", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -9736,9 +9736,9 @@ "parent": "tob2_otterfolk_atlatl-dart", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": null, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -9759,9 +9759,9 @@ "parent": "tob2_otterfolk_dagger", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -9782,9 +9782,9 @@ "parent": "tob2_overshadow_strength-drain", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -9805,9 +9805,9 @@ "parent": "tob2_pal-rai-yuk_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -9828,9 +9828,9 @@ "parent": "tob2_pale-screamer_tentacle", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -9851,9 +9851,9 @@ "parent": "tob2_parzzval_oversized-fist", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -9874,9 +9874,9 @@ "parent": "tob2_parzzval_oversized-maw", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -9897,9 +9897,9 @@ "parent": "tob2_peat-mammoth_slam", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -9920,9 +9920,9 @@ "parent": "tob2_pestilence-swarm_diseased-bites", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 0.0, - "range_ft": null, - "long_range_ft": null, + "reach": 0.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -9943,9 +9943,9 @@ "parent": "tob2_phase-giant_rock", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": 240.0, + "reach": null, + "range": 60.0, + "long_range": 240.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -9966,9 +9966,9 @@ "parent": "tob2_phase-giant_spiked-fist", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -9989,9 +9989,9 @@ "parent": "tob2_pine-doom_sap-filled-pinecone", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": null, - "range_ft": 30.0, - "long_range_ft": 120.0, + "reach": null, + "range": 30.0, + "long_range": 120.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -10012,9 +10012,9 @@ "parent": "tob2_pine-doom_slam", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -10035,9 +10035,9 @@ "parent": "tob2_plague-spirit_censer", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -10058,9 +10058,9 @@ "parent": "tob2_plague-spirit_enfeebling-touch", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -10081,9 +10081,9 @@ "parent": "tob2_primal-oozer_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -10104,9 +10104,9 @@ "parent": "tob2_psychic-vampire_unarmed-strike", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10127,9 +10127,9 @@ "parent": "tob2_pustulent-shambler_pseudopod", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -10150,9 +10150,9 @@ "parent": "tob2_putrescent-slime_pseudopod", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -10173,9 +10173,9 @@ "parent": "tob2_qiqirn_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10196,9 +10196,9 @@ "parent": "tob2_quickserpent_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10219,9 +10219,9 @@ "parent": "tob2_quickserpent_constrict", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -10242,9 +10242,9 @@ "parent": "tob2_quoreq_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -10265,9 +10265,9 @@ "parent": "tob2_quoreq_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -10288,9 +10288,9 @@ "parent": "tob2_radiant-spark-swarm_radiant-sparks", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 0.0, - "range_ft": null, - "long_range_ft": null, + "reach": 0.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -10311,9 +10311,9 @@ "parent": "tob2_repository_slash", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -10334,9 +10334,9 @@ "parent": "tob2_resinous-frog_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10357,9 +10357,9 @@ "parent": "tob2_resinous-frog_tongue", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10380,9 +10380,9 @@ "parent": "tob2_righteous-sentinel_slam", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -10403,9 +10403,9 @@ "parent": "tob2_rock-roach_acid-spit", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": null, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10426,9 +10426,9 @@ "parent": "tob2_rock-roach_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -10449,9 +10449,9 @@ "parent": "tob2_rotsam-swarm_diseased-bites", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 0.0, - "range_ft": null, - "long_range_ft": null, + "reach": 0.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -10472,9 +10472,9 @@ "parent": "tob2_rotsam_diseased-bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10495,9 +10495,9 @@ "parent": "tob2_rum-lord_ale-tap-scepter", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10518,9 +10518,9 @@ "parent": "tob2_rum-lord_broken-bottle-shiv", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10541,9 +10541,9 @@ "parent": "tob2_runeswarm_cutting-runes", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 0.0, - "range_ft": null, - "long_range_ft": null, + "reach": 0.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, @@ -10564,9 +10564,9 @@ "parent": "tob2_salamander-monarch_tail", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -10587,9 +10587,9 @@ "parent": "tob2_salamander-monarch_trident", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -10610,9 +10610,9 @@ "parent": "tob2_sanddrift-drake_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -10633,9 +10633,9 @@ "parent": "tob2_sanddrift-drake_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -10656,9 +10656,9 @@ "parent": "tob2_sapphire-jelly_freezing-slam", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -10679,9 +10679,9 @@ "parent": "tob2_sarsaok_gore", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -10702,9 +10702,9 @@ "parent": "tob2_sarsaok_hooves", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -10725,9 +10725,9 @@ "parent": "tob2_sasori-fukurowashi_claw", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -10748,9 +10748,9 @@ "parent": "tob2_sasori-fukurowashi_sting", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10771,9 +10771,9 @@ "parent": "tob2_sasori-fukurowashi_talons", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10794,9 +10794,9 @@ "parent": "tob2_sasquatch_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10817,9 +10817,9 @@ "parent": "tob2_sasquatch_fist", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -10840,9 +10840,9 @@ "parent": "tob2_sasquatch_rock", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": null, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": null, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -10863,9 +10863,9 @@ "parent": "tob2_scarlet-ibis_beak", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -10886,9 +10886,9 @@ "parent": "tob2_scarlet-ibis_talons", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -10909,9 +10909,9 @@ "parent": "tob2_scribe-devil_claws", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -10932,9 +10932,9 @@ "parent": "tob2_scribe-devil_tail", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -10955,9 +10955,9 @@ "parent": "tob2_scrofin_fist", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -10978,9 +10978,9 @@ "parent": "tob2_scrofin_gore", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11001,9 +11001,9 @@ "parent": "tob2_scroll-mummy_spell-siphoning-fist", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11024,9 +11024,9 @@ "parent": "tob2_servant-of-the-unsated-god_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11047,9 +11047,9 @@ "parent": "tob2_servant-of-the-unsated-god_light-crossbow", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": null, - "range_ft": 80.0, - "long_range_ft": 320.0, + "reach": null, + "range": 80.0, + "long_range": 320.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11070,9 +11070,9 @@ "parent": "tob2_servant-of-the-unsated-god_mace-of-the-devourer", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11093,9 +11093,9 @@ "parent": "tob2_shadow-boxer_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -11116,9 +11116,9 @@ "parent": "tob2_shadow-boxer_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11139,9 +11139,9 @@ "parent": "tob2_shadow-giant_tenebrous-talons", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -11162,9 +11162,9 @@ "parent": "tob2_shadow-of-death_shortsword", "attack_type": "WEAPON", "to_hit_mod": 15, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -11185,9 +11185,9 @@ "parent": "tob2_shiftshroom_slam", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11208,9 +11208,9 @@ "parent": "tob2_shimmer-seal_tusk", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -11231,9 +11231,9 @@ "parent": "tob2_shriekbat_bite", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -11254,9 +11254,9 @@ "parent": "tob2_shriekbat_talons", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -11277,9 +11277,9 @@ "parent": "tob2_shukankor_beak", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -11300,9 +11300,9 @@ "parent": "tob2_shukankor_claws", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -11323,9 +11323,9 @@ "parent": "tob2_shurale_battleaxe", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11346,9 +11346,9 @@ "parent": "tob2_shurale_gore", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -11369,9 +11369,9 @@ "parent": "tob2_silenal_darts", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": null, - "range_ft": 20.0, - "long_range_ft": 40.0, + "reach": null, + "range": 20.0, + "long_range": 40.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -11392,9 +11392,9 @@ "parent": "tob2_silenal_tankard", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11415,9 +11415,9 @@ "parent": "tob2_silver-dragon-wyrmling-skeleton_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11438,9 +11438,9 @@ "parent": "tob2_snake-with-a-hundred-mage-hands_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -11461,9 +11461,9 @@ "parent": "tob2_snow-giant_club", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -11484,9 +11484,9 @@ "parent": "tob2_snow-giant_giant-snowball", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": 240.0, + "reach": null, + "range": 60.0, + "long_range": 240.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -11507,9 +11507,9 @@ "parent": "tob2_snow-terror_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -11530,9 +11530,9 @@ "parent": "tob2_somberweave_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11553,9 +11553,9 @@ "parent": "tob2_somberweave_claws", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -11576,9 +11576,9 @@ "parent": "tob2_somberweave_web", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": null, - "range_ft": 30.0, - "long_range_ft": 60.0, + "reach": null, + "range": 30.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": null, @@ -11599,9 +11599,9 @@ "parent": "tob2_spawn-of-alquam_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -11622,9 +11622,9 @@ "parent": "tob2_spawn-of-alquam_gloomspittle", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": null, - "range_ft": 30.0, - "long_range_ft": null, + "reach": null, + "range": 30.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -11645,9 +11645,9 @@ "parent": "tob2_spawn-of-alquam_talon", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11668,9 +11668,9 @@ "parent": "tob2_spawn-of-hriggala_bite", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -11691,9 +11691,9 @@ "parent": "tob2_spawn-of-hriggala_tendrils", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -11714,9 +11714,9 @@ "parent": "tob2_spawn-of-rhopalocerex_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -11737,9 +11737,9 @@ "parent": "tob2_spawn-of-rhopalocerex_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": 5.0, - "long_range_ft": null, + "reach": 5.0, + "range": 5.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11760,9 +11760,9 @@ "parent": "tob2_spellhound_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -11783,9 +11783,9 @@ "parent": "tob2_sporous-crab_claw", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11806,9 +11806,9 @@ "parent": "tob2_spurred-water-skate_stabbing-forelimbs", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -11829,9 +11829,9 @@ "parent": "tob2_ssadar_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11852,9 +11852,9 @@ "parent": "tob2_ssadar_longsword", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11875,9 +11875,9 @@ "parent": "tob2_ssadar_spit-fire", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": null, + "reach": null, + "range": 60.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -11898,9 +11898,9 @@ "parent": "tob2_stellar-rorqual_energy-burst", "attack_type": "SPELL", "to_hit_mod": 8, - "reach_ft": null, - "range_ft": 120.0, - "long_range_ft": null, + "reach": null, + "range": 120.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 7, @@ -11921,9 +11921,9 @@ "parent": "tob2_stellar-rorqual_head-smash", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -11944,9 +11944,9 @@ "parent": "tob2_stellar-rorqual_tail-slap", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -11967,9 +11967,9 @@ "parent": "tob2_stone-creeper_acid-coated-thorn", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": null, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -11990,9 +11990,9 @@ "parent": "tob2_stone-creeper_thorned-vine", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -12013,9 +12013,9 @@ "parent": "tob2_storm-maiden_throw-lightning", "attack_type": "SPELL", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 120.0, - "long_range_ft": null, + "reach": null, + "range": 120.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -12036,9 +12036,9 @@ "parent": "tob2_storm-maiden_thunderous-slam", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -12059,9 +12059,9 @@ "parent": "tob2_stormboar_tusk", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -12082,9 +12082,9 @@ "parent": "tob2_strobing-fungus_chemical-burn", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": 30.0, - "long_range_ft": 120.0, + "reach": 5.0, + "range": 30.0, + "long_range": 120.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -12105,9 +12105,9 @@ "parent": "tob2_sulsha_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -12128,9 +12128,9 @@ "parent": "tob2_sulsha_bomb", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": null, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": null, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -12151,9 +12151,9 @@ "parent": "tob2_sulsha_slam", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -12174,9 +12174,9 @@ "parent": "tob2_sulsha_tail-spur", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -12197,9 +12197,9 @@ "parent": "tob2_swamp-lily_root", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -12220,9 +12220,9 @@ "parent": "tob2_swamp-naga_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -12243,9 +12243,9 @@ "parent": "tob2_swamp-naga_constrict", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -12266,9 +12266,9 @@ "parent": "tob2_swampgas-bubble_pseudopod", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -12289,9 +12289,9 @@ "parent": "tob2_swampgas-bubble_suffocating-grasp", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -12312,9 +12312,9 @@ "parent": "tob2_swarm-of-compsognathus_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 0.0, - "range_ft": null, - "long_range_ft": null, + "reach": 0.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -12335,9 +12335,9 @@ "parent": "tob2_swarm-of-esteron_bites", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 0.0, - "range_ft": null, - "long_range_ft": null, + "reach": 0.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -12358,9 +12358,9 @@ "parent": "tob2_tar-ooze_hurl-tar", "attack_type": "WEAPON", "to_hit_mod": 2, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": null, + "reach": null, + "range": 60.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -12381,9 +12381,9 @@ "parent": "tob2_tar-ooze_pseudopod", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -12404,9 +12404,9 @@ "parent": "tob2_tembril_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -12427,9 +12427,9 @@ "parent": "tob2_tembril_claws", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -12450,9 +12450,9 @@ "parent": "tob2_tetomatli_head-slam", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -12473,9 +12473,9 @@ "parent": "tob2_tetomatli_wing-buffet", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -12496,9 +12496,9 @@ "parent": "tob2_thin-giant_claw", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 20.0, - "range_ft": null, - "long_range_ft": null, + "reach": 20.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -12519,9 +12519,9 @@ "parent": "tob2_thin-giant_consuming-bite", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -12542,9 +12542,9 @@ "parent": "tob2_thornheart-guardian_barbed-greatsword", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -12565,9 +12565,9 @@ "parent": "tob2_thornheart-guardian_thorny-whip", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -12588,9 +12588,9 @@ "parent": "tob2_thrummren_gore", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -12611,9 +12611,9 @@ "parent": "tob2_thrummren_hooves", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -12634,9 +12634,9 @@ "parent": "tob2_tidehunter_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -12657,9 +12657,9 @@ "parent": "tob2_tidehunter_net", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": null, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": null, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": null, @@ -12680,9 +12680,9 @@ "parent": "tob2_timingila_bite", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -12703,9 +12703,9 @@ "parent": "tob2_timingila_flipper", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -12726,9 +12726,9 @@ "parent": "tob2_timingila_tail-slap", "attack_type": "WEAPON", "to_hit_mod": 14, - "reach_ft": 20.0, - "range_ft": null, - "long_range_ft": null, + "reach": 20.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -12749,9 +12749,9 @@ "parent": "tob2_tormented-qiqirn_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -12772,9 +12772,9 @@ "parent": "tob2_transcendent-lunarchida_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -12795,9 +12795,9 @@ "parent": "tob2_transcendent-lunarchida_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -12818,9 +12818,9 @@ "parent": "tob2_tree-skinner_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -12841,9 +12841,9 @@ "parent": "tob2_tree-skinner_vine-whip", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 20.0, - "range_ft": null, - "long_range_ft": null, + "reach": 20.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -12864,9 +12864,9 @@ "parent": "tob2_tricenatorus_bite", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -12887,9 +12887,9 @@ "parent": "tob2_tricenatorus_gore", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -12910,9 +12910,9 @@ "parent": "tob2_tricenatorus_tail-spike", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": null, - "range_ft": 150.0, - "long_range_ft": 300.0, + "reach": null, + "range": 150.0, + "long_range": 300.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -12933,9 +12933,9 @@ "parent": "tob2_trollkin-raider_bite", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -12956,9 +12956,9 @@ "parent": "tob2_trollkin-raider_claw", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -12979,9 +12979,9 @@ "parent": "tob2_trollkin-raider_spear", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13002,9 +13002,9 @@ "parent": "tob2_tzepharion_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -13025,9 +13025,9 @@ "parent": "tob2_tzepharion_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13048,9 +13048,9 @@ "parent": "tob2_ulnorya_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -13071,9 +13071,9 @@ "parent": "tob2_ulnorya_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -13094,9 +13094,9 @@ "parent": "tob2_ulnorya_tentacle", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13117,9 +13117,9 @@ "parent": "tob2_uridimmu_bite", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -13140,9 +13140,9 @@ "parent": "tob2_uridimmu_mace", "attack_type": "WEAPON", "to_hit_mod": 11, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -13163,9 +13163,9 @@ "parent": "tob2_valkruung_claws", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13186,9 +13186,9 @@ "parent": "tob2_vallowex_spiked-tongue", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -13209,9 +13209,9 @@ "parent": "tob2_vallowex_tail", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -13232,9 +13232,9 @@ "parent": "tob2_vangsluagh_sonic-bullet", "attack_type": "SPELL", "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 120.0, - "long_range_ft": null, + "reach": null, + "range": 120.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -13255,9 +13255,9 @@ "parent": "tob2_vangsluagh_tentacle-lash", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -13278,9 +13278,9 @@ "parent": "tob2_vent-linnorm_bite", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -13301,9 +13301,9 @@ "parent": "tob2_vent-linnorm_tail", "attack_type": "WEAPON", "to_hit_mod": 12, - "reach_ft": 20.0, - "range_ft": null, - "long_range_ft": null, + "reach": 20.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -13324,9 +13324,9 @@ "parent": "tob2_veteran-swordbreaker-skeleton_heavy-crossbow", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": null, - "range_ft": 100.0, - "long_range_ft": 400.0, + "reach": null, + "range": 100.0, + "long_range": 400.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13347,9 +13347,9 @@ "parent": "tob2_veteran-swordbreaker-skeleton_longsword", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13370,9 +13370,9 @@ "parent": "tob2_veteran-swordbreaker-skeleton_shortsword", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13393,9 +13393,9 @@ "parent": "tob2_vexxeh_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13416,9 +13416,9 @@ "parent": "tob2_vexxeh_claw", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13439,9 +13439,9 @@ "parent": "tob2_viiret_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -13462,9 +13462,9 @@ "parent": "tob2_viiret_vine", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -13485,9 +13485,9 @@ "parent": "tob2_vine-drake_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13508,9 +13508,9 @@ "parent": "tob2_vine-drake_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13531,9 +13531,9 @@ "parent": "tob2_vine-drake_vine-lash", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13554,9 +13554,9 @@ "parent": "tob2_vine-golem_thorned-embrace", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -13577,9 +13577,9 @@ "parent": "tob2_vine-golem_thorned-vine", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 15.0, - "range_ft": null, - "long_range_ft": null, + "reach": 15.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13600,9 +13600,9 @@ "parent": "tob2_virtuoso-lich_artistic-flourish", "attack_type": "SPELL", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -13623,9 +13623,9 @@ "parent": "tob2_voidpool_pseudopod", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13646,9 +13646,9 @@ "parent": "tob2_walled-horror_spectral-claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -13669,9 +13669,9 @@ "parent": "tob2_walled-horror_spectral-scream", "attack_type": "SPELL", "to_hit_mod": 7, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": null, + "reach": null, + "range": 60.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -13692,9 +13692,9 @@ "parent": "tob2_wanyudo_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13715,9 +13715,9 @@ "parent": "tob2_wardu_proboscis", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -13738,9 +13738,9 @@ "parent": "tob2_warmth-thief_freezing-claw", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13761,9 +13761,9 @@ "parent": "tob2_web-zombie_slam", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13784,9 +13784,9 @@ "parent": "tob2_wereowl_shortbow", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": null, - "range_ft": 80.0, - "long_range_ft": 320.0, + "reach": null, + "range": 80.0, + "long_range": 320.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13807,9 +13807,9 @@ "parent": "tob2_wereowl_shortsword", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13830,9 +13830,9 @@ "parent": "tob2_wereowl_talon", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -13853,9 +13853,9 @@ "parent": "tob2_wereshark_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -13876,9 +13876,9 @@ "parent": "tob2_wereshark_trident", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13899,9 +13899,9 @@ "parent": "tob2_werynax_bite", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13922,9 +13922,9 @@ "parent": "tob2_werynax_claw", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13945,9 +13945,9 @@ "parent": "tob2_wicked-skull_pseudopod", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13968,9 +13968,9 @@ "parent": "tob2_willowhaunt_slam", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -13991,9 +13991,9 @@ "parent": "tob2_windy-wailer_chilling-touch", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -14014,9 +14014,9 @@ "parent": "tob2_windy-wailer_wind-blast", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": null, - "range_ft": 120.0, - "long_range_ft": null, + "reach": null, + "range": 120.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -14037,9 +14037,9 @@ "parent": "tob2_winterghast_bite", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -14060,9 +14060,9 @@ "parent": "tob2_winterghast_claw", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -14083,9 +14083,9 @@ "parent": "tob2_wintergrim_fist", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -14106,9 +14106,9 @@ "parent": "tob2_wintergrim_handaxe", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": 20.0, - "long_range_ft": 60.0, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -14129,9 +14129,9 @@ "parent": "tob2_woe-siphon_siphoning-fist", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -14152,9 +14152,9 @@ "parent": "tob2_wood-ward_slam", "attack_type": "WEAPON", "to_hit_mod": 3, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -14175,9 +14175,9 @@ "parent": "tob2_wraith-bear_life-drain", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 6, @@ -14198,9 +14198,9 @@ "parent": "tob2_xing-tian_battleaxe", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -14221,9 +14221,9 @@ "parent": "tob2_xing-tian_shield-slam", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 3, @@ -14244,9 +14244,9 @@ "parent": "tob2_yaojing_sacred-bolt", "attack_type": "SPELL", "to_hit_mod": 10, - "reach_ft": null, - "range_ft": 60.0, - "long_range_ft": null, + "reach": null, + "range": 60.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 5, @@ -14267,9 +14267,9 @@ "parent": "tob2_yaojing_sacred-fist", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -14290,9 +14290,9 @@ "parent": "tob2_yathon_claw", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": 5.0, - "long_range_ft": null, + "reach": 5.0, + "range": 5.0, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -14313,9 +14313,9 @@ "parent": "tob2_yathon_greatsword", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 4, @@ -14336,9 +14336,9 @@ "parent": "tob2_yathon_longbow", "attack_type": "WEAPON", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": 150.0, - "long_range_ft": 600.0, + "reach": 5.0, + "range": 150.0, + "long_range": 600.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -14359,9 +14359,9 @@ "parent": "tob2_yavalnoi_bite", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -14382,9 +14382,9 @@ "parent": "tob2_yavalnoi_claw", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -14405,9 +14405,9 @@ "parent": "tob2_yavalnoi_tail", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -14428,9 +14428,9 @@ "parent": "tob2_young-blue-dragon-zombie_bite", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -14451,9 +14451,9 @@ "parent": "tob2_young-blue-dragon-zombie_claw", "attack_type": "WEAPON", "to_hit_mod": 9, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -14474,9 +14474,9 @@ "parent": "tob2_young-boreal-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -14497,9 +14497,9 @@ "parent": "tob2_young-boreal-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 8, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -14520,9 +14520,9 @@ "parent": "tob2_young-imperial-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -14543,9 +14543,9 @@ "parent": "tob2_young-imperial-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -14566,9 +14566,9 @@ "parent": "tob2_yowler_bite", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -14589,9 +14589,9 @@ "parent": "tob2_yowler_claws", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -14612,9 +14612,9 @@ "parent": "tob2_yumerai_psychic-lash", "attack_type": "SPELL", "to_hit_mod": 5, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -14635,9 +14635,9 @@ "parent": "tob2_zalikum_beak", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -14658,9 +14658,9 @@ "parent": "tob2_zalikum_talon", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -14681,9 +14681,9 @@ "parent": "tob2_zeitgeist_darting-rend", "attack_type": "WEAPON", "to_hit_mod": 7, - "reach_ft": 10.0, - "range_ft": null, - "long_range_ft": null, + "reach": 10.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -14704,9 +14704,9 @@ "parent": "tob2_zeitgeist_sluggish-slam", "attack_type": "WEAPON", "to_hit_mod": 6, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -14727,9 +14727,9 @@ "parent": "tob2_zouyu_bite", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, @@ -14750,9 +14750,9 @@ "parent": "tob2_zouyu_claw", "attack_type": "WEAPON", "to_hit_mod": 10, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 2, diff --git a/data/v2/wizards-of-the-coast/srd/CreatureActionAttack.json b/data/v2/wizards-of-the-coast/srd/CreatureActionAttack.json index 53a7d0be..471b6212 100644 --- a/data/v2/wizards-of-the-coast/srd/CreatureActionAttack.json +++ b/data/v2/wizards-of-the-coast/srd/CreatureActionAttack.json @@ -7,9 +7,9 @@ "parent": "srd_elf-drow_hand-crossbow", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 30.0, - "long_range_ft": 120.0, + "reach": null, + "range": 30.0, + "long_range": 120.0, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -30,9 +30,9 @@ "parent": "srd_elf-drow_shortsword", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, @@ -53,9 +53,9 @@ "parent": "srd_gnome-deep-svirfneblin_poisoned-dart", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 30.0, - "long_range_ft": 120.0, + "reach": null, + "range": 30.0, + "long_range": 120.0, "distance_unit": null, "target_creature_only": true, "damage_die_count": 1, @@ -76,9 +76,9 @@ "parent": "srd_gnome-deep-svirfneblin_war-pick", "attack_type": "WEAPON", "to_hit_mod": 4, - "reach_ft": 5.0, - "range_ft": null, - "long_range_ft": null, + "reach": 5.0, + "range": null, + "long_range": null, "distance_unit": null, "target_creature_only": false, "damage_die_count": 1, diff --git a/data/v2/wizards-of-the-coast/srd/Size.json b/data/v2/wizards-of-the-coast/srd/Size.json index 0a47f8fb..590b9344 100644 --- a/data/v2/wizards-of-the-coast/srd/Size.json +++ b/data/v2/wizards-of-the-coast/srd/Size.json @@ -6,7 +6,7 @@ "name": "Gargantuan", "document": "srd", "rank": 6, - "space_diameter": "20.000" + "space_diameter": 20.0 } }, { @@ -16,7 +16,7 @@ "name": "Huge", "document": "srd", "rank": 5, - "space_diameter": "15.000" + "space_diameter": 15.0 } }, { @@ -26,7 +26,7 @@ "name": "Large", "document": "srd", "rank": 4, - "space_diameter": "10.000" + "space_diameter": 10.0 } }, { @@ -36,7 +36,7 @@ "name": "Medium", "document": "srd", "rank": 3, - "space_diameter": "5.000" + "space_diameter": 5.0 } }, { @@ -46,7 +46,7 @@ "name": "Small", "document": "srd", "rank": 2, - "space_diameter": "5.000" + "space_diameter": 5.0 } }, { @@ -56,7 +56,7 @@ "name": "Tiny", "document": "srd", "rank": 1, - "space_diameter": "2.500" + "space_diameter": 2.5 } } ] From 02c2c43e1f947b3f28482ef9d99355b4e9ca8f93 Mon Sep 17 00:00:00 2001 From: August Johnson Date: Wed, 9 Oct 2024 11:45:34 -0500 Subject: [PATCH 08/11] Distance on size now. --- api_v2/migrations/0005_size_distance_unit.py | 18 ++++++++++++++++++ api_v2/models/size.py | 12 +++++++++--- api_v2/serializers/size.py | 4 ++++ data/v2/en-publishing/mmenag/Size.json | 3 ++- data/v2/wizards-of-the-coast/srd/Size.json | 18 ++++++++++++------ 5 files changed, 45 insertions(+), 10 deletions(-) create mode 100644 api_v2/migrations/0005_size_distance_unit.py diff --git a/api_v2/migrations/0005_size_distance_unit.py b/api_v2/migrations/0005_size_distance_unit.py new file mode 100644 index 00000000..26f81efd --- /dev/null +++ b/api_v2/migrations/0005_size_distance_unit.py @@ -0,0 +1,18 @@ +# Generated by Django 5.1.1 on 2024-10-09 16:44 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('api_v2', '0004_alter_size_space_diameter'), + ] + + operations = [ + migrations.AddField( + model_name='size', + name='distance_unit', + field=models.CharField(blank=True, choices=[('feet', 'feet'), ('miles', 'miles')], help_text='What distance unit the relevant field uses.', max_length=20, null=True), + ), + ] diff --git a/api_v2/models/size.py b/api_v2/models/size.py index 1ec59d81..a3bcfa68 100644 --- a/api_v2/models/size.py +++ b/api_v2/models/size.py @@ -1,8 +1,7 @@ from django.db import models -from django.core.validators import MinValueValidator from .abstracts import HasName -from .abstracts import distance_field +from .abstracts import distance_field, distance_unit_field from .document import FromDocument class Size(HasName, FromDocument): @@ -17,4 +16,11 @@ class Size(HasName, FromDocument): unique=True, help_text='Ranking of the size, smallest has the lowest values.') - space_diameter = distance_field() \ No newline at end of file + space_diameter = distance_field() + distance_unit = distance_unit_field() + + @property + def get_distance_unit(self): + if self.distance_unit is None: + return self.document.distance_unit + return self.distance_unit diff --git a/api_v2/serializers/size.py b/api_v2/serializers/size.py index 6d57ee05..39bc2814 100644 --- a/api_v2/serializers/size.py +++ b/api_v2/serializers/size.py @@ -9,7 +9,11 @@ class SizeSerializer(GameContentSerializer): """Serializer for the Size type""" key = serializers.ReadOnlyField() + distance_unit = serializers.SerializerMethodField() class Meta: model = models.Size fields = '__all__' + + def get_distance_unit(self, Size): + return Size.get_distance_unit diff --git a/data/v2/en-publishing/mmenag/Size.json b/data/v2/en-publishing/mmenag/Size.json index d4ab8328..10337c72 100644 --- a/data/v2/en-publishing/mmenag/Size.json +++ b/data/v2/en-publishing/mmenag/Size.json @@ -6,7 +6,8 @@ "name": "Titanic", "document": "mmenag", "rank": 7, - "space_diameter": 25.0 + "space_diameter": 25.0, + "distance_unit": null } } ] diff --git a/data/v2/wizards-of-the-coast/srd/Size.json b/data/v2/wizards-of-the-coast/srd/Size.json index 590b9344..07ef0461 100644 --- a/data/v2/wizards-of-the-coast/srd/Size.json +++ b/data/v2/wizards-of-the-coast/srd/Size.json @@ -6,7 +6,8 @@ "name": "Gargantuan", "document": "srd", "rank": 6, - "space_diameter": 20.0 + "space_diameter": 20.0, + "distance_unit": null } }, { @@ -16,7 +17,8 @@ "name": "Huge", "document": "srd", "rank": 5, - "space_diameter": 15.0 + "space_diameter": 15.0, + "distance_unit": null } }, { @@ -26,7 +28,8 @@ "name": "Large", "document": "srd", "rank": 4, - "space_diameter": 10.0 + "space_diameter": 10.0, + "distance_unit": null } }, { @@ -36,7 +39,8 @@ "name": "Medium", "document": "srd", "rank": 3, - "space_diameter": 5.0 + "space_diameter": 5.0, + "distance_unit": null } }, { @@ -46,7 +50,8 @@ "name": "Small", "document": "srd", "rank": 2, - "space_diameter": 5.0 + "space_diameter": 5.0, + "distance_unit": null } }, { @@ -56,7 +61,8 @@ "name": "Tiny", "document": "srd", "rank": 1, - "space_diameter": 2.5 + "space_diameter": 2.5, + "distance_unit": null } } ] From e11b6f10ad59d4583f8e9b7ec6f092d2c1b37dd5 Mon Sep 17 00:00:00 2001 From: August Johnson Date: Wed, 9 Oct 2024 11:49:54 -0500 Subject: [PATCH 09/11] weapon ranges. --- ...long_alter_weapon_range_normal_and_more.py | 29 +++ ...e_range_long_weapon_long_range_and_more.py | 28 +++ api_v2/models/weapon.py | 21 +- api_v2/views/item.py | 6 +- data/v2/wizards-of-the-coast/srd/Weapon.json | 222 +++++++++--------- 5 files changed, 175 insertions(+), 131 deletions(-) create mode 100644 api_v2/migrations/0006_alter_weapon_range_long_alter_weapon_range_normal_and_more.py create mode 100644 api_v2/migrations/0007_rename_range_long_weapon_long_range_and_more.py diff --git a/api_v2/migrations/0006_alter_weapon_range_long_alter_weapon_range_normal_and_more.py b/api_v2/migrations/0006_alter_weapon_range_long_alter_weapon_range_normal_and_more.py new file mode 100644 index 00000000..e5249aeb --- /dev/null +++ b/api_v2/migrations/0006_alter_weapon_range_long_alter_weapon_range_normal_and_more.py @@ -0,0 +1,29 @@ +# Generated by Django 5.1.1 on 2024-10-09 16:48 + +import django.core.validators +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('api_v2', '0005_size_distance_unit'), + ] + + operations = [ + migrations.AlterField( + model_name='weapon', + name='range_long', + field=models.FloatField(blank=True, help_text='Used to measure distance.', null=True, validators=[django.core.validators.MinValueValidator(0)]), + ), + migrations.AlterField( + model_name='weapon', + name='range_normal', + field=models.FloatField(blank=True, help_text='Used to measure distance.', null=True, validators=[django.core.validators.MinValueValidator(0)]), + ), + migrations.AlterField( + model_name='weapon', + name='range_reach', + field=models.FloatField(blank=True, help_text='Used to measure distance.', null=True, validators=[django.core.validators.MinValueValidator(0)]), + ), + ] diff --git a/api_v2/migrations/0007_rename_range_long_weapon_long_range_and_more.py b/api_v2/migrations/0007_rename_range_long_weapon_long_range_and_more.py new file mode 100644 index 00000000..9882af1d --- /dev/null +++ b/api_v2/migrations/0007_rename_range_long_weapon_long_range_and_more.py @@ -0,0 +1,28 @@ +# Generated by Django 5.1.1 on 2024-10-09 16:49 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('api_v2', '0006_alter_weapon_range_long_alter_weapon_range_normal_and_more'), + ] + + operations = [ + migrations.RenameField( + model_name='weapon', + old_name='range_long', + new_name='long_range', + ), + migrations.RenameField( + model_name='weapon', + old_name='range_normal', + new_name='range', + ), + migrations.RenameField( + model_name='weapon', + old_name='range_reach', + new_name='reach', + ), + ] diff --git a/api_v2/models/weapon.py b/api_v2/models/weapon.py index 3c2fbaaf..f1c40455 100644 --- a/api_v2/models/weapon.py +++ b/api_v2/models/weapon.py @@ -4,6 +4,7 @@ from django.core.validators import MinValueValidator from .abstracts import HasName +from .abstracts import distance_field, distance_unit_field from .document import FromDocument @@ -35,25 +36,11 @@ class Weapon(HasName, FromDocument): help_text="""The damage dice when attacking using versatile. A value of 0 means that the weapon does not have the versatile property.""") - range_reach = models.IntegerField( - null=False, - default=5, - validators=[MinValueValidator(0)], - help_text='The range of the weapon when making a melee attack.') + reach = distance_field() - range_normal = models.IntegerField( - null=False, - default=0, - validators=[MinValueValidator(0)], - help_text="""The normal range of a ranged weapon attack. -A value of 0 means that the weapon cannot be used for a ranged attack.""") + range = distance_field() - range_long = models.IntegerField( - null=False, - default=0, - validators=[MinValueValidator(0)], - help_text="""The long range of a ranged weapon attack. -A value of 0 means that the weapon cannot be used for a long ranged attack.""") + long_range = distance_field() is_finesse = models.BooleanField( null=False, diff --git a/api_v2/views/item.py b/api_v2/views/item.py index a881599c..87c2eead 100644 --- a/api_v2/views/item.py +++ b/api_v2/views/item.py @@ -92,9 +92,9 @@ class Meta: 'document__gamesystem__key': ['in','iexact','exact'], 'damage_dice': ['in','iexact','exact'], 'versatile_dice': ['in','iexact','exact'], - 'range_reach': ['exact','lt','lte','gt','gte'], - 'range_normal': ['exact','lt','lte','gt','gte'], - 'range_long': ['exact','lt','lte','gt','gte'], + 'reach': ['exact','lt','lte','gt','gte'], + 'range': ['exact','lt','lte','gt','gte'], + 'long_range': ['exact','lt','lte','gt','gte'], 'is_finesse': ['exact'], 'is_thrown': ['exact'], 'is_two_handed': ['exact'], diff --git a/data/v2/wizards-of-the-coast/srd/Weapon.json b/data/v2/wizards-of-the-coast/srd/Weapon.json index 3bfae54f..d71e7704 100644 --- a/data/v2/wizards-of-the-coast/srd/Weapon.json +++ b/data/v2/wizards-of-the-coast/srd/Weapon.json @@ -8,9 +8,9 @@ "damage_type": "slashing", "damage_dice": "1d8", "versatile_dice": "1d10", - "range_reach": 5, - "range_normal": 0, - "range_long": 0, + "reach": 5.0, + "range": 0.0, + "long_range": 0.0, "is_finesse": false, "is_thrown": false, "is_two_handed": false, @@ -33,9 +33,9 @@ "damage_type": "piercing", "damage_dice": "1", "versatile_dice": "0", - "range_reach": 5, - "range_normal": 25, - "range_long": 100, + "reach": 5.0, + "range": 25.0, + "long_range": 100.0, "is_finesse": false, "is_thrown": false, "is_two_handed": false, @@ -58,9 +58,9 @@ "damage_type": "bludgeoning", "damage_dice": "1d4", "versatile_dice": "0", - "range_reach": 5, - "range_normal": 0, - "range_long": 0, + "reach": 5.0, + "range": 0.0, + "long_range": 0.0, "is_finesse": false, "is_thrown": false, "is_two_handed": false, @@ -83,9 +83,9 @@ "damage_type": "piercing", "damage_dice": "1d6", "versatile_dice": "0", - "range_reach": 5, - "range_normal": 30, - "range_long": 120, + "reach": 5.0, + "range": 30.0, + "long_range": 120.0, "is_finesse": false, "is_thrown": false, "is_two_handed": false, @@ -108,9 +108,9 @@ "damage_type": "piercing", "damage_dice": "1d10", "versatile_dice": "0", - "range_reach": 5, - "range_normal": 100, - "range_long": 400, + "reach": 5.0, + "range": 100.0, + "long_range": 400.0, "is_finesse": false, "is_thrown": false, "is_two_handed": true, @@ -133,9 +133,9 @@ "damage_type": "piercing", "damage_dice": "1d8", "versatile_dice": "0", - "range_reach": 5, - "range_normal": 80, - "range_long": 320, + "reach": 5.0, + "range": 80.0, + "long_range": 320.0, "is_finesse": false, "is_thrown": false, "is_two_handed": true, @@ -158,9 +158,9 @@ "damage_type": "piercing", "damage_dice": "1d4", "versatile_dice": "0", - "range_reach": 5, - "range_normal": 20, - "range_long": 60, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "is_finesse": true, "is_thrown": true, "is_two_handed": false, @@ -183,9 +183,9 @@ "damage_type": "piercing", "damage_dice": "1d4", "versatile_dice": "0", - "range_reach": 5, - "range_normal": 20, - "range_long": 60, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "is_finesse": true, "is_thrown": true, "is_two_handed": false, @@ -208,9 +208,9 @@ "damage_type": "bludgeoning", "damage_dice": "1d8", "versatile_dice": "0", - "range_reach": 5, - "range_normal": 0, - "range_long": 0, + "reach": 5.0, + "range": 0.0, + "long_range": 0.0, "is_finesse": false, "is_thrown": false, "is_two_handed": false, @@ -233,9 +233,9 @@ "damage_type": "slashing", "damage_dice": "1d10", "versatile_dice": "0", - "range_reach": 10, - "range_normal": 0, - "range_long": 0, + "reach": 10.0, + "range": 0.0, + "long_range": 0.0, "is_finesse": false, "is_thrown": false, "is_two_handed": true, @@ -258,9 +258,9 @@ "damage_type": "slashing", "damage_dice": "1d12", "versatile_dice": "0", - "range_reach": 5, - "range_normal": 0, - "range_long": 0, + "reach": 5.0, + "range": 0.0, + "long_range": 0.0, "is_finesse": false, "is_thrown": false, "is_two_handed": true, @@ -283,9 +283,9 @@ "damage_type": "bludgeoning", "damage_dice": "1d8", "versatile_dice": "0", - "range_reach": 5, - "range_normal": 0, - "range_long": 0, + "reach": 5.0, + "range": 0.0, + "long_range": 0.0, "is_finesse": false, "is_thrown": false, "is_two_handed": true, @@ -308,9 +308,9 @@ "damage_type": "slashing", "damage_dice": "2d6", "versatile_dice": "0", - "range_reach": 5, - "range_normal": 0, - "range_long": 0, + "reach": 5.0, + "range": 0.0, + "long_range": 0.0, "is_finesse": false, "is_thrown": false, "is_two_handed": true, @@ -333,9 +333,9 @@ "damage_type": "slashing", "damage_dice": "1d10", "versatile_dice": "0", - "range_reach": 10, - "range_normal": 0, - "range_long": 0, + "reach": 10.0, + "range": 0.0, + "long_range": 0.0, "is_finesse": false, "is_thrown": false, "is_two_handed": true, @@ -358,9 +358,9 @@ "damage_type": "slashing", "damage_dice": "1d6", "versatile_dice": "0", - "range_reach": 5, - "range_normal": 20, - "range_long": 60, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "is_finesse": false, "is_thrown": true, "is_two_handed": false, @@ -383,9 +383,9 @@ "damage_type": "piercing", "damage_dice": "1d6", "versatile_dice": "0", - "range_reach": 5, - "range_normal": 30, - "range_long": 120, + "reach": 5.0, + "range": 30.0, + "long_range": 120.0, "is_finesse": false, "is_thrown": true, "is_two_handed": false, @@ -408,9 +408,9 @@ "damage_type": "piercing", "damage_dice": "1d12", "versatile_dice": "0", - "range_reach": 10, - "range_normal": 0, - "range_long": 0, + "reach": 10.0, + "range": 0.0, + "long_range": 0.0, "is_finesse": false, "is_thrown": false, "is_two_handed": false, @@ -433,9 +433,9 @@ "damage_type": "bludgeoning", "damage_dice": "1d4", "versatile_dice": "0", - "range_reach": 5, - "range_normal": 20, - "range_long": 60, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "is_finesse": false, "is_thrown": true, "is_two_handed": false, @@ -458,9 +458,9 @@ "damage_type": "piercing", "damage_dice": "1d8", "versatile_dice": "0", - "range_reach": 5, - "range_normal": 150, - "range_long": 600, + "reach": 5.0, + "range": 150.0, + "long_range": 600.0, "is_finesse": false, "is_thrown": false, "is_two_handed": true, @@ -483,9 +483,9 @@ "damage_type": "slashing", "damage_dice": "1d8", "versatile_dice": "1d10", - "range_reach": 5, - "range_normal": 0, - "range_long": 0, + "reach": 5.0, + "range": 0.0, + "long_range": 0.0, "is_finesse": false, "is_thrown": false, "is_two_handed": false, @@ -508,9 +508,9 @@ "damage_type": "bludgeoning", "damage_dice": "1d6", "versatile_dice": "0", - "range_reach": 5, - "range_normal": 0, - "range_long": 0, + "reach": 5.0, + "range": 0.0, + "long_range": 0.0, "is_finesse": false, "is_thrown": false, "is_two_handed": false, @@ -533,9 +533,9 @@ "damage_type": "bludgeoning", "damage_dice": "2d6", "versatile_dice": "0", - "range_reach": 5, - "range_normal": 0, - "range_long": 0, + "reach": 5.0, + "range": 0.0, + "long_range": 0.0, "is_finesse": false, "is_thrown": false, "is_two_handed": true, @@ -558,9 +558,9 @@ "damage_type": "piercing", "damage_dice": "1d8", "versatile_dice": "0", - "range_reach": 5, - "range_normal": 0, - "range_long": 0, + "reach": 5.0, + "range": 0.0, + "long_range": 0.0, "is_finesse": false, "is_thrown": false, "is_two_handed": false, @@ -583,9 +583,9 @@ "damage_type": "bludgeoning", "damage_dice": "0", "versatile_dice": "0", - "range_reach": 5, - "range_normal": 5, - "range_long": 15, + "reach": 5.0, + "range": 5.0, + "long_range": 15.0, "is_finesse": false, "is_thrown": true, "is_two_handed": false, @@ -608,9 +608,9 @@ "damage_type": "piercing", "damage_dice": "1d10", "versatile_dice": "0", - "range_reach": 10, - "range_normal": 0, - "range_long": 0, + "reach": 10.0, + "range": 0.0, + "long_range": 0.0, "is_finesse": false, "is_thrown": false, "is_two_handed": true, @@ -633,9 +633,9 @@ "damage_type": "bludgeoning", "damage_dice": "1d6", "versatile_dice": "1d8", - "range_reach": 5, - "range_normal": 0, - "range_long": 0, + "reach": 5.0, + "range": 0.0, + "long_range": 0.0, "is_finesse": false, "is_thrown": false, "is_two_handed": false, @@ -658,9 +658,9 @@ "damage_type": "piercing", "damage_dice": "1d8", "versatile_dice": "0", - "range_reach": 5, - "range_normal": 0, - "range_long": 0, + "reach": 5.0, + "range": 0.0, + "long_range": 0.0, "is_finesse": true, "is_thrown": false, "is_two_handed": false, @@ -683,9 +683,9 @@ "damage_type": "slashing", "damage_dice": "1d6", "versatile_dice": "0", - "range_reach": 5, - "range_normal": 0, - "range_long": 0, + "reach": 5.0, + "range": 0.0, + "long_range": 0.0, "is_finesse": true, "is_thrown": false, "is_two_handed": false, @@ -708,9 +708,9 @@ "damage_type": "piercing", "damage_dice": "1d6", "versatile_dice": "0", - "range_reach": 5, - "range_normal": 80, - "range_long": 320, + "reach": 5.0, + "range": 80.0, + "long_range": 320.0, "is_finesse": false, "is_thrown": false, "is_two_handed": true, @@ -733,9 +733,9 @@ "damage_type": "slashing", "damage_dice": "1d6", "versatile_dice": "0", - "range_reach": 5, - "range_normal": 0, - "range_long": 0, + "reach": 5.0, + "range": 0.0, + "long_range": 0.0, "is_finesse": true, "is_thrown": false, "is_two_handed": false, @@ -758,9 +758,9 @@ "damage_type": "slashing", "damage_dice": "1d4", "versatile_dice": "0", - "range_reach": 5, - "range_normal": 0, - "range_long": 0, + "reach": 5.0, + "range": 0.0, + "long_range": 0.0, "is_finesse": false, "is_thrown": false, "is_two_handed": false, @@ -783,9 +783,9 @@ "damage_type": "bludgeoning", "damage_dice": "1d4", "versatile_dice": "0", - "range_reach": 5, - "range_normal": 30, - "range_long": 120, + "reach": 5.0, + "range": 30.0, + "long_range": 120.0, "is_finesse": false, "is_thrown": false, "is_two_handed": false, @@ -808,9 +808,9 @@ "damage_type": "piercing", "damage_dice": "1d6", "versatile_dice": "1d8", - "range_reach": 5, - "range_normal": 20, - "range_long": 60, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "is_finesse": false, "is_thrown": true, "is_two_handed": false, @@ -833,9 +833,9 @@ "damage_type": "piercing", "damage_dice": "1d6", "versatile_dice": "1d8", - "range_reach": 5, - "range_normal": 20, - "range_long": 60, + "reach": 5.0, + "range": 20.0, + "long_range": 60.0, "is_finesse": false, "is_thrown": true, "is_two_handed": false, @@ -858,9 +858,9 @@ "damage_type": "piercing", "damage_dice": "1d8", "versatile_dice": "0", - "range_reach": 5, - "range_normal": 0, - "range_long": 0, + "reach": 5.0, + "range": 0.0, + "long_range": 0.0, "is_finesse": false, "is_thrown": false, "is_two_handed": false, @@ -883,9 +883,9 @@ "damage_type": "bludgeoning", "damage_dice": "1d8", "versatile_dice": "1d10", - "range_reach": 5, - "range_normal": 0, - "range_long": 0, + "reach": 5.0, + "range": 0.0, + "long_range": 0.0, "is_finesse": false, "is_thrown": false, "is_two_handed": false, @@ -908,9 +908,9 @@ "damage_type": "slashing", "damage_dice": "1d4", "versatile_dice": "0", - "range_reach": 10, - "range_normal": 0, - "range_long": 0, + "reach": 10.0, + "range": 0.0, + "long_range": 0.0, "is_finesse": true, "is_thrown": false, "is_two_handed": false, From 9ab96c9494dbc9819351827bfab805cee77cc65c Mon Sep 17 00:00:00 2001 From: August Johnson Date: Wed, 9 Oct 2024 11:52:44 -0500 Subject: [PATCH 10/11] Weapons. --- .../migrations/0008_weapon_distance_unit.py | 18 +++++++++ api_v2/models/weapon.py | 9 +++++ api_v2/serializers/item.py | 5 +++ data/v2/wizards-of-the-coast/srd/Weapon.json | 37 +++++++++++++++++++ 4 files changed, 69 insertions(+) create mode 100644 api_v2/migrations/0008_weapon_distance_unit.py diff --git a/api_v2/migrations/0008_weapon_distance_unit.py b/api_v2/migrations/0008_weapon_distance_unit.py new file mode 100644 index 00000000..dd5e59e0 --- /dev/null +++ b/api_v2/migrations/0008_weapon_distance_unit.py @@ -0,0 +1,18 @@ +# Generated by Django 5.1.1 on 2024-10-09 16:52 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('api_v2', '0007_rename_range_long_weapon_long_range_and_more'), + ] + + operations = [ + migrations.AddField( + model_name='weapon', + name='distance_unit', + field=models.CharField(blank=True, choices=[('feet', 'feet'), ('miles', 'miles')], help_text='What distance unit the relevant field uses.', max_length=20, null=True), + ), + ] diff --git a/api_v2/models/weapon.py b/api_v2/models/weapon.py index f1c40455..64b0198d 100644 --- a/api_v2/models/weapon.py +++ b/api_v2/models/weapon.py @@ -41,6 +41,15 @@ class Weapon(HasName, FromDocument): range = distance_field() long_range = distance_field() + + distance_unit = distance_unit_field() + + @property + def get_distance_unit(self): + if self.distance_unit is None: + return self.document.distance_unit + return self.distance_unit + is_finesse = models.BooleanField( null=False, diff --git a/api_v2/serializers/item.py b/api_v2/serializers/item.py index eb484e93..41329504 100644 --- a/api_v2/serializers/item.py +++ b/api_v2/serializers/item.py @@ -26,11 +26,16 @@ class WeaponSerializer(GameContentSerializer): range_melee = serializers.ReadOnlyField() is_reach = serializers.ReadOnlyField() properties = serializers.ReadOnlyField() + distance_unit = serializers.SerializerMethodField() class Meta: model = models.Weapon fields = '__all__' + def get_distance_unit(self, Weapon): + return Weapon.get_distance_unit + + class ItemRaritySerializer(GameContentSerializer): key=serializers.ReadOnlyField() diff --git a/data/v2/wizards-of-the-coast/srd/Weapon.json b/data/v2/wizards-of-the-coast/srd/Weapon.json index d71e7704..31c97d67 100644 --- a/data/v2/wizards-of-the-coast/srd/Weapon.json +++ b/data/v2/wizards-of-the-coast/srd/Weapon.json @@ -11,6 +11,7 @@ "reach": 5.0, "range": 0.0, "long_range": 0.0, + "distance_unit": null, "is_finesse": false, "is_thrown": false, "is_two_handed": false, @@ -36,6 +37,7 @@ "reach": 5.0, "range": 25.0, "long_range": 100.0, + "distance_unit": null, "is_finesse": false, "is_thrown": false, "is_two_handed": false, @@ -61,6 +63,7 @@ "reach": 5.0, "range": 0.0, "long_range": 0.0, + "distance_unit": null, "is_finesse": false, "is_thrown": false, "is_two_handed": false, @@ -86,6 +89,7 @@ "reach": 5.0, "range": 30.0, "long_range": 120.0, + "distance_unit": null, "is_finesse": false, "is_thrown": false, "is_two_handed": false, @@ -111,6 +115,7 @@ "reach": 5.0, "range": 100.0, "long_range": 400.0, + "distance_unit": null, "is_finesse": false, "is_thrown": false, "is_two_handed": true, @@ -136,6 +141,7 @@ "reach": 5.0, "range": 80.0, "long_range": 320.0, + "distance_unit": null, "is_finesse": false, "is_thrown": false, "is_two_handed": true, @@ -161,6 +167,7 @@ "reach": 5.0, "range": 20.0, "long_range": 60.0, + "distance_unit": null, "is_finesse": true, "is_thrown": true, "is_two_handed": false, @@ -186,6 +193,7 @@ "reach": 5.0, "range": 20.0, "long_range": 60.0, + "distance_unit": null, "is_finesse": true, "is_thrown": true, "is_two_handed": false, @@ -211,6 +219,7 @@ "reach": 5.0, "range": 0.0, "long_range": 0.0, + "distance_unit": null, "is_finesse": false, "is_thrown": false, "is_two_handed": false, @@ -236,6 +245,7 @@ "reach": 10.0, "range": 0.0, "long_range": 0.0, + "distance_unit": null, "is_finesse": false, "is_thrown": false, "is_two_handed": true, @@ -261,6 +271,7 @@ "reach": 5.0, "range": 0.0, "long_range": 0.0, + "distance_unit": null, "is_finesse": false, "is_thrown": false, "is_two_handed": true, @@ -286,6 +297,7 @@ "reach": 5.0, "range": 0.0, "long_range": 0.0, + "distance_unit": null, "is_finesse": false, "is_thrown": false, "is_two_handed": true, @@ -311,6 +323,7 @@ "reach": 5.0, "range": 0.0, "long_range": 0.0, + "distance_unit": null, "is_finesse": false, "is_thrown": false, "is_two_handed": true, @@ -336,6 +349,7 @@ "reach": 10.0, "range": 0.0, "long_range": 0.0, + "distance_unit": null, "is_finesse": false, "is_thrown": false, "is_two_handed": true, @@ -361,6 +375,7 @@ "reach": 5.0, "range": 20.0, "long_range": 60.0, + "distance_unit": null, "is_finesse": false, "is_thrown": true, "is_two_handed": false, @@ -386,6 +401,7 @@ "reach": 5.0, "range": 30.0, "long_range": 120.0, + "distance_unit": null, "is_finesse": false, "is_thrown": true, "is_two_handed": false, @@ -411,6 +427,7 @@ "reach": 10.0, "range": 0.0, "long_range": 0.0, + "distance_unit": null, "is_finesse": false, "is_thrown": false, "is_two_handed": false, @@ -436,6 +453,7 @@ "reach": 5.0, "range": 20.0, "long_range": 60.0, + "distance_unit": null, "is_finesse": false, "is_thrown": true, "is_two_handed": false, @@ -461,6 +479,7 @@ "reach": 5.0, "range": 150.0, "long_range": 600.0, + "distance_unit": null, "is_finesse": false, "is_thrown": false, "is_two_handed": true, @@ -486,6 +505,7 @@ "reach": 5.0, "range": 0.0, "long_range": 0.0, + "distance_unit": null, "is_finesse": false, "is_thrown": false, "is_two_handed": false, @@ -511,6 +531,7 @@ "reach": 5.0, "range": 0.0, "long_range": 0.0, + "distance_unit": null, "is_finesse": false, "is_thrown": false, "is_two_handed": false, @@ -536,6 +557,7 @@ "reach": 5.0, "range": 0.0, "long_range": 0.0, + "distance_unit": null, "is_finesse": false, "is_thrown": false, "is_two_handed": true, @@ -561,6 +583,7 @@ "reach": 5.0, "range": 0.0, "long_range": 0.0, + "distance_unit": null, "is_finesse": false, "is_thrown": false, "is_two_handed": false, @@ -586,6 +609,7 @@ "reach": 5.0, "range": 5.0, "long_range": 15.0, + "distance_unit": null, "is_finesse": false, "is_thrown": true, "is_two_handed": false, @@ -611,6 +635,7 @@ "reach": 10.0, "range": 0.0, "long_range": 0.0, + "distance_unit": null, "is_finesse": false, "is_thrown": false, "is_two_handed": true, @@ -636,6 +661,7 @@ "reach": 5.0, "range": 0.0, "long_range": 0.0, + "distance_unit": null, "is_finesse": false, "is_thrown": false, "is_two_handed": false, @@ -661,6 +687,7 @@ "reach": 5.0, "range": 0.0, "long_range": 0.0, + "distance_unit": null, "is_finesse": true, "is_thrown": false, "is_two_handed": false, @@ -686,6 +713,7 @@ "reach": 5.0, "range": 0.0, "long_range": 0.0, + "distance_unit": null, "is_finesse": true, "is_thrown": false, "is_two_handed": false, @@ -711,6 +739,7 @@ "reach": 5.0, "range": 80.0, "long_range": 320.0, + "distance_unit": null, "is_finesse": false, "is_thrown": false, "is_two_handed": true, @@ -736,6 +765,7 @@ "reach": 5.0, "range": 0.0, "long_range": 0.0, + "distance_unit": null, "is_finesse": true, "is_thrown": false, "is_two_handed": false, @@ -761,6 +791,7 @@ "reach": 5.0, "range": 0.0, "long_range": 0.0, + "distance_unit": null, "is_finesse": false, "is_thrown": false, "is_two_handed": false, @@ -786,6 +817,7 @@ "reach": 5.0, "range": 30.0, "long_range": 120.0, + "distance_unit": null, "is_finesse": false, "is_thrown": false, "is_two_handed": false, @@ -811,6 +843,7 @@ "reach": 5.0, "range": 20.0, "long_range": 60.0, + "distance_unit": null, "is_finesse": false, "is_thrown": true, "is_two_handed": false, @@ -836,6 +869,7 @@ "reach": 5.0, "range": 20.0, "long_range": 60.0, + "distance_unit": null, "is_finesse": false, "is_thrown": true, "is_two_handed": false, @@ -861,6 +895,7 @@ "reach": 5.0, "range": 0.0, "long_range": 0.0, + "distance_unit": null, "is_finesse": false, "is_thrown": false, "is_two_handed": false, @@ -886,6 +921,7 @@ "reach": 5.0, "range": 0.0, "long_range": 0.0, + "distance_unit": null, "is_finesse": false, "is_thrown": false, "is_two_handed": false, @@ -911,6 +947,7 @@ "reach": 10.0, "range": 0.0, "long_range": 0.0, + "distance_unit": null, "is_finesse": true, "is_thrown": false, "is_two_handed": false, From ada156395e40a6efcb4d68c9686a2b7ec081c460 Mon Sep 17 00:00:00 2001 From: August Johnson Date: Wed, 9 Oct 2024 12:01:25 -0500 Subject: [PATCH 11/11] Testing success. --- ...ects.test_creature_ancient_example.approved.json | 9 +++++++++ ...jects.test_creature_goblin_example.approved.json | 2 ++ ...bjects.test_creature_guard_example.approved.json | 1 + ...stObjects.test_creatureset_example.approved.json | 9 +++++++++ .../TestObjects.test_size_example.approved.json | 3 ++- .../TestObjects.test_weapon_example.approved.json | 13 ++++--------- 6 files changed, 27 insertions(+), 10 deletions(-) diff --git a/api_v2/tests/responses/TestObjects.test_creature_ancient_example.approved.json b/api_v2/tests/responses/TestObjects.test_creature_ancient_example.approved.json index 1c4a9a67..d30bce6c 100644 --- a/api_v2/tests/responses/TestObjects.test_creature_ancient_example.approved.json +++ b/api_v2/tests/responses/TestObjects.test_creature_ancient_example.approved.json @@ -10,6 +10,7 @@ "actions": [ { "action_type": "ACTION", + "attacks": [], "desc": "Melee Weapon Attack: +17 to hit, reach 15 ft., one target. Hit: 21 (2d10 + 10) piercing damage plus 14 (4d6) fire damage.", "form_condition": null, "key": "srd_ancient-red-dragon_bite", @@ -21,6 +22,7 @@ }, { "action_type": "ACTION", + "attacks": [], "desc": "Melee Weapon Attack: +17 to hit, reach 10 ft., one target. Hit: 17 (2d6 + 10) slashing damage.", "form_condition": null, "key": "srd_ancient-red-dragon_claw", @@ -32,6 +34,7 @@ }, { "action_type": "LEGENDARY_ACTION", + "attacks": [], "desc": "The dragon makes a Wisdom (Perception) check.", "form_condition": null, "key": "srd_ancient-red-dragon_detect", @@ -43,6 +46,7 @@ }, { "action_type": "ACTION", + "attacks": [], "desc": "The dragon exhales fire in a 90-foot cone. Each creature in that area must make a DC 24 Dexterity saving throw, taking 91 (26d6) fire damage on a failed save, or half as much damage on a successful one.", "form_condition": null, "key": "srd_ancient-red-dragon_fire-breath", @@ -54,6 +58,7 @@ }, { "action_type": "ACTION", + "attacks": [], "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 21 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.", "form_condition": null, "key": "srd_ancient-red-dragon_frightful-presence", @@ -65,6 +70,7 @@ }, { "action_type": "ACTION", + "attacks": [], "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.", "form_condition": null, "key": "srd_ancient-red-dragon_multiattack", @@ -76,6 +82,7 @@ }, { "action_type": "ACTION", + "attacks": [], "desc": "Melee Weapon Attack: +17 to hit, reach 20 ft., one target. Hit: 19 (2d8 + 10) bludgeoning damage.", "form_condition": null, "key": "srd_ancient-red-dragon_tail", @@ -87,6 +94,7 @@ }, { "action_type": "LEGENDARY_ACTION", + "attacks": [], "desc": "The dragon makes a tail attack.", "form_condition": null, "key": "srd_ancient-red-dragon_tail-attack", @@ -98,6 +106,7 @@ }, { "action_type": "LEGENDARY_ACTION", + "attacks": [], "desc": "The dragon beats its wings. Each creature within 15 ft. of the dragon must succeed on a DC 25 Dexterity saving throw or take 17 (2d6 + 10) bludgeoning damage and be knocked prone. The dragon can then fly up to half its flying speed.", "form_condition": null, "key": "srd_ancient-red-dragon_wing-attack", diff --git a/api_v2/tests/responses/TestObjects.test_creature_goblin_example.approved.json b/api_v2/tests/responses/TestObjects.test_creature_goblin_example.approved.json index 0ad9864e..c8d75184 100644 --- a/api_v2/tests/responses/TestObjects.test_creature_goblin_example.approved.json +++ b/api_v2/tests/responses/TestObjects.test_creature_goblin_example.approved.json @@ -10,6 +10,7 @@ "actions": [ { "action_type": "ACTION", + "attacks": [], "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) slashing damage.", "form_condition": null, "key": "srd_goblin_scimitar", @@ -21,6 +22,7 @@ }, { "action_type": "ACTION", + "attacks": [], "desc": "Ranged Weapon Attack: +4 to hit, range 80/320 ft., one target. Hit: 5 (1d6 + 2) piercing damage.", "form_condition": null, "key": "srd_goblin_shortbow", diff --git a/api_v2/tests/responses/TestObjects.test_creature_guard_example.approved.json b/api_v2/tests/responses/TestObjects.test_creature_guard_example.approved.json index 96bae163..38a20d33 100644 --- a/api_v2/tests/responses/TestObjects.test_creature_guard_example.approved.json +++ b/api_v2/tests/responses/TestObjects.test_creature_guard_example.approved.json @@ -10,6 +10,7 @@ "actions": [ { "action_type": "ACTION", + "attacks": [], "desc": "Melee or Ranged Weapon Attack: +3 to hit, reach 5 ft. or range 20/60 ft., one target. Hit: 4 (1d6 + 1) piercing damage, or 5 (1d8 + 1) piercing damage if used with two hands to make a melee attack.", "form_condition": null, "key": "srd_guard_spear", diff --git a/api_v2/tests/responses/TestObjects.test_creatureset_example.approved.json b/api_v2/tests/responses/TestObjects.test_creatureset_example.approved.json index e4327510..00152ce9 100644 --- a/api_v2/tests/responses/TestObjects.test_creatureset_example.approved.json +++ b/api_v2/tests/responses/TestObjects.test_creatureset_example.approved.json @@ -12,6 +12,7 @@ "actions": [ { "action_type": "ACTION", + "attacks": [], "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 2 (1d4) bludgeoning damage.", "form_condition": null, "key": "srd_camel_bite", @@ -264,6 +265,7 @@ "actions": [ { "action_type": "ACTION", + "attacks": [], "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 9 (2d4 + 4) bludgeoning damage.", "form_condition": null, "key": "srd_draft-horse_hooves", @@ -396,6 +398,7 @@ "actions": [ { "action_type": "ACTION", + "attacks": [], "desc": "Melee Weapon Attack: +8 to hit, reach 5 ft., one target. Hit: 19 (3d8 + 6) piercing damage.", "form_condition": null, "key": "srd_elephant_gore", @@ -407,6 +410,7 @@ }, { "action_type": "ACTION", + "attacks": [], "desc": "Melee Weapon Attack: +8 to hit, reach 5 ft., one prone creature. Hit: 22 (3d10 + 6) bludgeoning damage.", "form_condition": null, "key": "srd_elephant_stomp", @@ -539,6 +543,7 @@ "actions": [ { "action_type": "ACTION", + "attacks": [], "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one target. Hit: 4 (1d6 + 1) piercing damage. If the target is a creature, it must succeed on a DC 11 Strength saving throw or be knocked prone.", "form_condition": null, "key": "srd_mastiff_bite", @@ -671,6 +676,7 @@ "actions": [ { "action_type": "ACTION", + "attacks": [], "desc": "Melee Weapon Attack: +2 to hit, reach 5 ft., one target. Hit: 4 (1d4 + 2) bludgeoning damage.", "form_condition": null, "key": "srd_mule_hooves", @@ -803,6 +809,7 @@ "actions": [ { "action_type": "ACTION", + "attacks": [], "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 7 (2d4 + 2) bludgeoning damage.", "form_condition": null, "key": "srd_pony_hooves", @@ -935,6 +942,7 @@ "actions": [ { "action_type": "ACTION", + "attacks": [], "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 8 (2d4 + 3) bludgeoning damage.", "form_condition": null, "key": "srd_riding-horse_hooves", @@ -1067,6 +1075,7 @@ "actions": [ { "action_type": "ACTION", + "attacks": [], "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) bludgeoning damage.", "form_condition": null, "key": "srd_warhorse_hooves", diff --git a/api_v2/tests/responses/TestObjects.test_size_example.approved.json b/api_v2/tests/responses/TestObjects.test_size_example.approved.json index 26ee3862..01428c87 100644 --- a/api_v2/tests/responses/TestObjects.test_size_example.approved.json +++ b/api_v2/tests/responses/TestObjects.test_size_example.approved.json @@ -1,8 +1,9 @@ { + "distance_unit": "feet", "document": "http://localhost:8000/v2/documents/srd/", "key": "huge", "name": "Huge", "rank": 5, - "space_diameter": "15.000", + "space_diameter": 15.0, "url": "http://localhost:8000/v2/sizes/huge/" } diff --git a/api_v2/tests/responses/TestObjects.test_weapon_example.approved.json b/api_v2/tests/responses/TestObjects.test_weapon_example.approved.json index ef6265d7..3bcf12f5 100644 --- a/api_v2/tests/responses/TestObjects.test_weapon_example.approved.json +++ b/api_v2/tests/responses/TestObjects.test_weapon_example.approved.json @@ -1,6 +1,7 @@ { "damage_dice": "1d6", "damage_type": "http://localhost:8000/v2/damagetypes/slashing/", + "distance_unit": "feet", "document": "http://localhost:8000/v2/documents/srd/", "is_finesse": true, "is_heavy": false, @@ -9,21 +10,15 @@ "is_light": true, "is_martial": true, "is_net": false, - "is_reach": false, "is_simple": false, "is_thrown": false, "is_two_handed": false, "is_versatile": false, "key": "srd_shortsword", + "long_range": 0.0, "name": "Shortsword", - "properties": [ - "finesse", - "light" - ], - "range_long": 0, - "range_melee": 5, - "range_normal": 0, - "range_reach": 5, + "range": 0.0, + "reach": 5.0, "requires_ammunition": false, "requires_loading": false, "url": "http://localhost:8000/v2/weapons/srd_shortsword/",