This commit is contained in:
quenousimporte 2025-03-19 21:48:10 +01:00
parent 7a4d9072df
commit dc39569dec
1 changed files with 34 additions and 0 deletions

34
rpg.p8 Normal file
View File

@ -0,0 +1,34 @@
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