Time is all of a jumble and Captain Neat-O is trapped in the middle of it! Battle enemies, solve puzzles and find the tools you need to escape the Time Nexus and stop whoever is behind this nefarious plot.
Gain an extra heart for every 100 gems collected. There are 300 gems to collect in total but some of them are hidden in secrets areas so keep an eye out for walls look a little bit different.
This is an entry for Toy Box Jam 3 using the graphics, music and sound effect assets supplied as part of the jam.
Music by @gruber_music
Most art by @TobyThePoser
Updated to fixed a couple of things and make the final boss fight a bit shorter.
Remake of Digger, the classic 1983 game for IBM PC and compatibles by Windmill Software.
I made this in 3 days, so hopefully it's not to buggy/janky.
Update 1: Fixed a bug that was causing level background graphics to be blank.
How to Play
Collect all emeralds or kill all the bugs to complete the level.
Arrow - Move
Z/X/C - Shoot
Scoring
Gain a new life for every 20,000 points (you can only have up to 5 lives at a time).
Emerald
[0x0] | |
SFX instruments that have no loop set (i.e. both loop parameters are set to 0) still loop when used in a pattern.
Also, if effect 3 is used at the point where the SFX instrument should be finishing, it won't retrigger the note until the following beat. If you have a long string of notes with effect 3 it won't trigger the note until the beat after the last note with effect 3 on it.
Here's a sample cart with SFX to demonstrate the issue. It doesn't have any code so you'll have to open it the editor.
Calling line() with these arguments is causing PICO-8 to crash. It seems any iteration around having these "extreme" values on one axis is causing it to either get stuck in an infinite loop or crash outright.
line(16,-15070,17,29772,12)
Oddly, if you flip the x and y values it'll finish executing and display the command prompt without rendering the line, but then crashes as soon as a key is pressed.
line(-15070,16,29772,17,12)
A short atmospheric platformer with metroidvania elements. Your UFO has been knocked out of the sky by scavengers and you're now trapped in their swampy junk yard. With the help of some friendly aliens, find a way to disable the electromagnetic pulse cannon that's keeping you from escaping.
This was my entry for RNDGAME Jam 2020.
Left/Right - Move
Z - Jump
X - Use Zapper (once you have received it)
Up/Down - Cycle Zapper Modes (when you have more than 1)
Hack all the terminals and defeat the boss.
This is my attempt at making a polished game in a week and a half, although it ended up being 2 weeks. I had to drop a few features I wanted to put in due to time, and code ended up getting a bit messy. Still, I'm pretty happy with how it came out.
The frame rate can drop sometimes, particularly in the later parts of the game when there are a lot of enemies around.
UPDATE
Removed a tiny amount of unused code and added as many comments as I could fit without going over compressed size.
UPDATE 2
Added the ability to swap jump and shoot buttons because the defaults felt awkward in gamepad. Also fixed a couple of minor audio bugs.
Update 3: Added a 148 token version.
Update 2: Now down to 157 tokens.
Update 1: With improvements from @freds
This is a token optimized version of the polygon drawing routine I originally used in Pico Tennis. I've managed to get it down to 173 tokens, which I'd like to think is comparable to p01's 163 token trifill routine.
Obviously it's going to depend on your needs for which method you use. If you only need to draw triangles then you'll want to use the trifill method, but this allows you to draw shapes with any arbitrary number of vertices.
The only catch with this method is that it only allows your shape to be concave on a single axis.
MAJOR UPDATE
With this update the game now progresses across multiple battles, soldiers can level up and have a talent tree, and 2 new enemy types have been added.
The game has 16 levels, and you need to beat level 16 to win. However, levels don't progress 1 at a time, the level you are assigned is based on the combined level of all your soldiers. If a soldier survives a battle they will gain a level and be granted 1 skill point. So if all soldiers survive level 1 you will progress to level 4, if they all survive level 4 you will progress to level 7 etc.. So it's possible to do a perfect run and win the game by playing only 6 battles.
If a player doesn't survive they will be replaced with a new recruit. As you progress through the levels new recruits will start with more skill points so if you lose any soldiers or have a full wipe you won't be set back too far (and you can respec your soldiers).
As the title says; music playback is clipping and causing distortion since upgrading to 0.1.12
I've tried rectifying the problem by setting music_volume to 128 (which is what I had previously always had it set to), but the music_volume value in the config.txt file gets reset to 256 every time Pico-8 is closed.
I was playing with some 3D rendering stuff and ended up making a tennis game.
Play against AI or with up to 4 players.
Z to hit the ball. To hit the ball in different directions you need to hit it when it's off to your side. So the further to your right the ball is when you hit it the more it will go left.
X to do a power shot. Whenever you return the ball during a rally you will build up power. You can do a power shot anytime you have power in your meter, but the more it builds up the faster your shot will be.
UPDATE 1.2
- As per Felice's comment I changed the display when a point is scored to make it easier to understand. It will now display PLAYER 1 POINT in blue. There's is also a message above that in orange for things like OUT or FAULT etc.