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