if (j < 7) {
idx = j;
} else {
idx = (13 - j);
}
ImageBuffer ib = new ImageBuffer(20, 20);
for (int x = 0; x < 20; x++) {
for (int y = 0; y < 20; y++) {
c0 = img[idx][(alternativa?impl.getEstilo2():impl.getEstilo()).getNumero() - 1].getColor(x, y);
c1 = null;
if (c0.equals(franja)) {
if (impl.getJugadores()[i].esPortero()) {
c1 = uportero;
} else {
c1 = ufranja;
}
} else if (c0.equals(polera)) {
if (impl.getJugadores()[i].esPortero()) {
c1 = uportero;
} else {
c1 = upolera;
}
} else if (c0.equals(piel)) {
c1 = upiel;
} else if (c0.equals(pelo)) {
c1 = upelo;
} else if (c0.equals(pantalon)) {
if (impl.getJugadores()[i].esPortero()) {
c1 = uportero;
} else {
c1 = upantalon;
}
} else if (c0.equals(calcetas)) {
c1 = ucalcetas;
} else if (c0.equals(zapatos)) {
c1 = zapatos;
}
if (c1 != null) {
ib.setRGBA(x, y, c1.getRed(), c1.getGreen(), c1.getBlue(), c1.getAlpha());
}
}
}
imgJug[i][j] = ib.getImage();
}
}
}