Controls: Mouse 🐭 + touch (only) 📱 

Touch the houses to paint them any of the pico8 colours! You have a few extra buckets of paint - holding will continue to change color, as will clicking the small white square on each house.

I made this game for TweetTweetJam #8 2023. The entire thing took me about 6 hours. Here is the tweet/toot in 445 chars:

cls(3)  
palt(3)  
poke(24365,1) 
_h=flr(rnd(25))  
w=_h+5  
p=0 
for i=0,_h do 
hx=flr(rnd(128)) 
hy=flr(rnd(128)) 
print(chr(138),hx,hy,7) 
end 
repeat 
x=stat(32) y=stat(33) 
p=pget(x,y) 
if p==7 and stat(34)==1 then 
c=flr(rnd(16)) pset(x,y,c) 
if c==3 then c=0 end 
rectfill(x-7,y-7,x+7,y+7,3) 
print(chr(138),x-4,y-1,c) 
flip() 
if w==0 then cls(14) 
print("great job!",47,55,10) 
print("onefinedruid",42,90,10) 
print("games",55,96,10) 
end w-=1 end 
pset(x,y,0) 
flip() 
pset(x,y,p) 
until forever

Hope someone else thinks it's kinda fun and not too buggy to enjoy!

Leave a comment

Log in with itch.io to leave a comment.