From dc39569dece84ddc30b80e7f233c584aa03b1ad3 Mon Sep 17 00:00:00 2001
From: quenousimporte <quenousimporte@riseup.net>
Date: Wed, 19 Mar 2025 21:48:10 +0100
Subject: [PATCH] add pico

---
 rpg.p8 | 34 ++++++++++++++++++++++++++++++++++
 1 file changed, 34 insertions(+)
 create mode 100644 rpg.p8

diff --git a/rpg.p8 b/rpg.p8
new file mode 100644
index 0000000..55617b4
--- /dev/null
+++ b/rpg.p8
@@ -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