diff options
| author | Rangi <remy.oukaour+rangi42@gmail.com> | 2022-08-10 21:20:38 -0400 |
|---|---|---|
| committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2022-08-10 21:20:38 -0400 |
| commit | d953bd3566cb687c25f76d35d80d2a3d2d78498d (patch) | |
| tree | 37c7432465af1bcd2290949fba788047c084a9f4 /data/moves | |
| parent | Fix some whitespace (diff) | |
| download | pokeyellow-d953bd3566cb687c25f76d35d80d2a3d2d78498d.tar.gz pokeyellow-d953bd3566cb687c25f76d35d80d2a3d2d78498d.tar.xz pokeyellow-d953bd3566cb687c25f76d35d80d2a3d2d78498d.zip | |
PP must be 40 or less
Diffstat (limited to 'data/moves')
| -rw-r--r-- | data/moves/moves.asm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/data/moves/moves.asm b/data/moves/moves.asm index b7e5e7af..c32a89cb 100644 --- a/data/moves/moves.asm +++ b/data/moves/moves.asm @@ -5,6 +5,7 @@ MACRO move db \4 ; type db \5 percent ; accuracy db \6 ; pp + assert \6 <= 40, "PP must be 40 or less" ENDM Moves: |
