-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Convert miscellaneous Pokémon IDs in ROM to 16-bit, 3
Features involved: - In-game NPC trades - Miscellaneous leftover mobile code - Overworld Pokémon sprites - Player's room decorations Co-Authored-By: aaaaaa123456789 <aaaaaa123456789@acidch.at>
- Loading branch information
1 parent
f264996
commit 248dd03
Showing
13 changed files
with
250 additions
and
126 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,22 @@ | ||
MACRO npctrade | ||
; dialog set, requested mon, offered mon, nickname, dvs, item, OT ID, OT name, gender requested | ||
db \1, \2, \3, \4, \5, \6, \7 | ||
dw \8 | ||
db \9, \<10>, 0 | ||
db \1 | ||
dw \2, \3 | ||
db \4, \5, \6, \7 | ||
shift | ||
dw \7 | ||
db \8, \9 | ||
db 0, 0 | ||
ENDM | ||
|
||
NPCTrades: | ||
; entries correspond to NPCTRADE_* constants | ||
table_width NPCTRADE_STRUCT_LENGTH, NPCTrades | ||
npctrade TRADE_DIALOGSET_COLLECTOR, ABRA, MACHOP, "MUSCLE@@@@@", $37, $66, GOLD_BERRY, 37460, "MIKE@@@@@@@", TRADE_GENDER_EITHER | ||
npctrade TRADE_DIALOGSET_COLLECTOR, BELLSPROUT, ONIX, "ROCKY@@@@@@", $96, $66, BITTER_BERRY, 48926, "KYLE@@@@@@@", TRADE_GENDER_EITHER | ||
npctrade TRADE_DIALOGSET_HAPPY, KRABBY, VOLTORB, "VOLTY@@@@@@", $98, $88, PRZCUREBERRY, 29189, "TIM@@@@@@@@", TRADE_GENDER_EITHER | ||
npctrade TRADE_DIALOGSET_GIRL, DRAGONAIR, DODRIO, "DORIS@@@@@@", $77, $66, SMOKE_BALL, 00283, "EMY@@@@@@@@", TRADE_GENDER_FEMALE | ||
npctrade TRADE_DIALOGSET_NEWBIE, HAUNTER, XATU, "PAUL@@@@@@@", $96, $86, MYSTERYBERRY, 15616, "CHRIS@@@@@@", TRADE_GENDER_EITHER | ||
npctrade TRADE_DIALOGSET_GIRL, CHANSEY, AERODACTYL, "AEROY@@@@@@", $96, $66, GOLD_BERRY, 26491, "KIM@@@@@@@@", TRADE_GENDER_EITHER | ||
npctrade TRADE_DIALOGSET_COLLECTOR, DUGTRIO, MAGNETON, "MAGGIE@@@@@", $96, $66, METAL_COAT, 50082, "FOREST@@@@@", TRADE_GENDER_EITHER | ||
npctrade TRADE_DIALOGSET_COLLECTOR, ABRA, MACHOP, "MUSCLE@@@@@", $37, $66, GOLD_BERRY, 37460, "MIKE@@@@", TRADE_GENDER_EITHER | ||
npctrade TRADE_DIALOGSET_COLLECTOR, BELLSPROUT, ONIX, "ROCKY@@@@@@", $96, $66, BITTER_BERRY, 48926, "KYLE@@@@", TRADE_GENDER_EITHER | ||
npctrade TRADE_DIALOGSET_HAPPY, KRABBY, VOLTORB, "VOLTY@@@@@@", $98, $88, PRZCUREBERRY, 29189, "TIM@@@@@", TRADE_GENDER_EITHER | ||
npctrade TRADE_DIALOGSET_GIRL, DRAGONAIR, DODRIO, "DORIS@@@@@@", $77, $66, SMOKE_BALL, 00283, "EMY@@@@@", TRADE_GENDER_FEMALE | ||
npctrade TRADE_DIALOGSET_NEWBIE, HAUNTER, XATU, "PAUL@@@@@@@", $96, $86, MYSTERYBERRY, 15616, "CHRIS@@@", TRADE_GENDER_EITHER | ||
npctrade TRADE_DIALOGSET_GIRL, CHANSEY, AERODACTYL, "AEROY@@@@@@", $96, $66, GOLD_BERRY, 26491, "KIM@@@@@", TRADE_GENDER_EITHER | ||
npctrade TRADE_DIALOGSET_COLLECTOR, DUGTRIO, MAGNETON, "MAGGIE@@@@@", $96, $66, METAL_COAT, 50082, "FOREST@@", TRADE_GENDER_EITHER | ||
assert_table_length NUM_NPC_TRADES |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,39 +1,39 @@ | ||
SpriteMons: | ||
; entries correspond to SPRITE_* constants past SPRITE_POKEMON | ||
table_width 1, SpriteMons | ||
db UNOWN | ||
db GEODUDE | ||
db GROWLITHE | ||
db WEEDLE | ||
db SHELLDER | ||
db ODDISH | ||
db GENGAR | ||
db ZUBAT | ||
db MAGIKARP | ||
db SQUIRTLE | ||
db TOGEPI | ||
db BUTTERFREE | ||
db DIGLETT | ||
db POLIWAG | ||
db PIKACHU | ||
db CLEFAIRY | ||
db CHARMANDER | ||
db JYNX | ||
db STARMIE | ||
db BULBASAUR | ||
db JIGGLYPUFF | ||
db GRIMER | ||
db EKANS | ||
db PARAS | ||
db TENTACOOL | ||
db TAUROS | ||
db MACHOP | ||
db VOLTORB | ||
db LAPRAS | ||
db RHYDON | ||
db MOLTRES | ||
db SNORLAX | ||
db GYARADOS | ||
db LUGIA | ||
db HO_OH | ||
table_width 2, SpriteMons | ||
dw UNOWN | ||
dw GEODUDE | ||
dw GROWLITHE | ||
dw WEEDLE | ||
dw SHELLDER | ||
dw ODDISH | ||
dw GENGAR | ||
dw ZUBAT | ||
dw MAGIKARP | ||
dw SQUIRTLE | ||
dw TOGEPI | ||
dw BUTTERFREE | ||
dw DIGLETT | ||
dw POLIWAG | ||
dw PIKACHU | ||
dw CLEFAIRY | ||
dw CHARMANDER | ||
dw JYNX | ||
dw STARMIE | ||
dw BULBASAUR | ||
dw JIGGLYPUFF | ||
dw GRIMER | ||
dw EKANS | ||
dw PARAS | ||
dw TENTACOOL | ||
dw TAUROS | ||
dw MACHOP | ||
dw VOLTORB | ||
dw LAPRAS | ||
dw RHYDON | ||
dw MOLTRES | ||
dw SNORLAX | ||
dw GYARADOS | ||
dw LUGIA | ||
dw HO_OH | ||
assert_table_length NUM_POKEMON_SPRITES |
Oops, something went wrong.