Overview
In this Top-Down 2D Exploration-Surival you play as Fern, a lost bunny alone in his hole, with 1 life. You need to traverse the environment ("WASD") to jump around finding boxes, avoiding ghostly enemies (big and small ... and seem to dislike water), blocked paths, drowning and giant foot stomps that will somehow be walking through where you are. You can also hold "shift" while jumping to perform a double jump. But beware these cost stamina, a valuable resource that is only partially refilled by picking up plants along your path. Using your double jumps allows you to go over water and sand terrain which you can't normally walk through. Find all 21 boxes to learn the skills of being a true rabbit and thrive!
To play the game use the following link: Itch.io Fern The Bunny Game Page.
This was developed during a weekend for the Mini Jam 181: Rabbits GameJam.
Game Choices
This is an Exploration-Survival Game where the theme had to be rabbits with the limitation that the player is the weakest creature.
From there I proceeded to decide what components I wanted in the game, from which I choose the player only being able to move as the core mechanic (to be the weakest) and having the ability to perform longer jumps as another mechanic to jump over walled areas (sandy tiles) and water areas (blue tiles). These areas differ mainly in the sense the water areas are death trap hazards and the walled areas are movement blocking areas.
Aside from just the map, I also wanted to have some enemies, so I created 3 different ones. Two of them patrol randomly avoiding water and moving through the tilemap grass and wall tiles (each big tile actually consists of 9 tilemap tiles) in differrent speeds and if they detect the player (at different ranges), they move to the direction they saw the player in directly, not accounting for the water, so the player could get rid of them if playing in a smart way. If they manage to touch the player, the player dies and starts back at the beginning with no progress. The other enemy is the larger one, which does not move using the tilemap, and is a bit more agressive, but can also perish through water.
Additionally, I also wanted to create "human foot stomps" - which are gameobjects which spawn in, and gradually become more opaque, and then dissapear. If the player is standing on them when they reach full opacity, they die. These work well, but in terms of how they look and the little time I had to complete the game, I decided to leave them as they are without any specific context (the game doesn't have a set story within the game, other than the main goal of finding all the boxes, even though I created a more complex early concept with Fern finding his lost family along the way, and a more linear map structure, but after some consideration I scrapped it since I found it made more sense if the game was a sidescroller).
I also wanted for there to be a restriction on player movement, so I then added a stamina system, which can hold a maximum of 10, the player spends one with each long jump, and gains 2 back for each flower picked up in the world. To win, they must find all lost boxes.
Game Design (Level Design & Game Loop)
If the game was to have an intensity graph, it would definitelly change between the 4 main regions, the start zone in the center, and the buffer connecting areas between them.
But it isn't linear. The start zone is essentially the tutorial zone with the easiest map, with enough for the player to get used to the mechanics and enemy behaviours (but without experiencing any stomps). The top area is small, filled with red enemies, and has a mix of water and walls similar to the starting area but harder. Going from the top/the starter area to the right area, we see no walls, a lot more water, requiring a lost more jumps, and a lot of red enemies, some white enemies, and semi-frequent stomps (the intensity graph climbs even further.) Then in the bottom area, there aren't as many areas, but the player is introduced to no water and some stomps (this would be a bit calmer of an area if the level was linear where the instesity would lower a bit). Following that is the buffer area with 3 enemies and 1 box, that serves as a point for the player to breathe if they want to stop for a little bit (outside of pausing which can always be done). In the top part of that bottom-left "buffer" area and in the lower part of the top-left buffer area stomps are seen again to give some the player clues to what they will find in that area. The left area is the hardest area. It has the big yellow enemies only seen here, which if the player wants to kill them they have to lead them all the way to a map edge and survive the journey avoiding other smaller white enemies, and the most ammount of stomps of any area (this is the highest point of the intensity graph). In other words my intentions with each area were to make them feel unique, focus on different challenges when collecting the boxes, and also varying the ammount of flowers available in each area to make them harder (left and right have the least ammount of plants - but enough to go through them with some mistakes). After finishing everything I also decided to add an easter egg location to the top right of the map featuring a full flower field for players to restock their stamina and come back if they feel they need them at any time.
For a simple representation of the game loop here we have a flow-chart:
Game Development
This was developed over the course of two days, and the development was in essence creating a simple grid with 3 tilemaps (1 for water, 1 for walls, 1 for grass) to have different interactions according to the tiles, setting up the player behaviour, the main enemy behavior, the stomp behaviour, a stomp zone spawner, collectable items (flowers, boxes), creating the simple UI, the small in-game tips for the boxes (feedback was given regarding having no info to where they were, and given more time I would've placed more in-game hints towards the box locations), and creating the playable map itself given my cocneptual sketches of each area, given its size, hazards to include, ammount of boxes in each, and difficulty; plus adding audio assets. The script structure contains a bunny script (controlling the main character), two additional scripts for boxes and plants as part of the player, separate enemy scripts, a stomp zone script for the stomp spawming and each stomp behaviour and a simple sound manager.
Conclusion
I hadn't done a 2D game in a while so it was nice to have a fun quick project to complete in a small time, outside of the other porjects I'm developing. Yes I could've made more complex enemies, a more complex map, given it a story, had more in-game level design hints to aid the player and put some animations in, but given the 2 days I had to get it done, I used the good old KISS rule. Keep it simple stupid! And guess what, it worked out well! To play head on over to Itch.io Fern The Bunny Game Page.