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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
|
static const u16 sFrontierExchangeCorner_Decor1[] =
{
DECOR_KISS_POSTER,
DECOR_KISS_CUSHION,
DECOR_SMOOCHUM_DOLL,
DECOR_TOGEPI_DOLL,
DECOR_MEOWTH_DOLL,
DECOR_CLEFAIRY_DOLL,
DECOR_DITTO_DOLL,
DECOR_CYNDAQUIL_DOLL,
DECOR_CHIKORITA_DOLL,
DECOR_TOTODILE_DOLL,
0xFFFF
};
static const u16 sFrontierExchangeCorner_Decor2[] =
{
DECOR_LAPRAS_DOLL,
DECOR_SNORLAX_DOLL,
DECOR_VENUSAUR_DOLL,
DECOR_CHARIZARD_DOLL,
DECOR_BLASTOISE_DOLL,
0xFFFF
};
static const u16 sFrontierExchangeCorner_Vitamins[] =
{
ITEM_PROTEIN,
ITEM_CALCIUM,
ITEM_IRON,
ITEM_ZINC,
ITEM_CARBOS,
ITEM_HP_UP,
0xFFFF
};
static const u16 sFrontierExchangeCorner_HoldItems[] =
{
ITEM_LEFTOVERS,
ITEM_WHITE_HERB,
ITEM_QUICK_CLAW,
ITEM_MENTAL_HERB,
ITEM_BRIGHT_POWDER,
ITEM_CHOICE_BAND,
ITEM_KINGS_ROCK,
ITEM_FOCUS_BAND,
ITEM_SCOPE_LENS,
0xFFFF
};
static const u8 *const sFrontierExchangeCorner_Decor1Descriptions[] =
{
BattleFrontier_ExchangeServiceCorner_Text_KissPosterDesc,
BattleFrontier_ExchangeServiceCorner_Text_KissCushionDesc,
BattleFrontier_ExchangeServiceCorner_Text_SmoochumDollDesc,
BattleFrontier_ExchangeServiceCorner_Text_TogepiDollDesc,
BattleFrontier_ExchangeServiceCorner_Text_MeowthDollDesc,
BattleFrontier_ExchangeServiceCorner_Text_ClefairyDollDesc,
BattleFrontier_ExchangeServiceCorner_Text_DittoDollDesc,
BattleFrontier_ExchangeServiceCorner_Text_CyndaquilDollDesc,
BattleFrontier_ExchangeServiceCorner_Text_ChikoritaDollDesc,
BattleFrontier_ExchangeServiceCorner_Text_TotodileDollDesc,
gText_Exit,
};
static const u8 *const sFrontierExchangeCorner_Decor2Descriptions[] =
{
BattleFrontier_ExchangeServiceCorner_Text_LargeDollDesc,
BattleFrontier_ExchangeServiceCorner_Text_LargeDollDesc,
BattleFrontier_ExchangeServiceCorner_Text_LargeDollDesc,
BattleFrontier_ExchangeServiceCorner_Text_LargeDollDesc,
BattleFrontier_ExchangeServiceCorner_Text_LargeDollDesc,
gText_Exit
};
static const u8 *const sFrontierExchangeCorner_VitaminsDescriptions[] =
{
BattleFrontier_ExchangeServiceCorner_Text_ProteinDesc,
BattleFrontier_ExchangeServiceCorner_Text_CalciumDesc,
BattleFrontier_ExchangeServiceCorner_Text_IronDesc,
BattleFrontier_ExchangeServiceCorner_Text_ZincDesc,
BattleFrontier_ExchangeServiceCorner_Text_CarbosDesc,
BattleFrontier_ExchangeServiceCorner_Text_HPUpDesc,
gText_Exit
};
static const u8 *const sFrontierExchangeCorner_HoldItemsDescriptions[] =
{
BattleFrontier_ExchangeServiceCorner_Text_LeftoversDesc,
BattleFrontier_ExchangeServiceCorner_Text_WhiteHerbDesc,
BattleFrontier_ExchangeServiceCorner_Text_QuickClawDesc,
BattleFrontier_ExchangeServiceCorner_Text_MentalHerbDesc,
BattleFrontier_ExchangeServiceCorner_Text_BrightpowderDesc,
BattleFrontier_ExchangeServiceCorner_Text_ChoiceBandDesc,
BattleFrontier_ExchangeServiceCorner_Text_KingsRockDesc,
BattleFrontier_ExchangeServiceCorner_Text_FocusBandDesc,
BattleFrontier_ExchangeServiceCorner_Text_ScopeLensDesc,
gText_Exit
};
|