Hello, this is a tower defense game I made with my tiny game engine SAF.
You can compile and upload the game with Arduino IDE:
- set up Arduino IDE for Nibble
- create a sketch called e.g.
utd
- in the folder put the files utd.h and saf.h
- in the main sketch file (
utd.ino
) write:
#define SAF_PLATFORM_NIBBLE
#include "utd.h"
- compile and upload!
small game manual:
tower $ range speed damage upgrades notes
-----------------------------------------------------------------------------
guard 8 * ** * +range, +speed Shoots arrows.
cannon 8 * * * +range, +damage Does splash damage.
ice 17 * * +speed, +range Slows down enemies.
electro 30 ** * ** +damage, shock Shoots lightning.
sniper 45 ***** ** ** +speed, +range Covers huge range.
magic 60 * * * +damage, speed aura Support tower.
water 100 *** *** **** +range Can knock enemies back.
fire 100 *** ** **** +range Does splash damage.
creep hp speed $ notes attacked by: G C I E S M W F
-----------------------------------------------------------------------------
spider * ** 1 . . . . . . . .
lizard * *** 1 . . . . . . . .
snake ** ** 1 . . . . . . . .
wolf *** ** 1 Good against cold. . . 50% . . . . .
bat ** *** 1 . NO . . . . . .
ent **** * 2 . . . . . . . .
big spider *** ** 2 Spawns 2 small ones on death. . . . . . . . .
ghost *** ** 2 NO NO . . NO . . .
ogre ***** ** 3 . . . . . . . .
dino ***** *** 3 . . . . . . . .
demon ***** *** 3 Supposed to make you lose. NO NO NO NO NO NO . .
Enjoy!