Code:
        public static int[][] DexIntTable = new int[][]
        {
            new int[] { 3, 4, 4, 4, 5, 5, 5 },
            new int[] { 4, 4, 5, 5, 5, 5, 5 },
            new int[] { 5, 5, 5, 5, 5, 5, 5 },
            new int[] { 4, 4, 5, 5, 5, 5, 5 },
            new int[] { 4, 4, 5, 5, 5, 5, 5 },
            new int[] { 5, 5, 5, 5, 5, 5, 5 },
        };
Hello all!

I'm having fun mucking around with how items are generating and i'm wondering how do these tables work when something uses them?

1. Does it just pick it at random?
or
2. Does it have a specific way of selecting?
or
3. ??

If someone can shed some light on it, that would be fantastic!! :)
 
Back