summaryrefslogtreecommitdiff
path: root/map.lua
diff options
context:
space:
mode:
authorElizabeth Alexander Hunt <me@liz.coffee>2026-05-16 08:10:20 -0700
committerElizabeth Alexander Hunt <me@liz.coffee>2026-05-16 08:10:20 -0700
commit7d415c4958f584c031922ed77a3559d15bf2dc1b (patch)
tree1957ccc8a42de22778b639352b38d9091a4adf4d /map.lua
parent8cd9ec2e98d27b414bc7cff3a5a98b0aad9099ce (diff)
downloaddyl8-7d415c4958f584c031922ed77a3559d15bf2dc1b.tar.gz
dyl8-7d415c4958f584c031922ed77a3559d15bf2dc1b.zip
Snapshot
Diffstat (limited to 'map.lua')
-rw-r--r--map.lua24
1 files changed, 24 insertions, 0 deletions
diff --git a/map.lua b/map.lua
new file mode 100644
index 0000000..87cb5f3
--- /dev/null
+++ b/map.lua
@@ -0,0 +1,24 @@
+_t = {
+ H = { name = "home", color = 11 },
+ C = { name = "current", color = 7, blink = true },
+ K = { name = "visited", color = 6 },
+ M = { name = "mystery", color = 2 },
+ R = { name = "restock", color = 9 },
+ E = { name = "empty", color = 0 }
+}
+
+RealMap = {
+ { _t.E, _t.E, _t.E, _t.E, _t.E },
+ { _t.E, _t.E, _t.E, _t.E, _t.E },
+ { _t.R, _t.E, _t.H, _t.E, _t.E },
+ { _t.E, _t.E, _t.E, _t.E, _t.E },
+ { _t.E, _t.E, _t.E, _t.E, _t.E }
+}
+
+DisplayMap = {
+ { _t.E, _t.E, _t.E, _t.E, _t.E },
+ { _t.E, _t.E, _t.E, _t.E, _t.E },
+ { _t.E, _t.E, _t.H, _t.E, _t.E },
+ { _t.E, _t.E, _t.E, _t.E, _t.E },
+ { _t.E, _t.E, _t.E, _t.E, _t.E }
+} \ No newline at end of file