-
Notifications
You must be signed in to change notification settings - Fork 1k
/
Copy pathpokedex_ratings.asm
117 lines (99 loc) · 2.02 KB
/
pokedex_ratings.asm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
_DexCompletionText::
text "#DEX comp-"
line "letion is:"
para "@"
text_decimal hDexRatingNumMonsSeen, 1, 3
text " #MON seen"
line "@"
text_decimal hDexRatingNumMonsOwned, 1, 3
text " #MON owned"
para "PROF.OAK's"
line "Rating:"
prompt
_DexRatingText_Own0To9::
text "You still have"
line "lots to do."
cont "Look for #MON"
cont "in grassy areas!"
done
_DexRatingText_Own10To19::
text "You're on the"
line "right track! "
cont "Get a FLASH HM"
cont "from my AIDE!"
done
_DexRatingText_Own20To29::
text "You still need"
line "more #MON!"
cont "Try to catch"
cont "other species!"
done
_DexRatingText_Own30To39::
text "Good, you're"
line "trying hard!"
cont "Get an ITEMFINDER"
cont "from my AIDE!"
done
_DexRatingText_Own40To49::
text "Looking good!"
line "Go find my AIDE"
cont "when you get 50!"
done
_DexRatingText_Own50To59::
text "You finally got at"
line "least 50 species!"
cont "Be sure to get"
cont "EXP.ALL from my"
cont "AIDE!"
done
_DexRatingText_Own60To69::
text "Ho! This is geting"
line "even better!"
done
_DexRatingText_Own70To79::
text "Very good!"
line "Go fish for some"
cont "marine #MON!"
done
_DexRatingText_Own80To89::
text "Wonderful!"
line "Do you like to"
cont "collect things?"
done
_DexRatingText_Own90To99::
text "I'm impressed!"
line "It must have been"
cont "difficult to do!"
done
_DexRatingText_Own100To109::
text "You finally got at"
line "least 100 species!"
cont "I can't believe"
cont "how good you are!"
done
_DexRatingText_Own110To119::
text "You even have the"
line "evolved forms of"
cont "#MON! Super!"
done
_DexRatingText_Own120To129::
text "Excellent! Trade"
line "with friends to"
cont "get some more!"
done
_DexRatingText_Own130To139::
text "Outstanding!"
line "You've become a"
cont "real pro at this!"
done
_DexRatingText_Own140To149::
text "I have nothing"
line "left to say!"
cont "You're the"
cont "authority now!"
done
_DexRatingText_Own150To151::
text "Your #DEX is"
line "entirely complete!"
cont "Congratulations!"
done