aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/PewterPokecenter2.asm
diff options
context:
space:
mode:
authordannye <33dannye@gmail.com>2023-11-20 00:33:27 -0600
committerdannye <33dannye@gmail.com>2023-11-20 20:23:27 -0600
commit298e99d3776580585c3f434e5d93137ae431bdd3 (patch)
treea808c4ffd0fd0f9bd28972bae5236e0d3345c8e5 /scripts/PewterPokecenter2.asm
parentAdd sound bits documentation for wOptions (#110) (diff)
parentName 2 unnamed labels I missed in SeafoamIslandsB4F and PokemonMansion3F (#437) (diff)
downloadpokeyellow-298e99d3776580585c3f434e5d93137ae431bdd3.tar.gz
pokeyellow-298e99d3776580585c3f434e5d93137ae431bdd3.tar.xz
pokeyellow-298e99d3776580585c3f434e5d93137ae431bdd3.zip
Merge branch 'master' of https://github.com/pret/pokered
Diffstat (limited to 'scripts/PewterPokecenter2.asm')
-rw-r--r--scripts/PewterPokecenter2.asm79
1 files changed, 0 insertions, 79 deletions
diff --git a/scripts/PewterPokecenter2.asm b/scripts/PewterPokecenter2.asm
deleted file mode 100644
index dd80e901..00000000
--- a/scripts/PewterPokecenter2.asm
+++ /dev/null
@@ -1,79 +0,0 @@
-Func_f1d98::
- ld hl, PewterPokecenterText_f1d9f
- call PrintText
- ret
-
-PewterPokecenterText_f1d9f:
- text_far _PewterPokecenterText3
- text_end
-
-PewterJigglypuff::
- ld a, TRUE
- ld [wDoNotWaitForButtonPressAfterDisplayingText], a
- ld hl, .JigglypuffText
- call PrintText
-
- call StopAllMusic
- ld c, 32
- call DelayFrames
-
- ld hl, JigglypuffFacingDirections
- ld de, wJigglypuffFacingDirections
- ld bc, JigglypuffFacingDirectionsEnd - JigglypuffFacingDirections
- call CopyData
-
- ld a, [wSprite03StateData1ImageIndex]
- ld hl, wJigglypuffFacingDirections
-.findMatchingFacingDirectionLoop
- cp [hl]
- inc hl
- jr nz, .findMatchingFacingDirectionLoop
- dec hl
-
- push hl
- ld c, BANK(Music_JigglypuffSong)
- ld a, MUSIC_JIGGLYPUFF_SONG
- call PlayMusic
- pop hl
-
-.spinMovementLoop
- ld a, [hl]
- ld [wSprite03StateData1ImageIndex], a
-; rotate the array
- push hl
- ld hl, wJigglypuffFacingDirections
- ld de, wJigglypuffFacingDirections - 1
- ld bc, JigglypuffFacingDirectionsEnd - JigglypuffFacingDirections
- call CopyData
- ld a, [wJigglypuffFacingDirections - 1]
- ld [wJigglypuffFacingDirections + 3], a
- pop hl
- ld c, 24
- call DelayFrames
- ld a, [wChannelSoundIDs]
- ld b, a
- ld a, [wChannelSoundIDs + CHAN2]
- or b
- jr nz, .spinMovementLoop
-
- ld c, 48
- call DelayFrames
- call PlayDefaultMusic
- ld a, [wd472]
- bit 7, a
- ret z
- callfar CheckPikachuFaintedOrStatused
- ret c
- call DisablePikachuFollowingPlayer
- ret
-
-.JigglypuffText:
- text_far _PewterJigglypuffText
- text_end
-
-JigglypuffFacingDirections:
- db $40 | SPRITE_FACING_DOWN
- db $40 | SPRITE_FACING_LEFT
- db $40 | SPRITE_FACING_UP
- db $40 | SPRITE_FACING_RIGHT
-JigglypuffFacingDirectionsEnd: