Log In  
Follow
Adam Atomic

i like making pixel art and little games !


Cart #banditaccountancy-0 | 2025-03-15 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
9

very silly game. d-pad only. try to stay in the floooowww

9
3 comments



Cart #caveofcards-0 | 2025-03-05 | Code ▽ | Embed ▽ | No License
17

In Cave of Cards, you clear dungeons by making poker hands.

The X button opens the shop dimension, and the O button lets you crouch (preventing you from banging into things).

Find and unlock the exit door by clearing the dungeon.

High score is based on how many hearts you have left at the end.

17
23 comments



Cart #weasel-0 | 2025-02-16 | Code ▽ | Embed ▽ | No License
5

Silly snake game for our corporate mascot and valentine's day... press X or C to "boost", allowing you to eat the otherwise lethal chocolates.

5
1 comment



Cart #skeleton_gelatin-2 | 2025-02-11 | Code ▽ | Embed ▽ | No License
24

possibly world's first blobtroidvania... no upgrades, no hp, no dying, no checkpoints, no jumping, no problem

i do not recommend trying an all-skulls run until you've finished a normal run at least once!

24
17 comments



Cart #sokomin-0 | 2025-02-06 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
1

Just my Soko Sample project, but minified to fit in a single bsky post.

1
1 comment



Cart #sokosample-0 | 2025-02-06 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
5

A basic sokoban codebase. Maybe 25 lines of hopefully very easy to understand code. Most of the games I've been making over the last few months all run off this basic framework, and I wanted to have this out there in case it was helpful to anyone else! The "vibe" is based a lot off of things like Bitsy and Puzzlescript, but the simplicity of the code and fact that I've been able to make really fun and expressive games off this paradigm I think makes it really nice. Some games that use this as their base logic include:

[ Continue Reading.. ]

5
6 comments



Cart #vampire_vs_pope_army-0 | 2025-01-20 | Code ▽ | Embed ▽ | No License
23

23
19 comments



Cart #sebastiansquest-0 | 2025-01-13 | Code ▽ | Embed ▽ | No License
24

kept this one under 500 lines of code, i think that's a new record for me

get that cheese 🧀

24
16 comments



Cart #derbis-0 | 2024-12-07 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
6

Bucket list: make a missile command fan-game... another "bach" style game where you're kind of doing two things at once. Indulgent haha

6
1 comment



Cart #dustsettlers-0 | 2024-11-15 | Code ▽ | Embed ▽ | No License
10

Self-indulgent game for me, very fun that other folks are enjoying it too. I really wanted to make something like Blocksum, where you were on the clock to make a kind of... big blob of high scoring stuff? I guess. THat's a game. Seeing Tetrachroma helped me figure out some stuff too. Ok!

10
2 comments



Cart #kuipercargo-0 | 2024-11-15 | Code ▽ | Embed ▽ | No License
18

I couldn't even get done with Rat Dreams before I started doodling stuff that turned into Kuiper Cargo... went through a few iterations before settling on this kind of level limit / upgrades approach. Really happy with pretty much everything tbh. Ok!

18
8 comments



Cart #ratdrms-0 | 2024-11-15 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
8

A halloween game for Kyle and Andrew <3

8
4 comments




better etchasketch! ~118 characters (110 w/o clear-screen or random color)

cls()
x=0 y=0
while 1 do
if(btn(0)) x-=1
if(btn(1)) x+=1
if(btn(2)) y-=1
if(btn(3)) y+=1
pset(x,y,7+rnd(9))
flip()
end
61
391 comments