Made for the LOWREZJAM 2023

You're the last line of defense between Earth and the Groborgs. Make it count and make'em pay !!!

Controls: 

  • Arrows to move
  • Z to shoot
  • X to use bombs

(also works with a controller)

---

Credits:


StatusReleased
PlatformsHTML5
Rating
Rated 5.0 out of 5 stars
(1 total ratings)
AuthorStabAlarash
GenreShooter
Made withGodot
TagsPixel Art, Roguelite, Shoot 'Em Up, Space

Comments

Log in with itch.io to leave a comment.

Great game! Love the speed of everything and the upgrade system.

Thanks a lot

(+1)

Awesome!

I'm never thought Shoot 'Em Up game can combine with Roguelite, i also make my Shoot 'Em Up game now and already upload my prototype on itch.io.

I have a question about how to design enemy spawn logic in Roguelite stytle, i think i can make many enemy spawn patten and random it, but just use normal random to spawn may will let game be unfair, have some tip to solve this problem? 

Thanks. 

I'm still unsure about the solution I currently have but in a nutshell:

  • I've got a level scene for each difficulty tier
  • The level is separate in screen sized sections containing a list of enemy patterns to randomly choose from. You can also have several at once.

Pros:

• easy to setup and change

• you can somewhat tailor the level a bit better and avoid things that feels way too random

Cons:

• gives too random results anyway, sometimes ending sending all the hardest choices all at once, making it hard to properly balance 


There might be better ways to set this up I guess:

  • Picking from a "deck" of options to avoid repetition 
  • Favoring next / parallel options that fits well together 
  • Assigning a score to each pattern to make sure to keep the difficulty balanced
  • Etc...

At least that's a few things I can think of about this particular case but it eventually all comes down to the experience you want to achieve. 

Thank you reply.


One screen split to multi level spawn enemy are good way!Even not use to design Roguelite stytle game still are good design.


Picking from a "deck" of options to avoid repetition

Sounds great and easy to try, like can set some random or design enemy patten to one stage and play it by time.

It was good way to make special and chanllage stage.


Learn a lot of good design from you, thank you :D