Fix Mega Stone descriptions (#3797)
This commit is contained in:
parent
2af6d65893
commit
f86648755a
1 changed files with 12 additions and 12 deletions
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue