Description
This is a just-for-fun ideocartography piece I made, which uses entropy locking and time-based seed fuckery to progressively modify the "temple" as it is constructed.
I MAY mint some curated outputs from this generator, and IF I do, I will likely airdrop at least one to the holders of this token.
10% of primary and royalties goes to the pico_punks breadfond, to reward curated pico_punks holders.
source code:
```
pico-8 cartridge // http://www.pico-8.com
version 36
__lua__
w=stat(6)
s=1
for i=1,#w do
ch=ord(sub(w,i,i))s+=s*31+ch
end
if(#w==0)s=rnd(-1)
srand(s)
_set_fps(60)
poke(0x5f54,0x60)r=rnd
c=cos
e=sin
poke(24364,5)
for i=1,4do pal(i,r(16),1)end
pal(0,-r(16),1)cls()
::_::srand(s)
for i=0,2,.001do
x=c(i)*c(i)*r(96)+16
y=c(i)*e(i)*r(96)+64
?chr(rnd(9)+16),x,y,r(5)
if(r()>.9)circ(0,0,r(64),0)
end
if(r()>.2)sspr(0,0,128,128,-4+r(8),-4+r(8),122+r(9),122+r(9))
if(t()*9\1%r({32,64})==0)s+=1
if(btnp(❎))extcmd("screen")flip()
if(btnp(🅾️))extcmd("video")flip()
goto _
```