func extraFood(t *antwar.Tile) int { return t.FoodCount() - t.AntCount() }
func moreFoodThanAnts(tile *antwar.Tile) bool { return tile.FoodCount() > tile.AntCount() // && tile.Team() != "ghengis" }