This is beautiful! You expressed this very sweet and personalized story through a game. The cinematic aspects of it were flawless. Using a separate color palette for the intro scene was a great effect. I enjoyed your writing and how you presented story. This is seriously so good!
blearn
Creator of
Recent community posts
Nice idea for a small turn based game. I haven’t beat it yet but I replayed several times. Everything so far looks and feels great, I look forward to seeing more development.
My only feedback is that upgrading defenses seemed a little under-powered. I kept wishing I could decrease the cooldown some. I had more success with many low-level defenses than I did with a few high-level defenses.
I noticed a bug with the health restore. After using it once, the menu displays “out of order” however you can still purchase the health. You can even purchase it at full health- but it takes 2 coins/credits instead of 1.
I decided to use Ludum Dare as a reason to try out Pixelbox. I was able to make a small game called Adventure Watch in about 15 hours. Having all the builtin editing tools was awesome for prototyping a small game. I made all the game and all its assets solely with Pixelbox.
If you have a chance, check out Adventure Watch. I’m open to feedback for a post-jam version.
My Compo entry: https://blearn.itch.io/adventure-watch
Pixelbox is pretty nice, it just needs more and updated documentation.
When deploying a build to Itch.io I get the following error on Chrome browsers: “The AudioContext was not allowed to start. It must be resumed (or created) from a user gesture event handler. https://goo.gl/7K7WLu”
I think the way the pixelbox library initializes the AudioContext needs updated to resolve this.
For details see: https://developers.google.com/web/updates/2017/09/autoplay-policy-changes#webaudio
I also struggled for a while to figure out how to use the gamepad module. I’ve been accessing gamepad state with “window.gamepad”. You do not need to import the module yourself.
Eg.
/* User Input */
if (window.gamepad.btn.right) character.x += 1;
if (window.gamepad.btn.left) character.x -= 1;
if (window.gamepad.btn.up) character.y -= 1;
if (window.gamepad.btn.down) character.y += 1;
I'm glad a game inspired you to make your own. Unfortunately this game is currently unplayable because jumping doesn't (consistently) work. At first I thought I couldn't jump at all. After mashing Up constantly for a while I would occasionally jump.
My unsolicited advice: Start doing game jams to get practice making simple games. Don't go online to promote a game or ask for donations until you've gotten positive feedback from people you can trust for honest criticism.
Good question! I didn't do a good job at explaining power-ups. There was only one line of text on the first wave about it.
The power-ups are collectibles, and there is a counter on the top of the screen for how many you have. The more power-ups you have, the stronger your "push" force-field gets (it pushes bullets away faster). When you die, you lose all your power-ups. Each level spawns at least 1 power-up.
I was thinking the same thing when playing it, losing health when getting hit by the enemy would add more risk. No collisions with the enemy felt a little too easy imo.
Having more complex shot types (like the last enemy type) would make things more interesting too. Or even having one of the ships move in a sine wave pattern or something.
Neat idea though. Good job!