I'm looking to create a script that will incorporate the AD&D 1st Edition weapons vs armour class to-hit adjustments when attacking. However, I wanted some advice before I commit time to an incorrect implementation. The original table has 50 weapon entries, with AC ranging from 2 to 10, for a total of 450 data points. If I include the damage each weapon does vs small, medium, and large opponents, the total entries becomes 550. I'm just learning how to program in Javascript (my primary language of choice is Python). Normally, I would just create an SQLite database with all the entries and pull from that. However, to my understanding, Roll20 doesn't have the ability to access databases. 1. Am I incorrect in assuming database access in Roll20 is available? 2. Would a Javascript array be a better implementation? 3. Does anyone have a better suggestion for accomplishing this? Thanks.