Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
pret
GitHub Repository: pret/pokered
Path: blob/master/scripts/CeladonMansionRoofHouse.asm
1270 views
1
CeladonMansionRoofHouse_Script:
2
jp EnableAutoTextBoxDrawing
3
4
CeladonMansionRoofHouse_TextPointers:
5
def_text_pointers
6
dw_const CeladonMansionRoofHouseHikerText, TEXT_CELADONMANSION_ROOF_HOUSE_HIKER
7
dw_const CeladonMansionRoofHouseEeveePokeballText, TEXT_CELADONMANSION_ROOF_HOUSE_EEVEE_POKEBALL
8
9
CeladonMansionRoofHouseHikerText:
10
text_far _CeladonMansionRoofHouseHikerText
11
text_end
12
13
CeladonMansionRoofHouseEeveePokeballText:
14
text_asm
15
lb bc, EEVEE, 25
16
call GivePokemon
17
jr nc, .party_full
18
ld a, HS_CELADON_MANSION_EEVEE_GIFT
19
ld [wMissableObjectIndex], a
20
predef HideObject
21
.party_full
22
jp TextScriptEnd
23
24