From e0540dff468e6da166aebbd864cfc24543958a9d Mon Sep 17 00:00:00 2001 From: LOuroboros Date: Tue, 30 Apr 2019 15:00:51 -0300 Subject: [PATCH] Oval Stone, Protector, Electirizer and Magmarizer data. --- src/data/items.h | 48 +++++++++++++++++++++++++++++++ src/data/text/item_descriptions.h | 20 +++++++++++++ 2 files changed, 68 insertions(+) diff --git a/src/data/items.h b/src/data/items.h index 952e237163..bf7ce3d567 100644 --- a/src/data/items.h +++ b/src/data/items.h @@ -2898,6 +2898,54 @@ const struct Item gItems[] = .secondaryId = 0, }, + [ITEM_OVAL_STONE] = + { + .name = _("Oval Stone"), + .itemId = ITEM_OVAL_STONE, + .price = 2000, + .description = sOvalStoneDesc, + .pocket = POCKET_ITEMS, + .type = 4, + .fieldUseFunc = ItemUseOutOfBattle_CannotUse, + .secondaryId = 0, + }, + + [ITEM_PROTECTOR] = + { + .name = _("Protector"), + .itemId = ITEM_PROTECTOR, + .price = 2000, + .description = sProtectorDesc, + .pocket = POCKET_ITEMS, + .type = 4, + .fieldUseFunc = ItemUseOutOfBattle_CannotUse, + .secondaryId = 0, + }, + + [ITEM_ELECTIRIZER] = + { + .name = _("Electirizer"), + .itemId = ITEM_ELECTIRIZER, + .price = 2000, + .description = sElectirizerDesc, + .pocket = POCKET_ITEMS, + .type = 4, + .fieldUseFunc = ItemUseOutOfBattle_CannotUse, + .secondaryId = 0, + }, + + [ITEM_MAGMARIZER] = + { + .name = _("Magmarizer"), + .itemId = ITEM_MAGMARIZER, + .price = 2000, + .description = sMagmarizerDesc, + .pocket = POCKET_ITEMS, + .type = 4, + .fieldUseFunc = ItemUseOutOfBattle_CannotUse, + .secondaryId = 0, + }, + [ITEM_LIGHT_BALL] = { .name = _("Light Ball"), diff --git a/src/data/text/item_descriptions.h b/src/data/text/item_descriptions.h index 767c88d1a7..2ad0f49c83 100644 --- a/src/data/text/item_descriptions.h +++ b/src/data/text/item_descriptions.h @@ -1078,6 +1078,26 @@ static const u8 sDragonScaleDesc[] = _( "held by DRAGON-\n" "type POKéMON."); +static const u8 sOvalStoneDesc[] = _( + "Helps a certain\n" + "POKéMON to evolve.\n" + "Looks like an egg."); + +static const u8 sProtectorDesc[] = _( + "A certain POKéMON\n" + "loves it. It's quite\n" + "heavy."); + +static const u8 sElectirizerDesc[] = _( + "A certain POKéMON\n" + "loves it. It's full\n" + "of electricity."); + +static const u8 sMagmarizerDesc[] = _( + "A certain POKéMON\n" + "loves it. It's full\n" + "of magma energy."); + static const u8 sLightBallDesc[] = _( "A hold item that\n" "raises the SP. ATK\n"