What would be the best / efficient way to populate a large 2d array? I'd like to create an array of around 50-100 'monsters' with various stats like Hit Points, Speed, Attack, Defence, something like this:
Orc
10
5
4
3
Goblin
7
8
3
3
Skeleton
12
3
5
3
etc.... At the moment I'm doing something like this:
<img src="http://imageshack.us/a/img15/2122/clipboard03b.png" border="0" />
but wondered if there's a better way?