static int amtOfLvls = 20;
static int amtOfStatPerLvl = 10;
static int xplierPerLvl = 2;
for (int i = 1; i <= amtOfLvls; i++)
for (int x = 0; x <= amtOfStatPerLvl; x++)
int newAtk = x + (i * xplierPerLvl);
Console.WriteLine("-------------------------------------------------");
Console.WriteLine("@ LVL: " + i + ". With an attack of: " + newAtk);
int max = (int) ((i + newAtk) + Math.Floor(newAtk * 0.3f)) + 1;
Console.WriteLine("MIN attack would be: " + min);
Console.WriteLine("MAX attack would be: " + max);
Console.WriteLine("-------------------------------------------------");