diff options
author | Aki <please@ignore.pl> | 2024-11-07 17:43:41 +0100 |
---|---|---|
committer | Aki <please@ignore.pl> | 2024-11-07 17:43:41 +0100 |
commit | 7a57438f8f6d30a8fe490e87f6f24c70847d2530 (patch) | |
tree | 33c671fd6bf73d8861c83d66f62b682e34709606 | |
parent | 81577897fb7f2ca661ce7f37c9c929367c428a31 (diff) | |
download | noita-eyes-7a57438f8f6d30a8fe490e87f6f24c70847d2530.zip noita-eyes-7a57438f8f6d30a8fe490e87f6f24c70847d2530.tar.gz noita-eyes-7a57438f8f6d30a8fe490e87f6f24c70847d2530.tar.bz2 |
Added message with only used trigrams
-rw-r--r-- | eyes/init.lua | 1 | ||||
-rw-r--r-- | eyes/used.lua | 85 |
2 files changed, 86 insertions, 0 deletions
diff --git a/eyes/init.lua b/eyes/init.lua index 062db8f..dd99bed 100644 --- a/eyes/init.lua +++ b/eyes/init.lua @@ -19,4 +19,5 @@ return { west4 = require "eyes.west4", permutations = require "eyes.permutations", random = require "eyes.random", + used = require "eyes.used", } diff --git a/eyes/used.lua b/eyes/used.lua new file mode 100644 index 0000000..59ffed7 --- /dev/null +++ b/eyes/used.lua @@ -0,0 +1,85 @@ +return { + 0, 0, 0, + 0, 0, 1, + 0, 0, 2, + 0, 0, 3, + 0, 0, 4, + 0, 1, 0, + 0, 1, 1, + 0, 1, 2, + 0, 1, 3, + 0, 1, 4, + 0, 2, 0, + 0, 2, 1, + 0, 2, 2, + 0, 2, 3, + 0, 2, 4, + 0, 3, 0, + 0, 3, 1, + 0, 3, 2, + 0, 3, 3, + 0, 3, 4, + 0, 4, 0, + 0, 4, 1, + 0, 4, 2, + 0, 4, 3, + 0, 4, 4, + 1, 0, 0, + 1, 0, 1, + 1, 0, 2, + 1, 0, 3, + 1, 0, 4, + 1, 1, 0, + 1, 1, 1, + 1, 1, 2, + 1, 1, 3, + 1, 1, 4, + 1, 2, 0, + 1, 2, 1, + 1, 2, 2, + 1, 2, 3, + 1, 2, 4, + 1, 3, 0, + 1, 3, 1, + 1, 3, 2, + 1, 3, 3, + 1, 3, 4, + 1, 4, 0, + 1, 4, 1, + 1, 4, 2, + 1, 4, 3, + 1, 4, 4, + 2, 0, 0, + 2, 0, 1, + 2, 0, 2, + 2, 0, 3, + 2, 0, 4, + 2, 1, 0, + 2, 1, 1, + 2, 1, 2, + 2, 1, 3, + 2, 1, 4, + 2, 2, 0, + 2, 2, 1, + 2, 2, 2, + 2, 2, 3, + 2, 2, 4, + 2, 3, 0, + 2, 3, 1, + 2, 3, 2, + 2, 3, 3, + 2, 3, 4, + 2, 4, 0, + 2, 4, 1, + 2, 4, 2, + 2, 4, 3, + 2, 4, 4, + 3, 0, 0, + 3, 0, 1, + 3, 0, 2, + 3, 0, 3, + 3, 0, 4, + 3, 1, 0, + 3, 1, 1, + 3, 1, 2, +} |