return new Random().nextBoolean();
}
@Override
public List<Permanent> getAvailableAttackers(Game game) {
FilterCreatureForAttack attackFilter = new FilterCreatureForAttack();
attackFilter.getControllerId().add(playerId);
List<Permanent> attackers = game.getBattlefield().getAllActivePermanents(attackFilter);
return attackers;
}