Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags
(+1)

New comments about the balancing as well

The layout of upgrades in the black hole is... Somewhat questionable I feel like? Some upgrades are ridiculously powerful while others feel weak. Seems like a case of "Just hope you choose the right one" on the first few resets which might be odd.

Overall ignoring the bugs not a bad game for first submission. I'd recommend moving all variables into a game object (Say, instead of star1Power = 0, star2Power = 0 etc, have something like let game = { star1Pow: 0, star2Pow: 0, ... })

This allows for easier saving (You can do JSON.stringify(player) to get the object to string conversion, then save the game using the localStorage API which you can find more info about on google. To retrieve the object again you can use JSON.parse(string))

I'd also recommend moving the javascript into its own file to not clog up  the HTML which makes things very messy. You can have, say, <script src="game/js"></script> and then have a game.js file in the same folder as index.html.

(1 edit)

Tyvm for feedback again.
Regarding balance: Personally the only upgrades i find really lacking are the 5% per upgrades ones. Game was supposed to have more upgrades, so with the amount of upgrades cut this one turned out to be meh.  As for the rest of them - they are not supposed to be equal. That was intentional. I also find some stuff being kinda meh on its own (like persisting 3rd star upgrade through BH reset) but really powerful in combination with other stuff (3rd star upgrade affecting planet). I did want to add SOME choice to the game to make it not so braindead. Another thing on the topic of balance is - yeah, it was rushed. Just as everything else, i will be fleshing it out after the jam is finished, but for now the balance is quite barebones. I.E first upgrade price is just increased 1.3 times with every purchase, while ideally i should have done some scaling stuff.

Regarding code: noted. Will do when fleshing it out.

Regarding separate JS: That was the initial plan, but it didnt work at all when uploaded to itch this way. Just showed a cluttered mess of all the upgrades in top left corner and none of the assets etc.