I want to create array od data before start of layout, during game creation.
For example i want to create 10 diferent monster, each of them will have attack and defence.
I want too create array like:
monster |goblin|orc|troll |
attack |1 |4 | 5 |
deffence |1 |3 |7 |
How can i do that ?
I knew i can create array and add values on begining of game (on start of layout -> Set value at (1,1) to 2), but i dont want to do than this way.
I want to create array before, i want too see array during creation of game.