It's 2 am for an hour. You have time to kill. And your clock basically doesn't make any sense for this 2 am hour. So let's kill time with it!
The only controls are your left and right keys/buttons!
This was made in 0 hour for the 0 Hour Game Jam!
Because the game was made in 0 hour, there really wasn't much time for a complete game but I managed to make this cool little toy and I'm happy with it!
And since the cart is very barebone, you are welcome to download it and make your modifications on it if you like! Then just post your cart here, so I can play it! :D
Also I recorded the making of it all! You can have a here:
[youtube]nB4E7GRMY3M
Hi there!!
I just released Pixel Session Vol.1!
If you follow me on Twitter and go on Twitter at all, you probably heard of it but otherwise...
Pixel Session Vol.1 is a collection of 5 extra-polished eye-candy arcadey jam-style games, exploring experimental and minimalist gameplay and graphics!
They're also 5 Pico-8 games and I am selling them!
I think this is the first time someone attempts to sell Pico-8 games and I can assure you this is pretty scary for me too. But the way I see it, Pico-8 is a game engine like any othe... wait no, Pico-8 is a game engine LIKE NO OTHER and I think it really deserves to have premium products. I also hope this will encourage people to make Pico-8 games of higher quality and also put them for sale.










Hi!
To celebrate my birthday, I thought I would share something with you guys! And having recently heard (again) that most of our codes weren't very easy to read, I thought I would share some readable code !!
I might do others of these in the future if you like it! But feel free to make some of your own, I'm sure it will help the community a lot!
Here is today's subject: Balloons That Explode Into More Balloons

And here is the commented code! (click to unravel)
[hidden]
Initializing some important stuff. You could do that in more appropriate places. Call me messy, i don't care.
bloons={} -- 'balloons' is long shkx=0 shky=0 |
You can initialize stuff in the _init function too. The difference is that here you can call functions written after this.
function _init() createbloon(64,64,32,0,8) -- if you don't have any music -- just put some sfx at -- the beginning sfx(8) end |
Call updating functions in the _update function. Don't actually update anything here, it will get messy.
function _update() updatebloons() updateshake() end |
At first, partially and randomly clearing the screen for that weird trail effect.
Then, drawing the cool stuff.
function _draw() camera(0,0) for i=0,1999 do circ(rnd(128),rnd(128),1,0) end camera(shkx,shky) drawbloons() end |
Creating one balloon object
at x,y position,
with a bigger-circle ray of r,
a moving speed of spd,
and c as color.
Angle and rotating speed 'va' are random.
Life timer 'l' is also random, but always between 0.8 and 1.2.
Then adding the balloon object to the balloon array.
function createbloon(x,y,r,spd,c) local b={x=x,y=y,r=r,a=rnd(1),va=(flr(rnd(2))-0.5)*0.5+rnd(0.2),c=c,l=0.8+rnd(0.4)} local aaa=rnd(1) b.vx=spd*cos(aaa) b.vy=spd*sin(aaa) add(bloons,b) end |
Updating the balloon objects one by one.
function updatebloons() for b in all(bloons) do -- updating rotation 'physics' dma=abs((b.a+0.25)%0.5-0.25) vvv=-dma*0.005 if (b.a+0.25)%1<0.5 then b.va+=vvv elseif (b.a+0.25)%1>0.5 then b.va-=vvv end b.a+=b.va b.va*=0.96 -- updating position 'physics' b.x+=b.vx b.y+=b.vy if(b.x-b.r<0) b.vx=2-b.vx sfx(4) if(b.x+b.r>127) b.vx=-2-b.vx sfx(4) if(b.y-b.r<0) b.vy=2-b.vy sfx(4) if(b.y+b.r>127) b.vy=-2-b.vy sfx(4) b.vx*=0.9 b.vy=0.9*b.vy+0.1*(-1) -- updating life timer b.l-=0.01 if b.l<0 then -- timer is at its end... -- *boom!* -- creating five new balloons -- if exploding balloon is -- big enough if b.r>4 then for i=0,4 do createbloon(b.x,b.y,b.r/4+rnd(b.r/2),8+rnd(8),8+rnd(8)) end end -- the 'oompf' circfill(b.x,b.y,b.r+2,7) addshake(b.r) sfx(flr(rnd(4))) -- delete exploded balloon del(bloons,b) end end end |
Drawing the balloon objects one by one.
function drawbloons() for b in all(bloons) do -- uncomment the outline -- for sweet graphics -- and low framerate --outlined(drawbloon,7,b) drawbloon(b) end end |
Draws one balloon.
It's actually several circles, smaller and smaller, going from balloon's x,y position, along its 'a' angle.
function drawbloon(b) for i=0,7 do circfill(b.x+i*(b.r/8)*cos(b.a),b.y+i*(b.r/8)*sin(b.a),(1-(i/16))*b.r,b.c) end local rrr if b.r>10 then rrr=2 else rrr=1 end local rr=7*(b.r/8)+(1-(7/16))*b.r+rrr circfill(b.x+rr*cos(b.a),b.y+rr*sin(b.a),rrr,b.c) end |
Addshake adds a screenshake of 'p' power.
You have to call updateshake every once in a while (on _update for example) and use 'camera(shkx,shky)' before drawing stuff for the screenshake to actually work.
function addshake(p) local a=rnd(1) shkx+=p*cos(a) shky+=p*sin(a) end function updateshake() if abs(shkx)+abs(shky)<0.5 then shkx=0 shky=0 end shkx*=0.7+rnd(0.2) shky*=0.7+rnd(0.2) end |
Makes every color being drawn as the color 'c'.
Calling 'allcolorsto()' resets it.
function allcolorsto(c) if c then for i=0,15 do pal(i,c) end else for i=0,15 do pal(i,i) end end end |
Outlines in color 'c' whatever drawing function's callback is set as 'draw'. Also feeding that function with 'arg' as argument (you can also use it as 'outlined(draw,c)' if 'draw' doesn't need any argument, it will work too).
function outlined(draw,c,arg) allcolorsto(c) camera(shkx-1,shky) draw(arg) camera(shkx+1,shky) draw(arg) camera(shkx,shky-1) draw(arg) camera(shkx,shky+1) draw(arg) -- uncomment for shadow effect --camera(shkx,shky-2) --draw(arg) camera(shkx,shky) allcolorsto() end |




The world is a mess.
Things are terrible.
Nonsense is all over the place.
And all is well.
An experiment produced for OneButtonJam!
Using principles from Tracery, work of Kate Compton!
Press 'Z' (or the 'A' button on a gamepad) to keep playing.
The cart is also over on Itch.io, where you can rate it if you've entered the jam too, or support it if you want to make me even more happy to have made it!


- Added achievements
- Bugfixes
CLIMB HIGHER AND HIGHER!!! WHAT COULD BE UP THERE? NOBODY KNOWS... DO YOU THINK YOU CAN CLIMB HIGHER THAN THE OTHERS?
Left and right arrows (or left and right directions on D-pad) let you move left and right.
'Z' (or the o button) lets you jump, double jump, wall jump, dive and if you're close enough to a ball, platformize that ball.
This game is a sort of draft for the fuller HIGHER CLIMB which will be out in Winter 2016! Stay tuned for that by following me on Twitter!











Defeat the other balls before they defeat you!!!
Have fun!
This is the presentation I made for Picoscope 2016 but rerecorded at home and in english! My mic is not that great and I don't think I'm very good at talking into it but I still wanted to do this for those of you who don't speak french!
If you have any questions, do feel free to ask!
If you liked that video and would like to see more of that kind of thing do tell because I have no idea if this is any good!
You can download the made-in-Pico8 presentation here!

DASH and PUSH and DASH and PUSH and die... and DASH!!!
A dash & dash game made for the #mysticwestern gamejam!
It features a cowboy being pursued by some sort of mystic worm!
Get to the button to make the worm disappear but also make another one appear!! Your score goes up that way too!
The arrow keys / D-pad lets you move.
The Z key / C key / o button lets you dash.
Have fun and tell me what you think!







Draw things with explosions!!!
Based off the original concept of Shodo by Oinariman (check it out it's an awesome cart!) and put closer to my own style!
You can save your creation by pressing tab but you can only reload it by resetting the cart.
All the other controls should be shown in-game!

Have fun and do share your creations! :D






Ever wondered what being a space weapon engineer feels like?! Wonder no more and be one in Gears of Gear!!!
This isn't a game! It's a toy!! Make cool stuff happen with gears!
Controls are on the title-screen.
The different types of gears modify the behavior of the canon on the bottom half of the screen when they are connected and spinning. Having several gears of the same type does increase their effect.
You can access the trunk by pressing Z at the top of the screen.
This is about 40% of what I originally intended to do for p8jam2. But then life and bad organization happened and I had to improvise to get something somewhat finished.
I wanted to make a shmup and I'm still going to do it (probably) so consider this as a demo or a prototype or something!
[u]Secret feature:









CHOMP
Chomp is a Pico-8 game were you have to chomp down pellets and other fruits as they keep coming faster and faster!
Unlock the two harder modes by reaching 10000 points in the previous mode!
In menus, use circle and cross keys ('z' and 'x' on keyboard) and the arrow keys to navigate.
Once a game launched, press any Pico-8 button to CHOMP.
The game is controller compatible.
Do share your highscores as well as what you think of the game in the comments! :D
If you really like the game, please do consider supporting it on itch! All income goes into making more games!!







CRASH THE CAR!! BY ALL MEANS! CRASH IT!!! AGAIN!!
The arrow keys control the car! That is all the controls!!!
This is the sequel to CRASH!.
The music was made by the talented Pizza!!!
Have fun, show end-screens and tell me what you think!!!

If you like the game, please do consider supporting it on itch.io!! : )



Have you ever dreamed of a pizza-lover-only society? Now you can make it happen!
A tiny god-game simulating modern society.
Not actually a game, a toy rather. The only goals you have are the ones you set yourself!!
CONTROLS:
[i]On BOARD mode:
arrow keys alone: select a different micro-society member
Z: inspect selected micro-society member, learn about him/her and enter MOVE mode.
X + left or right: control time.
X + down: clear logs.
X + Z: display stats of your micro-society.
X + up: ???
[b]On other modes:
CRASH THE CAR!! BY ALL MEANS! CRASH IT!!!
Directional arrows to control the car. That's it.
There is a total of 20 levels and they should be rather quick to finish.
This game was supposed to be made in 4 hours as a personal challenge but I liked it so I took my time and finished it in approximately 5 hours and 30 minutes.
This is also the first time I do not-procedural level design so please do tell me what you think about that and all the rest!
The collisions are broken. I am aware of it.
Have fun!









POST-JAM VERSION:
PANPANPANPANPANDIEDIEDIEBOOMS#!TAGAINPANPANPAN (yea it's an explosive bullet hell)
I STRONGLY suggest you put some epic music in the background. Here is the LUFTRAUSERS OST for example.
left and right arrows to move left and right.
up and down to change weapon (when you have several).
z to shoot, x to hold aim.
JAM VERSION:










Rerun the cartridge to generate another tree - that's the fastest way to empty memory.
I made this for procjam, kinda late. It generates a tree over time using linked arrays as branch data. Each branch is updated individually when going through the whole branch data tree, linked array to linked array.
You can download the cartridge modify the parameters in the beginning of the code to unrandomize the generation. A set of different palettes is also there, uncomment one to use it. Don't forget to comment the "randomize()" line in the _init() though.
Have fun generating trees!



On this quiet and endless night, the TETRATON will unleash its potential and attempt to survive this technological challenge where it has to change its weapon module the biggest number of times while being attacked by enemy ships!! WILL THE TETRATON MAKE IT TO THE END?!?!
No it will not. The night is endless.
A shooter inspired from LUFTRAUSERS and Super Crate Box.
'z' and 'x' rotates the TETRATON.
Directional buttons shoot (and propel) in involved direction.
Get to crate ball to change weapon and get a point.
[b]16 different weapons.
Double parallax.
Lots of bullets.
Quick deaths.
Quick retries.
Palette randomization.
Not very good soundtrack but hey I tried.





