mirror of
https://github.com/thornAvery/jep-hack.git
synced 2025-09-16 18:20:50 +12:00

Ported from Pokemon October.8114fead91
1a6f3e4f03
d00cd6fafd
Alterations have been made in that the treemonset has been diversified a bit further, having Munchlax like in DPP. They're L60, intended to be used in Nihon. I haven't placed the grandma in the region yet, intending for her to be in Old City.
19 lines
518 B
NASM
19 lines
518 B
NASM
; Pokémon traded from RBY do not have held items, so GSC usually interprets the
|
|
; catch rate as an item. However, if the catch rate appears in this table, the
|
|
; item associated with the table entry is used instead.
|
|
|
|
TimeCapsule_CatchRateItems:
|
|
db FAIRY_FEATHER, LEFTOVERS
|
|
db BERRY, BITTER_BERRY
|
|
db BERRY, GOLD_BERRY
|
|
db BERRY, BERRY
|
|
db BERRY, BERRY
|
|
db ITEM_78, BERRY
|
|
db HEART_STONE, BERRY
|
|
db OLD_AMBER, BERRY
|
|
db DOME_FOSSIL, BERRY
|
|
db HELIX_FOSSIL, BERRY
|
|
db WING_FOSSIL, BERRY
|
|
db -1, BERRY
|
|
db 0 ; end
|