diff options
author | Rangi <remy.oukaour+rangi@gmail.com> | 2020-09-22 12:57:02 -0400 |
---|---|---|
committer | Rangi <remy.oukaour+rangi@gmail.com> | 2020-09-22 12:57:02 -0400 |
commit | 3b4ea37c363b70ea1683059329879466dec4a094 (patch) | |
tree | 430b2260d025fc28880ce3f76882d97dcd50507d /data | |
parent | 268e2cae0b98779cfb0c590ab9612151c752e868 (diff) |
Replace enum with const, and update many constants to be more like pokegold
Diffstat (limited to 'data')
-rw-r--r-- | data/pokemon/base_stats.asm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/data/pokemon/base_stats.asm b/data/pokemon/base_stats.asm index 2042c7b..c28f1c7 100644 --- a/data/pokemon/base_stats.asm +++ b/data/pokemon/base_stats.asm @@ -8,7 +8,7 @@ tms1 = 0 ; TM01-TM24 (24) tms2 = 0 ; TM25-TM48 (24) tms3 = 0 ; TM49-TM50 + HM01-HM07 (9) rept _NARG - if 0 < \1 && \1 <= (NUM_TMS_HMS + 7) / 8 * 8 + if 0 < \1 && \1 <= (NUM_TM_HM + 7) / 8 * 8 if \1 < 24 + 1 tms1 = tms1 | (1 << ((\1) - 1)) elif \1 < 48 + 1 |