LEVEL 003

Fish Flow Level 3 Guide

Official initial board and replay-verified 4-move strict JSON solution for Fish Flow Level 3. Branch numbering starts at 1.

Moves
4
Branches
4
Fish types
3
Mystery fish
0
Seaweed branches
0

Initial board

Read each array from bottom to top; the rightmost value is the current top fish. “?” marks a fish that starts hidden.

Open board JSON
BranchCapacityFish (bottom → top)Status
140 → 0 → 2 → 2Available
241 → 1 → 0 → 0Available
342 → 2 → 1 → 1Available
44EmptyEmpty branch

4-move solution

Every move uses the fully settled board after automatic movement, reveals, completed groups, and seaweed unlocks from the previous step.

Open answer JSON
  1. 01Branch 1Branch 4
  2. 02Branch 2Branch 1
  3. 03Branch 3Branch 2
  4. 04Branch 3Branch 4

Strict JSON for AI assistance

Contains only protocol-approved fields and can be pasted into the in-game AI assistance input.

{
  "schema": "fish-flow-ai-solution/v1",
  "level": 3,
  "boardFingerprint": "ff1-be4f45af",
  "modelName": "FISH FLOW Guide 1.0",
  "moves": [
    {
      "from": 1,
      "to": 4
    },
    {
      "from": 2,
      "to": 1
    },
    {
      "from": 3,
      "to": 2
    },
    {
      "from": 3,
      "to": 4
    }
  ]
}