From 3d12e76411bbf7960e8c7fbed0cf3d6bbe6d987b Mon Sep 17 00:00:00 2001 From: LOuroboros Date: Tue, 30 Apr 2019 14:25:52 -0300 Subject: [PATCH] Added Oricorio's Nectars' data. --- src/data/items.h | 52 +++++++++++++++++++++++++++++++ src/data/text/item_descriptions.h | 20 ++++++++++++ 2 files changed, 72 insertions(+) diff --git a/src/data/items.h b/src/data/items.h index 048e06e06..c3478dbd1 100644 --- a/src/data/items.h +++ b/src/data/items.h @@ -1550,6 +1550,58 @@ const struct Item gItems[] = .secondaryId = 0, }, + [ITEM_RED_NECTAR] = + { + .name = _("Red Nectar"), + .itemId = ITEM_RED_NECTAR, + .price = 300, + .holdEffectParam = 0, + .description = sRedNectarDesc, + .pocket = POCKET_ITEMS, + .type = 4, + .fieldUseFunc = ItemUseOutOfBattle_CannotUse, // Placeholder + .secondaryId = 0, + }, + + [ITEM_YELLOW_NECTAR] = + { + .name = _("Yellow Nectar"), + .itemId = ITEM_YELLOW_NECTAR, + .price = 300, + .holdEffectParam = 0, + .description = sYellowNectarDesc, + .pocket = POCKET_ITEMS, + .type = 4, + .fieldUseFunc = ItemUseOutOfBattle_CannotUse, // Placeholder + .secondaryId = 0, + }, + + [ITEM_PINK_NECTAR] = + { + .name = _("Pink Nectar"), + .itemId = ITEM_PINK_NECTAR, + .price = 300, + .holdEffectParam = 0, + .description = sPinkNectarDesc, + .pocket = POCKET_ITEMS, + .type = 4, + .fieldUseFunc = ItemUseOutOfBattle_CannotUse, // Placeholder + .secondaryId = 0, + }, + + [ITEM_PURPLE_NECTAR] = + { + .name = _("Purple Nectar"), + .itemId = ITEM_PURPLE_NECTAR, + .price = 300, + .holdEffectParam = 0, + .description = sPurpleNectarDesc, + .pocket = POCKET_ITEMS, + .type = 4, + .fieldUseFunc = ItemUseOutOfBattle_CannotUse, // Placeholder + .secondaryId = 0, + }, + // Mail [ITEM_ORANGE_MAIL] = { diff --git a/src/data/text/item_descriptions.h b/src/data/text/item_descriptions.h index 9dfbdd93c..10989e3eb 100644 --- a/src/data/text/item_descriptions.h +++ b/src/data/text/item_descriptions.h @@ -570,6 +570,26 @@ static const u8 sHeartScaleDesc[] = _( "It is coveted by\n" "collectors."); +static const u8 sRedNectarDesc[] = _( + "Flower nectar that\n" + "changes the form\n" + "of certain POKéMON."); + +static const u8 sYellowNectarDesc[] = _( + "Flower nectar that\n" + "changes the form\n" + "of certain POKéMON."); + +static const u8 sPinkNectarDesc[] = _( + "Flower nectar that\n" + "changes the form\n" + "of certain POKéMON."); + +static const u8 sPurpleNectarDesc[] = _( + "Flower nectar that\n" + "changes the form\n" + "of certain POKéMON."); + // Mail static const u8 sOrangeMailDesc[] = _( "A ZIGZAGOON-print\n"