Skip to content

Commit ef3cda0

Browse files
committed
V1.2.2:
- Fixed a bug where the game could crash while catching a pokemon during bug contests - Fixed a bug with odd egg pokemon moves - Fixed casino mon locations in pokedex - Updated credits - Added held item percentages to pokedex
1 parent 37b5a0f commit ef3cda0

File tree

7 files changed

+49
-13
lines changed

7 files changed

+49
-13
lines changed

constants/credits_constants.asm

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -145,6 +145,13 @@
145145
const POKECRYSTAL3
146146
const POKECRYSTAL4
147147
const POKECRYSTAL5
148+
const POKECRYSTAL6
149+
const POKECRYSTAL7
150+
const POKECRYSTAL8
151+
const POKECRYSTAL9
152+
const POKECRYSTAL10
153+
const POKECRYSTAL11
154+
const POKECRYSTAL12
148155
const POKECRYSTALDISASSEMBLY
149156
const NAYRUTHANKSTEXT
150157
NUM_CREDITS_STRINGS EQU const_value

data/credits_script.asm

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,21 @@ CreditsScript:
120120

121121
db CREDITS_WAIT, 12
122122

123+
db TUTORIALS, 0
124+
db POKECRYSTAL6, 1
125+
db POKECRYSTAL7, 2
126+
db POKECRYSTAL8, 3
127+
db POKECRYSTAL9, 4
128+
129+
db CREDITS_WAIT, 12
130+
131+
db TUTORIALS, 0
132+
db POKECRYSTAL10, 1
133+
db POKECRYSTAL11, 2
134+
db POKECRYSTAL12, 3
135+
136+
db CREDITS_WAIT, 12
137+
123138
; Clear the banner.
124139
db CREDITS_CLEAR
125140

data/credits_strings.asm

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,13 @@ CreditsStringsPointers:
146146
dw .Pokecrystal3
147147
dw .Pokecrystal4
148148
dw .Pokecrystal5
149+
dw .Pokecrystal6
150+
dw .Pokecrystal7
151+
dw .Pokecrystal8
152+
dw .Pokecrystal9
153+
dw .Pokecrystal10
154+
dw .Pokecrystal11
155+
dw .Pokecrystal12
149156
dw .Pokecrystal
150157
dw .NayruThanksText
151158
assert_table_length NUM_CREDITS_STRINGS
@@ -298,6 +305,13 @@ CreditsStringsPointers:
298305
.Pokecrystal3: db " IDAIN@"
299306
.Pokecrystal4: db " DAMIENDOURY@"
300307
.Pokecrystal5: db " AAAAAA123456789@"
308+
.Pokecrystal6: db " EDTV-THEVOID@"
309+
.Pokecrystal7: db " COCO-BANDICOOT@"
310+
.Pokecrystal8: db " MAJORAGNOSTIC@"
311+
.Pokecrystal9: db " KDLPRO@"
312+
.Pokecrystal10: db " NICK-PC@"
313+
.Pokecrystal11: db " XAEROCHILL@"
314+
.Pokecrystal12: db " NOBODYSOCIETY@"
301315
.Pokecrystal: db " THANK YOU TO THE"
302316
next " PRET TEAM FOR THE"
303317
next " POKECRYSTAL"

data/events/odd_eggs.asm

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ OddEggs:
194194

195195
db SMOOCHUM
196196
db NO_ITEM
197-
db POUND, LICK, DIZZY_PUNCH, 0
197+
db POWDER_SNOW, POUND, LICK, DIZZY_PUNCH
198198
dw 03584 ; OT ID
199199
dt 125 ; Exp
200200
; Stat exp
@@ -220,7 +220,7 @@ OddEggs:
220220

221221
db SMOOCHUM
222222
db NO_ITEM
223-
db POUND, LICK, DIZZY_PUNCH, 0
223+
db POWDER_SNOW, POUND, LICK, DIZZY_PUNCH
224224
dw 00512 ; OT ID
225225
dt 125 ; Exp
226226
; Stat exp
@@ -246,7 +246,7 @@ OddEggs:
246246

247247
db MAGBY
248248
db NO_ITEM
249-
db EMBER, DIZZY_PUNCH, 0, 0
249+
db EMBER, LEER, DIZZY_PUNCH, 0
250250
dw 02560 ; OT ID
251251
dt 125 ; Exp
252252
; Stat exp
@@ -272,7 +272,7 @@ OddEggs:
272272

273273
db MAGBY
274274
db NO_ITEM
275-
db EMBER, DIZZY_PUNCH, 0, 0
275+
db EMBER, LEER, DIZZY_PUNCH, 0
276276
dw 00512 ; OT ID
277277
dt 125 ; Exp
278278
; Stat exp
@@ -298,7 +298,7 @@ OddEggs:
298298

299299
db ELEKID
300300
db NO_ITEM
301-
db QUICK_ATTACK, LEER, DIZZY_PUNCH, 0
301+
db THUNDERSHOCK, LEER, DIZZY_PUNCH, 0
302302
dw 03072 ; OT ID
303303
dt 125 ; Exp
304304
; Stat exp
@@ -324,7 +324,7 @@ OddEggs:
324324

325325
db ELEKID
326326
db NO_ITEM
327-
db QUICK_ATTACK, LEER, DIZZY_PUNCH, 0
327+
db THUNDERSHOCK, LEER, DIZZY_PUNCH, 0
328328
dw 00512 ; OT ID
329329
dt 125 ; Exp
330330
; Stat exp

data/wild/non_wildmon_locations.asm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ CasinoMons::
2020
; johto, from maps\goldenrodgamecorner.asm
2121
map_id GOLDENROD_GAME_CORNER
2222
casinomon ABRA, GOLDENRODGAMECORNER_ABRA_COINS
23-
casinomon CUBONE, GOLDENRODGAMECORNER_CUBONE_COINS
24-
casinomon WOBBUFFET, GOLDENRODGAMECORNER_WOBBUFFET_COINS
23+
casinomon PORYGON, GOLDENRODGAMECORNER_CUBONE_COINS
24+
casinomon DRATINI, GOLDENRODGAMECORNER_WOBBUFFET_COINS
2525
db -1
2626
; kanto, from maps\celadongamecornerprizeroom.asm
2727
map_id CELADON_GAME_CORNER_PRIZE_ROOM

engine/pokedex/pokedex.asm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1671,7 +1671,7 @@ Pokedex_DrawDexEntryScreenBG:
16711671
call ByteFill
16721672

16731673
hlcoord 2, 17
1674-
ld bc, $7 tiles
1674+
ld bc, $7
16751675
ld a, $7f ; black square
16761676
call ByteFill
16771677
ld c, 4

engine/pokedex/pokedex_stats_page.asm

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -187,10 +187,10 @@ Pokedex_Get_Items:
187187
hlcoord 3, 10
188188
ld de, .BS_ITEM_text
189189
call PlaceString
190-
hlcoord 3, 11
190+
hlcoord 2, 11
191191
ld de, .BS_ITEM1
192192
call PlaceString
193-
hlcoord 3, 12
193+
hlcoord 2, 12
194194
ld de, .BS_ITEM2
195195
call PlaceString
196196

@@ -229,9 +229,9 @@ Pokedex_Get_Items:
229229
.BS_ITEM_text:
230230
db "Wild Held Items:@"
231231
.BS_ITEM1:
232-
db "[1]@"
232+
db "[23<%>]@"
233233
.BS_ITEM2:
234-
db "[2]@"
234+
db "[ 2<%>]@"
235235

236236
Pokedex_EggG_SetUp:
237237
ld a, [wBaseEggGroups]

0 commit comments

Comments
 (0)