LEVEL 004
Fish Flow Level 4 Guide
Official initial board and replay-verified 13-move strict JSON solution for Fish Flow Level 4. Branch numbering starts at 1.
- Moves
- 13
- Branches
- 7
- Fish types
- 5
- 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 | 1 → 0 → 0 → 3 | Available |
| 2 | 4 | 1 → 3 → 1 → 1 | Available |
| 3 | 4 | 3 → 0 → 3 → 4 | Available |
| 4 | 4 | 2 → 0 → 4 → 4 | Available |
| 5 | 4 | 4 → 2 → 2 → 2 | Available |
| 6 | 4 | Empty | Empty branch |
| 7 | 4 | Empty | Empty branch |
13-move solution
Every move uses the fully settled board after automatic movement, reveals, completed groups, and seaweed unlocks from the previous step.
- 01Branch 5Branch 6
- 02Branch 3Branch 5
- 03Branch 4Branch 5
- 04Branch 1Branch 3
- 05Branch 1Branch 4
- 06Branch 2Branch 1
- 07Branch 3Branch 2
- 08Branch 2Branch 7
- 09Branch 1Branch 2
- 10Branch 3Branch 1
- 11Branch 3Branch 7
- 12Branch 4Branch 1
- 13Branch 4Branch 6
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": 4,
"boardFingerprint": "ff1-8babba73",
"modelName": "FISH FLOW Guide 1.0",
"moves": [
{
"from": 5,
"to": 6
},
{
"from": 3,
"to": 5
},
{
"from": 4,
"to": 5
},
{
"from": 1,
"to": 3
},
{
"from": 1,
"to": 4
},
{
"from": 2,
"to": 1
},
{
"from": 3,
"to": 2
},
{
"from": 2,
"to": 7
},
{
"from": 1,
"to": 2
},
{
"from": 3,
"to": 1
},
{
"from": 3,
"to": 7
},
{
"from": 4,
"to": 1
},
{
"from": 4,
"to": 6
}
]
}