Skip to main content

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

Mona Lisa BuilderView game page

Build the famous painting one pixel at a time.
Submitted by AugsEU — 3 days, 21 hours before the deadline
Add to collection

Play game

Mona Lisa Builder's itch.io page

Results

CriteriaRankScore*Raw Score
Style#35472.8822.882
Creativity#40112.8242.824
Overall#46732.5102.510
Enjoyment#61891.8241.824

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

How does your game fit the theme?
Building the Mona Lisa pixel by pixel is both a task on a tiny scale, but also monumental.

Development Time

48 hours

(Optional) Please credit all assets you've used
Leonardo DaVinci

Leave a comment

Log in with itch.io to leave a comment.

Comments

Submitted

It's too bad I couldnt run it because it looked fun! Apparently people suffer when playing it - my type of game!

Submitted

I was 1 pixel away from success :(


Submitted

This helped btw, I think I made the width too big somehow (looking back at the code, I didn't divide by 2; fixed it here) because I overshot it and reopened the game 15 times, and when I tried to fix it, it double clicked a pixel and deleted everything. This took like two hours to run as well, so I don't really feel like trying again.

import java.awt.Robot; 
import java.awt.event.InputEvent;  
public class Main 
{
    public static void main(String[] args)
    {
        try
        {
            Robot rob = new Robot();
            int startX = 780;
            int startY = 271;
            int width = 362;
            int height = 540;
            int secondsBeforeStarting = 3;
            rob.delay(secondsBeforeStarting * 1000);
            for(var i=0; i<width/2; i++)
            {
                for(var j=0; j<height/2; j++)
                {
                    rob.mouseMove(startX+i*2, startY+j*2);
                    rob.mousePress(InputEvent.BUTTON1_MASK);
                    rob.delay(50);
                    rob.mouseRelease(InputEvent.BUTTON1_MASK);
                    rob.delay(50);
                }
            }
        }
        catch(Exception e)
        {
        }
    }
}
Submitted

Thanks! Good job.
I hate it :)

I think one of the theme for a future jam can be "make players suffer". This one would win for sure!

Submitted

lmao, started playing and immediately said "nuh uh, that ain't happening"

Submitted

Came across something I wouldn't expect to exist today, and it's this game.

Submitted

excellent rage bait milord

Submitted

Fun secret :)

Submitted

This is incredible.

Developer

P.S I found this mysterious paragraph in one of Leonardo DaVinci's notebooks, I wonder if it means something? Perhaps a sort of code?

I guard a tiny secret, timeless and sound,

A smile and a mystery, where answers are found.

To unlock the code, think of her name,

Four letters the same, pressed on the frame.