diff options
| author | entrpntr <entrpntr@gmail.com> | 2020-04-30 23:37:15 -0400 |
|---|---|---|
| committer | entrpntr <entrpntr@gmail.com> | 2020-04-30 23:50:43 -0400 |
| commit | 03bc01bf4efea42661600089af1a8ff787a093a5 (patch) | |
| tree | cade8dc8d5d3aff4d849d0275d5f7b99022f3d13 /data/items | |
| parent | 35f6c55eac49c0357bb7939f0e4c2667f09821d3 (diff) | |
Add engine/link/link.asm and engine/link/mystery_gift.asm
Diffstat (limited to 'data/items')
| -rw-r--r-- | data/items/catch_rate_items.asm | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/data/items/catch_rate_items.asm b/data/items/catch_rate_items.asm new file mode 100644 index 00000000..9c39afac --- /dev/null +++ b/data/items/catch_rate_items.asm @@ -0,0 +1,18 @@ +; 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 ITEM_19, LEFTOVERS + db ITEM_2D, BITTER_BERRY + db ITEM_32, GOLD_BERRY + db ITEM_5A, BERRY + db ITEM_64, BERRY + db ITEM_78, BERRY + db ITEM_87, BERRY + db ITEM_BE, BERRY + db ITEM_C3, BERRY + db ITEM_DC, BERRY + db ITEM_FA, BERRY + db -1, BERRY + db 0 ; end |
