Hello
I'm trying to do something like this:
Attributes Table
Name | Min Value | Max Value |
Health | -99 | 999999 |
Energy | 0 | 164000000 |
Potions Table
Name | Description | Attribute Modifiers | Foo | Bar |
Healing Potion | heal_pot_descr | (Health 50) | ... | ... |
Curse Potion | curse_pot_descr | (Health -25), (Energy -25) | ... | ... |
So is that possible? I.e. referencing the attribute value in the Attributes Table from the Potions Table with an additional value of some type (in this example an integer)?
The use case there is pretty simple and straightforward. I was also wondering if that's not possible if we could join then two columns into one? Something like:
Name | Attribute | Modifier | Attribute Modifier |
Healing Potion | Health | 50 | (Health 50) |
Curse Potion | Health, Energy | -25,-25 | (Health -25), (Energy -25) |
This at least allows us to preview the values in the table