Continue macro comment updating

This commit is contained in:
GriffinR
2021-11-17 17:15:45 -05:00
parent 700425ef5f
commit c940b67716
10 changed files with 124 additions and 108 deletions

View File

@@ -5,11 +5,11 @@
static const u16 sContestLadyMonGfxId[] =
{
OBJ_EVENT_GFX_ZIGZAGOON_1,
OBJ_EVENT_GFX_SKITTY,
OBJ_EVENT_GFX_POOCHYENA,
OBJ_EVENT_GFX_KECLEON,
OBJ_EVENT_GFX_PIKACHU
[CONTEST_CATEGORY_COOL] = OBJ_EVENT_GFX_ZIGZAGOON_1,
[CONTEST_CATEGORY_BEAUTY] = OBJ_EVENT_GFX_SKITTY,
[CONTEST_CATEGORY_CUTE] = OBJ_EVENT_GFX_POOCHYENA,
[CONTEST_CATEGORY_SMART] = OBJ_EVENT_GFX_KECLEON,
[CONTEST_CATEGORY_TOUGH] = OBJ_EVENT_GFX_PIKACHU
};
static const u16 sLilycoveLadyGfxId[] =
@@ -434,36 +434,36 @@ static const u16 sFavorLadyPrizes[] =
static const u8 *const sContestLadyMonNames[] =
{
gText_ContestLady_Handsome,
gText_ContestLady_Vinny,
gText_ContestLady_Moreme,
gText_ContestLady_Ironhard,
gText_ContestLady_Muscle
[CONTEST_CATEGORY_COOL] = gText_ContestLady_Handsome,
[CONTEST_CATEGORY_BEAUTY] = gText_ContestLady_Vinny,
[CONTEST_CATEGORY_CUTE] = gText_ContestLady_Moreme,
[CONTEST_CATEGORY_SMART] = gText_ContestLady_Ironhard,
[CONTEST_CATEGORY_TOUGH] = gText_ContestLady_Muscle
};
static const u8 *const sContestLadyCategoryNames[] =
{
gText_ContestLady_Coolness,
gText_ContestLady_Beauty,
gText_ContestLady_Cuteness,
gText_ContestLady_Smartness,
gText_ContestLady_Toughness
[CONTEST_CATEGORY_COOL] = gText_ContestLady_Coolness,
[CONTEST_CATEGORY_BEAUTY] = gText_ContestLady_Beauty,
[CONTEST_CATEGORY_CUTE] = gText_ContestLady_Cuteness,
[CONTEST_CATEGORY_SMART] = gText_ContestLady_Smartness,
[CONTEST_CATEGORY_TOUGH] = gText_ContestLady_Toughness
};
static const u8 *const sContestNames[] =
{
gText_CoolnessContest,
gText_BeautyContest,
gText_CutenessContest,
gText_SmartnessContest,
gText_ToughnessContest
[CONTEST_CATEGORY_COOL] = gText_CoolnessContest,
[CONTEST_CATEGORY_BEAUTY] = gText_BeautyContest,
[CONTEST_CATEGORY_CUTE] = gText_CutenessContest,
[CONTEST_CATEGORY_SMART] = gText_SmartnessContest,
[CONTEST_CATEGORY_TOUGH] = gText_ToughnessContest
};
static const u16 sContestLadyMonSpecies[] =
{
SPECIES_ZIGZAGOON,
SPECIES_SKITTY,
SPECIES_POOCHYENA,
SPECIES_KECLEON,
SPECIES_PIKACHU
[CONTEST_CATEGORY_COOL] = SPECIES_ZIGZAGOON,
[CONTEST_CATEGORY_BEAUTY] = SPECIES_SKITTY,
[CONTEST_CATEGORY_CUTE] = SPECIES_POOCHYENA,
[CONTEST_CATEGORY_SMART] = SPECIES_KECLEON,
[CONTEST_CATEGORY_TOUGH] = SPECIES_PIKACHU
};