so you have weapons, items, skills, and so on that are accessed through the database. They have Array like features, like name, power, description, damage, etc, but the data is saved externally in an rxdata file. I'm trying to make a new category called "chants". They would resemble "skills" but have only five relevant attributes:
I. id number
II. name string
III. description string
IV. power (1,2, or 3)
V. fragment id
I then need a place to input the data, so for example, the following data,
chant[0].name = "pyramid"
chant[0].description = "five sided geometric shape"
chant[0].power = 2
chant[0].fragment = 27
might be inserted by typing something like
chant[0] = ["pyramid", "five sided geometric shape", 2, 27]
I've tried messing with Hashes and Classes, but since this is a foreign object rather than an existing actor, item, skill, or weapon, I'm not sure what to do.
P.S. If I can do this with an array or a class, that's cool too.