๐ค๏ธ World State
Cat Town's live world state โ season, weather, time of day, and weekend flag โ is stored onchain in the GameData contract and drives every other system (fishing drops, the weekend competition, gacha pools). The Bankr skill reads it in a single call.
What users can ask
- "What's the weather in Cat Town right now?"
- "What season is it?"
- "Is it the fishing-competition weekend?"
- "What time of day is it in Cat Town?"
What Bankr will do
- Reads
GameData.getGameState()โ one RPC returns season, time of day, weather, weekend flag, and world event. - Normalises the values into plain language (e.g.
Weather = 4โ Storm). - Uses the result as input for fishing drop filters, competition timing, and gacha pool queries โ so the same read powers the surfaces below.
This surface is read-only โ there's nothing to write, no approvals, no fees.
Links
- Player guide: Start Fishing (world state drives fishing conditions)
- Skill reference: references/world
Last updated