summaryrefslogtreecommitdiff
path: root/constants
diff options
context:
space:
mode:
authorRangi <remy.oukaour+rangi42@gmail.com>2020-07-05 15:09:12 -0400
committerRangi <remy.oukaour+rangi42@gmail.com>2020-07-05 15:12:53 -0400
commit7eef66af3f53ba9ed758af7a3c6f2e636ff4a55f (patch)
tree2d8a39f11dedd9547b225cc6829eff5b17ca9940 /constants
parentf5ac9b0eb7773a9d05108b1ee6e41140d53020cd (diff)
Use MAX_NEUTRAL_DAMAGE in BattleCommand_DamageCalc
Also make .gitignore consistent with pokered
Diffstat (limited to 'constants')
-rw-r--r--constants/battle_constants.asm3
1 files changed, 2 insertions, 1 deletions
diff --git a/constants/battle_constants.asm b/constants/battle_constants.asm
index 7e444059d..244d52a3e 100644
--- a/constants/battle_constants.asm
+++ b/constants/battle_constants.asm
@@ -10,8 +10,9 @@ NUM_MOVES EQU 4
BASE_STAT_LEVEL EQU 7
MAX_STAT_LEVEL EQU 13
-; minimum damage before type effectiveness
+; damage limits before type effectiveness
MIN_NEUTRAL_DAMAGE EQU 2
+MAX_NEUTRAL_DAMAGE EQU 999
; turns that sleep lasts
REST_SLEEP_TURNS EQU 2