summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornsensfel <SpamShield0@noot-noot.org>2019-10-16 11:08:21 +0200
committernsensfel <SpamShield0@noot-noot.org>2019-10-16 11:08:21 +0200
commit7c9fdca6dee0ba9953427fe8ade2f7f395686322 (patch)
tree1a3905b93eb04757c76aefad544c3f26bc0db83b /include/tacticians
parent86ea246c49cf2975c1240ee9390fed744b185e72 (diff)
Add condition checks on movement.
Diffstat (limited to 'include/tacticians')
-rw-r--r--include/tacticians/conditions.hrl18
1 files changed, 18 insertions, 0 deletions
diff --git a/include/tacticians/conditions.hrl b/include/tacticians/conditions.hrl
index 8af2033..cc27972 100644
--- a/include/tacticians/conditions.hrl
+++ b/include/tacticians/conditions.hrl
@@ -41,3 +41,21 @@
-define(CONDITION_TRIGGER_PLAYER_DEFEAT, pd).
-define(CONDITION_TRIGGER_A_CHARACTER_HAS_DIED, achd).
+
+-define(CONDITION_TRIGGER_ABOUT_TO_MOVE, atm).
+-define(CONDITION_TRIGGER_A_CHARACTER_IS_ABOUT_TO_MOVE, aciatm).
+
+-define(CONDITION_TRIGGER_HAS_MOVED, hm).
+-define(CONDITION_TRIGGER_A_CHARACTER_HAS_MOVED, achm).
+
+-define(CONDITION_TRIGGER_ABOUT_TO_SWITCH_WEAPONS, atsw).
+-define(CONDITION_TRIGGER_A_CHARACTER_IS_ABOUT_TO_SWITCH_WEAPONS, aciatsw).
+
+-define(CONDITION_TRIGGER_HAS_SWITCHED_WEAPONS, hsw).
+-define(CONDITION_TRIGGER_A_CHARACTER_HAS_SWITCHED_WEAPONS, achsw).
+
+-define(CONDITION_TRIGGER_ABOUT_TO_CAST_SKILL, atcs).
+-define(CONDITION_TRIGGER_A_CHARACTER_IS_ABOUT_TO_CAST_SKILL, aciatcs).
+
+-define(CONDITION_TRIGGER_HAS_CAST_SKILL, hcs).
+-define(CONDITION_TRIGGER_A_CHARACTER_HAS_CAST_SKILL, achcs).