mirror of
https://github.com/Ninjdai1/pokeemerald.git
synced 2025-01-20 10:24:21 +01:00
Oval Stone, Protector, Electirizer and Magmarizer data.
This commit is contained in:
parent
850c93ec64
commit
e0540dff46
@ -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"),
|
||||
|
@ -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"
|
||||
|
Loading…
x
Reference in New Issue
Block a user