g.setColor(Color.lightGray);
g.fillRect((int)x, (int)y, parent.imgs[0].getWidth(parent),
parent.imgs[0].getHeight(parent)+25);
if (sated == false) {
if (rightStick.owner == this && leftStick.owner != this) {
// got left only
g.drawImage(parent.imgs[1], (int)x, (int)y, parent);
} else if (rightStick.owner == this && leftStick.owner == this) {
// got both
g.drawImage(parent.imgs[2], (int)x, (int)y, parent);
} else {
// got nothing
g.drawImage(parent.imgs[0], (int)x, (int)y, parent);
}
} else {
g.drawImage(parent.imgs[0], (int)x, (int)y, parent);
g.setColor(Color.black);
g.drawString("Mmm!", ((int)(x)+8),
((int)(y)+parent.imgs[0].getHeight(parent)+13));
}