Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
pret
GitHub Repository: pret/pokered
Path: blob/master/scripts/CeladonMansion3F.asm
1270 views
1
CeladonMansion3F_Script:
2
jp EnableAutoTextBoxDrawing
3
4
CeladonMansion3F_TextPointers:
5
def_text_pointers
6
dw_const CeladonMansion3FProgrammerText, TEXT_CELADONMANSION3F_PROGRAMMER
7
dw_const CeladonMansion3FGraphicArtistText, TEXT_CELADONMANSION3F_GRAPHIC_ARTIST
8
dw_const CeladonMansion3FWriterText, TEXT_CELADONMANSION3F_WRITER
9
dw_const CeladonMansion3FGameDesignerText, TEXT_CELADONMANSION3F_GAME_DESIGNER
10
dw_const CeladonMansion3FGameProgramPCText, TEXT_CELADONMANSION3F_GAME_PROGRAM_PC
11
dw_const CeladonMansion3FPlayingGamePCText, TEXT_CELADONMANSION3F_PLAYING_GAME_PC
12
dw_const CeladonMansion3FGameScriptPCText, TEXT_CELADONMANSION3F_GAME_SCRIPT_PC
13
dw_const CeladonMansion3FDevRoomSignText, TEXT_CELADONMANSION3F_DEV_ROOM_SIGN
14
15
CeladonMansion3FProgrammerText:
16
text_far _CeladonMansion3FProgrammerText
17
text_end
18
19
CeladonMansion3FGraphicArtistText:
20
text_far _CeladonMansion3FGraphicArtistText
21
text_end
22
23
CeladonMansion3FWriterText:
24
text_far _CeladonMansion3FWriterText
25
text_end
26
27
CeladonMansion3FGameDesignerText:
28
text_asm
29
ld hl, wPokedexOwned
30
ld b, wPokedexOwnedEnd - wPokedexOwned
31
call CountSetBits
32
ld a, [wNumSetBits]
33
cp NUM_POKEMON - 1 ; discount Mew
34
jr nc, .completed_dex
35
ld hl, .Text
36
jr .done
37
.completed_dex
38
ld hl, .CompletedDexText
39
.done
40
call PrintText
41
jp TextScriptEnd
42
43
.Text:
44
text_far _CeladonMansion3FGameDesignerText
45
text_end
46
47
.CompletedDexText:
48
text_far _CeladonMansion3FGameDesignerCompletedDexText
49
text_promptbutton
50
text_asm
51
callfar DisplayDiploma
52
ld a, TRUE
53
ld [wDoNotWaitForButtonPressAfterDisplayingText], a
54
jp TextScriptEnd
55
56
CeladonMansion3FGameProgramPCText:
57
text_far _CeladonMansion3FGameProgramPCText
58
text_end
59
60
CeladonMansion3FPlayingGamePCText:
61
text_far _CeladonMansion3FPlayingGamePCText
62
text_end
63
64
CeladonMansion3FGameScriptPCText:
65
text_far _CeladonMansion3FGameScriptPCText
66
text_end
67
68
CeladonMansion3FDevRoomSignText:
69
text_far _CeladonMansion3FDevRoomSignText
70
text_end
71
72