Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags
A jam submission

Stickman TournamentView game page

2-Player Mini Games
Submitted by Polarityⁿᵒʳᵈ — 2 days, 20 hours before the deadline
Add to collection

Play game

Stickman Tournament's itch.io page

Results

CriteriaRankScore*Raw Score
Fun factor#72.9853.500
Art style#102.3452.750
Overall#102.5052.938
Game play#102.5583.000
Originality#112.1322.500

Ranked from 4 ratings. Score is adjusted from raw score by the median number of ratings per game in the jam.

Team
Solo

Optional theme
None

Leave a comment

Log in with itch.io to leave a comment.

Comments

Submitted (1 edit) (+1)

I really like the consistent esthetic of your pixel art. As a fellow love2d developer, I had to browse your code to figure out how you did the particle effect on the menu. That was a really well done effect and it popped out to me as being over the top polish. I also learned that love.graphics.printf exists by looking at your code, so thank you for that. I was calculating the string length per font/string and offsetting it from the middle of the screen...


I also see you used a similar approach to each game being a different screen/table. You can clean up your already very clean (and readable) main.lua by setting your global GameState to the table, instead of a string and doing string comparisons in your update and draw callbacks.

PongGame = require "scripts.pongGame" 
ReflexGame = require "scripts.reflexGame"
function love.load()
    GameState = PongGame
    GameState:load()
end
function love.update(dt)
    GameState:update(dt)
end
function love.draw()
    GameState:draw()
end

Not that you asked, but I found that to be a very clean way to handle states and you may appreciate it too.  Good work on your submission!

Developer

thanks pal, I should check your source sometime too. I have a lot to learn from you as well haha
I'm definitely gonna use that table GameState btw, as it really shortens what I had here!

Submitted(+1)

This is really nice. The appearing box was my fav. I had problems with the ducks, that was hard.

Developer(+1)

glad you liked it :)