diff options
| author | Rangi <35663410+Rangi42@users.noreply.github.com> | 2020-07-06 13:47:59 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-07-06 13:47:59 -0400 |
| commit | c480632d5494d04f7f5f0298a31877a2293b564e (patch) | |
| tree | 02483fc07e60d64a4b526ce8b402f26960ad33b2 /data/moves/moves.asm | |
| parent | Merge pull request #261 from Rangi42/master (diff) | |
| parent | text_linkpromptbutton -> text_waitbutton (diff) | |
| download | pokeyellow-c480632d5494d04f7f5f0298a31877a2293b564e.tar.gz pokeyellow-c480632d5494d04f7f5f0298a31877a2293b564e.tar.xz pokeyellow-c480632d5494d04f7f5f0298a31877a2293b564e.zip | |
Merge pull request #262 from Rangi42/master
Miscellaneous
Diffstat (limited to 'data/moves/moves.asm')
| -rwxr-xr-x | data/moves/moves.asm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/data/moves/moves.asm b/data/moves/moves.asm index 44859681..183243e9 100755 --- a/data/moves/moves.asm +++ b/data/moves/moves.asm @@ -1,14 +1,14 @@ Moves: ; Characteristics of each move. -move: macro +move: MACRO db \1 ; animation (interchangeable with move id) db \2 ; effect db \3 ; power db \4 ; type db \5 percent ; accuracy db \6 ; pp -endm +ENDM move POUND, NO_ADDITIONAL_EFFECT, 40, NORMAL, 100, 35 MoveEnd: |
