mirror of
https://github.com/Ninjdai1/pokeemerald.git
synced 2024-11-16 19:47:35 +01:00
70 lines
2.8 KiB
C
70 lines
2.8 KiB
C
#ifndef GUARD_TV_H
|
|
#define GUARD_TV_H
|
|
|
|
#define SLOT_MACHINE 0
|
|
#define ROULETTE 1
|
|
|
|
extern u8 *const gTVStringVarPtrs[3];
|
|
|
|
void ClearTVShowData(void);
|
|
void sub_80EE184(void);
|
|
void TryPutBattleSeminarOnAir(u16 foeSpecies, u16 species, u8 moveIdx, const u16 *movePtr, u16 betterMove);
|
|
void TryPutFrontierTVShowOnAir(u16 winStreak, u8 facility);
|
|
void DoTVShow(void);
|
|
void DoTVShowInSearchOfTrainers(void);
|
|
void TryPutTreasureInvestigatorsOnAir(void);
|
|
void TryPutLotteryWinnerReportOnAir(void);
|
|
void TryPutTrainerFanClubOnAir(void);
|
|
void IncrementDailyPlantedBerries(void);
|
|
void IncrementDailyPickedBerries(void);
|
|
void IncrementDailyBattlePoints(u16 delta);
|
|
void HideBattleTowerReporter(void);
|
|
void ReceiveTvShowsData(void *src, u32 size, u8 masterIdx);
|
|
void TryPutSpotTheCutiesOnAir(struct Pokemon *pokemon, u8 ribbonMonDataIdx);
|
|
u32 GetPlayerIDAsU32(void);
|
|
bool8 GetPriceReduction(u8 newsKind);
|
|
void sub_80F14F8(TVShow *shows);
|
|
size_t CountDigits(int value);
|
|
u8 GetRibbonCount(struct Pokemon *pokemon);
|
|
void AlertTVThatPlayerPlayedSlotMachine(u16 nCoinsSpent);
|
|
void AlertTVThatPlayerPlayedRoulette(u16 nCoinsSpent);
|
|
void AlertTVOfNewCoinTotal(u16 nCoinsPaidOut);
|
|
void TryPutSecretBaseSecretsOnAir(void);
|
|
void TryPutTodaysRivalTrainerOnAir(void);
|
|
void sub_80EDC60(const u16 *words);
|
|
void sub_80EDA80(void);
|
|
void ReceivePokeNewsData(void *src, u32 size, u8 masterIdx);
|
|
void sub_80F0BB8(void);
|
|
void RecordFishingAttemptForTV(bool8 caughtFish);
|
|
void IncrementDailySlotsUses(void);
|
|
void IncrementDailyRouletteUses(void);
|
|
void IncrementDailyWildBattles(void);
|
|
void IncrementDailyBerryBlender(void);
|
|
void sub_80F1208(TVShow *shows);
|
|
void sub_80EE44C(u8 nMonsCaught, u8 nPkblkUsed);
|
|
void sub_80F14F8(TVShow *shows);
|
|
size_t sub_80EF370(int value);
|
|
bool8 Put3CheersForPokeblocksOnTheAir(const u8 *partnersName, u8 flavor, u8 unused, u8 sheen, u8 language);
|
|
void SetPokemonAnglerSpecies(u16 species);
|
|
void UpdateTVShowsPerDay(u16 days);
|
|
void PutPokemonTodayCaughtOnAir(void);
|
|
void TV_PutSecretBaseVisitOnTheAir(void);
|
|
void PutBattleUpdateOnTheAir(u8 opponentLinkPlayerId, u16 move, u16 speciesPlayer, u16 speciesOpponent);
|
|
void BravoTrainerPokemonProfile_BeforeInterview1(u16 move);
|
|
void InterviewBefore(void);
|
|
void InterviewAfter(void);
|
|
void UpdateTVScreensOnMap(int, int);
|
|
void TV_PrintIntToStringVar(u8 varIdx, int value);
|
|
void SaveRecordedItemPurchasesForTVShow(void);
|
|
bool8 ShouldAirFrontierTVShow(void);
|
|
void sub_80EE8C8(u16 winStreak, u8 facilityAndMode);
|
|
void BravoTrainerPokemonProfile_BeforeInterview2(u8 contestStandingPlace);
|
|
void ContestLiveUpdates_Init(u8 round1Placing);
|
|
void ContestLiveUpdates_SetRound2Placing(u8 round2Placing);
|
|
void ContestLiveUpdates_SetWinnerAppealFlag(u8 flag);
|
|
void ContestLiveUpdates_SetWinnerMoveUsed(u16 move);
|
|
void ContestLiveUpdates_SetLoserData(u8 flag, u8 loser);
|
|
void ResetGabbyAndTy(void);
|
|
|
|
#endif //GUARD_TV_H
|