Log In  
Follow
Outcast Interactive

Hello there, please call me silicon14. I'm a game-Dev who works on making interactive fiction and retro-style games.

https://www.youtube.com/channel/UC3ce44u4OPPFsGwt4zRUw0g

Pico-Pets
by
Captain Nimbus
by
[ :: Read More :: ]

Cart #silicon14_1klife-0 | 2022-01-29 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
2

(Warning: If you are sensitive to flashing lights, I recommend you don't run this)

(Note: Original made for PICO-1K Jam)

This is Conway's Game of life (https://en.wikipedia.org/wiki/Conway's_Game_of_Life) in under 400 characters (and here is the proof):

g={}for y=0,128 do g[y]={} for x=0,128 do if((flr(rnd(2))+1)==1)g[y][x]=true else g[y][x]=false end end

::★:: cls() ng={} for y=0,128 do ng[y]={} for x=0,128 do nc=0 for dy=-1,1 do for dx=-1,1 do if not (dy==0and dx==0)and g[y+dy]and g[y+dy][x+dx] then nc+=1  end end end
ng[y][x]=nc==3or(g[y][x]and nc==2) if(g[y][x])pset(x,y,7) end end
g=ng flip() goto ★
P#105907 2022-01-29 17:03 ( Edited 2022-01-29 17:03)

[ :: Read More :: ]

Cart #silicon14_picopets_2-1 | 2022-03-06 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
3

(Originally made for Newground's Pixel Day 2022 with the Newgrounds upload being >>Here<<)

About

You must take care of your Pico-Pet. Make sure that they don't go hungry, become sad, or get sick. To do this, press 🅾️/Z/C/N in order to bring up the menu and to select options. Press ❎/V/M to go back. If you take good care of your pet, it might grow up to become one of eight pets!

Game saves automatically and will restore your save when you start the game. If you want to start clean, press "Enter" to go into the pause menu and enter "Wipe Save." Doing so will restore everything to their default values and you won't be able to restore them back. Use at your own risk.

Special Thanks to Spaghetti for helping me with how long it takes for stuff to happen!

(If you encounter a bug, please tell me and I should be able to fix it as soon as possible. Also stay tune as future updates will include new pets and maybe new features!)

V1.1

-updated the background

-added four more pets

-minor bug fix on frames

Consider heading over to the itch.io page if you want to download a version for Windows, Mac, and Linux. Also consider donating if you want to support this and future projects. itch.io link

P#105637 2022-01-25 22:58 ( Edited 2022-03-06 21:44)

[ :: Read More :: ]

Hello. I'm working on a virtual pet game in pico-8 and need some help on how to make in-game menu. In the game, the menu is how you care for the pet with options like feed and cure and the options have sub menus for different options like which type of food you want. The main menu options are represented by icons but the sub menus are represented by text. The problem I'm running into is creating the menus in the first place as I can't figure out a solution to this and the options I have looked up online I can't make sense of the code.

P#105122 2022-01-15 03:28

[ :: Read More :: ]

I molded the white house from Zork (sorry I couldn't add the mailbox)

P#88639 2021-03-07 14:53

[ :: Read More :: ]

The Captain Nimbus Main Menu Theme is now on YouTube.

https://youtu.be/vIaVVjzZqXw

(Like, Subscribe, Comment, or don't, it's optional)

P#85842 2020-12-28 01:44 ( Edited 2020-12-28 01:45)

[ :: Read More :: ]

[sfx]
My cover of Mother Earth from Mother/Earthbound Beginnings.

P#85742 2020-12-24 18:10 ( Edited 2020-12-24 18:32)

[ :: Read More :: ]

Captain Nimbus

Cart #kimuwufede-0 | 2020-12-22 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
5

Welcome to Captain Nimbus, a classic arcade style shoot 'em up for the Pico-8!

Controls:

⬅️➡️⬆️⬇️: Movement
❎: Shoot Bullets

Enemies:

Green: Normal amount of health.
Blue: Strong, able to shoot bullets, but also very slow.
Red: Has same amount of health as green but is faster.
Purple: Same as the Red but if you get next to them they then moves sideways towards your ship.

Credits:

Programming, SFX, Music, Cover Art, Idea: Silicon14 (me)
Art: ReeceGames
Background: Whiteout Labs

[0x0]

P#85674 2020-12-22 15:00 ( Edited 2020-12-24 19:30)

[ :: Read More :: ]

I have upload the AORHOF Theme onto Youtube.
https://youtu.be/2E7FIgrg3s4

Music: A.O.R.H.O.F. Theme
Composer: RubyRed
Platform: Pico-8

(Like and Subscribe, or don't, it's optional)

P#83923 2020-11-07 15:27 ( Edited 2020-11-07 15:28)

[ :: Read More :: ]

Cart #heruwoguza-5 | 2020-08-30 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
8


A simple flower picking simulator. You play as an orange robot wanting to hand out flowers. Use ⬅️➡️ to move. Go pick a flower and give them to other red robots.

Based on a scratch project I did: https://scratch.mit.edu/projects/382959104/

Programming, sfx, and art by me

Troubleshooting Help from the Pico-8 Discord help section

Music by RubyRed

P#81133 2020-08-24 22:10 ( Edited 2020-08-30 19:35)