Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

That game is super cool! Limitation is well executed too. Did you use minmax to make the rats move? pretty nice game. Would make for a great release on steam with a tiny bit more content!

Much thanks!

And no, I coded the movement of rats in very basic manner. Is your question about movement itself or animation? I'm not familiar with minmax

it's an general algorithm for turn based open game strategy. I thought your rat's AI was good so I wondered

Ah, it seems that I used something a bit similar but I didn't know it. I invented system like this: in every turn, every "interesting" tile is given a numerical value. Then for each rat there is created a personal value - the general one divided by distance. Then the most valuable of all personal moves is chosen, if it is available from the pathfinding perspective. Previous and next moves have no influence.