LEVEL 002
Fish Flow Level 2 Guide
Official initial board and replay-verified 2-move strict JSON solution for Fish Flow Level 2. Branch numbering starts at 1.
- Moves
- 2
- Branches
- 3
- Fish types
- 2
- 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 → 1 | Available |
| 2 | 4 | 1 → 1 → 0 → 0 | Available |
| 3 | 4 | 0 → 0 | Available |
2-move solution
Every move uses the fully settled board after automatic movement, reveals, completed groups, and seaweed unlocks from the previous step.
- 01Branch 2Branch 3
- 02Branch 1Branch 2
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": 2,
"boardFingerprint": "ff1-9423129e",
"modelName": "FISH FLOW Guide 1.0",
"moves": [
{
"from": 2,
"to": 3
},
{
"from": 1,
"to": 2
}
]
}