blob: e1fe1c4e4554049fd772590796d01a69aa8d478c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
#include "global.h"
#include "constants/heal_locations.h"
#include "contest_util.h"
#include "event_data.h"
#include "hall_of_fame.h"
#include "load_save.h"
#include "main.h"
#include "overworld.h"
#include "pokemon.h"
extern bool8 gHasHallOfFameRecords;
int GameClear(void)
{
int i;
bool32 ribbonGet;
ScrSpecial_HealPlayerParty();
if (FlagGet(FLAG_SYS_GAME_CLEAR) == TRUE)
{
gHasHallOfFameRecords = 1;
}
else
{
gHasHallOfFameRecords = 0;
FlagSet(FLAG_SYS_GAME_CLEAR);
}
if (!GetGameStat(GAME_STAT_FIRST_HOF_PLAY_TIME))
SetGameStat(GAME_STAT_FIRST_HOF_PLAY_TIME, (gSaveBlock2.playTimeHours << 16) | (gSaveBlock2.playTimeMinutes << 8) | gSaveBlock2.playTimeSeconds);
SetSecretBase2Field_9();
if (gSaveBlock2.playerGender == MALE)
sub_80537CC(HEAL_LOCATION_LITTLEROOT_TOWN_BRENDANS_HOUSE_2F);
else
sub_80537CC(HEAL_LOCATION_LITTLEROOT_TOWN_MAYS_HOUSE_2F);
ribbonGet = FALSE;
for (i = 0; i < 6; i++)
{
u8 val;
u8 *ptr = &val;
if (GetMonData(&gPlayerParty[i], MON_DATA_SANITY_BIT2)
&& !GetMonData(&gPlayerParty[i], MON_DATA_SANITY_BIT3)
&& !GetMonData(&gPlayerParty[i], MON_DATA_CHAMPION_RIBBON))
{
*ptr = 1;
SetMonData(&gPlayerParty[i], MON_DATA_CHAMPION_RIBBON, ptr);
ribbonGet = TRUE;
}
}
if (ribbonGet == TRUE)
{
IncrementGameStat(GAME_STAT_RECEIVED_RIBBONS);
FlagSet(FLAG_SYS_RIBBON_GET);
}
SetMainCallback2(sub_8141F90);
return 0;
}
int sp0C8_whiteout_maybe(void)
{
SetMainCallback2(CB2_WhiteOut);
return 0;
}
|