diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2018-07-23 11:56:57 -0400 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2018-07-23 11:56:57 -0400 |
commit | 8f019b41c74c90687da89176337d5d45e1d4b39f (patch) | |
tree | 0e3015deb7769e40b5b1e1560ef1b308b445a019 | |
parent | a8ab4b97085ac2e68282a1db225222deb737bfae (diff) |
PR #544
-rw-r--r-- | Remove-Pokémon-sprite-animations.md | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/Remove-Pokémon-sprite-animations.md b/Remove-Pokémon-sprite-animations.md index 2d09250..ae030a0 100644 --- a/Remove-Pokémon-sprite-animations.md +++ b/Remove-Pokémon-sprite-animations.md @@ -104,6 +104,7 @@ Edit [wram.asm](../blob/master/wram.asm): ```diff -; PokeAnim data +-wPokeAnimStruct:: -wPokeAnimSceneIndex:: db -... -wPokeAnimStructEnd:: @@ -179,7 +180,7 @@ PokeAnims: dw .Trade dw .Evolve dw .Hatch - dw .Unused ; same as .Menu + dw .HOF dw .Egg1 dw .Egg2 @@ -189,7 +190,7 @@ PokeAnims: .Trade: pokeanim Idle, Play2, Idle, Play, SetWait, Wait, Cry, Setup, Play .Evolve: pokeanim Idle, Play, SetWait, Wait, CryNoWait, Setup, Play .Hatch: pokeanim Idle, Play, CryNoWait, Setup, Play, SetWait, Wait, Idle, Play -.Unused: pokeanim CryNoWait, Setup, Play, SetWait, Wait, Idle, Play +.HOF: pokeanim CryNoWait, Setup, Play, SetWait, Wait, Idle, Play .Egg1: pokeanim Setup, Play .Egg2: pokeanim Idle, Play ``` @@ -297,7 +298,7 @@ BattleStartMessage: - jr .skip_cry ; cry is played during the animation - -.cry_no_anim - ld a, $0f + ld a, $f ld [wCryTracks], a ld a, [wTempEnemyMonSpecies] call PlayStereoCry @@ -321,7 +322,7 @@ Edit [engine/events/halloffame.asm](../blob/master/engine/events/halloffame.asm) call PlaceString call WaitBGMap - decoord 6, 5 -- ld c, $6 +- ld c, ANIM_MON_HOF - predef HOF_AnimateFrontpic - ld c, 60 + call HOF_PlayCry @@ -343,7 +344,7 @@ Edit [engine/events/halloffame.asm](../blob/master/engine/events/halloffame.asm) call GetSGBLayout call SetPalettes - decoord 6, 5 -- ld c, $6 +- ld c, ANIM_MON_HOF - predef HOF_AnimateFrontpic + call HOF_PlayCry and a |