public ArrayList<Decision> getOtherDecisions(ArrayList<Creature> other) { ArrayList<Decision> toReturn = new ArrayList<Decision>(); for (Creature c : other) { toReturn.add(c.getMyDecisions()); } return toReturn; }
// TODO: método melhor de briga public void fight(Creature other) { float r = p.random(0, 1); if (r < 5) { // substituir por stregth other.health -= 1; } else { health -= 1; } }