Hi everyone! This is my first PICO-8 game. I hope you like it. I was playing the other day Pocket Card Jockey on the 3DS and decided to make a simple version of the card game in PICO-8. So, I present to you:
Up-Down Solitaire
Try to empty the board by playing cards from the last row onto the discard pile. You can only play a card with a number right after or right before the number of the discard pile. For example, you can play a 3 onto a 2 or a 4, but you cannot play the 3 onto another 3 or onto a 10. Colors and suits don't matter. As and King are connected.
If you cannot play any card. Draw a card from the drawing pile. Choose the number of jokers to change the difficulty (A better tutorial can be found inside the cart).
Hello,
This is my first time ever publishing a game and I am super excited!
DISCLAIMER
I actually followed SpaceCat's tutorial on Youtube so this is not something I came up with. However, I decided to upload it anyways because I did add my own spin on it and felt that I had actually done a good job with the coding. I would love feedback so I can improve my programming skills for my first official game.
Hey, I thinkered around with pico-8 before but never got to try to make a game or something. So I decided to change that and make my first attempt on it. I gave myself 3 days to do something and today is actually the third day, but I think Im fine for now.
I think the project was a little too big for a first one. It wasnt complicated but if I wasnt following a tutorial this game would have look a lot different :D. (I used nerdyteachers tutorials on platformers.) Since I had limited time I really messed up the code on some parts. So dont judge the code please. Also game isnt finished or anything. I dont know it will be ever finished mainly because of collision system and jumbelled code. But it was fun and I wanted to share it. And kinda proud of it. So yeah enjoy I guess.
I want to credit a couple of sources for this game. First is Lazy Devs and Krystman for his fantastic shmup tutorial. The title and boss music came from snabisch on itch.io, who has some incredible PICO-8 tunes available for use.
This plays as a fairly standard shmup. Shoot torpedoes with the O button. Enemies can drop life preservers. If you collect at least 5, you can press the X button to release an anchor that damages enemies. If you collect 10 life preservers and are missing a life, you will receive a 1up. If your lives are full, you get additional points.
There are two different types of bullets that enemies can shoot at you. The standard "bubble" bullets will do 1 hit of damage to your sub. The electricity bullets will temporarily paralyze your ship, but won't do any damage themselves.
The first ever Picotron web browser!
load #picogo
in the terminal
This first alpha release comes with basic web browser features.
You can search keywords to surf the web or read a specific web page by pasting it's URL!
My goal is to make it as functional as possible and some BBS correlated features will probably be added in the near future. Feel free to help me bring this project to life, let's make a team!
Hit me up if you need to understand any part of the code.
I'm attempting to create a fully-fledged platformer game with Picotron, and I'm encountering some collision detection issues. You see, I followed Nerdy Teachers' platformer collision tutorial since I figured the code would work with Picotron (it technically being an advanced PICO-8 after all). And I'm correct, but something is seriously wrong. When I tested the collision code, this is what I was presented with:
Now I think this is happening due to one or more of the following reasons:
- The code was designed with 8x8 sprites in mind when my player character is in a 16x24 resolution and the tiles are 16x16 sprites.
- The code wasn't made with Picotron in mind (since the Nerdy Teachers tutorial I followed predates Picotron by quite a while).
- I've just been a complete idiot and made a mistake in the code that is causing this whole kerfuffle.
I've provided the code for the collision system and player physics below, as well as the player's table and physics variables. If anyone can help me rewrite or optimize the code to work with Picotron, then that would be a great help and I sincerely thank you for your assistance. <3