diff options
author | Aki <please@ignore.pl> | 2024-11-08 22:56:21 +0100 |
---|---|---|
committer | Aki <please@ignore.pl> | 2024-11-08 22:56:21 +0100 |
commit | 49e0da44f1df264f6e27c6b454fd3dc9d91742aa (patch) | |
tree | 9dd1a6338e24a833ec8ec0baa41dc38f231e3182 /eyes/all.lua | |
parent | c0034691d11cd8cab3d0df3d1ebd8c12a7681f01 (diff) | |
download | noita-eyes-49e0da44f1df264f6e27c6b454fd3dc9d91742aa.zip noita-eyes-49e0da44f1df264f6e27c6b454fd3dc9d91742aa.tar.gz noita-eyes-49e0da44f1df264f6e27c6b454fd3dc9d91742aa.tar.bz2 |
Renamed to "all" due to surprising translation problem
It seems that me quickly looking for translation made me mistakenly name
this "permutations" (permutacje) instead of "wariacje z powtórzeniami"
whic would likely translate as variations with repetitions, but first
results in Google were infuriatingly trying to convince me that I was
mistaken about permutations being n!
Factorial nicely ends that paragraph so let's leave it at that.
Diffstat (limited to 'eyes/all.lua')
-rw-r--r-- | eyes/all.lua | 127 |
1 files changed, 127 insertions, 0 deletions
diff --git a/eyes/all.lua b/eyes/all.lua new file mode 100644 index 0000000..50b0d43 --- /dev/null +++ b/eyes/all.lua @@ -0,0 +1,127 @@ +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, + 3, 1, 3, + 3, 1, 4, + 3, 2, 0, + 3, 2, 1, + 3, 2, 2, + 3, 2, 3, + 3, 2, 4, + 3, 3, 0, + 3, 3, 1, + 3, 3, 2, + 3, 3, 3, + 3, 3, 4, + 3, 4, 0, + 3, 4, 1, + 3, 4, 2, + 3, 4, 3, + 3, 4, 4, + 4, 0, 0, + 4, 0, 1, + 4, 0, 2, + 4, 0, 3, + 4, 0, 4, + 4, 1, 0, + 4, 1, 1, + 4, 1, 2, + 4, 1, 3, + 4, 1, 4, + 4, 2, 0, + 4, 2, 1, + 4, 2, 2, + 4, 2, 3, + 4, 2, 4, + 4, 3, 0, + 4, 3, 1, + 4, 3, 2, + 4, 3, 3, + 4, 3, 4, + 4, 4, 0, + 4, 4, 1, + 4, 4, 2, + 4, 4, 3, + 4, 4, 4, +} |