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.
| Branch | Capacity | Fish (bottom → top) | Status |
|---|---|---|---|
| 1 | 4 | 0 → 0 → 2 → 2 | Available |
| 2 | 4 | 1 → 1 → 0 → 0 | Available |
| 3 | 4 | 2 → 2 → 1 → 1 | Available |
| 4 | 4 | Empty | Empty branch |
4-move solution
Every move uses the fully settled board after automatic movement, reveals, completed groups, and seaweed unlocks from the previous step.
- 01Branch 1Branch 4
- 02Branch 2Branch 1
- 03Branch 3Branch 2
- 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
}
]
}