diff options
author | Aki <please@ignore.pl> | 2024-11-02 01:43:49 +0100 |
---|---|---|
committer | Aki <please@ignore.pl> | 2024-11-02 02:40:40 +0100 |
commit | f87fb2cb7b044a73284c75dfcd06f25e068df8e1 (patch) | |
tree | 8590ffa395097a20c45ccc9dc4cd370cfb98fbc3 | |
parent | 876eb1f673416e1d1f05e918b1eb8f6116f6a01d (diff) | |
download | noita-eyes-f87fb2cb7b044a73284c75dfcd06f25e068df8e1.zip noita-eyes-f87fb2cb7b044a73284c75dfcd06f25e068df8e1.tar.gz noita-eyes-f87fb2cb7b044a73284c75dfcd06f25e068df8e1.tar.bz2 |
Added work/eq disk data
-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", +} |