diff options
| author | SatoMew <SatoMew@users.noreply.github.com> | 2025-04-09 04:17:12 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-04-08 22:17:12 -0500 |
| commit | cf73d6ee0f1a9cf1e0886fc239c140ad9d761555 (patch) | |
| tree | 6c178d3ee3f6c18aeb32848e23e5437ec814ba2b /data | |
| parent | Use constants for PP masks instead of magic numbers (#504) (diff) | |
| download | pokeyellow-cf73d6ee0f1a9cf1e0886fc239c140ad9d761555.tar.gz pokeyellow-cf73d6ee0f1a9cf1e0886fc239c140ad9d761555.tar.xz pokeyellow-cf73d6ee0f1a9cf1e0886fc239c140ad9d761555.zip | |
Further improve NPC trade labels and comments (#493)
Diffstat (limited to 'data')
| -rw-r--r-- | data/events/trades.asm | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/data/events/trades.asm b/data/events/trades.asm index f4963bde..e02177d5 100644 --- a/data/events/trades.asm +++ b/data/events/trades.asm @@ -4,8 +4,11 @@ TradeMons: ; give mon, get mon, dialog id, nickname ; The two instances of TRADE_DIALOGSET_EVOLUTION are a leftover ; from the Japanese Blue trades, which used species that evolve. - ; Japanese Red and Green used TRADE_DIALOGSET_CASUAL, and had - ; the same species as English Red and Blue. + ; TRADE_DIALOGSET_EVOLUTION did not refer to evolution in Japanese + ; Red/Green. Japanese Blue changed _AfterTrade2Text to say your Pokémon + ; "went and evolved" and also changed the trades to match. English + ; Red/Blue uses the original JP Red/Green trades but with the JP Blue + ; post-trade text. db NIDORINO, NIDORINA, TRADE_DIALOGSET_CASUAL, "TERRY@@@@@@" db ABRA, MR_MIME, TRADE_DIALOGSET_CASUAL, "MARCEL@@@@@" db BUTTERFREE, BEEDRILL, TRADE_DIALOGSET_HAPPY, "CHIKUCHIKU@" ; unused |
