Lost Planet - 2021
(279 chars)
w=128s=sin pal({131,12,131,9,10,14,136,137},1) ::_:: x=rnd(w) y=rnd(w) e=t() a=0 c=x r=y if sqrt((x-64)^2+(y-64)^2)<40 then a=2 e/=3 c=w-x r=w-y end p=3+(s(x/160+e/2)+cos(y/220+s(e/8))+s(x/w)/2+s(e*cos(y/72-e))/5+cos(x/70+y/40+e)/5)*2 if(p<1)p=7 pset(c,r,p+a) goto _ --#tweetcart |
Gems - 2021
(278 chars)
pal({10,9,137,142,8,7,12,140,1,2},1) ::💎:: o=20*(t()%1) cls(1) for d=5,1,-1do for c=-1,8do for r=-1,8do x=c*20 y=r*20 s=((d/5)^1.6)*(15+sin((x+y+o*2)*.005+t())*7) rectfill(x-s+o,y-s+o,x+s+o,y+s+o,d+((c+r)%2)*5) end end end flip()goto 💎 --#tweetcart #pico8 #generative #pixelart |
Another 2020 tweetcart
(278 chars)
pal({7,11,138,13,141},1)t=0r=rnd::👻:: t+=.01for i=0,199 do circ(r(128),r(128),3,0)end for z=5,1,-1 do for k=1,2.7,.3 do x,y=64+sin(t*.9+k)*50,64+cos(t*k+k)*50 for i=0,z*20 do a=r(1)p=(z/5)^2d=p*25+r(p*10)circfill(x+sin(a)*d,y+cos(a)*d,5-z,z)end end end flip()goto 👻 --#tweetcart |
One of my first ever tweetcarts, back in 2020
(279 chars)
t=0g=16s=pset ::_:: t+=.01for c=0,7 do for r=7,0,-1 do x=c*g y=r*g z=max(0,sin(t+(c*.7+r*3)*.2)*40-20) for d=0,z do k=abs(d-z)<1 and 13 or 1+(c+r*7)%12a=x-d b=y+d rectfill(a,b,a+g,b+g,k)s(a,b,0)s(a+g,b)s(a+g,b+g) end rect(a,b,a+g,b+g,0) end end print(👻) flip()goto _ --#tweetcart |
Ziege
Outsmart the horde in a battle of wits.
Play as a team of scientists tasked with getting the cure to safety after an outbreak has taken over the lab. Outsmart the infected as you navigate the board, making strategic moves to ensure the cure's survival in this strategy-driven board game.
Will you escape with the cure?
Overview and Objectives
Ziege is played on a 7x7 grid of squares.
Accompanying the board are 12 Infected and 8 Scientists, plus an additional Head Scientist that holds the Cure.
Been messing about trying to sort out a psuedo-3d view for a dungeon exploration game, I put together a loose working prototype of the game. Combat goes through without being able to read it properly but it's functional albeit very limited.
The completion point for the demo is to make it down the next ladder.
UPDATE 1: There seems to be a bug with the uploads right now, it's getting stuck in the bootup sequence even though runs perfectly fine locally. Will try and figure out the cause when I upload a new version.
UPDATE 2: Still can't figure out why it's failing to start :/
UPDATE 3: Mostly finished the demo levels, though still can't figure out why the game isn't booting in bbs.
This is a recreation of the original Super Mario Bros, crammed into about 23.4KB of a Pico-8 cartridge. (spritesheet memory is unused) The code is all new and not ported from the original game, so things work differently, but I tried to make it feel similar.
It includes all original levels, the minus world, and the second quest. Due to the token limit and limited likelihood of use, the alternating 2-player mode has been replaced with just playing as Mario or Luigi. Hope you enjoy playing!
Controls:
L/R--------------Move/Select world on title screen
X/V--------------Run/Shoot Fireball
Z/C--------------Jump/Start
Changelog:
V1.01
- Added Attract Mode
Dice Squared is a quick playing solo dice game designed and web published by a friend of mine. You have limited action dice to try to arrange a 3x3 grid of standard dice to get as many points as possible. Doubles on the action dice can be merged into a wild, giving you increased control.
For kicks and giggles, you can customize the colors of the dice.
Hope you enjoy it!
hey,
zeb PROMISED ITCH.IO LINKING
but its been four years, where the heck is it?
i mean, i get it takes work and all, but not four years worth of work
i really want to link my itch to here so i can get discounts, updates, etc
please implement this, i sure as heck aint the only one waiting (some of the comments on that post are from only a bit ago)
harvest
// inspired by @eggnog's Wobbly Lines:
https://www.lexaloffle.com/bbs/?pid=156751#p
(139 chars)
::_::cls(7)for i=0,30do line()for x=0,130,5do line(x,i*7+cos((x-64)/2+t()/3)*(10+cos(t()/3+i/9)*9)+sin(i/12+t()/2)*3,1)end end flip()goto _ |