Skip to main content

On Sale: GamesAssetsToolsTabletopComics
Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines
(1 edit) (+2)

Overall I enjoyed the game, congratulations for releasing such a product on a jam!

Few notes:

  • Sometimes enemies a getting stuck next to the tile corner. While technically it's a bug, it's fun, so not sure if it has to be addressed:)
  •  When casting the fireball or lightning enemies start approaching you before they are getting the damage, this for some reason feels wrong. 
  • Fireball has a max range that is not identified in any way, so it is hard to plan the battle in advance from time to time.
(+1)

Amazing feedback, glad you liked the game!
As for your notes:

  • An obvious solution is a pathfinder algorithm, but due to time constraints we just did a simple distance check and chase.
  • We added the damage tick in the middle of the fireball frame and the lightning when it hits the ground, so the game checks only 1 frame to do damage instead, that's why it's so easy to miss spells that you somehow see them land, and the spell hitboxes are very on the animation so maybe making those hitboxes bigger makes it feel better. The obvious fix is to check multiple frames of the animations and register the damage if the enemy is inside at least one of those frames but its also not easy to make in such a short time XD.
  • For range there isn't a good way to add it (maybe hold the spell shows it, release casts it, idk how to make that on the fly tbh) and we just decided to let the player get a feel for the range overtime.