jrpg/rpg.p8

35 lines
1.1 KiB
Lua

pico-8 cartridge // http://www.pico-8.com
version 42
__lua__
function _init()
cls()
print("pour vous inscrire aux epreuves", 8)
print("galactiques, tapez votre nom:", 8)
end
function _draw()
i = 0
while i < 26 do
s = chr(97 + i)
x = i*6
y = 14
if i > 13 then
x = x - (13 * 6)
y = 22
end
print(s,x,y,9)
i = i + 1
end
end
__gfx__
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
00700700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
00077000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
00077000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
00700700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000