From 3c5552b49910b3e18a650837887eaf168d8d5368 Mon Sep 17 00:00:00 2001
From: Malin Freeborn <malinfreeborn@posteo.net>
Date: Thu, 26 Jan 2023 18:06:21 +0100
Subject: [PATCH] add seasons detector

---
 bind.sty    |  1 +
 seasons.sty | 62 +++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 63 insertions(+)
 create mode 100644 seasons.sty

diff --git a/bind.sty b/bind.sty
index 5878bbd7..89c5135e 100644
--- a/bind.sty
+++ b/bind.sty
@@ -1,5 +1,6 @@
 \RequirePackage{config/layout}
 \input{config/glossary.tex}
+\RequirePackage{config/seasons}
 \RequirePackage{config/loot}
 \RequirePackage{config/arms}
 \RequirePackage{config/stats}
diff --git a/seasons.sty b/seasons.sty
new file mode 100644
index 00000000..f4934ec3
--- /dev/null
+++ b/seasons.sty
@@ -0,0 +1,62 @@
+\newcounter{temperature}
+
+\ifnum\month=1
+  \newcommand\season{Qualmea}
+  \newcommand\seasonDesc{\ifodd\thepage sharp\else fierce\fi}
+  \setcounter{temperature}{1}
+\fi
+\ifnum\month=2
+  \newcommand\season{Atya}
+  \newcommand\seasonDesc{\ifodd\thepage calm\else pleasant\fi}
+  \setcounter{temperature}{2}
+\fi
+\ifnum\month=3
+  \newcommand\season{Alassea}
+  \newcommand\seasonDesc{\ifodd\thepage frigid\else chilling\fi}
+  \setcounter{temperature}{0}
+\fi
+\ifnum\month=4
+  \newcommand\season{Cantea}
+  \newcommand\seasonDesc{\ifodd\thepage calm\else pleasant\fi}
+  \setcounter{temperature}{2}
+\fi
+\ifnum\month=5
+  \newcommand\season{C\'alea}
+  \newcommand\seasonDesc{\ifodd\thepage humid\else warm\fi}
+  \setcounter{temperature}{3}
+\fi
+\ifnum\month=6
+  \newcommand\season{V\'erea}
+  \newcommand\seasonDesc{\ifodd\thepage calm\else pleasant\fi}
+  \setcounter{temperature}{2}
+\fi
+\ifnum\month=7
+  \newcommand\season{Otsea}
+  \newcommand\seasonDesc{\ifodd\thepage sharp\else fierce\fi}
+  \setcounter{temperature}{1}
+\fi
+\ifnum\month=8
+  \newcommand\season{Toldea}
+  \newcommand\seasonDesc{\ifodd\thepage calm\else pleasant\fi}
+  \setcounter{temperature}{2}
+\fi
+\ifnum\month=9
+  \newcommand\season{Laiquea}
+  \newcommand\seasonDesc{\ifodd\thepage humid\else warm\fi}
+  \setcounter{temperature}{3}
+\fi
+\ifnum\month=10
+  \newcommand\season{Quainea}
+  \newcommand\seasonDesc{\ifodd\thepage calm\else pleasant\fi}
+  \setcounter{temperature}{2}
+\fi
+\ifnum\month=11
+  \newcommand\season{Minquesta}
+  \newcommand\seasonDesc{\ifodd\thepage frigid\else chilling\fi}
+  \setcounter{temperature}{0}
+\fi
+\ifnum\month=12
+  \newcommand\season{Ohta}
+  \newcommand\seasonDesc{\ifodd\thepage calm\else pleasant\fi}
+  \setcounter{temperature}{2}
+\fi
-- 
GitLab