Z - Drop Bomb
X - Restart

StatusReleased
PlatformsHTML5
Rating
Rated 5.0 out of 5 stars
(3 total ratings)
AuthorMBoffin (Dylan Bennett)
GenreAdventure
Made withPICO-8
TagsPICO-8

Comments

Log in with itch.io to leave a comment.

Just out of curiosity, how do you get those black outlines on text?

Pretty simple. I just made a simple function called print_shadow. Looks like this:

function print_shadow(msg,x,y,c)
    for i=-1,1 do for j=-1,1 do
        print(msg,x+i,y+j,0)
    end end
    print(msg,x,y,c)
end

Cool! Thanks!