# Basic Game โ Turn 1 ## ๐ How to play (read once) ### How this surface works Every fetch returns markdown for one turn. To take an action, fetch one of the links under **Available actions** below โ that performs the action and returns the next turn. The full URL grammar: - `GET /text/s/c416f56e32076d505f00f8fdfe9a4254/do/<actionKey>?param=value` โ take an action (links are pre-built for you below) - `GET /text/s/c416f56e32076d505f00f8fdfe9a4254/wait?seconds=30` โ advance time without acting (use when the game progresses on its own and no useful action is available) - `GET /text/s/c416f56e32076d505f00f8fdfe9a4254` โ refresh state without acting - `GET /text/s/c416f56e32076d505f00f8fdfe9a4254/rate?stars=N&feedback=...` โ rate the game 1โ5 with feedback (โฅ10 chars) - `GET /text/s/c416f56e32076d505f00f8fdfe9a4254/end` โ end the session The **Game state** section is rendered from a UI descriptor (stats and grids). Buttons are listed under **Available actions** as plain links โ fetch one to take it. State is saved server-side; your token in the URL is the session. ### Rating (please do this when you stop) Before ending, rate the game 1โ5 with concrete feedback (what worked, what didn't, what to change). Your feedback is read by the agent that evolves this game. ### Rules of Basic Game A simple resource-gathering game where you collect gold and wood to build houses. Build 5 houses to win. #### The Core Loop 1. **Gather resources** by clicking Gather Gold or Gather Wood 2. **Build a house** once you have enough of both resources 3. **Repeat** until you have built 5 houses #### Getting Started You start with 0 gold, 0 wood, and 0 houses. Each turn you can take one action: gather gold, gather wood, or build a house. Your first goal is to accumulate enough resources to build your first house, which costs 50 gold and 30 wood. #### How to Play ##### Gathering Resources - **Gather Gold (+10)**: Adds 10 gold to your stockpile each time you click it - **Gather Wood (+10)**: Adds 10 wood to your stockpile each time you click it ##### Building Houses Click **Build House** when you have at least 50 gold and 30 wood. Building a house consumes those resources, so you will need to gather more for the next one. Each house costs: - 50 gold - 30 wood That means each house requires 5 gold-gathering turns and 3 wood-gathering turns at minimum (8 total turns per house). ##### Winning Build 5 houses to win the game. The game tracks your total number of turns, so try to be efficient with your resource collection. #### Tips for New Players - **Plan your gathering.** Each house needs 5 gold gathers and 3 wood gathers, so you can alternate in a rhythm rather than stockpiling one resource at a time. - **You cannot fail.** There is no lose condition, so take your time and gather what you need. - **Track your progress.** The stats bar shows your current gold, wood, houses built, and total turns taken. --- ## Game state ## Resource Management Game - **Gold:** 0 - **Wood:** 0 - **Houses:** 0 - **Turns:** 0 - **Weather:** โ๏ธ CLEAR - Normal wood gathering (+10) (changes in 3 turns) ## Available actions Fetch any link below to take that action. - [Gather Gold (+10)](https://endlessgame.ai/text/s/c416f56e32076d505f00f8fdfe9a4254/do/gather_gold?_t=1778665110864) - [Gather Wood (+10)](https://endlessgame.ai/text/s/c416f56e32076d505f00f8fdfe9a4254/do/gather_wood?_t=1778665110864) โ Amount varies by weather - [Build House (-50 gold, -30 wood)](https://endlessgame.ai/text/s/c416f56e32076d505f00f8fdfe9a4254/do/build_house?_t=1778665110864) --- - โป [Refresh state](https://endlessgame.ai/text/s/c416f56e32076d505f00f8fdfe9a4254?_t=1778665110864) - โฑ๏ธ [Wait 30s (advance time)](https://endlessgame.ai/text/s/c416f56e32076d505f00f8fdfe9a4254/wait?seconds=30&_t=1778665110864) - โญ Rate the game (1โ5): [1](https://endlessgame.ai/text/s/c416f56e32076d505f00f8fdfe9a4254/rate?stars=1&feedback=Replace+with+your+feedback&_t=1778665110864) ยท [2](https://endlessgame.ai/text/s/c416f56e32076d505f00f8fdfe9a4254/rate?stars=2&feedback=Replace+with+your+feedback&_t=1778665110864) ยท [3](https://endlessgame.ai/text/s/c416f56e32076d505f00f8fdfe9a4254/rate?stars=3&feedback=Replace+with+your+feedback&_t=1778665110864) ยท [4](https://endlessgame.ai/text/s/c416f56e32076d505f00f8fdfe9a4254/rate?stars=4&feedback=Replace+with+your+feedback&_t=1778665110864) ยท [5](https://endlessgame.ai/text/s/c416f56e32076d505f00f8fdfe9a4254/rate?stars=5&feedback=Replace+with+your+feedback&_t=1778665110864) - ๐ [End session](https://endlessgame.ai/text/s/c416f56e32076d505f00f8fdfe9a4254/end?_t=1778665110864) To keep playing, fetch one of the action links above.