diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2018-06-12 23:29:15 -0400 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2018-06-12 23:29:15 -0400 |
commit | fbe82a7fe0f310ade7436d4d8f352ee04e05a1ec (patch) | |
tree | d474f9d2ee1876cdee83564ddd2e44986eb8a4a4 /engine/items | |
parent | 6130fc5cd6b002f827d307c64a432e960629cb9b (diff) |
Note which labels are only needed for locating banks (relevant to issue #485)
Diffstat (limited to 'engine/items')
-rw-r--r-- | engine/items/item_effects.asm | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/engine/items/item_effects.asm b/engine/items/item_effects.asm index a32ce0ef7..db0ee1be1 100644 --- a/engine/items/item_effects.asm +++ b/engine/items/item_effects.asm @@ -767,10 +767,10 @@ GetPokedexEntryBank: ret .PokedexEntryBanks: - db BANK(PokedexEntries1) - db BANK(PokedexEntries2) - db BANK(PokedexEntries3) - db BANK(PokedexEntries4) + db BANK("Pokedex Entries 001-064") + db BANK("Pokedex Entries 065-128") + db BANK("Pokedex Entries 129-192") + db BANK("Pokedex Entries 193-251") HeavyBallMultiplier: ; subtract 20 from catch rate if weight < 102.4 kg @@ -907,7 +907,7 @@ MoonBallMultiplier: pop bc push bc - ld a, BANK(EvosAttacks) + ld a, BANK("Evolutions and Attacks") call GetFarByte cp EVOLVE_ITEM pop bc @@ -921,7 +921,7 @@ MoonBallMultiplier: ; No Pokémon evolve with Burn Heal, ; so Moon Balls always have a catch rate of 1×. push bc - ld a, BANK(EvosAttacks) + ld a, BANK("Evolutions and Attacks") call GetFarByte cp MOON_STONE_RED ; BURN_HEAL pop bc |