// add the body to the armor array
int[] fullArmor = new int[armor.length + 1];
fullArmor[0] = 0;
System.arraycopy(armor, 0, fullArmor, 1, armor.length);
for (int x = 0; x < fullArmor.length; x++) {
t.initializeArmor(fullArmor[x], x);
}
t.autoSetInternal();
loadEquipment(t, "Front", LargeSupportTank.LOC_FRONT);