summaryrefslogtreecommitdiff |
diff options
Diffstat (limited to 'include/tacticians/conditions.hrl')
-rw-r--r-- | include/tacticians/conditions.hrl | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/include/tacticians/conditions.hrl b/include/tacticians/conditions.hrl new file mode 100644 index 0000000..be0f98e --- /dev/null +++ b/include/tacticians/conditions.hrl @@ -0,0 +1,26 @@ +-define(CONDITION_TRIGGER_START_OF_OWN_ATTACK, soowa). +-define(CONDITION_TRIGGER_START_OF_OTHER_ATTACK, soota). + +-define(CONDITION_TRIGGER_END_OF_OWN_ATTACK, eoowa). +-define(CONDITION_TRIGGER_END_OF_OTHER_ATTACK, eoota). + +-define(CONDITION_TRIGGER_COMPUTED_OWN_ATTACK_DAMAGE, cowad). +-define(CONDITION_TRIGGER_COMPUTER_OTHER_ATTACK_DAMAGE, cotad). + +-define(CONDITION_TRIGGER_END_OF_OWN_HIT, eoowh). +-define(CONDITION_TRIGGER_END_OF_OTHER_HIT, eooth). + +-define(CONDITION_TRIGGER_ROLLED_FOR_OWN_CRITICAL_HITS, rfowch). +-define(CONDITION_TRIGGER_ROLLED_FOR_OTHER_CRITICAL_HITS, rfotch). + +-define(CONDITION_TRIGGER_ROLLED_FOR_OWN_PRECISION, rfowpr). +-define(CONDITION_TRIGGER_ROLLED_FOR_OTHER_PRECISION, rfotpr). + +-define(CONDITION_TRIGGER_ROLLED_FOR_OWN_PARRY, rfowpa). +-define(CONDITION_TRIGGER_ROLLED_FOR_OTHER_PARRY, rfotpa). + +-define(CONDITION_TRIGGER_ROLLED_FOR_OWN_DOUBLE_HITS, rfowdh). +-define(CONDITION_TRIGGER_ROLLED_FOR_OTHER_DOUBLE_HITS, rfotdh). + +-define(CONDITION_TRIGGER_DEFINED_ACTORS_FOR_OWN_HIT, dafowh). +-define(CONDITION_TRIGGER_DEFINED_ACTORS_FOR_OTHER_HIT, dafoth). |