.agi(project), inte = RGSS1Voc.inte(project);
IRubyObject table = act.getInstanceVariable("@parameters");
for (int i = 1; i <= 99; i++) {
form.addElement("parameters." + i, new FormInfo("", I18N.t("Level {0}", i)).setSorting(i));
form.addElement("parameters." + i + "hp", new FormTable(hp, table, 0, i).setSorting(i));
form.addElement("parameters." + i + "sp", new FormTable(sp, table, 1, i).setSorting(i));
form.addElement("parameters." + i + "str", new FormTable(str, table, 2, i).setSorting(i));
form.addElement("parameters." + i + "dex", new FormTable(dex, table, 3, i).setSorting(i));
form.addElement("parameters." + i + "agi", new FormTable(agi, table, 4, i).setSorting(i));
form.addElement("parameters." + i + "inte", new FormTable(inte, table, 5, i).setSorting(i));
}
}