diff options
-rw-r--r-- | disk/eyes1.lua | 6 | ||||
-rw-r--r-- | disk/eyes2.lua | 6 | ||||
-rw-r--r-- | disk/eyes3.lua | 6 | ||||
-rw-r--r-- | disk/runes1.lua | 6 | ||||
-rw-r--r-- | disk/runes2.lua | 10 |
5 files changed, 34 insertions, 0 deletions
diff --git a/disk/eyes1.lua b/disk/eyes1.lua new file mode 100644 index 0000000..40eda9a --- /dev/null +++ b/disk/eyes1.lua @@ -0,0 +1,6 @@ +return { + 0, 1, 1, 1, -- Quarters, beginning-inclusive starting at the top. + 0, 1, 1, 1, 1, + 0, 1, 1, 1, + 0, 1, 1, 1, +} diff --git a/disk/eyes2.lua b/disk/eyes2.lua new file mode 100644 index 0000000..b07f5ef --- /dev/null +++ b/disk/eyes2.lua @@ -0,0 +1,6 @@ +return { + 1, 0, 1, 0, 1, -- Quarters, beginning-inclusive starting at the top. + 0, 1, 0, 1, 0, + 1, 0, 1, 0, 1, + 0, 1, 0, 1, 0, +} diff --git a/disk/eyes3.lua b/disk/eyes3.lua new file mode 100644 index 0000000..cdac848 --- /dev/null +++ b/disk/eyes3.lua @@ -0,0 +1,6 @@ +return { + 0, 0, 0, 0, 0, 0, -- Quarters, beginning-inclusive starting at the top. + 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, +} diff --git a/disk/runes1.lua b/disk/runes1.lua new file mode 100644 index 0000000..80768e9 --- /dev/null +++ b/disk/runes1.lua @@ -0,0 +1,6 @@ +return { + "M", "A", "G", "I", "C", "K", + "M", "A", "G", "I", "C", "K", + "M", "A", "G", "I", "C", "K", + "M", "A", "G", "I", "C", "K", +} diff --git a/disk/runes2.lua b/disk/runes2.lua new file mode 100644 index 0000000..03eb12b --- /dev/null +++ b/disk/runes2.lua @@ -0,0 +1,10 @@ +return { + "K", + "M", "G", "I", "C", "K", + "M", "G", "I", "C", "K", + "M", "G", "I", "C", "K", + "M", "G", "I", "C", "K", + "M", "G", "I", "C", "K", + "M", "G", "I", "C", "K", + "M", +} |