int getHP() {
   return body.getHP();
 }
 void setHP(int i) {
   body.changeHP(i - body.getHP());
 }
 public void setAlive(boolean alive) {
   body.setAlive(alive);
 }