Describe the bug
Weapon damage types are inconsistent. Some are numbers (eg. 12.34), some are strings (eg. "12.34") and some are strings including and element type (eg. "72.0 radiation").
According to my research:
These are wikia sourced data.
damage is supposed to be the sum of all damageTypes.
Number and "just string" formatted values match.
"String with element" formatted values are a parsing error, since they are always equal to the last element of damageTypes.
Describe the bug Weapon
damage
types are inconsistent. Some are numbers (eg.12.34
), some are strings (eg."12.34"
) and some are strings including and element type (eg."72.0 radiation"
).According to my research:
damage
is supposed to be the sum of alldamageTypes
.damageTypes
.To Reproduce Steps to reproduce the behavior:
You can also find all those entries with
Expected behavior Damage type to be always number and without parsing errors.