I made this game for Mech Jam, and have since fixed a few bugs. It is a turn based tactics game where you play as a team of mechs that fight wildfires.
One mech can shoot a cone of water that puts out fire.
Another mech digs trenches that stop the spread of fire.
The helicopter can do three things: load up on water while it is over the sea, reload the cannon mech when it is next to it, or drop water to put out fire.
Fire spreads across forest tiles in one turn, and across grassland in two turns. A level is cleared when all fire is put out. If you lose all of the cities in one level, it's game over.
Update: Revamped tutorial, added UI hints to make it a little clearer how to reload the cannon mech using the helicopter
Someone on Twitter asked for this, and this seemed like the easiest place to share the code.
function preplace_in_circle(centerx,centery,radius,checkcol,newcol) local topleft={x=centerx-radius,y=centery-radius} local bottomright={x=centerx+radius,y=centery+radius} for x=topleft["x"],bottomright["x"] do for y=topleft["y"],bottomright["y"] do if (x-centerx)^2+(y-centery)^2<radius^2 then if (pget(x,y)==checkcol) pset(x,y,newcol) end end end end |
function psetin_circle(centerx,centery,radius,checkcol,col) local topleft={x=centerx-radius,y=centery-radius} local bottomright={x=centerx+radius,y=centery+radius} for x=topleft["x"],bottomright["x"] do for y=topleft["y"],bottomright["y"] do if (x-centerx)^2+(y-centery)^2<radius^2 then pset(x,y,col) end end end end |
Amika's Quest is a roguelite Zelda-like!
Controls:
X (X, V or M on a keyboard): Sword
O (Z, C or N): Item
Pause (P): Open menu
Once items are purchased, you can switch between items in the pause menu


Credits:
Design and coding: Tyler Davis
Character design: Te'shon Farr
Music: Cory Shane Davis
I made a name generator for about 40 tokens. The nice thing about it is that no matter how many names you have in your name list, it is still just three tokens to store it, since the names are all kept in one long string.
The tradeoff is that the names generated will always be the same number of characters.
Name lists included are the most popular names in the U.S., pared down to 5 letter names. You can make and use your own name lists though, you just need a big string with all the names, no spaces or commas between names, and all the names need to be the same number of characters.
If you'd like to support my work, feel free to make a small contribution to my ko-fi page.
Made a little chill climbing platformer. Let me know what you think!
x- Jump
o- use stamina coin
When your stamina bar runs out, you can't jump or cling to walls. You can replenish stamina by landing on the ground, or spending a green coin. Gold coins will increase your max stamina.
Patch notes:
1.1:
-Onscreen timer during gameplay
-Win messages for not using green coins
-Minor changes to climbing intended to address no clip bugs and weird interactions when dismounting the bottom of a wall
