Still got a way to go. Code so far:
function _init()
f=1
timer=0
runframes={0,4,7,10,13}
end
function _update()
timer+=1
if timer%4==0 then
f+=1
if f > #runframes then
f=1
end
end
end
function _draw()
cls()
spr(runframes[f],50,50,3,4)
end
#pico8#totoro