aboutsummaryrefslogtreecommitdiffstats
path: root/engine/events/hidden_objects/museum_fossils.asm
diff options
context:
space:
mode:
authorRangi <35663410+Rangi42@users.noreply.github.com>2026-01-07 22:05:37 -0500
committerGitHub <noreply@github.com>2026-01-07 22:05:37 -0500
commit0e49aef88ef94b9d3e80d89e4eb718e9425045df (patch)
treec63433287b9e2aceda14ff977cc06875cd0735d3 /engine/events/hidden_objects/museum_fossils.asm
parentUse macros to enforce "missable/hide/show object" constraints, and rename the... (diff)
downloadpokeyellow-0e49aef88ef94b9d3e80d89e4eb718e9425045df.tar.gz
pokeyellow-0e49aef88ef94b9d3e80d89e4eb718e9425045df.tar.xz
pokeyellow-0e49aef88ef94b9d3e80d89e4eb718e9425045df.zip
Use macros to enforce "hidden object" constraints, and rename them to "hidden events" (#559)
Diffstat (limited to 'engine/events/hidden_objects/museum_fossils.asm')
-rw-r--r--engine/events/hidden_objects/museum_fossils.asm51
1 files changed, 0 insertions, 51 deletions
diff --git a/engine/events/hidden_objects/museum_fossils.asm b/engine/events/hidden_objects/museum_fossils.asm
deleted file mode 100644
index df74293f..00000000
--- a/engine/events/hidden_objects/museum_fossils.asm
+++ /dev/null
@@ -1,51 +0,0 @@
-AerodactylFossil:
- ld a, FOSSIL_AERODACTYL
- ld [wCurPartySpecies], a
- call DisplayMonFrontSpriteInBox
- call EnableAutoTextBoxDrawing
- tx_pre AerodactylFossilText
- ret
-
-AerodactylFossilText::
- text_far _AerodactylFossilText
- text_end
-
-KabutopsFossil:
- ld a, FOSSIL_KABUTOPS
- ld [wCurPartySpecies], a
- call DisplayMonFrontSpriteInBox
- call EnableAutoTextBoxDrawing
- tx_pre KabutopsFossilText
- ret
-
-KabutopsFossilText::
- text_far _KabutopsFossilText
- text_end
-
-DisplayMonFrontSpriteInBox:
-; Displays a pokemon's front sprite in a pop-up window.
- ld a, 1
- ldh [hAutoBGTransferEnabled], a
- call Delay3
- xor a
- ldh [hWY], a
- call SaveScreenTilesToBuffer1
- ld a, MON_SPRITE_POPUP
- ld [wTextBoxID], a
- call DisplayTextBoxID
- call UpdateSprites
- ld a, [wCurPartySpecies]
- ld [wCurSpecies], a
- call GetMonHeader
- ld de, vChars1 tile $31
- call LoadMonFrontSprite
- ld a, $80
- ldh [hStartTileID], a
- hlcoord 10, 11
- predef AnimateSendingOutMon
- call WaitForTextScrollButtonPress
- call LoadScreenTilesFromBuffer1
- call Delay3
- ld a, $90
- ldh [hWY], a
- ret