Log In  
Follow
Elfamir
[ :: Read More :: ]

Cart #pico_darts-0 | 2024-05-08 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
3


PICO-Darts is a simple darts game written in less that 500 characters for TweetTweetJam 9.

Controls

You only need the X key:

  • First input: Aim on the X axis.
  • Second input: Aim on the Y axis.
  • Third input: Throw dart.

After you throw the dart, press X again to start with the next dart.

Rules

You have 5 darts to get the best score.
After the fifth throw the score will be be reset.

About

This is the first game I develop for a game jam. The limitation of writing a functioning game with 500 characters or less has been quite a challenge, but a fun challenge!

It took about 5 hours to develop the game and then another 3 hours to minify the code and remove features that wouldn't fit in 500 characters.

P#148115 2024-05-08 12:04 ( Edited 2024-05-08 12:31)

[ :: Read More :: ]

Cart #grave_defence-2 | 2024-03-16 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
11

Grave Defence is tower defence game, in which you control a ghost tasked with defending the souls resting in a mausoleum from the incoming hordes of skeletons!

Controls

  • Arrow keys to move the character
  • X key to place and pickup torches
  • O key to toggle flame aura indicators

Rules

Torches must be powered by near by Power Flames. Once powered they will shoot enemies within range.
Shooting torches will consume the energy of the flames they are linked to.

Power Flames can die out if over tapped so keep an eye out for their size.
However, Flames will recharge over time unless fully extinguished.

Torches can be relocated; the mausoleum must be protected and you will need to move around the map to do so!

Different Power Flames

Power flames come in three types represented by their colors:

  • Yellow flame: basic flame, the most balanced option.
  • Blue flame: weak flame, can power more torches than yellow flames.
  • Red flame: strongest flame, will cause the most damage, but is drained faster than other flames.

About

I have recently been getting into game development and learning to work with pico-8.
After the mandatory Lazy Devs tutorial I decided to challenge myself to develop a complete game in two weeks, that would include functioning mechanics, art and some basic music. Grave Defence is the end result!

Nerdy notes

The actual code is a bit of a mess; there are still chunks of code for mechanics that have been scrapped because they ended up being unintuitive and a hindrance to the fun.
These include an interaction system that would display a cursor based on the last movement direction of the player as well as collision system that initially would involve most sprites in the map, but in the final version has been almost completely removed (thanks to SpaceCat and this video for the collision logic).
I might get around to cleaning it up in the future, if a feel there is something interesting I would like to add to the game.

Credits and thanks

  • Developed by Elfamir, that's me.
  • QA Tested by my lovely partner ♥

Thanks to the Pico-8 community as a hole for all the great material and inspiration.

If you read all the way to here, congrats!
I would greatly appreciate any feedback on the gaming experience as I am looking to improve my game dev skills :)

Changelog

V.1.0

Initial release of the game.

V.1.1

  • Added 2 new levels
  • Added snap controls
  • Added flame aura indicator
  • Added flame low-power alert and changed sprites
  • Added level reset and level select menu items
  • Reworked enemy movement
P#141999 2024-02-26 15:50 ( Edited 2024-03-16 11:30)