This game is very good, I'm surprised I hadn't been recommended it before! The bullet patterns are fun and well thought out, and the gimmick works decently well at encouraging the player to engage with it. The incident is interesting, and the dialogue fairly touhou-esque. Also, it has Shou in it and Shou is great, I want to see more Shou.
EDIT: Endings are now fixed as of the June 24, 2025 update.
Bugged endings in 1.01b
Endings appear to be bugged in the current build (1.01b). The game always shows Carrefour endings in main mode, regardless of continue. This really annoyed me, so I investigated a bit. The problem seems to be in scene_Ending.dnh, line 81. bCarrefour is tested incorrectly, always setting it to true, so CF ending is always shown.
How to fix:
Go to the game folder and navigate to subdirectory script\title\scene\ending
Open scene_Ending.dnh with a text editor
At line 81, replace:
const bCarrefour = true || Difficult() == D_CRRF;
with:
const bCarrefour = Difficult() == D_CRRF;
This appears to fix the problem and correct endings now play in the main game. Hopefully this is fixed in a new update.
Incredible commitment to detail, unfortunately running it on wine (linux, so i cant fault you) I had an issue where my hitbox didnt work for half the bullets, so shou locked in ig. still, awesome job.
← Return to game
Comments
Log in with itch.io to leave a comment.
This game is very good, I'm surprised I hadn't been recommended it before!
The bullet patterns are fun and well thought out, and the gimmick works decently well at encouraging the player to engage with it.
The incident is interesting, and the dialogue fairly touhou-esque.
Also, it has Shou in it and Shou is great, I want to see more Shou.
EDIT: Endings are now fixed as of the June 24, 2025 update.
Bugged endings in 1.01bEndings appear to be bugged in the current build (1.01b). The game always shows Carrefour endings in main mode, regardless of continue. This really annoyed me, so I investigated a bit. The problem seems to be in scene_Ending.dnh, line 81. bCarrefour is tested incorrectly, always setting it to true, so CF ending is always shown.How to fix:Go to the game folder and navigate to subdirectory script\title\scene\endingOpen scene_Ending.dnh with a text editorAt line 81, replace:const bCarrefour = true || Difficult() == D_CRRF;with:const bCarrefour = Difficult() == D_CRRF;This appears to fix the problem and correct endings now play in the main game. Hopefully this is fixed in a new update.Incredible commitment to detail, unfortunately running it on wine (linux, so i cant fault you) I had an issue where my hitbox didnt work for half the bullets, so shou locked in ig. still, awesome job.