Fix Mega Stone descriptions (#3797)

This commit is contained in:
Bassoonian 2023-12-22 14:11:02 +01:00 committed by GitHub
parent 2af6d65893
commit f86648755a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -88,6 +88,14 @@ static const u8 sNectarDesc[] = _("Flower nectar that\n"
"changes the form\n"
"of certain Pokémon.");
static const u8 sCharizarditeDesc[] = _("This stone enables\n"
"Charizard to Mega\n"
"Evolve in battle.");
static const u8 sMewtwoniteDesc[] = _("This stone enables\n"
"Mewtwo to Mega\n"
"Evolve in battle.");
static const u8 sSeaIncenseDesc[] = _("A hold item that\n"
"slightly boosts\n"
"Water-type moves.");
@ -4210,9 +4218,7 @@ const struct Item gItems[] =
.name = _("CharizarditeX"),
.price = 0,
.holdEffect = HOLD_EFFECT_MEGA_STONE,
.description = COMPOUND_STRING("This stone enables\n"
"Charizard to Mega\n"
"Evolve in battle."),
.description = sCharizarditeDesc,
.pocket = POCKET_ITEMS,
.type = ITEM_USE_BAG_MENU,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
@ -4224,9 +4230,7 @@ const struct Item gItems[] =
.name = _("CharizarditeY"),
.price = 0,
.holdEffect = HOLD_EFFECT_MEGA_STONE,
.description = COMPOUND_STRING("This stone enables\n"
"Charizard to Mega\n"
"Evolve in battle."),
.description = sCharizarditeDesc,
.pocket = POCKET_ITEMS,
.type = ITEM_USE_BAG_MENU,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
@ -4378,9 +4382,7 @@ const struct Item gItems[] =
.name = _("Mewtwonite X"),
.price = 0,
.holdEffect = HOLD_EFFECT_MEGA_STONE,
.description = COMPOUND_STRING("This stone enables\n"
"Mewtwo to Mega\n"
"Evolve in battle."),
.description = sMewtwoniteDesc,
.pocket = POCKET_ITEMS,
.type = ITEM_USE_BAG_MENU,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
@ -4392,9 +4394,7 @@ const struct Item gItems[] =
.name = _("Mewtwonite Y"),
.price = 0,
.holdEffect = HOLD_EFFECT_MEGA_STONE,
.description = COMPOUND_STRING("This stone enables\n"
"Mewtwo to Mega\n"
"Evolve in battle."),
.description = sMewtwoniteDesc,
.pocket = POCKET_ITEMS,
.type = ITEM_USE_BAG_MENU,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,