WIPWork in Progress · tools and data are being expanded daily - expect rough edges.

Sins of the Father Puzzle

Mausoleum painting puzzle solver - input your tile state, get the solution path.


Current painting state

Click a tile to toggle its painted/clean state to match what you see in-game. Goal: all clean.

Solution

Tiles to press
4
optimal (BFS over 512 states)
Parity
Even
Press order
2 → 4 → 6 → 8

Tap a step below to apply it to the board and check your progress.

Algorithm: each tile flips itself + its 4-neighbours (Lights Out). The state space has 29 = 512 boards; a BFS from the current state finds the shortest sequence of presses to reach the all-clean state. Tiles are numbered 1–9 left-to-right, top-to-bottom.

Related misc tools