From f86648755aed6b14209c4d83ac76392c35369338 Mon Sep 17 00:00:00 2001 From: Bassoonian Date: Fri, 22 Dec 2023 14:11:02 +0100 Subject: [PATCH] Fix Mega Stone descriptions (#3797) --- src/data/items.h | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/src/data/items.h b/src/data/items.h index 88518ca0ad..2114d1a4bd 100644 --- a/src/data/items.h +++ b/src/data/items.h @@ -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,