diff --git a/include/constants/items.h b/include/constants/items.h index 212aef6e5..009228345 100644 --- a/include/constants/items.h +++ b/include/constants/items.h @@ -571,7 +571,7 @@ #define ITEM_LOPPUNITE 476 #define ITEM_SALAMENCITE 477 #define ITEM_BEEDRILLITE 478 -#define ITEM_KEY_STONE 479 +#define ITEM_MEGA_BRACELET 479 // Gen7 hold effects #define ITEM_PROTECTIVE_PADS 480 diff --git a/src/data/items.h b/src/data/items.h index da2073592..4dbff706d 100644 --- a/src/data/items.h +++ b/src/data/items.h @@ -8651,14 +8651,14 @@ const struct Item gItems[] = .secondaryId = 0, }, - [ITEM_KEY_STONE] = + [ITEM_MEGA_BRACELET] = { - .name = _("Key Stone"), - .itemId = ITEM_KEY_STONE, + .name = _("Mega Bracelet"), + .itemId = ITEM_MEGA_BRACELET, .price = 200, .holdEffect = HOLD_EFFECT_NONE, .holdEffectParam = 0, - .description = gKeyStoneItemDescription, + .description = gMegaBraceletItemDescription, .importance = 0, .unk19 = 0, .pocket = POCKET_KEY_ITEMS, diff --git a/src/data/text/item_descriptions.h b/src/data/text/item_descriptions.h index 96c9571dd..6e2bf5f01 100644 --- a/src/data/text/item_descriptions.h +++ b/src/data/text/item_descriptions.h @@ -425,5 +425,5 @@ const u8 gCameruptiteItemDescription[] = _("This stone enables\nCamerupt to Mega const u8 gLoppuniteItemDescription[] = _("This stone enables\nLoppunny to Mega\nEvolve in battle."); const u8 gSalamenciteItemDescription[] = _("This stone enables\nSalamence to Mega\nEvolve in battle."); const u8 gBeedrilliteItemDescription[] = _("This stone enables\nBeedrill to Mega\nEvolve in battle."); -const u8 gKeyStoneItemDescription[] = _("Allows Pokémon holding\na Mega Stone to Mega\nEvolve in battle."); +const u8 gMegaBraceletItemDescription[] = _("Allows Pokémon holding\na Mega Stone to Mega\nEvolve in battle."); const u8 gProtectPadsItemDescription[] = _("Protects the holder\nfrom effects caused\nby contact moves.");