diff options
| author | Rangi <remy.oukaour+rangi42@gmail.com> | 2022-08-10 21:20:31 -0400 |
|---|---|---|
| committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2022-08-10 21:20:31 -0400 |
| commit | 1e689606a3e25875af72323ea0f45b06ed044b79 (patch) | |
| tree | 33b035767fddb0d8cd29ddc874a2cd35473f42aa /data/moves | |
| parent | Clarify how Metronome picks a move (diff) | |
| download | pokeyellow-1e689606a3e25875af72323ea0f45b06ed044b79.tar.gz pokeyellow-1e689606a3e25875af72323ea0f45b06ed044b79.tar.xz pokeyellow-1e689606a3e25875af72323ea0f45b06ed044b79.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: |
