value = (int) (proto.calculateBattleValue() / proto.getCrew()
.getBVSkillMultiplier());
out.write(value);
out.write("\" /><hasMainGun value=\"");
out.write(proto.hasMainGun() ? "true" : "false");
for (int loc = 0; loc < proto.locations(); loc++) {
out.write("\" /><pilotDamageTaken loc=\"");
out.write(loc);
out.write("\" value=\"");
value = proto.getPilotDamageTaken(loc);
out.write(value);