ID int64 1 2.56k | Game stringclasses 6 values | tier int64 1 3 | Question stringlengths 25 2.21k | Answer stringlengths 1 309 | game_state_url stringlengths 34 161 |
|---|---|---|---|---|---|
2,221 | Carcassonne | 3 | Considering that it is the blue players turn, which tile should the blue player choose from the available tile options (A, B, C) so as to get the maximum score by the end of this turn. Assume the players all have multiple meeples in their private supplies. Return the answer in the following format: [Tile = <selected tile>, total_points = <the maximum points by the end of this turn>] | [tile = A, total_points = 12] | gamestates/images/carcassonne/farmers_1.png |
2,222 | Carcassonne | 3 | Considering that it is the red player's turn, which tile should the red player choose from the available tile options (A, B, C) so as to get the maximum score by the end of this turn. Assume the players all have multiple meeples in their private supplies. Return the answer in the following format: [Tile = <selected tile>, total_points = <the maximum points by the end of this turn>] | [tile = B, total_points = 9] | gamestates/images/carcassonne/farmers_1.png |
2,223 | Carcassonne | 3 | Considering that it is the yellow player's turn, yellow selects a tile (from the options A, B, C) that maximizes their end-of-turn score. Assume that the yellow player does not have any meeples left to place on the landscape. Return the maximum end-of-turn score increase they achieve in the following format: [total_points = <the maximum points by the end of this turn>] | [total_points = 0] | gamestates/images/carcassonne/farmers_1.png |
2,224 | Carcassonne | 3 | Considering that it is the blue player's turn, which tile should the blue player choose from the available tile options (A, B, C) so as to get the maximum score by the end of this game. Assume the players all have multiple meeples in their private supplies. Assume that the game would end after this turn. Return the answer in the following format: [Tile = <selected tile>, total_points_turn = <the points by the end of this turn for blue player>, total_points_final = <maximum points blue player can achieve at the end of this game>] | [Tile = A, total_points_turn = 12, total_points_final = 12] | gamestates/images/carcassonne/farmers_1.png |
2,225 | Carcassonne | 3 | Considering that it is the yellow player's turn, which tile should the yellow player choose from the available tile options (A, B, C) so as to get the maximum score by the end of this game. Assume that the game would end after this turn. Assume the players all have multiple meeples in their private supplies. Return the answer in the following format: [Tile = <selected tile>, total_points_turn = <the points by the end of this turn for yellow player>, total_points_final = <maximum points yellow player can achieve at the end of this game>] | [tile = B, total_points_turn = 9, total_points_final = 18] | gamestates/images/carcassonne/farmers_1.png |
2,226 | Carcassonne | 3 | Considering that it is the red player's turn, which tile should the red player choose from the available tile options (A, B, C) so as to get the maximum score by the end of this game. Assume that the game would end after this turn. Assume the players all have multiple meeples in their private supplies. Return the answer in the following format: [Tile = <selected tile>, total_points_turn = <the points by the end of this turn for red player>, total_points_final = <maximum points red player can achieve at the end of this game>] | [tile = B, total_points_turn = 9, total_points_final = 21] | gamestates/images/carcassonne/farmers_1.png |
2,227 | Carcassonne | 3 | Considering that it is the red player's turn, which tile should the red player choose from the available tile options (A, B, C) so as to get the maximum score by the end of this game. Assume that 1) the game would end after this turn and 2) the red player does not have any more meeples to place on the landscape. Return the answer in the following format: [Tile = <selected tile>, total_points_turn = <the points by the end of this turn for red player>, total_points_final = <maximum points red player can achieve at the end of this game>] | [Tile = B, total_points_turn = 0, total_points_final = 12] | gamestates/images/carcassonne/farmers_1.png |
2,228 | Carcassonne | 3 | Considering that it is the black player's turn, which tile should the black player choose from the available tile options (A, B, C) so as to get the maximum score by the end of this game. If there are ties, choose the higher-letter tile. Assume that 1) the game would end after this turn and 2) the black player does not have any more meeples to place on the landscape. Return the answer in the following format: [Tile = <selected tile>, total_points_turn = <the points by the end of this turn for black player>, total_points_final = <maximum points black player can achieve at the end of this game>] | [Tile = C, total_points_turn = 0, total_points_final = 12] | gamestates/images/carcassonne/farmers_1.png |
2,229 | Carcassonne | 3 | Considering the situation that the blue player has two turns one after the other. Which tiles should the blue player choose from the available tile options (A, B, C) so as to get the maximum score by the end of the 2 turns. Assume the players all have multiple meeples in their private supplies. Return the tile selection details in the following format: [Tiles = <selected tile, selected tile>; total_points = <the maximum points acehived by the end of two turns>]. Order the selected tiles in alphabetical order, not in the order of placement. | [Tiles = A, B; total_points = 21] | gamestates/images/carcassonne/farmers_1.png |
2,230 | Carcassonne | 3 | Considering the situation that the red player has two turns one after the other. Which tiles should the red player choose from the available tile options (A, B, C) to maximize their end-of-turn score after the second turn. Assume the players all have multiple meeples in their private supplies. Return the tile selection details in the following format: [Tiles = <selected tile, selected tile>; total_points = <the maximum points acehived by the end of two turns>]. Order the selected tiles in alphabetical order, not in the order of placement. | [Tiles = B, C; total_points = 14] | gamestates/images/carcassonne/farmers_1.png |
2,231 | Carcassonne | 3 | Considering the situation that the blue player has three turns, one after the other. What is the maximum score that the blue player can achieve by the end of these 3 turns (note: the game will still be ongoing after these turns). Assume the players all have multiple meeples in their private supplies. Return the answer in the following format: [total_points = <the maximum points by the end of three turns>] | [total_points = 26] | gamestates/images/carcassonne/farmers_1.png |
2,232 | Carcassonne | 3 | Considering the situation that the blue player has three turns, one after the other. What is the maximum score that the blue player can achieve by the end of these 3 turns by placing the following three tiles on the next three turns (note: the player can choose the order, and the game will still be ongoing after these turns). Assume the players all have multiple meeples in their private supplies. Return the answer in the following format: [total_points = <the maximum points by the end of three turns>] | [total_points = 14] | gamestates/images/carcassonne/farmers_1.png |
2,233 | Carcassonne | 3 | Considering the situation that the yellow player has two turns one after the other. which tiles should the yellow player choose from the available tile options (A, B, C) so as to get the maximum score by the end of the game. Assume that 1) The game ends after these two turns, 2) players all have multiple meeples in their private supplies. Return the answer in the following format: [Tiles = <selected tile, selected tile>; total_points_turn = <the maximum points by the end of two turns>; total_points_final = <the maximum points by the end of game>] | [Tiles = B, C; total_points_turn = 14; total_points_final = 26] | gamestates/images/carcassonne/farmers_1.png |
2,234 | Carcassonne | 3 | Consider the current landscape without any placement of tiles shown. Assume that the last turn has been completed, and game has come to an end. What is the amount of points each player gets (red, blue, yellow, black) during the final score calculations? Return the answer as: [blue= <blue players final score>, red= <red players final score>, yellow= <yellow players final score>, black = <black players final score>] | [blue= 4, red= 6, yellow= 9, black = 9] | gamestates/images/carcassonne/farmers_1.png |
2,235 | Carcassonne | 3 | What is the largest field (in terms of tiles) can be formed by adding one more tile to the current landscape? Provide your answer in the format: [Tile = <chosen tile>, size = <number of tiles in the largest field>] | [Tile = C, size = 23] | gamestates/images/carcassonne/farmers_1.png |
2,236 | Carcassonne | 3 | Consider the current landscape without any placement of tiles shown. Assume that the last turn has been completed, and game has come to an end. What is the amount of points each player gets (red, blue, yellow) during the final score calculations? Return the answer as: [blue= <blue players final score>, red= <red players final score>, yellow= <yellow players final score>] | [blue= 4, red= 15, yellow= 9] | gamestates/images/carcassonne/farmers_2.png |
2,237 | Carcassonne | 3 | Considering that it is the red player's turn, which tile should the red player choose from the available tile options (A, B, C) so as to get the maximum score by the end of this game. Assume that the game would end after this turn. Assume the players all have multiple meeples in their private supplies. Return the answer in the following format: [Tile = <selected tile>, total_points_turn = <the points by the end of this turn for red player>, total_points_final = <maximum points blue player can achieve at the end of this game>] | [Tile = B; total_points_turn = 9; total_points_final = 30] | gamestates/images/carcassonne/farmers_2.png |
2,238 | Carcassonne | 3 | Considering the situation that the red player has two turns one after the other. which tiles should the red player choose from the available tile options (A, B, C) so as to get the maximum score by the end of the game? Assume the players all have multiple meeples in their private supplies. Assume that the game ends after these 2 turns. return the answer in the following format: [Tiles = <selected tile, selected tile>; total_points_turn = <the maximum points by the end of two turns>, total_points_final = <the maximum points by the end of the game>]. Order the tiles alphabetically, not in the order of placement. | [Tiles = A, B; total_points_turn = 9; total_points_final = 36] | gamestates/images/carcassonne/farmers_2.png |
2,239 | Carcassonne | 3 | Considering the situation that the red player has three turns one after the other. What is the maximum score the red player can achieve at the end of the game? Assume that the game ends after these 3 turns. Assume the players all have multiple meeples in their private supplies. Return the answer in the following format: [total_points_turn = <the maximum points by the end of two turns>, total_points_final = <total points by the end of the game>] | [total_points_turn = 9; total_points_final = 39] | gamestates/images/carcassonne/farmers_2.png |
2,240 | Carcassonne | 3 | Considering the situation that the red player has two turns one after the other. which tiles should the red player choose from the available tile options (A, B, C) so as to get the maximum score by the end of the game, without contributing ANYTHING positively to the other players. Ie, Objective #1 (highest priority): Red should not add any net increase in opponent player endgame score from the current gamestate. Objective 2 (second priority): Red should increase their final score as much as possible. Assume that the game ends after these 2 turns. Assume the players all have multiple meeples in their private supplies. Return the answer in the following format: [Tiles = <selected tile, selected tile>; total_points_turn = <the maximum points by the end of two turns>, total_points_final = <the maximum points by the end of the game>] | [Tiles = B, C; total_points_turn = 14; total_points_final = 26] | gamestates/images/carcassonne/farmers_2.png |
2,241 | Carcassonne | 3 | Consider the current landscape without any placement of tiles shown. Assume that the last turn has been completed, and game has come to an end. What is the amount of points each player gets (blue, yellow) during the final score calculations? Return the answer as: [blue= <blue players final score>, yellow= <yellow players final score>] | [blue= 4, yellow= 8] | gamestates/images/carcassonne/best_tile_3.png |
2,242 | Carcassonne | 3 | Consider the current landscape without any placement of tiles shown. Assume that the last turn has been completed, and game has come to an end. What is the amount of points each player gets (blue, red) during the final score calculations? Return the answer as: [blue= <blue players final score>, red= <red players final score>] | [blue= 10, red= 1] | gamestates/images/carcassonne/best_tile_2.png |
2,243 | Carcassonne | 3 | Considering that it is the blue players turn, which tile should the blue player choose from the available tile options (A, B) so as to get the maximum score by the end of this turn (note: the game will not end yet). Assume the players all have multiple meeples in their private supplies. Return the answer in the following format: [Tile = <selected tile>, total_points = <the maximum points by the end of this turn>] | [Tile = B, total_points = 16] | gamestates/images/carcassonne/farmers_3.png |
2,244 | Carcassonne | 3 | Considering that it is the red players turn, which tile should the red player choose from the available tile options (A, B) so as to get the maximum score by the end of this turn (note: the game will not end yet). Assume the players all have multiple meeples in their private supplies. return the answer in the following format: [Tile = <selected tile>, total_points = <the maximum points by the end of this turn>] | [Tile = A, total_points = 9] | gamestates/images/carcassonne/farmers_3.png |
2,245 | Carcassonne | 3 | Considering that it is the blue players turn, which tile should the blue player choose from the available tile options (A, B) so as to get the maximum score by the end of this turn but first and foremost that the red player does not earn any points in this turn because of blue's selection. Assume the players all have multiple meeples in their private supplies. Return the answer in the following format: [Tile = <selected tile>, total_points = <the maximum points by the end of this turn>] | [Tile = B, total_points = 16] | gamestates/images/carcassonne/farmers_3.png |
2,246 | Carcassonne | 3 | Considering that it is the blue player's turn, which tile should the blue player choose from the available tile options (A, B) so as to get the maximum score by the end of this game. Assume the players all have multiple meeples in their private supplies. Assume that the game would end after this turn. Return the answer in the following format: [Tile = <selected tile>, total_points_turn = <the points by the end of this turn for this player>, total_points_final = <maximum points the player can achieve at the end of this game>] | [Tile = B, total_points_turn = 16, total_points_final = 34] | gamestates/images/carcassonne/farmers_3.png |
2,247 | Carcassonne | 3 | Considering that it is the red player's turn, which tile should the red player choose from the available tile options (A, B) so as to get the maximum score by the end of this game. Assume the players all have multiple meeples in their private supplies. Assume that the game would end after this turn. Return the answer in the following format: [Tile = <selected tile>, total_points_turn = <the points by the end of this turn for this player>, total_points_final = <maximum points the player can achieve at the end of this game>] | [Tile = A, total_points_turn = 9, total_points_final = 23] | gamestates/images/carcassonne/farmers_3.png |
2,248 | Carcassonne | 3 | Considering the situation that the blue player has two turns one after the other. What is the maximum score that the blue player can score at the end of these turns? (note: the game will not end yet). Assume the players all have multiple meeples in their private supplies. Return the answer in the following format: [total_points = <the maximum points by the end of two turns>] | [total_points = 25] | gamestates/images/carcassonne/farmers_3.png |
2,249 | Carcassonne | 3 | Considering the situation that the blue player has two turns one after the other. What is the maximum score that the blue player can score at the end of this game? Assume the players all have multiple meeples in their private supplies. Assume that the game ends after these two turns. Return the answer in the following format: [total_points_turn = <the maximum points by the end of two turns>, total_points_final = <the maximum points at the end of the game>] | [total_points_turn = 25, total_points_final = 37] | gamestates/images/carcassonne/farmers_3.png |
2,250 | Carcassonne | 3 | Consider the current landscape without any placement of tiles shown. Assume that the last turn has been completed, and game has come to an end. What is the amount of points each player gets (blue, red) during the final score calculations? Return the answer as: [blue= <blue players final score>, red= <red players final score>] | [blue= 23, red= 14] | gamestates/images/carcassonne/farmers_3.png |
2,301 | Catan | 1 | In the given gamestate, how many mountain tiles are present? | 3 | gamestates/images/catan/board_1.png |
2,302 | Catan | 1 | In the given gamestate, how many tiles are present? | 19 | gamestates/images/catan/board_1.png |
2,303 | Catan | 1 | How many total blue coloured objects are present in the given image? | 9 | gamestates/images/catan/board_1.png |
2,304 | Catan | 1 | How many number tokens are present on the board in the given game state? | 18 | gamestates/images/catan/board_2.png |
2,305 | Catan | 1 | Which number tiles are present in the least quantity on the board in the given game state? | 2, 12 | gamestates/images/catan/board_2.png |
2,306 | Catan | 1 | How many intersections are occupied in the given game state? Consider the intersection to be the point/corners where the tiles meet. | 5 | gamestates/images/catan/board_2.png |
2,307 | Catan | 1 | How many cards are present in the given image of the game state? | 14 | gamestates/images/catan/player_blue_2.png |
2,308 | Catan | 1 | How many resource cards are present in the given players gamestate. | 10 | gamestates/images/catan/player_blue_2.png |
2,309 | Catan | 1 | How many green bordered cards are present in the given players gamestate. | 2 | gamestates/images/catan/player_red_2.png |
2,310 | Catan | 1 | How many cards are present in the players hand in the given game state? | 3 | gamestates/images/catan/player_red_2.png |
2,311 | Catan | 1 | How many ships are present on the board in the given game state? | 9 | gamestates/images/catan/board_3.png |
2,312 | Catan | 1 | How many objects are present on the board that belongs to the blue player? | 6 | gamestates/images/catan/board_3.png |
2,313 | Catan | 1 | How many number tokens occur only once on the board in the given game state? and what are they? Report your answer in the format: [least_number: <number1>, <number2>, ...] | [least_number: 2, 12] | gamestates/images/catan/board_3.png |
2,314 | Catan | 1 | What are the number tokens present on the forest (or dark green) hex tile in the given game state? return your answer in the format: [number_of_forest_tiles = <number of forest hexes present> , tokens: [<number1>, <number2>, ...]] | [number_of_forest_tiles = 3, tokens: [5, 8, 9]] | gamestates/images/catan/board_3.png |
2,315 | Catan | 1 | How many knight cards are present in the given players table? | 3 | gamestates/images/catan/player_blue_3.png |
2,316 | Catan | 1 | What is the total number of resource cards present in the given player's resource cards in the given game state? | 6 | gamestates/images/catan/player_blue_3.png |
2,317 | Catan | 1 | how many cards are present in the given image in total? | 12 | gamestates/images/catan/player_blue_3.png |
2,318 | Catan | 1 | Which card is repeating the maximum number of times in the given image? | Knight | gamestates/images/catan/player_blue_3.png |
2,319 | Catan | 1 | How many cards are there in the players table? | 0 | gamestates/images/catan/player_red_3.png |
2,320 | Catan | 1 | how many non repeating cards are present in the given game state? | 1 | gamestates/images/catan/player_red_3.png |
2,321 | Catan | 1 | How many distinct cards are present in the given image? | 4 | gamestates/images/catan/player_red_3.png |
2,322 | Catan | 1 | How many cards are there in the given player's resource cards in total? | 8 | gamestates/images/catan/player_red_3.png |
2,323 | Catan | 1 | How many tiles are not surrounded by any players tokens (including the corners and the sides of hexes)? | 1 | gamestates/images/catan/board_5.png |
2,324 | Catan | 1 | How many tiles do not have any number tokens on them? | 1 | gamestates/images/catan/board_5.png |
2,325 | Catan | 1 | How many players are playing the current game?, Assume each player has atleast 2 tokens of their color on the board. | 3 | gamestates/images/catan/board_5.png |
2,326 | Catan | 1 | How many green colored tokens (or bars) are present on the sides of the hexagonal tiles in the given game state? Note: we are only concerned on the sides not the corners. | 9 | gamestates/images/catan/board_5.png |
2,327 | Catan | 1 | How many total colored tokens (or bars) present on the sides of the hexagonal tiles in the given game state? Note: we are only concerned on the sides not the corners. | 27 | gamestates/images/catan/board_5.png |
2,328 | Catan | 1 | How many blue objects are present on the corners of the hexagonal tiles in the given game state? Note: we are only concerned on the corners not the sides. | 3 | gamestates/images/catan/board_5.png |
2,329 | Catan | 1 | What is the number on the tile containing the black pawn in the given game state? | 5 | gamestates/images/catan/board_5.png |
2,330 | Catan | 1 | How many colored objects are present on the corners of the hexagonal tiles in the given game state? Note: we are only concerned on the corners not the sides. | 10 | gamestates/images/catan/board_5.png |
2,331 | Catan | 1 | How many tiles are connected to the water (i.e., have at least one side touching the water) in the given game state? | 12 | gamestates/images/catan/board_5.png |
2,332 | Catan | 1 | How many tiles do not touch the water in the given game state? | 7 | gamestates/images/catan/board_5.png |
2,333 | Catan | 1 | How many resource cards are there in the given players image? | 14 | gamestates/images/catan/player_green_5.png |
2,334 | Catan | 1 | What is the total number of cards present in the given image? | 20 | gamestates/images/catan/player_green_5.png |
2,335 | Catan | 1 | which card has the highest count (i.e. multiple cards of the same type) in the given image? | the card with sheep | gamestates/images/catan/player_green_5.png |
2,336 | Catan | 1 | How many cards are present in the player's hand in the given game state? | 3 | gamestates/images/catan/player_green_5.png |
2,337 | Catan | 1 | How many cards occur with exactly 3 copies in the given image? | 3 | gamestates/images/catan/player_red_5.png |
2,338 | Catan | 1 | How many different cards occur in quantities that are multiples of two in the image? | 3 | gamestates/images/catan/player_red_5.png |
2,339 | Catan | 1 | How many cards have a sheep icon in the given player's image? | 1 | gamestates/images/catan/player_blue_5.png |
2,340 | Catan | 1 | What is the total number of cards present in the given image? | 15 | gamestates/images/catan/player_blue_5.png |
2,401 | Catan | 2 | Which player has the most settlements on the board? | Red | gamestates/images/catan/board_1.png |
2,402 | Catan | 2 | What is the length of the longest road present on the board and which player owns it? Return the answer in the format [longest_road_length=<value>, player_list=<list of alphabetically sorted players, &-separated>] | [longest_road_length=6, blue&red | gamestates/images/catan/board_1.png |
2,403 | Catan | 2 | How many red settlements are there on the board? | 2 | gamestates/images/catan/board_1.png |
2,404 | Catan | 2 | How many ore resource cards are present in the given image of the game state? | 3 | gamestates/images/catan/player_blue_2.png |
2,405 | Catan | 2 | How many resource cards of each type are present in the given game state of the player? Report your answer in the format, sorting the types alphabetically: <resource type>: <number> seperated by commas. | brick: 1, grain: 4, lumber: 1, ore: 3, wool: 1 | gamestates/images/catan/player_blue_2.png |
2,406 | Catan | 2 | How many development cards are visible in the given players gamestate? | 4 | gamestates/images/catan/player_blue_2.png |
2,407 | Catan | 2 | How many wool resource cards are present in the given image of the game state? | 1 | gamestates/images/catan/player_red_1.png |
2,408 | Catan | 2 | What is the total number of points the blue player has in the given game state? | 3 | gamestates/images/catan/board_2.png;gamestates/images/catan/player_blue_2.png;gamestates/images/catan/player_red_2.png |
2,409 | Catan | 2 | What is the total number of victory points the red player has if the game ended in this state? | 8 | gamestates/images/catan/board_2.png;gamestates/images/catan/player_blue_2.png;gamestates/images/catan/player_red_2.png |
2,410 | Catan | 2 | Suppose the blue player gains a wool resource and builds a settlement at the intersetion of hexes mountain (with number 5), pasture (with number 10), and hills (with number 8), How many points does the blue player have after performing this action? | 4 | gamestates/images/catan/player_blue_1.png;gamestates/images/catan/player_red_1.png;gamestates/images/catan/board_1.png |
2,411 | Catan | 2 | How many red settlements are visible in the given game state? | 0 | gamestates/images/catan/board_3.png |
2,412 | Catan | 2 | How many valid positions can a red player place a settlement in the current game state? | 1 | gamestates/images/catan/board_3.png |
2,413 | Catan | 2 | Given that it is the red player's turn, and the player rolls a 4. What is the total amount of resources the red player will receive from this roll? Return the answer in the following format: [resource: <name of the resource>, amount: <number of resources>]. If the player receives no resources, return [resource: none, amount: 0]. | [resource: grain, amount: 4] | gamestates/images/catan/board_3.png |
2,414 | Catan | 2 | How many total development cards are there in the current game state? Including the ones that are played and unplayed. Assume that no development card has been discraded yet. | 5 | gamestates/images/catan/player_blue_3.png |
2,415 | Catan | 2 | How many resource cards of each type are present in the players resource cards in the current game state? Return the answer in the following format: [<resource_name>: <number of cards of that type of resource>]. If a resource type has zero cards, include it in the answer with amount 0. | [lumber: 2, wool: 1, grain: 1, ore: 2] | gamestates/images/catan/player_blue_3.png |
2,416 | Catan | 2 | How many points does the blue player have in the current gamestate? | 4 | gamestates/images/catan/board_3.png;gamestates/images/catan/player_blue_3.png;gamestates/images/catan/player_red_3.png |
2,417 | Catan | 2 | Considering it is the blue player's turn. The blue player rolls a 8. How many total resources will the blue player receive from this roll? Return the answer in the following format: [resource: <name of the resource>, amount: <number of resources>]. If the player receives no resources, return [resource: none, amount: 0]. | [resource: brick, amount: 2] | gamestates/images/catan/board_3.png;gamestates/images/catan/player_blue_3.png;gamestates/images/catan/player_red_3.png |
2,418 | Catan | 2 | It is the blue player's turn. The blue player rolls a 8. Then the player decides to build a settlement at intersection of hexes: 11, 9, 12. How many resources of each kind does the blue player have after performing these actions? Return the answer in the following format: [<resource_name>: <number of cards of that type of resource>]. If a resource type has zero cards, include it in the answer with amount 0. | [brick: 1, wool: 0, grain: 0, lumber: 1, ore: 2] | gamestates/images/catan/board_3.png;gamestates/images/catan/player_blue_3.png;gamestates/images/catan/player_red_3.png |
2,419 | Catan | 2 | consider that it is the red player's turn. the red player rolls a 4. The red player plays the development card: monopoly, and gains all the lumber resources from the blue player. Then the red player build one settlement at the intersection of 10, 6, 5 hexes. upgrades this settlemet into a city. how many resources of each kind does the red player have after performing these actions? return the answer in the following format: [<resource_name>: <number of cards of that type of resource>]. if a resource type has zero cards, include it in the answer with amount 0. | [brick: 1, wool: 1, grain: 1, lumber: 1, ore: 1] | gamestates/images/catan/board_3.png;gamestates/images/catan/player_red_3.png;gamestates/images/catan/player_blue_3.png |
2,420 | Catan | 2 | Consider that it is the blue player's turn. The blue player rolls a 2. Then the player decides to play the road building development card. the 2 rods are placed at the following positions: side in between 11:mountains and 12:pastures, and 12:pastures and 6:hills. After performing these steps how many points does the player have at the end of this round? | 6 | gamestates/images/catan/board_3.png;gamestates/images/catan/player_blue_3.png;gamestates/images/catan/player_red_3.png |
2,421 | Catan | 2 | Consider that it is the blue player's turn and the blue player rolls a 11. what is the total number of resources of each type the blue player would have after collecting resources from the roll? Return the answer in the following format: [<resource_name>: <number of cards of that type of resource>]. If a resource type has zero cards, include it in the answer with amount 0. | [brick: 0, wool: 1, grain: 2, lumber: 2, ore: 3] | gamestates/images/catan/board_3.png;gamestates/images/catan/player_blue_3.png;gamestates/images/catan/player_red_3.png |
2,422 | Catan | 2 | Consider that it is the red player's turn. The red player rolls a 3. then the player decides to perform a genral trade with the bank: 4 ores for 1 grain. Then the player decides to use the development card: monopoly and get all the lumber resource cards from the blue player. how many resources of each kind does the red player have after performing these actions? return the answer in the following format: [<resource_name>: <number of cards of that type of resource>]. if a resource type has zero cards, include it in the answer with amount 0. | [brick: 2, wool: 2, grain: 1, lumber: 4, ore: 0] | gamestates/images/catan/board_3.png;gamestates/images/catan/player_red_3.png;gamestates/images/catan/player_blue_3.png |
2,423 | Catan | 2 | In the given gamestate image, how many cities are there for each player? Return the answer in the following format: [<player_color>: <number of cities>]. If a player has zero cities, include them in the answer with amount 0. Assume there are 3 players: red, blue, green. | [red: 0, blue: 2, green: 1] | gamestates/images/catan/board_5.png |
2,424 | Catan | 2 | What is the longest road length for each of the players in the current game state? Return the answer in the following format: [<player_color>: <longest_road_length>]. If a player has no roads, include them in the answer with amount 0. Assume there are 3 players: red, blue, green. | [red: 8, green: 7, blue: 7] | gamestates/images/catan/board_5.png |
2,425 | Catan | 2 | How many settlements of each color are visible in the given game state? Return the answer in the following format: [<player_color>: <number_of_settlements>]. If a player has zero settlements, include them in the answer with amount 0. Assume there are 3 players: red, blue, green. | [red: 3, blue: 1, green: 3] | gamestates/images/catan/board_5.png |
2,426 | Catan | 2 | How many cities are present on the harbor? | 3 | gamestates/images/catan/board_5.png |
2,427 | Catan | 2 | How many terrains of each type are present in the current game state? Return the answer in the following format: [<terrain_type>: <number_of_terrains>]. | [Hills: 3, forest: 4, mountains: 3, fields: 4, pastures: 4, dessert: 1] | gamestates/images/catan/board_5.png |
2,428 | Catan | 2 | What is the total number of ore resource cards present in the current gamestate? | 3 | gamestates/images/catan/player_blue_5.png |
2,429 | Catan | 2 | Given the current game state, Consider that it is the blue players turn, and the blue player rolls a 5. What is the total number of resources of each type the blue player would have after collecting resources from the roll? Return the answer in the following format: [<resource_name>: <number of cards of that type of resource>]. If a resource type has zero cards, include it in the answer with amount 0. | [brick: 2, lumber: 2, wool: 1, grain: 1, ore: 3] | gamestates/images/catan/board_5.png;gamestates/images/catan/player_blue_5.png |
2,430 | Catan | 2 | How many development cards are currently held by the green player in the given game state? Consider both played and unplayed development cards. Assume that no development card has been discarded yet. | 6 | gamestates/images/catan/player_green_5.png |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.