Thanks for the feedback! That is good to know. I will try to have more contrasting colors in future projects
Ronkad
Creator of
Recent community posts
Very good game. I think sound effects would add a lot. I only managed to get 238 until I died. My strat was to go directly to the golden and violet ones. Your todo list is basically everything else I would add to the game to make it nicer. I really liked the creature that was always around and although it didn't do anything it was still a nit scary. Good job!
Thanks! All assets (music/pixel art) were not done by me (they are linked on the page). Otherwise I am using a godot template that has already all my settings configured like screen size, import settings, fonts and so on.
It also helped to plan everything ahead of time. I like to make a todo list that is ordered to know exactly what to do next. (For example the things I couldn't include because I pushed them down on the todo-list were a custom death screen or a timer)
Thank you very much!
The random rooms are instances that get placed at a specific coordinate.
There are basically 2 nested for-loops where the outer one places rooms vertically and the inner one places them horizontaly.
Additionally for the inner loop you get a random number between 1 and 6 that decides where the exit is (and another for walls, traps, ...). So in the end it generates a matrix that looks something like this:
[0,0,0,0,1,0]
[0,1,0,0,2,0]
[1,0,0,2,0,0]
[0,2,0,0,1,0]
[0,0,0,0,3,0]
1 = exit, 2 = wall, 3 = treasure
Based on this you just need to calculate the coordinates where to spawn a room based on screen and room size.
Sorry for that long text, I wrote it mostly for myself