Is there anyway for me to import a large group of global or local variables into Construct as a CSV or something? I have an array of 100+ variables and I'd like to use identifiers for my code but still be able to move stuff around easily.
Example:
Global variables I want to set below so I can call ItemArray.at(PlayerDamage), PlayerArray.at(PlayerDamage), SpellArray.at(PlayerDamage), etc. If I later want to insert PlayerDefense at 2 and shift everything down.. doing it manually would be quite the pain if they are global variables in Construct vs. very easy in traditional code + copy paste from Excel.
PlayerDmg 0
PlayerLife 1
SlayerEnemyTypeA 2
SlayerEnemyTypeB 3
SlayerEnemyTypeC 4
SlayerEnemyTypeD 5
SlayerEnemyTypeE 6
ResistMagicA 7
ResistMagicB 8
ResistMagicC 9
ResistMagicD 10
ResistMagicE 11
etc.