mirror of
https://github.com/thornAvery/jep-hack.git
synced 2025-10-16 20:16:29 +13:00

I am really not sure about Tricules and Scizor being here, it's just so early...we can give it a whirl though. The day restriction alone seems to be enough of a balancing measure. Added Heracross since we want that increased Johto frequency.
81 lines
1.7 KiB
NASM
81 lines
1.7 KiB
NASM
BugContestantPointers:
|
|
table_width 2, BugContestantPointers
|
|
dw BugContestant_BugCatcherDon ; this reverts back to the player
|
|
dw BugContestant_BugCatcherDon
|
|
dw BugContestant_BugCatcherEd
|
|
dw BugContestant_CooltrainerMNick
|
|
dw BugContestant_PokefanMWilliam
|
|
dw BugContestant_BugCatcherBenny
|
|
dw BugContestant_CamperBarry
|
|
dw BugContestant_PicnickerCindy
|
|
dw BugContestant_BugCatcherJosh
|
|
dw BugContestant_YoungsterSamuel
|
|
dw BugContestant_SchoolboyKipp
|
|
assert_table_length NUM_BUG_CONTESTANTS + 1
|
|
|
|
; contestant format:
|
|
; db class, id
|
|
; dw 1st-place mon, score
|
|
; dw 2nd-place mon, score
|
|
; dw 3rd-place mon, score
|
|
|
|
BugContestant_BugCatcherDon:
|
|
db BUG_CATCHER, DON
|
|
dw KAKUNA, 300
|
|
dw PUPAL, 285
|
|
dw CATERPIE, 226
|
|
|
|
BugContestant_BugCatcherEd:
|
|
db BUG_CATCHER, ED
|
|
dw BUTTERFREE, 286
|
|
dw CARAPTHOR, 251
|
|
dw CATERPIE, 237
|
|
|
|
BugContestant_CooltrainerMNick:
|
|
db COOLTRAINERM, NICK
|
|
dw SCYTHER, 357
|
|
dw BUTTERFREE, 349
|
|
dw PINSIR, 368
|
|
|
|
BugContestant_PokefanMWilliam:
|
|
db POKEFANM, WILLIAM
|
|
dw PINSIR, 332
|
|
dw BUTTERFREE, 324
|
|
dw VENONAT, 321
|
|
|
|
BugContestant_BugCatcherBenny:
|
|
db BUG_CATCHER, BUG_CATCHER_BENNY
|
|
dw BUTTERFREE, 318
|
|
dw WEEDLE, 295
|
|
dw CATERPIE, 285
|
|
|
|
BugContestant_CamperBarry:
|
|
db CAMPER, BARRY
|
|
dw PINSIR, 366
|
|
dw VENONAT, 329
|
|
dw KAKUNA, 314
|
|
|
|
BugContestant_PicnickerCindy:
|
|
db PICNICKER, CINDY
|
|
dw HERACROSS, 341
|
|
dw METAPOD, 301
|
|
dw CATERPIE, 264
|
|
|
|
BugContestant_BugCatcherJosh:
|
|
db BUG_CATCHER, JOSH
|
|
dw SCYTHER, 326
|
|
dw BUTTERFREE, 292
|
|
dw METAPOD, 282
|
|
|
|
BugContestant_YoungsterSamuel:
|
|
db YOUNGSTER, SAMUEL
|
|
dw WEEDLE, 270
|
|
dw PINSIR, 282
|
|
dw CATERPIE, 251
|
|
|
|
BugContestant_SchoolboyKipp:
|
|
db SCHOOLBOY, KIPP
|
|
dw VENONAT, 267
|
|
dw PARAS, 254
|
|
dw GENTLARVA, 259
|