diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2020-06-29 16:53:38 -0400 |
---|---|---|
committer | GriffinR <griffin.g.richards@gmail.com> | 2020-06-29 16:53:38 -0400 |
commit | abdf7cbf02442fb3d5cfe9945a8e093b273317a9 (patch) | |
tree | 13fe5cddb1eb5fe31e036ea7436882b06f4f8e1f /include | |
parent | eb80012757b664a474f3c745115aa4f109b69443 (diff) |
Label fishing effect functions
Diffstat (limited to 'include')
-rw-r--r-- | include/constants/items.h | 5 | ||||
-rw-r--r-- | include/tv.h | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/include/constants/items.h b/include/constants/items.h index fafcac8b1..d795194cf 100644 --- a/include/constants/items.h +++ b/include/constants/items.h @@ -495,6 +495,11 @@ #define MAX_PC_ITEM_CAPACITY 999 #define MAX_BERRY_CAPACITY 999 +// Secondary IDs for rods +#define OLD_ROD 0 +#define GOOD_ROD 1 +#define SUPER_ROD 2 + // Check if the item is one that can be used on a Pokemon. #define ITEM_HAS_EFFECT(item) ((item) >= ITEM_POTION && (item) <= ITEM_0B2) diff --git a/include/tv.h b/include/tv.h index 7e286ff6e..e2c50cad2 100644 --- a/include/tv.h +++ b/include/tv.h @@ -35,7 +35,7 @@ void sub_80EDC60(const u16 *words); void sub_80EDA80(void); void ReceivePokeNewsData(void *src, u32 size, u8 masterIdx); void sub_80F0BB8(void); -void sub_80ED950(bool8 flag); +void RecordFishingAttemptForTV(bool8 caughtFish); void IncrementDailySlotsUses(void); void IncrementDailyRouletteUses(void); void IncrementDailyWildBattles(void); |