summaryrefslogtreecommitdiff
path: root/lib/constants.fnl
diff options
context:
space:
mode:
Diffstat (limited to 'lib/constants.fnl')
-rw-r--r--lib/constants.fnl14
1 files changed, 14 insertions, 0 deletions
diff --git a/lib/constants.fnl b/lib/constants.fnl
index c88b279..be9a6be 100644
--- a/lib/constants.fnl
+++ b/lib/constants.fnl
@@ -84,8 +84,22 @@
"G x-----x-----x" ;; 22 23 24
])
+
+;; there are three phases of play:
+;; placing, moving, and flying.
+;; (plus one for capturing)
+;; (plus one for game-over)
+(local stages {
+ :placing 1 ;; placing the cows
+ :moving 2 ;; moving the cows
+ :flying 3 ;; flying the cows
+ :capture 4 ;; capture a cow (we do not shoot cows)
+ :complete 5 ;; no more cows! jk the cows are fine. the game's just over okay
+})
+
{: board
: mills
: neighbors
+ : stages
: spaces}