summaryrefslogtreecommitdiff
path: root/map.lua
diff options
context:
space:
mode:
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