bug contest judgint labels

This commit is contained in:
PikalaxALT 2015-11-23 21:19:53 -05:00
parent d972564175
commit f3c8f75209
9 changed files with 123 additions and 110 deletions

View File

@ -519,7 +519,7 @@ TradedForText: ; 0xfcf80
ret ret
.done .done
; sound0x0A ; sound_dex_fanfare_80_109
; interpret_data ; interpret_data
text_jump UnknownText_0x1bd445 text_jump UnknownText_0x1bd445
db "@" db "@"

View File

@ -2,24 +2,24 @@ _BugContestJudging: ; 1369d
call ContestScore call ContestScore
callba MobileFn_105f79 callba MobileFn_105f79
call Function13819 call Function13819
ld a, [wd00a] ld a, [wBugContestThirdPlacePersonID]
call LoadContestantName call LoadContestantName
ld a, [wd00b] ld a, [wBugContestThirdPlaceMon]
ld [wd265], a ld [wNamedObjectIndexBuffer], a
call GetPokemonName call GetPokemonName
ld hl, BugContest_ThirdPlaceText ld hl, BugContest_ThirdPlaceText
call PrintText call PrintText
ld a, [EndFlypoint] ld a, [wBugContestSecondPlacePersonID]
call LoadContestantName call LoadContestantName
ld a, [MovementBuffer] ld a, [wBugContestSecondPlaceMon]
ld [wd265], a ld [wNamedObjectIndexBuffer], a
call GetPokemonName call GetPokemonName
ld hl, BugContest_SecondPlaceText ld hl, BugContest_SecondPlaceText
call PrintText call PrintText
ld a, [wd002] ld a, [wBugContestFirstPlacePersonID]
call LoadContestantName call LoadContestantName
ld a, [wd003] ld a, [wBugContestFirstPlaceMon]
ld [wd265], a ld [wNamedObjectIndexBuffer], a
call GetPokemonName call GetPokemonName
ld hl, BugContest_FirstPlaceText ld hl, BugContest_FirstPlaceText
call PrintText call PrintText
@ -85,7 +85,7 @@ LoadContestantName: ; 13730
; If a = 0, get your name. ; If a = 0, get your name.
dec a dec a
jr z, .done jr z, .player
; Find the pointer for the trainer class of the Bug Catching Contestant whose ID is in a. ; Find the pointer for the trainer class of the Bug Catching Contestant whose ID is in a.
ld c, a ld c, a
ld b, 0 ld b, 0
@ -102,13 +102,13 @@ endr
; Save hl and bc for later. ; Save hl and bc for later.
push hl push hl
push bc push bc
; Get the Trainer Class name and copy it into wd016. ; Get the Trainer Class name and copy it into wBugContestWinnerName.
callab GetTrainerClassName callab GetTrainerClassName
ld hl, StringBuffer1 ld hl, StringBuffer1
ld de, wd016 ld de, wBugContestWinnerName
ld bc, TRAINER_CLASS_NAME_LENGTH ld bc, TRAINER_CLASS_NAME_LENGTH
call CopyBytes call CopyBytes
ld hl, wd016 ld hl, wBugContestWinnerName
; Delete the trailing terminator and replace it with a space. ; Delete the trailing terminator and replace it with a space.
.next .next
ld a, [hli] ld a, [hli]
@ -127,15 +127,15 @@ endr
ld a, [hl] ld a, [hl]
ld b, a ld b, a
callab GetTrainerName callab GetTrainerName
; Append the name to wd016. ; Append the name to wBugContestWinnerName.
ld hl, StringBuffer1 ld hl, StringBuffer1
pop de pop de
ld bc, NAME_LENGTH - 1 ld bc, NAME_LENGTH - 1
jp CopyBytes jp CopyBytes
.done .player
ld hl, PlayerName ld hl, PlayerName
ld de, wd016 ld de, wBugContestWinnerName
ld bc, NAME_LENGTH ld bc, NAME_LENGTH
jp CopyBytes jp CopyBytes
; 13783 ; 13783
@ -216,7 +216,7 @@ BugContestant_SchoolboyKipp:
; 13807 ; 13807
Function13807: ; 13807 Function13807: ; 13807
ld hl, wd00a ld hl, wBugContestThirdPlacePersonID
ld de, -4 ld de, -4
ld b, 3 ld b, 3
.loop .loop
@ -232,9 +232,9 @@ Function13807: ; 13807
; 13819 ; 13819
Function13819: ; 13819 Function13819: ; 13819
call Function13833 call ClearContestResults
call Function138b0 call ComputeAIContestantScores
ld hl, wd00e ld hl, wBugContestTempPersonID
ld a, 1 ld a, 1
ld [hli], a ld [hli], a
ld a, [wContestMon] ld a, [wContestMon]
@ -243,12 +243,12 @@ Function13819: ; 13819
ld [hli], a ld [hli], a
ld a, [hMultiplicand] ld a, [hMultiplicand]
ld [hl], a ld [hl], a
call Function1383e call DetermineContestWinners
ret ret
; 13833 ; 13833
Function13833: ; 13833 ClearContestResults: ; 13833
ld hl, wd002 ld hl, wBugContestFirstPlacePersonID
ld b, 12 ld b, 12
xor a xor a
.loop .loop
@ -258,69 +258,66 @@ Function13833: ; 13833
ret ret
; 1383e ; 1383e
Function1383e: ; 1383e DetermineContestWinners: ; 1383e
ld de, wd010 ld de, wBugContestTempScore
ld hl, wd004 ld hl, wBugContestFirstPlaceScore
ld c, 2 ld c, 2
call StringCmp call StringCmp
jr c, .next jr c, .not_first_place
ld hl, EndFlypoint ld hl, wBugContestSecondPlacePersonID
ld de, wd00a ld de, wBugContestThirdPlacePersonID
ld bc, 4 ld bc, 4
call CopyBytes call CopyBytes
ld hl, wd002 ld hl, wBugContestFirstPlacePersonID
ld de, EndFlypoint ld de, wBugContestSecondPlacePersonID
ld bc, 4 ld bc, 4
call CopyBytes call CopyBytes
ld hl, wd002 ld hl, wBugContestFirstPlacePersonID
call Function138a0 call CopyTempContestant
jr .done jr .done
.next .not_first_place
ld de, wd010 ld de, wBugContestTempScore
ld hl, wd008 ld hl, wBugContestSecondPlaceScore
ld c, 2 ld c, 2
call StringCmp call StringCmp
jr c, .next2 jr c, .not_second_place
ld hl, EndFlypoint ld hl, wBugContestSecondPlacePersonID
ld de, wd00a ld de, wBugContestThirdPlacePersonID
ld bc, 4 ld bc, 4
call CopyBytes call CopyBytes
ld hl, EndFlypoint ld hl, wBugContestSecondPlacePersonID
call Function138a0 call CopyTempContestant
jr .done jr .done
.next2 .not_second_place
ld de, wd010 ld de, wBugContestTempScore
ld hl, wd00c ld hl, wBugContestThirdPlaceScore
ld c, 2 ld c, 2
call StringCmp call StringCmp
jr c, .done jr c, .done
ld hl, wd00a ld hl, wBugContestThirdPlacePersonID
call Function138a0 call CopyTempContestant
.done .done
ret ret
; 138a0 ; 138a0
Function138a0: ; 138a0 CopyTempContestant: ; 138a0
ld de, wd00e ; Could've just called CopyBytes.
ld a, [de] ld de, wBugContestTempPersonID
inc de rept 3
ld [hli], a
ld a, [de]
inc de
ld [hli], a
ld a, [de] ld a, [de]
inc de inc de
ld [hli], a ld [hli], a
endr
ld a, [de] ld a, [de]
inc de inc de
ld [hl], a ld [hl], a
ret ret
; 138b0 ; 138b0
Function138b0: ; 138b0 ComputeAIContestantScores: ; 138b0
ld e, 0 ld e, 0
.loop .loop
push de push de
@ -331,7 +328,7 @@ Function138b0: ; 138b0
rept 2 rept 2
inc a inc a
endr endr
ld [wd00e], a ld [wBugContestTempPersonID], a
dec a dec a
ld c, a ld c, a
ld b, 0 ld b, 0
@ -356,7 +353,7 @@ rept 3
add hl, bc add hl, bc
endr endr
ld a, [hli] ld a, [hli]
ld [wd00f], a ld [wBugContestTempMon], a
ld a, [hli] ld a, [hli]
ld h, [hl] ld h, [hl]
ld l, a ld l, a
@ -366,11 +363,11 @@ endr
ld b, 0 ld b, 0
add hl, bc add hl, bc
ld a, h ld a, h
ld [wd010], a ld [wBugContestTempScore], a
ld a, l ld a, l
ld [wd011], a ld [wBugContestTempScore + 1], a
push de push de
call Function1383e call DetermineContestWinners
pop de pop de
.done .done

View File

@ -73,7 +73,7 @@ interpret_data: macro
endm endm
enum TX_SOUND_0B enum TX_SOUND_0B
sound0: macro sound_dex_fanfare_50_79: macro
db TX_SOUND_0B db TX_SOUND_0B
endm endm
@ -89,33 +89,33 @@ link_wait_button: macro
endm endm
enum TX_SOUND_0E enum TX_SOUND_0E
sound1: macro sound_dex_fanfare_20_49: macro
db TX_SOUND_0E db TX_SOUND_0E
endm endm
enum TX_SOUND_0F enum TX_SOUND_0F
sound0x0F: macro sound_item: macro
db TX_SOUND_0F db TX_SOUND_0F
endm endm
enum TX_SOUND_10 enum TX_SOUND_10
sound0x02: macro sound_caught_mon: macro
db TX_SOUND_10 db TX_SOUND_10
endm endm
enum TX_SOUND_11 enum TX_SOUND_11
sound0x0A: macro sound_dex_fanfare_80_109: macro
db TX_SOUND_11 db TX_SOUND_11
endm endm
enum TX_SOUND_12 enum TX_SOUND_12
sound0x12: macro sound_fanfare: macro
db TX_SOUND_12 db TX_SOUND_12
endm endm
enum TX_SOUND_13 enum TX_SOUND_13
sound0x2C: macro sound_slot_machine_start: macro
db $13 db TX_SOUND_13
endm endm
enum TX_STRINGBUFFER enum TX_STRINGBUFFER

View File

@ -525,7 +525,7 @@ Text_PlayerGotFive: ; 0x9eb7e
line "@" line "@"
text_from_ram StringBuffer4 text_from_ram StringBuffer4
text "!@" text "!@"
sound0x0F sound_item
text_waitbutton text_waitbutton
db "@" db "@"

View File

@ -396,7 +396,7 @@ BattleText_StringBuffer1GrewToLevel: ; 0x80c9c
line "level @" line "level @"
deciram CurPartyLevel, 1, 3 deciram CurPartyLevel, 1, 3
text "!@" text "!@"
sound0 sound_dex_fanfare_50_79
db "@" db "@"
; 0x80cb9 ; 0x80cb9

View File

@ -108,7 +108,7 @@ UnknownText_0x1bc14f: ; 0x1bc14f
line "level @" line "level @"
deciram CurPartyLevel, 1, 3 deciram CurPartyLevel, 1, 3
text "!@" text "!@"
sound0 sound_dex_fanfare_50_79
text_waitbutton text_waitbutton
db "@" db "@"
; 0x1bc16d ; 0x1bc16d
@ -1575,7 +1575,7 @@ UnknownText_0x1bd3be: ; 0x1bd3be
line "@" line "@"
text_from_ram StringBuffer1 text_from_ram StringBuffer1
text "!@" text "!@"
sound0x0F sound_item
text_waitbutton text_waitbutton
db "@" db "@"
; 0x1bd3d6 ; 0x1bd3d6
@ -1613,7 +1613,7 @@ UnknownText_0x1bd429: ; 0x1bd429
; 0x1bd445 ; 0x1bd445
UnknownText_0x1bd445: ; 0x1bd445 UnknownText_0x1bd445: ; 0x1bd445
sound0x0A sound_dex_fanfare_80_109
interpret_data interpret_data
db "@" db "@"
; 0x1bd448 ; 0x1bd448

View File

@ -931,7 +931,7 @@ UnknownText_0x1c0dba: ; 1c0dba
text_from_ram StringBuffer1 text_from_ram StringBuffer1
text " came" text " came"
line "out of its EGG!@" line "out of its EGG!@"
sound0x02 sound_caught_mon
text_waitbutton text_waitbutton
db "@" db "@"
; 1c0dd7 ; 1c0dd7
@ -1145,7 +1145,7 @@ ContestJudging_FirstPlaceText: ; 1c10fa
interpret_data interpret_data
text "…" text "…"
para "@" para "@"
text_from_ram wd016 text_from_ram wBugContestWinnerName
text "," text ","
line "who caught a" line "who caught a"
cont "@" cont "@"
@ -1158,7 +1158,7 @@ ContestJudging_FirstPlaceScoreText: ; 1c113f
text "" text ""
para "The winning score" para "The winning score"
line "was @" line "was @"
deciram wd004, 2, 3 deciram wBugContestFirstPlaceScore, 2, 3
text " points!" text " points!"
prompt prompt
; 1c1166 ; 1c1166
@ -1166,7 +1166,7 @@ ContestJudging_FirstPlaceScoreText: ; 1c113f
ContestJudging_SecondPlaceText: ; 1c1166 ContestJudging_SecondPlaceText: ; 1c1166
text "Placing second was" text "Placing second was"
line "@" line "@"
text_from_ram wd016 text_from_ram wBugContestWinnerName
text "," text ","
para "who caught a" para "who caught a"
line "@" line "@"
@ -1179,7 +1179,7 @@ ContestJudging_SecondPlaceScoreText: ; 1c1196
text "" text ""
para "The score was" para "The score was"
line "@" line "@"
deciram wd008, 2, 3 deciram wBugContestSecondPlaceScore, 2, 3
text " points!" text " points!"
prompt prompt
; 1c11b5 ; 1c11b5
@ -1187,7 +1187,7 @@ ContestJudging_SecondPlaceScoreText: ; 1c1196
ContestJudging_ThirdPlaceText: ; 1c11b5 ContestJudging_ThirdPlaceText: ; 1c11b5
text "Placing third was" text "Placing third was"
line "@" line "@"
text_from_ram wd016 text_from_ram wBugContestWinnerName
text "," text ","
para "who caught a" para "who caught a"
line "@" line "@"
@ -1200,7 +1200,7 @@ ContestJudging_ThirdPlaceScoreText: ; 1c11e4
text "" text ""
para "The score was" para "The score was"
line "@" line "@"
deciram wd00c, 2, 3 deciram wBugContestThirdPlaceScore, 2, 3
text " points!" text " points!"
prompt prompt
; 1c1203 ; 1c1203
@ -1641,7 +1641,7 @@ UnknownText_0x1c1b03: ; 1c1b03
UnknownText_0x1c1b2c: ; 1c1b2c UnknownText_0x1c1b2c: ; 1c1b2c
text "Took @" text "Took @"
text_from_ram wd050 text_from_ram wd050_MonNick
text "'s" text "'s"
line "@" line "@"
text_from_ram StringBuffer1 text_from_ram StringBuffer1
@ -1656,7 +1656,7 @@ UnknownText_0x1c1b2c: ; 1c1b2c
UnknownText_0x1c1b57: ; 1c1b57 UnknownText_0x1c1b57: ; 1c1b57
text "Made @" text "Made @"
text_from_ram wd050 text_from_ram wd050_MonNick
text "" text ""
line "hold @" line "hold @"
text_from_ram StringBuffer2 text_from_ram StringBuffer2
@ -1671,7 +1671,7 @@ UnknownText_0x1c1b6f: ; 1c1b6f
; 1c1b8e ; 1c1b8e
UnknownText_0x1c1b8e: ; 1c1b8e UnknownText_0x1c1b8e: ; 1c1b8e
text_from_ram wd050 text_from_ram wd050_MonNick
text " isn't" text " isn't"
line "holding anything." line "holding anything."
prompt prompt
@ -1688,13 +1688,13 @@ UnknownText_0x1c1bc4: ; 1c1bc4
text_from_ram StringBuffer1 text_from_ram StringBuffer1
text "" text ""
line "from @" line "from @"
text_from_ram wd050 text_from_ram wd050_MonNick
text "." text "."
prompt prompt
; 1c1bdc ; 1c1bdc
UnknownText_0x1c1bdc: ; 1c1bdc UnknownText_0x1c1bdc: ; 1c1bdc
text_from_ram wd050 text_from_ram wd050_MonNick
text " is" text " is"
line "already holding" line "already holding"

View File

@ -338,10 +338,10 @@ UnknownText_0x1c4797: ; 0x1c4797
UnknownText_0x1c47d4: ; 0x1c47d4 UnknownText_0x1c47d4: ; 0x1c47d4
text "Hm… I see you met" text "Hm… I see you met"
line "@" line "@"
text_from_ram wd003 text_from_ram wSeerNickname
text " here:" text " here:"
cont "@" cont "@"
text_from_ram wd00e text_from_ram wSeerCaughtLocation
text "!" text "!"
prompt prompt
; 0x1c47fa ; 0x1c47fa
@ -349,11 +349,11 @@ UnknownText_0x1c47d4: ; 0x1c47d4
UnknownText_0x1c47fa: ; 0x1c47fa UnknownText_0x1c47fa: ; 0x1c47fa
text "The time was" text "The time was"
line "@" line "@"
text_from_ram wd01f text_from_ram wSeerTimeOfDay
text "!" text "!"
para "Its level was @" para "Its level was @"
text_from_ram wd036 text_from_ram wSeerCaughtLevelString
text "!" text "!"
para "Am I good or what?" para "Am I good or what?"
@ -362,21 +362,21 @@ UnknownText_0x1c47fa: ; 0x1c47fa
UnknownText_0x1c4837: ; 0x1c4837 UnknownText_0x1c4837: ; 0x1c4837
text "Hm… @" text "Hm… @"
text_from_ram wd003 text_from_ram wSeerNickname
text "" text ""
line "came from @" line "came from @"
text_from_ram wd02a text_from_ram wSeerOTName
text "" text ""
cont "in a trade?" cont "in a trade?"
para "@" para "@"
text_from_ram wd00e text_from_ram wSeerCaughtLocation
text "" text ""
line "was where @" line "was where @"
text_from_ram wd02a text_from_ram wSeerOTName
text "" text ""
cont "met @" cont "met @"
text_from_ram wd003 text_from_ram wSeerNickname
text "!" text "!"
prompt prompt
; 0x1c487f ; 0x1c487f
@ -393,7 +393,7 @@ UnknownText_0x1c487f: ; 0x1c487f
para "I can't tell where" para "I can't tell where"
line "you met it, but it" line "you met it, but it"
cont "was at level @" cont "was at level @"
text_from_ram wd036 text_from_ram wSeerCaughtLevelString
text "." text "."
para "Am I good or what?" para "Am I good or what?"
@ -434,7 +434,7 @@ UnknownText_0x1c49c6: ; 0x1c49c6
line "grown a little." line "grown a little."
para "@" para "@"
text_from_ram wd003 text_from_ram wSeerNickname
text " seems" text " seems"
line "to be becoming" line "to be becoming"
cont "more confident." cont "more confident."
@ -445,7 +445,7 @@ UnknownText_0x1c4a21: ; 0x1c4a21
text "Incidentally…" text "Incidentally…"
para "@" para "@"
text_from_ram wd003 text_from_ram wSeerNickname
text " has" text " has"
line "grown. It's gained" line "grown. It's gained"
cont "much strength." cont "much strength."
@ -459,7 +459,7 @@ UnknownText_0x1c4a5b: ; 0x1c4a5b
line "grown mighty!" line "grown mighty!"
para "This @" para "This @"
text_from_ram wd003 text_from_ram wSeerNickname
text "" text ""
line "must have come" line "must have come"
@ -483,12 +483,12 @@ UnknownText_0x1c4ae5: ; 0x1c4ae5
para "seen a #MON as" para "seen a #MON as"
line "mighty as this" line "mighty as this"
cont "@" cont "@"
text_from_ram wd003 text_from_ram wSeerNickname
text "." text "."
para "I'm sure that" para "I'm sure that"
line "seeing @" line "seeing @"
text_from_ram wd003 text_from_ram wSeerNickname
text "" text ""
para "in battle would" para "in battle would"
line "excite anyone." line "excite anyone."
@ -859,13 +859,13 @@ UnknownText_0x1c51d7: ; 0x1c51d7
; 0x1c51f4 ; 0x1c51f4
UnknownText_0x1c51f4: ; 0x1c51f4 UnknownText_0x1c51f4: ; 0x1c51f4
text_from_ram wd006 text_from_ram wMobileParticipant1Nickname
text "," text ","
line "@" line "@"
text_from_ram wd00c text_from_ram wMobileParticipant2Nickname
text " and" text " and"
cont "@" cont "@"
text_from_ram wd012 text_from_ram wMobileParticipant3Nickname
text "." text "."
para "Use these three?" para "Use these three?"
@ -989,7 +989,7 @@ UnknownText_0x1c5580: ; 0x1c5580
; 0x1c5588 ; 0x1c5588
UnknownText_0x1c5588: ; 0x1c5588 UnknownText_0x1c5588: ; 0x1c5588
text $56 text "<......>"
done done
; 0x1c558b ; 0x1c558b
@ -1050,7 +1050,7 @@ UnknownText_0x1c5660: ; 0x1c5660
line "@" line "@"
text_from_ram StringBuffer2 text_from_ram StringBuffer2
text "!@" text "!@"
sound0 sound_dex_fanfare_50_79
text_waitbutton text_waitbutton
db "@" db "@"
; 0x1c5677 ; 0x1c5677
@ -1189,7 +1189,7 @@ UnknownText_0x1c5823: ; 0x1c5823
; 0x1c5824 ; 0x1c5824
UnknownText_0x1c5824: ; 0x1c5824 UnknownText_0x1c5824: ; 0x1c5824
text $56 text "<......>"
done done
; 0x1c5827 ; 0x1c5827
@ -1367,7 +1367,7 @@ UnknownText_0x1c5b17: ; 0x1c5b17
text_from_ram EnemyMonNick text_from_ram EnemyMonNick
text "" text ""
line "was caught!@" line "was caught!@"
sound0x02 sound_caught_mon
db "@" db "@"
; 0x1c5b34 ; 0x1c5b34
@ -1396,7 +1396,7 @@ UnknownText_0x1c5b53: ; 0x1c5b53
text "'s data" text "'s data"
line "was newly added to" line "was newly added to"
cont "the #DEX.@" cont "the #DEX.@"
sound0x2C sound_slot_machine_start
text_waitbutton text_waitbutton
db "@" db "@"
; 0x1c5b7e ; 0x1c5b7e
@ -1514,7 +1514,7 @@ UnknownText_0x1c5cf1: ; 0x1c5cf1
UnknownText_0x1c5d03: ; 0x1c5d03 UnknownText_0x1c5d03: ; 0x1c5d03
text "There was a trophy" text "There was a trophy"
line "inside!@" line "inside!@"
sound0 sound_dex_fanfare_50_79
text "" text ""
para "@" para "@"
text_from_ram PlayerName text_from_ram PlayerName

View File

@ -1528,17 +1528,20 @@ LuckyNumberDigit1Buffer::
wCurrentRadioLine:: wCurrentRadioLine::
wMovementBufferCount:: wMovementBufferCount::
wMartItem1BCD:: wMartItem1BCD::
wBugContestFirstPlacePersonID::
ds 1 ds 1
wd003:: wd003::
LuckyNumberDigit2Buffer:: LuckyNumberDigit2Buffer::
PhoneCallerLo:: PhoneCallerLo::
wNextRadioLine:: wNextRadioLine::
wMovementBufferPerson:: wMovementBufferPerson::
wBugContestFirstPlaceMon::
ds 1 ds 1
wd004:: wd004::
LuckyNumberDigit3Buffer:: LuckyNumberDigit3Buffer::
PhoneCallerHi:: PhoneCallerHi::
wRadioTextDelay:: wRadioTextDelay::
wBugContestFirstPlaceScore::
ds 1 ds 1
wd005:: wd005::
LuckyNumberDigit4Buffer:: LuckyNumberDigit4Buffer::
@ -1547,18 +1550,24 @@ wNumRadioLinesPrinted::
wMartItem2BCD:: wMartItem2BCD::
ds 1 ds 1
wd006:: wd006::
wMobileParticipant1Nickname::
LuckyNumberDigit5Buffer:: LuckyNumberDigit5Buffer::
EndFlypoint:: ; d006 EndFlypoint:: ; d006
wOaksPkmnTalkSegmentCounter:: wOaksPkmnTalkSegmentCounter::
wBugContestSecondPlacePersonID::
ds 1 ds 1
wd007:: wd007::
MovementBuffer:: ; d007 MovementBuffer:: ; d007
wBugContestSecondPlaceMon::
ds 1 ds 1
wMartItem3BCD:: wMartItem3BCD::
wBugContestSecondPlaceScore::
wd008:: ds 2 wd008:: ds 2
wBugContestThirdPlacePersonID::
wd00a:: ds 1 wd00a:: ds 1
wBugContestThirdPlaceMon::
wMartItem4BCD:: wMartItem4BCD::
wd00b:: ds 1 wd00b:: ds 1
@ -1566,18 +1575,25 @@ wRadioText:: ds 2 * SCREEN_WIDTH
wRadioTextEnd:: wRadioTextEnd::
ds wRadioText - @ ds wRadioText - @
wMobileParticipant2Nickname::
wBugContestThirdPlaceScore::
wd00c:: ds 1 wd00c:: ds 1
wd00d:: ds 1 wd00d:: ds 1
wMartItem5BCD:: wMartItem5BCD::
wBugContestTempPersonID::
wd00e:: ds 1 wd00e:: ds 1
wBugContestTempMon::
wd00f:: ds 1 wd00f:: ds 1
wBugContestTempScore::
wd010:: ds 1 wd010:: ds 1
wMartItem6BCD:: wMartItem6BCD::
wd011:: ds 1 wd011:: ds 1
wMobileParticipant3Nickname::
wd012:: ds 1 wd012:: ds 1
wd013:: ds 1 wd013:: ds 1
wMartItem7BCD:: wMartItem7BCD::
wd014:: ds 2 wd014:: ds 2
wBugContestWinnerName::
wd016:: ds 1 wd016:: ds 1
wMartItem8BCD:: wMartItem8BCD::
wd017:: ds 1 wd017:: ds 1