Sachet and Whipped Dream data.

This commit is contained in:
LOuroboros 2019-04-30 15:42:36 -03:00
parent 3316427728
commit a48c8f6aba
2 changed files with 34 additions and 0 deletions

View File

@ -3009,6 +3009,30 @@ const struct Item gItems[] =
.secondaryId = 0, .secondaryId = 0,
}, },
[ITEM_WHIPPED_DREAM] =
{
.name = _("WhippedDream"),
.itemId = ITEM_WHIPPED_DREAM,
.price = 2000,
.description = sWhippedDreamDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
.secondaryId = 0,
},
[ITEM_SACHET] =
{
.name = _("Sachet"),
.itemId = ITEM_SACHET,
.price = 2000,
.description = sSachetDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
.secondaryId = 0,
},
[ITEM_LIGHT_BALL] = [ITEM_LIGHT_BALL] =
{ {
.name = _("Light Ball"), .name = _("Light Ball"),

View File

@ -1123,6 +1123,16 @@ static const u8 sPrismScaleDesc[] = _(
"It helps a certain\n" "It helps a certain\n"
"POKéMON to evolve."); "POKéMON to evolve.");
static const u8 sWhippedDreamDesc[] = _(
"A soft and sweet\n"
"treat loved by some\n"
"POKéMON.");
static const u8 sSachetDesc[] = _(
"A sachet filled with\n"
"perfumes loved by\n"
"some POKéMON.");
static const u8 sLightBallDesc[] = _( static const u8 sLightBallDesc[] = _(
"A hold item that\n" "A hold item that\n"
"raises the SP. ATK\n" "raises the SP. ATK\n"