Added Oricorio's Nectars' data.

This commit is contained in:
LOuroboros 2019-04-30 14:25:52 -03:00
parent f521bec102
commit 3d12e76411
2 changed files with 72 additions and 0 deletions

View file

@ -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] =
{

View file

@ -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"