Log In  
Page:
1
2


Cart #mk_sphongos-0 | 2025-02-10 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
102

-

Controls

  • Navigate the world and UI: Arrow keys/d-pad
  • Interact the world and UI: X key/X button (Both Pico-8 buttons work)

How To Play

  • Go out and gather samples from your surroundings
  • Research samples in the lab to unlock and upgrade abilities
  • The game saves everything automatically!

Post Mortem

This post mortem is mostly me documenting the development of SPHONGOS and sharing some of my learnings. If there is anything specific you would like to know, just ask!

How it started

This game started as an entry for the A Game By Its Cover 2024 Jam on itch.io.
I had a rough last year and after failing to get anywhere with game development I turned to Pico-8 and tried to give myself a proper time frame and goals. The idea was to finish no matter what.

Why Pico-8

I felt like having seemingly endless possibilities with bigger game engines made me unfocused and I thought a lot about unimportant things. I couldn't get to a point where I was making a game.

The tools that Pico-8 provides are limited in a way that it feels like a creative challenge and a puzzle to get your vision on the screen. It feels like a game in itself.

Coding in Lua is fairly easy and there is a ton of documentation and help online, I feel.

I always liked Pico-8 and since I got a Powkiddy RGB30 I played a lot of cool games from splore.
Having my own game on this handheld device also seemed like a great motivation.

The Idea

The entries for the AGBIC jam are based on the cover art of the Famicase exhibition. I went through the selection from 2024 and picked a few that I thought were inspiring. I landed on Mushroom farmer https://famicase.com/24/softs/188.html

I didn't have time to properly start right away, so I had a while to think what I wanted to do. In between I played Loddlenauts and loved the cleaning laser mechanic, because it is very satisfying.
That's why I based the game around the idea of blasting fungi with a laser. Needless to say I strayed quite a bit from the famicase inspiration.

Then I watched a few documentaries about fungi to have some knowledge to ground everything in. That turned out to be very helpful for coming up with ideas and narrative as well as names for things in the game. I had a few pages of notes about fungi and a bunch of words I could use to make things sound a bit more sciency :)

Narrative

The basic narrative idea is based on the concept of global warming leading to fungi being more resistant to the body heat of mammals. that's what keeps them from killing us at the moment, but it is starting to change. It felt like a good hook to base a sci-fi game on. The game does not explicitly mention any of that, but it helps to know what's going on in the world you are building.

Development

Disclaimer: This is the second Pico-8 project I ever started and the first I finished, so some of this might be old news, weird, or straight up wrong.

I started with brainstorming a basic structure and content I wanted to have in the game like the upgrades, environments and life forms. It was faaar too much for the scope of the game of course and I ended up ditching a lot of things. I wish I would have kept the scope smaller from the beginning as I lost quite a bit of time working on systems that I ended up not needing at all.

Playtesting

If you take anything away from this post mortem, it should be PLAYTEST as much and as soon as possible! It helped more than anything to put this game into people's hands to see how bad it is. The balancing was waaay off. No one understood the UI. People didn't even understand they were dying. I learned so much from just observing people playing the game.

If you've never done playtesting:

  • For starters: get anyone, it doesn't really matter who
  • Advanced: Get multiple people, that have a diverse experience with gaming
  • Don't tell them anything about the game or how to play
  • You can give them a sheet with information that you can ship with the game if needed, but sometimes it can help to just see them struggle and observe what they can figure out
  • Don't talk to them while they are playing. Don't help if they are stuck
    - This can be hard to do, but it helps to let them figure out things and see how they do it or what they do instead
    - If they get stuck for very long, you can obviously help them out, but minimize the information to what they really need to advance
  • Ask them to think out loud while playing
    - Just observing is good, but If they do the streamer thing and comment everything they are doing and what they are thinking while doing it, you'll get the most valuably information
    - You will be surprised what people assume is going on or what they are supposed to do

Scope

That was my biggest problem overall in the development of the game: scope!
In hindsight, I should have worked more on the core mechanic of gathering the fungi and make it as fun as possible. It became fun 2 days before release, when I sat down and implemented a particle system. I was so stressed in that moment, because there was so much left to do, that I timed the implementation and only gave myself 30 minutes to do it. Luckily it worked out and it gave the game a huge boost. I then continued to use it in a lot of places to make everything juicier.

I regret not having the time to implement anything moving into the environment. I had some life form early on, but had to kick them, as I realized that I can't finish if I'm going to make them work well and maybe even have to put in more.

Workflow

What I really liked about the development was my setup. I started out doing everything in Pico-8, but after a while, it was mentally too draining to keep coding with the pixel font and the tiny window. I switched to VSCode.

I started a Git repository, where I now have all of my Pico-8 projects, because I feel they are too tiny to have a separate repository for every project.

That way I was able to work at my Windows desktop PC and my trusty Linux Thinkpad in the kitchen or on the go whenever I felt like it.

The one annoying thing about working with an external IDE is that I sometimes made changes in both VSCode and Pico-8 and lost some of them. If anyone knows a good solution for that other than being more disciplined about it, please tell me.

Code

I'm not a programmer. I never properly learned how to code. I picked it up through making games and other things over the years, so I can do quite a lot, but it might look weird to someone who actually studied it.

That said, I wrote pretty much everything from scratch. The only thing I took from the demos that ship with Pico-8 is the collision implementation, because I didn't want to waste the time figuring it out myself.

I don't think there is anything terribly innovative about this game's code, but if you see something you want to know more about, hit me up.

UI

I had a lot of fun working on the UI. As I have a background in graphics design, it comes quite easy to me and I enjoy tinkering with details, which can be a waste of time. But I think for this games it adds a lot to the sci-fi atmosphere.

One of the first things I had implemented was VHS like tearing effect of the screen. It gave me a big boost in confidence and fun.

Here's how I planned out some of the UI elements. In the bottom-right I even drew the case capacity display in pixels to make it all fit perfectly.

As I printed most of the main panel I setup a function to add a line with some parameters to the UI. This function ended up being integral in getting a lot of information on the screen.

Map

Initially I planned to have a much bigger map. Luckily I was at a point where I could see the scope being to big already, so I cut it in half. It is now 4x4 rooms that are split so they occupy 8x2 rooms on the tile map.

Here is how I worked on the final map. This part felt like how you think game design would be, but almost never is :D

I drew the basic layout and put down stuff to mark everything you can collect in the game and where the rooms would connect.

When I was mostly satisfied I took the photo above and drew it on the map.

Polish

I started polishing and adding effects quite late in the development. Anything that has particles was added 2 days before I uploaded the game for the first time to itch.io. A lot of sound effects were changed or added after that, because the visual effects added so much that I wanted to highlight them even more with sound.

I'm very happy with how the whole game looks and feels. It's a great feeling when someone is playing it and you can hear where they are and what they are doing without looking.

Release

I know from experience that releasing games can be a lot of work, so I new I had more work to do after uploading the game. I ended up re-designing the logo. Fiddled a lot with screenshots and gifs. Fixed bugs. Implemented a few quality of life things after more playtesting. Fixed more bugs.
Wrote this text!

Contact

102


2

Just starting out but I already love this. Excellent progression, great-looking UI, intuitive but complex, with a nice little narrative and a world begging to be explored.


1

Great-looking game with a solid explore/harvest/upgrade loop. It's a little on the grindy side but in the end it wasn't too bad. It's also easy to pick up and figure out what to do and where to go next. Looks like your playtesting paid off!


2

Great game! Loved the visuals and the game feel.


If not for token restrictions and game jam time limit I'd wish there would have been an extra full completion ending where you could leave the planet (maybe by building a ship on fungi fuel or something). But I must say the current ending despite its sad tone is still fitting.

I also really enjoyed reading the post mortem you've made, it was inspiring and informative. Thank you.


1

Great game! Perfect balance of resources and progression. Just love the mining tool - got some no man’s sky vibes 😉


1

@0oskar said most of what I'd like to say about this game. Gorgeous work on all the little interface details. I never died, yet I still felt very tense every time I ran home with less than 10 oxygen remaining. Gold star.


1

Great game, very engaging!


1

cool game but confusing.
I got to the point of needing stone(quartz?) to upgrade but it's not clear how to collect it. my "tool is insufficient" and the next upgrade requires a material it can't collect?


Hey @zomgwaffles, thanks for playing and taking time to write feedback!

There is an upgrade for the blaster that lets you collect stone. You should be able to unlock it if you found a few other samples.

I'll admit it is very easy to miss and not properly hinted at.


1

Thanks for the reply! I didn't notice that there were more upgrades at the end of the line that were letters instead of squares. I got to the end!


1

yo, just popping in to say that i love this game. Absolutely nailed the aesthetics and sounds <3

Just to check is this the ending?


1

@cheapshot yeah it is. thanks for checking it out an commenting!


1

This was absolutely excellent. I truly enjoyed this. The sound design was amazing, too!


1

boy that screen line and flicker sure is a nice touch.


2

It's a good game but gets boring after you keep nearly running out of oxygen.


3

This game was a great way to just kinda...chill. Like a gardener, just go out and tend to things, never quite sure exactly what will come of things.

This is a perfect example of a "simple" PICO-8 game that isn't simple at all.

I really hope there is a sequel to continue the story.


1

@pizzagame321 I'm not sure I understand what you mean. Do you mind describing a bit more what you find boring? Thanks for the feedback. Anything helps :)

@morningtoast I really want to make a sequel at some point. I have a bunch of ideas and a direction I would like to take it. What would you like to see in a sequel?


1

First off, just continuing the story :) But I think expanding the discoverability of new things would be fun. I really enjoyed the excitement of "oh there's something new" when I was wandering around the map. I'm almost hesitant to suggest some sort of other character to interact with since the one-man isolation aspect came off so well...but...I think some other interaction points beyond the home base would open up some possibilities.


2

Lowkey should make a sequel where you escape and confront the scientist.


2

Honestly, PICO-8 game of the year candidate already, it has been such a long time since I was pulled into the atmosphere of a game. I really liked everything you had in here, IF I had to say something, the ending could be missed, if the player forgets about the log computer (such as my dumb face did). Otherwise, amazing game, looking forward to your creations!


@Achie72 thanks for taking the time to record this!!! Can't wait to watch it first thing tomorrow :)


10

Anton was a xenobiologist specialized in fungi study. After three decades of meticulous analysis, he had to admit he had discovered exactly nothing of use to humanity. Temperatures on earth had kept rising during the last two decades, and earth's fauna and flora was now essentially extinct. Luckily, in the mean time, some of his colleagues managed to create some lichens from earth plants and alien fungus. This improbable alliance was striving on earth, getting it's energy from the strong ultraviolet rays that was frying the remains of earth's vegetation, and provided humanity with an abundant source of food, if lacking of many necessary vitamins and other nutriments.

When his boss offered him the opportunity to go to the Sphongos asteroid where space drones detected an abundance of fungi and plant life despite conditions of radioactivity and temperatures far worse than on earth, he was very tempted to at last get a significant chance at making things better, but had always worked indoors and didn't fancy himself an explorer at all.
The presence in the ship's equipment of a faster than light communicator and a very top of the line regenerator finished to convince him.

Work on Sphongos was hard. The absolute loneliness was maddening after a couple years, and the process of getting regenerated from a near suffocated state was painful and traumatic.
Work was also very disappointing, intellectually. Aside from finding the new fungi in the hostile environment , getting it scanned, and send the data to earth, he had no material available to do any research himself at all.
Because the quantum communicator used a good chunk of the paired particles who's sisters where waiting on earth each time the device was used, communications was reserved for science data exchange. After submitting the data about the bizzar fungus, he got a "thank you, that's what we needed, sorry but you are stranded here" message, followed by silence.
Three years later, still no news. At first, he dutifully upgraded everything he could in the base, hoping against all odds that he might find a way to make fuel for his return trip in the end. After that, he stockpiled resources,hoping they might be of use to a rescue team. Then, he focused on stockpiling the bizzar fungus that was the reason for the entire expedition. Hopefully, the stock might be valuable enough to convince Earth to fund a rescue expedition ? Strangely enough, the computer's inventory seemed to malfunction and never listed the stock of bizzar. With nothing better to do, Anton painstakingly dismantled the entire storage system, added sensors wherever he could, and put everything back together, dumbfounded about where the missing stock could be. After that, he entered materials one by one and followed the trail of activated sensors.
To his horror, the fungi was directed to a small door-less room at the back of the station instead of to an underground storage like the rest. The tiny volume of the room didn't match the volume of supposedly stored fungi.
Thanks to a makeshift metal ladder, Anton reached the room from the station's ceiling.
The "room" was barren, half full of decomposed fungi. After lots of cleaning, Anton located the valve where the fungi arrived from, saw a half melted pipe on the floor that used carry the fungus, and a burnt floor, characteristic of the burnt fuel due to the take-off of a small sized space drone.
Alarmed and wanting answers, Anton spend the following weeks trying to override the communicator and ask for answers, precious paired particles be dammed.
His conclusions sickened him : there never was a communicator on the ship. He was talking to an onboard AI the whole time. Once the needed samples loaded on the space drone, the drone took off to Earth, and the AI just shut down, it's mission accomplished.
Anton's name would probably be added to the long list of lost space heroes. How many like him were hopelessly stranded across the known galaxy, he wondered. His samples may or may not be of value to humanity, he would never get to study them, and would never know.
With a mix of sadness, rage and resignation, Anton fired at the regenerator, until it was completly melted.
More out of habit than by necessity, he put his back-pack on, his suit, and went outside. Once at the lake, he admired the view and the fibrous plants bordering the lake. He remembered his enthusiasm at finding them. A sample of the plant was probably in the drone currently heading to Earth.
Anton tranquilly unloaded his back-pack: A full load of blue fungus, and a full load of iron. These resources used to feel precious, but now were meaningless. Last but not least, he unloaded nine bizzar fungi. That was the harvest of three weeks of grueling work, the reason for his coming to this space rock... and ultimately as meaningless as the rest. While admiring the view for the last time, he felt the now usual pain of oxygen rarefaction. His vision darkening, his last thought was that at least, this time, he wouldn't have to suffer the regeneration.


@RealShadowCaster THIS IS AMAZING! It's the first time I see something like fan fiction for one of my games. This makes me so happy :.)

I love the twist with the drone. Makes it spicy.

Thank you so much for taking the time to write and post this!


4

@mkoloch, glad you liked it. Much darker than what I usually write, but the abrupt stranded non ending set the tone.
I tried to incorporate and rationalize all the game-play quirks into the narrative. There's one I failed to incorporate : the fact that you are forced to pick up objects if possible.
As a game play mechanic, it's the norm and perfectly normal (as normal as standard keys that can unlock any door but are single use, for example), but you used it as a puzzle element and also as a way to make the inventory slots double as required progress steps.
Story wise, I couldn't find a rationale : is the player a robot programmed to pick up resources ? Doesn't fit well with the main oxygen based mechanic.
It still indirectly influenced the story :
I first thought about a positive ending where the explorer hero would be standing by the lake carrying the quartz, fibrous plant and bizzar fungus and would be picked up by a rescue team. The auto pick makes this impossible, so I searched for other possible carried inventory for the screenshot, and that lead to the more resource driven story. The resource grind became a central element of the story, witch retrospectively fits the game better.


1

Cool game and all, beat it and got all upgrades. But i might have made my friend kinda addicted. He's insisting on 100 percenting it and has gotten to 6500 or so of the blue mushrooms. Please tell me that 10k is the cap...


1

@xsaigez there do not appear to be any caps in the code. After collecting over 32767 the value will probably appear to roll over to -32768 and continue counting up from there.

Edit: just tested it and this is indeed what happens.


3

@xsaigez Yeah, I never expected anyone to even collect more than 99 mushrooms of one kind. The UI doesn't even support 3 digit numbers very well :D
I hope your friend enjoys it, but also takes care of themselves.

@kozm0naut integer overflow ruining your fun :D


2

What a great game! The world design and lore and progression all fit together nicely. The idea that you can keep playing after the end of the game is really innovative, and a perfect fit thematically.


2

this game is amazing, it's just lacking in the ending.


1

Lovely game with great atmosphere and nice mechanics. Getting those upgrades really kept me engaged. I do feel there should be a more clear ending as a reward for all the grinding.


1

Love the whole tone of this! Wonderful work!


Wanted to write a followup question... how did you create and load in your cover
/ splash screen? It seems like such a simple task but you've done it beautifully and I can't seem to find anyone discussing the practice of creating these incredible game splash screens. Any advice on how to do this would be really appreciated.


@furious I'm assuming you mean the label. So I'm gonna write about that. Please tell me if you ment something else :D

this:

On the technical side:
I took screenshots of areas I liked in the game and exported the spritesheet to get the logo out. Then I used Photopea (web based Photoshop: https://www.photopea.com/, fuck Adobe) to put it together.

I looked up "label" in the pico-8 manual where I found that you can import and export images for various things. So I used the command IMPORT -L BLAH.PNG to load my image into the cart. https://www.lexaloffle.com/dl/docs/pico-8_manual.html#_Exporters_

On the design process:
Disclaimer: I have a background in graphics design, studied it and worked freelance for years where I created a ton of logos and corporate designs, webdesigns and so on. So I tend to create these things quite intuitively these days. Especially for personal projects. So I might not be great at explaining things. But please ask any specifics and I try to help out.

For the logo I picked colors that are important in the game. Mostly from the player and the lab. I painted the letters with a mouse by hand in pico-8, nothing fancy. I tried to go for a old-school game/metal logo feel, that's just what I like and seemed to fit. I kept the top side straight to give it a more ordered technical feel. The pointy bottom side was mostly for interest and to keep it less boring, but then I realized that I could give it some squigglies to imply fungal hyphae or rhizomorphs. That lead to also adding some of the mushrooms.

For the label itself I checked how other labels looked in splore and realized that the entire bottom half is covered by the splore UI. So I knew to put the logo in the top half to make it readable.

I layered multiple screenshots from different areas of the game so the progression through those areas is hinted at in the vertical arrangement.

I rearranged a few mushrooms and wall tiles where I thought they could look better.

I added the player sprite, because I wanted it in, but not clash with the logo. It is kinda awkward where it is now, but oh well :D

Because it all looked a bit flat I wanted to add a vignette for drama. Thing is, the label is also limited to the pico-8 color palette afaik. As far as I remember to get around this I made a white layer, added black gradient for the vignette, added a noise effect and crushed the levels, so I was left with pure black and white and then set the layer to multiply, so I got this kind of dithered vignette effect. Please excuse the Photoshop terms :D But to sum it up, I added a vignette effect consisting of random black pixels instead of a gradient.

Logo took around 1 hour after throwing out the first version that took around 30min.
Label probably 1 hour with taking screenshots.

I gotta say I'm not entirely happy with it. It could be stronger in its appeal. But I guess it's fine for the time I put in :)

If there is anything else you or anyone would like to know, just shoot!


1

@mkoloch , the label composition was very interesting to read about.
I honestly thought the chosen color palette was a self imposed constraint because using the 16 default pico-8 colors makes the screen instantly feel "pico-8y", the same way you can instantly recognize a ZX spectrum, a C64 or an Amstrad screen, just by the colors and resolution.
Pico8 palette has 32 colors, and the default display mode allows to have 16 of the 32 onscreen without constraints.
pal(index,color,1) to tell what color to use when index is found in the video memory.
index is in the 0..15 range
color in 0..15 for the standard colors and 128..143 / -16..-1 for the alternate colors
There are other video modes you can enable with magic pokes that allows to display more colors per frame (even 32 at once) with various constraints.

The label is 128 x 128 pixels, but can use the 32 colors without any constraints.
You could have used a 3 level noise mask, and use the fact that the alternate colors are roughly darkened versions of the standard palette to have two levels of darkening instead of just black, for example.


@RealShadowCaster thanks for the pointers! I looked into color palettes a bit more after making the game, but I generally like the pico-8 constraints and like to be creative in a limited space. So I guess you're right that the limit is somewhat self imposed.

I also have the feeling if I start pushing the limits I will end up in tech demo land. Not that there is anything wrong with that, but I want to hone my general gamedev and especially game design skills.


1

Solid progression and an eerie atmosphere. The ending felt like a slight grind, but I expected that in a game like this.

For the ending,

a simple final upgrade using the end material, fading out to a bit of text, could create a more satisfying sense of completion. It might even serve as subtle foreshadowing for a potential sequel.

Thanks for making it!


@protocol I'm thinking about updating the ending if and when I make a sequel. No promises though :D


2

I’ve just created an account to thank you and congratulate you on making a great game.
I did not expect that but you’ve got me hooked in it for a couple of days.
Great style and really intelligent game design!


@dead_undead Thanks for taking the time to write. This made my day <3<3<3


1

this game is peam


1

The VHS scanline effect does pull a lot of weight! I too would love to see a sequel, maybe with a few features you considered but couldn't add for this one. I'd love to see some motion in the background, or a few more colors or npcs etc.

I still haven't finished, but as soon as I can figure out a way to upgrade to holding two types of samples I'll be there quick!


@WoopyBoiii had to look up what "peam" means. Thanks :D

@SaltySalticid At this point, I can't see me not making a sequel.
The hard part will be to keep the scope in check. If I try to squeeze in everything I wanted for the first one + new stuff that a sequel needs, I'll never finish. In a lot of media sequels tend to be just bloated versions of the original. I would love to keep a follow up within a small scope like the first one. Add a bit more liveliness, sure, but don't go overboard with new features. Let's see how that's gonna go :D


1

It's a wonderful game! I think I found a minor bug.

The last O2 tank upgrade (99) was revealed when I found 4th material (white), not 5th (gold). Also, second and third sample slots are locked behind the same material, which feels a bit odd. I was looking for the second slot for long, then immediately unlocked both. Great game anyway.


1

Nice mining game, too bad the ending isn't what expected but at least the journey was worth it. Need a little thinking outside the box to solve limited slot issue.


1

Wow. Finally finished the game, and what an unbelievable ending. I saw this game on the Forum as I was ordering an RGB 30 and this was one of the first games I wanted to play on it aside from combo pool.

For those of you who may be getting stuck at a certain level of material collection, here's where I got stuck and how I got past it.

You may reach a point in the game that feels like a catch-22 where you need an upgrade but can't get the material you need. If you get stuck like this you should...

Remember that you can unlock things out of order, look further down the chain of upgrades to allow yourself to make progress


1

Tried this for the first time and ended up beating it in a single sitting. I really enjoyed to loop of going out to collect and stretching your air to the limit. I really enjoyed the time that I spent with it. I am also a fellow RGB30 owner and played through it there.


1

I really like this game, but I'm stuck. There are these white squares, which I assume are quartz, that I'm unable to mine, despite all my items being leveled up to the point where I can't anymore,due to needing this mystery ore.


@Cwod did you upgrade the enzyme injector (E)?


1

Nice game. it's the best I've played in a while! Can't wait for more updates for this game (hopefully)


@mkoloch I'm unable to because I need the quartz


Page:

[Please log in to post a comment]