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