Comments

Log in with itch.io to leave a comment.

Thanks so much! I have played this game hundreds of times. It is a fascinating take on solitaire. I think it's forced me to be way more strategic than most solitaire games. It took a while to realize you can't get rid of 4 exposed dragons unless either one of them is in the bank slot or a bank slot is empty, but it makes sense.


The only thing I might wish for is a new game button for when you realize you can't win. Great game!!

Great implementation of the game! The color contrast makes it very easy to read the board. And, of course, the game plays very smoothly.

In your implementation, the algorithm for automatically discarding numbered cards is a little too conservative. One example I encountered is a fresh game state with 1-green and 2-green exposed. The game should auto-discard 1-green and 2-green (instead of just the 1-green). The idea (as you might already know) is that there's no point in keeping the 2-green on the board because all 1s can be discarded.

I think the algorithm to handle this properly in all cases is quite tricky, and it's not really a problem at all if the player knows about this heuristic. In any case, I really enjoyed the game :)