Game submitted for the 3rd Touhou Game Jam

Hell is running out of reapers to do their field work and Komachi is called for overtime. The spirits of the dead are multiplying again, and it hasen't even been 60 years. Now Komachi must face enemies neither alive nor dead (and a shrine maiden).

Controls:

  • Left and Right Arrow keys for left and right movement.
  • Z and Spacebar for jumping. (You can jump again once while airborne.)
  • X for attacking.
  • Left Shift for Reaper mode toggle.

Credits:

  • Komachi sprite, Programming and some SFX - iceing11
  • Art - alananhk
  • Music - pathtolegend
StatusReleased
PlatformsWindows, HTML5
Rating
Rated 5.0 out of 5 stars
(1 total ratings)
Authoriceing11
GenreAdventure
Made withUnity
Tags2D, Pixel Art, Touhou

Download

Download
Gensokyo of the Wandering Souls.rar 20 MB

Install instructions

Unzip & Double click on the executable.

Comments

Log in with itch.io to leave a comment.

Cute graphics, though there was a mismatch of pixel resolutions as well as some being blurry while others were sharp.

I enjoyed having to dance around the enemy attacks as I attacked back when I could.

I didn't really understand the appeal of having to switch reaping modes. It felt like busywork since there was never any clever or challenging need to, at least as far as I got into the game.

The souls usually immediately wandered out of reach or into the ceiling, then I had to wait for each and every one to come back down so I could reap it.

The jump and double jump don't behave as expected. You may want to add gravity instead of having the character rise and fall at a steady rate. Something like this in generic code:

if (jump) { y_velocity = -jump_strength; }
y_velocity = y_velocity + gravity;
y = y + y_velocity;