From e742ec81c3b71a9679a2d56d9af0fff92b9fe0df Mon Sep 17 00:00:00 2001 From: August Johnson Date: Wed, 9 Oct 2024 11:18:33 -0500 Subject: [PATCH] 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",