summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDizzyEggg <jajkodizzy@wp.pl>2019-04-15 12:05:10 +0200
committerhuderlem <huderlem@gmail.com>2019-04-16 11:25:26 -0500
commit912b87564f6bf50c3e61315dcf715c463b0c4b9f (patch)
tree275dbe23e88aea6c9524b0ed8f58301d793548a7 /src
parentb4e1375bb612f22ab44d3ec9b50ec8b4fe6d2bc9 (diff)
Compact item data, make descriptions easier to read
Diffstat (limited to 'src')
-rw-r--r--src/data/items.h2684
-rw-r--r--src/data/text/item_descriptions.h1847
2 files changed, 1913 insertions, 2618 deletions
diff --git a/src/data/items.h b/src/data/items.h
index 7d7caa289..4d262e683 100644
--- a/src/data/items.h
+++ b/src/data/items.h
@@ -5,16 +5,10 @@ const struct Item gItems[] =
.name = _("????????"),
.itemId = ITEM_NONE,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gDummyItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sDummyDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -25,14 +19,9 @@ const struct Item gItems[] =
.name = _("MASTER BALL"),
.itemId = ITEM_MASTER_BALL,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gMasterBallItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sMasterBallDesc,
.pocket = POCKET_POKE_BALLS,
.type = 0,
- .fieldUseFunc = NULL,
.battleUsage = 2,
.battleUseFunc = ItemUseInBattle_PokeBall,
.secondaryId = 0,
@@ -43,14 +32,9 @@ const struct Item gItems[] =
.name = _("ULTRA BALL"),
.itemId = ITEM_ULTRA_BALL,
.price = 1200,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gUltraBallItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sUltraBallDesc,
.pocket = POCKET_POKE_BALLS,
.type = 1,
- .fieldUseFunc = NULL,
.battleUsage = 2,
.battleUseFunc = ItemUseInBattle_PokeBall,
.secondaryId = 1,
@@ -61,14 +45,9 @@ const struct Item gItems[] =
.name = _("GREAT BALL"),
.itemId = ITEM_GREAT_BALL,
.price = 600,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gGreatBallItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sGreatBallDesc,
.pocket = POCKET_POKE_BALLS,
.type = 2,
- .fieldUseFunc = NULL,
.battleUsage = 2,
.battleUseFunc = ItemUseInBattle_PokeBall,
.secondaryId = 2,
@@ -79,14 +58,9 @@ const struct Item gItems[] =
.name = _("POKé BALL"),
.itemId = ITEM_POKE_BALL,
.price = 200,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gPokeBallItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sPokeBallDesc,
.pocket = POCKET_POKE_BALLS,
.type = 3,
- .fieldUseFunc = NULL,
.battleUsage = 2,
.battleUseFunc = ItemUseInBattle_PokeBall,
.secondaryId = 3,
@@ -97,14 +71,9 @@ const struct Item gItems[] =
.name = _("SAFARI BALL"),
.itemId = ITEM_SAFARI_BALL,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gSafariBallItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sSafariBallDesc,
.pocket = POCKET_POKE_BALLS,
.type = 4,
- .fieldUseFunc = NULL,
.battleUsage = 2,
.battleUseFunc = ItemUseInBattle_PokeBall,
.secondaryId = 4,
@@ -115,14 +84,9 @@ const struct Item gItems[] =
.name = _("NET BALL"),
.itemId = ITEM_NET_BALL,
.price = 1000,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gNetBallItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sNetBallDesc,
.pocket = POCKET_POKE_BALLS,
.type = 5,
- .fieldUseFunc = NULL,
.battleUsage = 2,
.battleUseFunc = ItemUseInBattle_PokeBall,
.secondaryId = 5,
@@ -133,14 +97,9 @@ const struct Item gItems[] =
.name = _("DIVE BALL"),
.itemId = ITEM_DIVE_BALL,
.price = 1000,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gDiveBallItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sDiveBallDesc,
.pocket = POCKET_POKE_BALLS,
.type = 6,
- .fieldUseFunc = NULL,
.battleUsage = 2,
.battleUseFunc = ItemUseInBattle_PokeBall,
.secondaryId = 6,
@@ -151,14 +110,9 @@ const struct Item gItems[] =
.name = _("NEST BALL"),
.itemId = ITEM_NEST_BALL,
.price = 1000,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gNestBallItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sNestBallDesc,
.pocket = POCKET_POKE_BALLS,
.type = 7,
- .fieldUseFunc = NULL,
.battleUsage = 2,
.battleUseFunc = ItemUseInBattle_PokeBall,
.secondaryId = 7,
@@ -169,14 +123,9 @@ const struct Item gItems[] =
.name = _("REPEAT BALL"),
.itemId = ITEM_REPEAT_BALL,
.price = 1000,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gRepeatBallItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sRepeatBallDesc,
.pocket = POCKET_POKE_BALLS,
.type = 8,
- .fieldUseFunc = NULL,
.battleUsage = 2,
.battleUseFunc = ItemUseInBattle_PokeBall,
.secondaryId = 8,
@@ -187,14 +136,9 @@ const struct Item gItems[] =
.name = _("TIMER BALL"),
.itemId = ITEM_TIMER_BALL,
.price = 1000,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gTimerBallItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sTimerBallDesc,
.pocket = POCKET_POKE_BALLS,
.type = 9,
- .fieldUseFunc = NULL,
.battleUsage = 2,
.battleUseFunc = ItemUseInBattle_PokeBall,
.secondaryId = 9,
@@ -205,14 +149,9 @@ const struct Item gItems[] =
.name = _("LUXURY BALL"),
.itemId = ITEM_LUXURY_BALL,
.price = 1000,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gLuxuryBallItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sLuxuryBallDesc,
.pocket = POCKET_POKE_BALLS,
.type = 10,
- .fieldUseFunc = NULL,
.battleUsage = 2,
.battleUseFunc = ItemUseInBattle_PokeBall,
.secondaryId = 10,
@@ -223,14 +162,9 @@ const struct Item gItems[] =
.name = _("PREMIER BALL"),
.itemId = ITEM_PREMIER_BALL,
.price = 200,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gPremierBallItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sPremierBallDesc,
.pocket = POCKET_POKE_BALLS,
.type = 11,
- .fieldUseFunc = NULL,
.battleUsage = 2,
.battleUseFunc = ItemUseInBattle_PokeBall,
.secondaryId = 11,
@@ -243,11 +177,8 @@ const struct Item gItems[] =
.name = _("POTION"),
.itemId = ITEM_POTION,
.price = 300,
- .holdEffect = HOLD_EFFECT_NONE,
.holdEffectParam = 20,
- .description = gPotionItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sPotionDesc,
.pocket = POCKET_ITEMS,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_Medicine,
@@ -261,11 +192,7 @@ const struct Item gItems[] =
.name = _("ANTIDOTE"),
.itemId = ITEM_ANTIDOTE,
.price = 100,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gAntidoteItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sAntidoteDesc,
.pocket = POCKET_ITEMS,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_Medicine,
@@ -279,11 +206,7 @@ const struct Item gItems[] =
.name = _("BURN HEAL"),
.itemId = ITEM_BURN_HEAL,
.price = 250,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gBurnHealItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sBurnHealDesc,
.pocket = POCKET_ITEMS,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_Medicine,
@@ -297,11 +220,7 @@ const struct Item gItems[] =
.name = _("ICE HEAL"),
.itemId = ITEM_ICE_HEAL,
.price = 250,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gIceHealItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sIceHealDesc,
.pocket = POCKET_ITEMS,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_Medicine,
@@ -315,11 +234,7 @@ const struct Item gItems[] =
.name = _("AWAKENING"),
.itemId = ITEM_AWAKENING,
.price = 250,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gAwakeningItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sAwakeningDesc,
.pocket = POCKET_ITEMS,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_Medicine,
@@ -333,11 +248,7 @@ const struct Item gItems[] =
.name = _("PARLYZ HEAL"),
.itemId = ITEM_PARALYZE_HEAL,
.price = 200,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gParalyzeHealItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sParalyzeHealDesc,
.pocket = POCKET_ITEMS,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_Medicine,
@@ -351,11 +262,8 @@ const struct Item gItems[] =
.name = _("FULL RESTORE"),
.itemId = ITEM_FULL_RESTORE,
.price = 3000,
- .holdEffect = HOLD_EFFECT_NONE,
.holdEffectParam = 255,
- .description = gFullRestoreItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sFullRestoreDesc,
.pocket = POCKET_ITEMS,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_Medicine,
@@ -369,11 +277,8 @@ const struct Item gItems[] =
.name = _("MAX POTION"),
.itemId = ITEM_MAX_POTION,
.price = 2500,
- .holdEffect = HOLD_EFFECT_NONE,
.holdEffectParam = 255,
- .description = gMaxPotionItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sMaxPotionDesc,
.pocket = POCKET_ITEMS,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_Medicine,
@@ -387,11 +292,8 @@ const struct Item gItems[] =
.name = _("HYPER POTION"),
.itemId = ITEM_HYPER_POTION,
.price = 1200,
- .holdEffect = HOLD_EFFECT_NONE,
.holdEffectParam = 200,
- .description = gHyperPotionItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sHyperPotionDesc,
.pocket = POCKET_ITEMS,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_Medicine,
@@ -405,11 +307,8 @@ const struct Item gItems[] =
.name = _("SUPER POTION"),
.itemId = ITEM_SUPER_POTION,
.price = 700,
- .holdEffect = HOLD_EFFECT_NONE,
.holdEffectParam = 50,
- .description = gSuperPotionItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sSuperPotionDesc,
.pocket = POCKET_ITEMS,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_Medicine,
@@ -423,11 +322,7 @@ const struct Item gItems[] =
.name = _("FULL HEAL"),
.itemId = ITEM_FULL_HEAL,
.price = 600,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gFullHealItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sFullHealDesc,
.pocket = POCKET_ITEMS,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_Medicine,
@@ -441,11 +336,7 @@ const struct Item gItems[] =
.name = _("REVIVE"),
.itemId = ITEM_REVIVE,
.price = 1500,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gReviveItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sReviveDesc,
.pocket = POCKET_ITEMS,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_Medicine,
@@ -459,11 +350,7 @@ const struct Item gItems[] =
.name = _("MAX REVIVE"),
.itemId = ITEM_MAX_REVIVE,
.price = 4000,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gMaxReviveItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sMaxReviveDesc,
.pocket = POCKET_ITEMS,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_Medicine,
@@ -477,11 +364,8 @@ const struct Item gItems[] =
.name = _("FRESH WATER"),
.itemId = ITEM_FRESH_WATER,
.price = 200,
- .holdEffect = HOLD_EFFECT_NONE,
.holdEffectParam = 50,
- .description = gFreshWaterItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sFreshWaterDesc,
.pocket = POCKET_ITEMS,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_Medicine,
@@ -495,11 +379,8 @@ const struct Item gItems[] =
.name = _("SODA POP"),
.itemId = ITEM_SODA_POP,
.price = 300,
- .holdEffect = HOLD_EFFECT_NONE,
.holdEffectParam = 60,
- .description = gSodaPopItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sSodaPopDesc,
.pocket = POCKET_ITEMS,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_Medicine,
@@ -513,11 +394,8 @@ const struct Item gItems[] =
.name = _("LEMONADE"),
.itemId = ITEM_LEMONADE,
.price = 350,
- .holdEffect = HOLD_EFFECT_NONE,
.holdEffectParam = 80,
- .description = gLemonadeItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sLemonadeDesc,
.pocket = POCKET_ITEMS,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_Medicine,
@@ -531,11 +409,8 @@ const struct Item gItems[] =
.name = _("MOOMOO MILK"),
.itemId = ITEM_MOOMOO_MILK,
.price = 500,
- .holdEffect = HOLD_EFFECT_NONE,
.holdEffectParam = 100,
- .description = gMoomooMilkItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sMoomooMilkDesc,
.pocket = POCKET_ITEMS,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_Medicine,
@@ -549,11 +424,7 @@ const struct Item gItems[] =
.name = _("ENERGYPOWDER"),
.itemId = ITEM_ENERGY_POWDER,
.price = 500,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gEnergyPowderItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sEnergyPowderDesc,
.pocket = POCKET_ITEMS,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_Medicine,
@@ -567,11 +438,7 @@ const struct Item gItems[] =
.name = _("ENERGY ROOT"),
.itemId = ITEM_ENERGY_ROOT,
.price = 800,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gEnergyRootItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sEnergyRootDesc,
.pocket = POCKET_ITEMS,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_Medicine,
@@ -585,11 +452,7 @@ const struct Item gItems[] =
.name = _("HEAL POWDER"),
.itemId = ITEM_HEAL_POWDER,
.price = 450,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gHealPowderItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sHealPowderDesc,
.pocket = POCKET_ITEMS,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_Medicine,
@@ -603,11 +466,7 @@ const struct Item gItems[] =
.name = _("REVIVAL HERB"),
.itemId = ITEM_REVIVAL_HERB,
.price = 2800,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gRevivalHerbItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sRevivalHerbDesc,
.pocket = POCKET_ITEMS,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_Medicine,
@@ -621,11 +480,8 @@ const struct Item gItems[] =
.name = _("ETHER"),
.itemId = ITEM_ETHER,
.price = 1200,
- .holdEffect = HOLD_EFFECT_NONE,
.holdEffectParam = 10,
- .description = gEtherItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sEtherDesc,
.pocket = POCKET_ITEMS,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_PPRecovery,
@@ -639,11 +495,8 @@ const struct Item gItems[] =
.name = _("MAX ETHER"),
.itemId = ITEM_MAX_ETHER,
.price = 2000,
- .holdEffect = HOLD_EFFECT_NONE,
.holdEffectParam = 255,
- .description = gMaxEtherItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sMaxEtherDesc,
.pocket = POCKET_ITEMS,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_PPRecovery,
@@ -657,11 +510,8 @@ const struct Item gItems[] =
.name = _("ELIXIR"),
.itemId = ITEM_ELIXIR,
.price = 3000,
- .holdEffect = HOLD_EFFECT_NONE,
.holdEffectParam = 10,
- .description = gElixirItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sElixirDesc,
.pocket = POCKET_ITEMS,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_PPRecovery,
@@ -675,11 +525,8 @@ const struct Item gItems[] =
.name = _("MAX ELIXIR"),
.itemId = ITEM_MAX_ELIXIR,
.price = 4500,
- .holdEffect = HOLD_EFFECT_NONE,
.holdEffectParam = 255,
- .description = gMaxElixirItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sMaxElixirDesc,
.pocket = POCKET_ITEMS,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_PPRecovery,
@@ -693,11 +540,7 @@ const struct Item gItems[] =
.name = _("LAVA COOKIE"),
.itemId = ITEM_LAVA_COOKIE,
.price = 200,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gLavaCookieItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sLavaCookieDesc,
.pocket = POCKET_ITEMS,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_Medicine,
@@ -711,11 +554,7 @@ const struct Item gItems[] =
.name = _("BLUE FLUTE"),
.itemId = ITEM_BLUE_FLUTE,
.price = 100,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gBlueFluteItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sBlueFluteDesc,
.pocket = POCKET_ITEMS,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_Medicine,
@@ -729,11 +568,7 @@ const struct Item gItems[] =
.name = _("YELLOW FLUTE"),
.itemId = ITEM_YELLOW_FLUTE,
.price = 200,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gYellowFluteItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sYellowFluteDesc,
.pocket = POCKET_ITEMS,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
@@ -747,11 +582,7 @@ const struct Item gItems[] =
.name = _("RED FLUTE"),
.itemId = ITEM_RED_FLUTE,
.price = 300,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gRedFluteItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sRedFluteDesc,
.pocket = POCKET_ITEMS,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
@@ -765,16 +596,11 @@ const struct Item gItems[] =
.name = _("BLACK FLUTE"),
.itemId = ITEM_BLACK_FLUTE,
.price = 400,
- .holdEffect = HOLD_EFFECT_NONE,
.holdEffectParam = 50,
- .description = gBlackFluteItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sBlackFluteDesc,
.pocket = POCKET_ITEMS,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_BlackWhiteFlute,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -783,16 +609,11 @@ const struct Item gItems[] =
.name = _("WHITE FLUTE"),
.itemId = ITEM_WHITE_FLUTE,
.price = 500,
- .holdEffect = HOLD_EFFECT_NONE,
.holdEffectParam = 150,
- .description = gWhiteFluteItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sWhiteFluteDesc,
.pocket = POCKET_ITEMS,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_BlackWhiteFlute,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -803,9 +624,7 @@ const struct Item gItems[] =
.price = 100,
.holdEffect = HOLD_EFFECT_RESTORE_HP,
.holdEffectParam = 20,
- .description = gBerryJuiceItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sBerryJuiceDesc,
.pocket = POCKET_ITEMS,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_Medicine,
@@ -819,16 +638,10 @@ const struct Item gItems[] =
.name = _("SACRED ASH"),
.itemId = ITEM_SACRED_ASH,
.price = 200,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gSacredAshItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sSacredAshDesc,
.pocket = POCKET_ITEMS,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_SacredAsh,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -839,16 +652,10 @@ const struct Item gItems[] =
.name = _("SHOAL SALT"),
.itemId = ITEM_SHOAL_SALT,
.price = 20,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gShoalSaltItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sShoalSaltDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -857,16 +664,10 @@ const struct Item gItems[] =
.name = _("SHOAL SHELL"),
.itemId = ITEM_SHOAL_SHELL,
.price = 20,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gShoalShellItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sShoalShellDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -875,16 +676,10 @@ const struct Item gItems[] =
.name = _("RED SHARD"),
.itemId = ITEM_RED_SHARD,
.price = 200,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gRedShardItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sRedShardDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -893,16 +688,10 @@ const struct Item gItems[] =
.name = _("BLUE SHARD"),
.itemId = ITEM_BLUE_SHARD,
.price = 200,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gBlueShardItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sBlueShardDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -911,16 +700,10 @@ const struct Item gItems[] =
.name = _("YELLOW SHARD"),
.itemId = ITEM_YELLOW_SHARD,
.price = 200,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gYellowShardItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sYellowShardDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -929,16 +712,10 @@ const struct Item gItems[] =
.name = _("GREEN SHARD"),
.itemId = ITEM_GREEN_SHARD,
.price = 200,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gGreenShardItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sGreenShardDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -947,16 +724,10 @@ const struct Item gItems[] =
.name = _("????????"),
.itemId = ITEM_NONE,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gDummyItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sDummyDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -965,16 +736,10 @@ const struct Item gItems[] =
.name = _("????????"),
.itemId = ITEM_NONE,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gDummyItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sDummyDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -983,16 +748,10 @@ const struct Item gItems[] =
.name = _("????????"),
.itemId = ITEM_NONE,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gDummyItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sDummyDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -1001,16 +760,10 @@ const struct Item gItems[] =
.name = _("????????"),
.itemId = ITEM_NONE,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gDummyItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sDummyDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -1019,16 +772,10 @@ const struct Item gItems[] =
.name = _("????????"),
.itemId = ITEM_NONE,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gDummyItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sDummyDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -1037,16 +784,10 @@ const struct Item gItems[] =
.name = _("????????"),
.itemId = ITEM_NONE,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gDummyItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sDummyDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -1055,16 +796,10 @@ const struct Item gItems[] =
.name = _("????????"),
.itemId = ITEM_NONE,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gDummyItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sDummyDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -1073,16 +808,10 @@ const struct Item gItems[] =
.name = _("????????"),
.itemId = ITEM_NONE,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gDummyItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sDummyDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -1091,16 +820,10 @@ const struct Item gItems[] =
.name = _("????????"),
.itemId = ITEM_NONE,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gDummyItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sDummyDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -1109,16 +832,10 @@ const struct Item gItems[] =
.name = _("????????"),
.itemId = ITEM_NONE,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gDummyItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sDummyDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -1127,16 +844,10 @@ const struct Item gItems[] =
.name = _("????????"),
.itemId = ITEM_NONE,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gDummyItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sDummyDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -1147,16 +858,10 @@ const struct Item gItems[] =
.name = _("HP UP"),
.itemId = ITEM_HP_UP,
.price = 9800,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gHPUpItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sHPUpDesc,
.pocket = POCKET_ITEMS,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_Medicine,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -1165,16 +870,10 @@ const struct Item gItems[] =
.name = _("PROTEIN"),
.itemId = ITEM_PROTEIN,
.price = 9800,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gProteinItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sProteinDesc,
.pocket = POCKET_ITEMS,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_Medicine,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -1183,16 +882,10 @@ const struct Item gItems[] =
.name = _("IRON"),
.itemId = ITEM_IRON,
.price = 9800,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gIronItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sIronDesc,
.pocket = POCKET_ITEMS,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_Medicine,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -1201,16 +894,10 @@ const struct Item gItems[] =
.name = _("CARBOS"),
.itemId = ITEM_CARBOS,
.price = 9800,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gCarbosItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sCarbosDesc,
.pocket = POCKET_ITEMS,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_Medicine,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -1219,16 +906,10 @@ const struct Item gItems[] =
.name = _("CALCIUM"),
.itemId = ITEM_CALCIUM,
.price = 9800,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gCalciumItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sCalciumDesc,
.pocket = POCKET_ITEMS,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_Medicine,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -1237,16 +918,10 @@ const struct Item gItems[] =
.name = _("RARE CANDY"),
.itemId = ITEM_RARE_CANDY,
.price = 4800,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gRareCandyItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sRareCandyDesc,
.pocket = POCKET_ITEMS,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_RareCandy,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -1255,16 +930,10 @@ const struct Item gItems[] =
.name = _("PP UP"),
.itemId = ITEM_PP_UP,
.price = 9800,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gPPUpItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sPPUpDesc,
.pocket = POCKET_ITEMS,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_PPUp,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -1273,16 +942,10 @@ const struct Item gItems[] =
.name = _("ZINC"),
.itemId = ITEM_ZINC,
.price = 9800,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gZincItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sZincDesc,
.pocket = POCKET_ITEMS,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_Medicine,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -1291,16 +954,10 @@ const struct Item gItems[] =
.name = _("PP MAX"),
.itemId = ITEM_PP_MAX,
.price = 9800,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gPPMaxItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sPPMaxDesc,
.pocket = POCKET_ITEMS,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_PPUp,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -1309,16 +966,10 @@ const struct Item gItems[] =
.name = _("????????"),
.itemId = ITEM_NONE,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gDummyItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sDummyDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -1329,11 +980,7 @@ const struct Item gItems[] =
.name = _("GUARD SPEC."),
.itemId = ITEM_GUARD_SPEC,
.price = 700,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gGuardSpecItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sGuardSpecDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
@@ -1347,11 +994,7 @@ const struct Item gItems[] =
.name = _("DIRE HIT"),
.itemId = ITEM_DIRE_HIT,
.price = 650,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gDireHitItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sDireHitDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
@@ -1365,11 +1008,7 @@ const struct Item gItems[] =
.name = _("X ATTACK"),
.itemId = ITEM_X_ATTACK,
.price = 500,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gXAttackItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sXAttackDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
@@ -1383,11 +1022,7 @@ const struct Item gItems[] =
.name = _("X DEFEND"),
.itemId = ITEM_X_DEFEND,
.price = 550,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gXDefendItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sXDefendDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
@@ -1401,11 +1036,7 @@ const struct Item gItems[] =
.name = _("X SPEED"),
.itemId = ITEM_X_SPEED,
.price = 350,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gXSpeedItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sXSpeedDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
@@ -1419,11 +1050,7 @@ const struct Item gItems[] =
.name = _("X ACCURACY"),
.itemId = ITEM_X_ACCURACY,
.price = 950,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gXAccuracyItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sXAccuracyDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
@@ -1437,11 +1064,7 @@ const struct Item gItems[] =
.name = _("X SPECIAL"),
.itemId = ITEM_X_SPECIAL,
.price = 350,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gXSpecialItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sXSpecialDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
@@ -1455,11 +1078,7 @@ const struct Item gItems[] =
.name = _("POKé DOLL"),
.itemId = ITEM_POKE_DOLL,
.price = 1000,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gPokeDollItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sPokeDollDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
@@ -1473,11 +1092,7 @@ const struct Item gItems[] =
.name = _("FLUFFY TAIL"),
.itemId = ITEM_FLUFFY_TAIL,
.price = 1000,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gFluffyTailItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sFluffyTailDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
@@ -1491,16 +1106,10 @@ const struct Item gItems[] =
.name = _("????????"),
.itemId = ITEM_NONE,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gDummyItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sDummyDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -1511,16 +1120,11 @@ const struct Item gItems[] =
.name = _("SUPER REPEL"),
.itemId = ITEM_SUPER_REPEL,
.price = 500,
- .holdEffect = HOLD_EFFECT_NONE,
.holdEffectParam = 200,
- .description = gSuperRepelItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sSuperRepelDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_Repel,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -1529,16 +1133,11 @@ const struct Item gItems[] =
.name = _("MAX REPEL"),
.itemId = ITEM_MAX_REPEL,
.price = 700,
- .holdEffect = HOLD_EFFECT_NONE,
.holdEffectParam = 250,
- .description = gMaxRepelItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sMaxRepelDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_Repel,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -1547,16 +1146,10 @@ const struct Item gItems[] =
.name = _("ESCAPE ROPE"),
.itemId = ITEM_ESCAPE_ROPE,
.price = 550,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gEscapeRopeItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sEscapeRopeDesc,
.pocket = POCKET_ITEMS,
.type = 2,
.fieldUseFunc = ItemUseOutOfBattle_EscapeRope,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -1565,16 +1158,11 @@ const struct Item gItems[] =
.name = _("REPEL"),
.itemId = ITEM_REPEL,
.price = 350,
- .holdEffect = HOLD_EFFECT_NONE,
.holdEffectParam = 100,
- .description = gRepelItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sRepelDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_Repel,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -1583,16 +1171,10 @@ const struct Item gItems[] =
.name = _("????????"),
.itemId = ITEM_NONE,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gDummyItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sDummyDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -1601,16 +1183,10 @@ const struct Item gItems[] =
.name = _("????????"),
.itemId = ITEM_NONE,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gDummyItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sDummyDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -1619,16 +1195,10 @@ const struct Item gItems[] =
.name = _("????????"),
.itemId = ITEM_NONE,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gDummyItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sDummyDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -1637,16 +1207,10 @@ const struct Item gItems[] =
.name = _("????????"),
.itemId = ITEM_NONE,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gDummyItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sDummyDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -1655,16 +1219,10 @@ const struct Item gItems[] =
.name = _("????????"),
.itemId = ITEM_NONE,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gDummyItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sDummyDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -1673,16 +1231,10 @@ const struct Item gItems[] =
.name = _("????????"),
.itemId = ITEM_NONE,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gDummyItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sDummyDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -1693,16 +1245,10 @@ const struct Item gItems[] =
.name = _("SUN STONE"),
.itemId = ITEM_SUN_STONE,
.price = 2100,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gSunStoneItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sSunStoneDesc,
.pocket = POCKET_ITEMS,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_EvolutionStone,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -1711,16 +1257,10 @@ const struct Item gItems[] =
.name = _("MOON STONE"),
.itemId = ITEM_MOON_STONE,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gMoonStoneItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sMoonStoneDesc,
.pocket = POCKET_ITEMS,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_EvolutionStone,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -1729,16 +1269,10 @@ const struct Item gItems[] =
.name = _("FIRE STONE"),
.itemId = ITEM_FIRE_STONE,
.price = 2100,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gFireStoneItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sFireStoneDesc,
.pocket = POCKET_ITEMS,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_EvolutionStone,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -1747,16 +1281,10 @@ const struct Item gItems[] =
.name = _("THUNDERSTONE"),
.itemId = ITEM_THUNDER_STONE,
.price = 2100,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gThunderStoneItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sThunderStoneDesc,
.pocket = POCKET_ITEMS,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_EvolutionStone,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -1765,16 +1293,10 @@ const struct Item gItems[] =
.name = _("WATER STONE"),
.itemId = ITEM_WATER_STONE,
.price = 2100,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gWaterStoneItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sWaterStoneDesc,
.pocket = POCKET_ITEMS,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_EvolutionStone,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -1783,16 +1305,10 @@ const struct Item gItems[] =
.name = _("LEAF STONE"),
.itemId = ITEM_LEAF_STONE,
.price = 2100,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gLeafStoneItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sLeafStoneDesc,
.pocket = POCKET_ITEMS,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_EvolutionStone,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -1801,16 +1317,10 @@ const struct Item gItems[] =
.name = _("????????"),
.itemId = ITEM_NONE,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gDummyItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sDummyDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -1819,16 +1329,10 @@ const struct Item gItems[] =
.name = _("????????"),
.itemId = ITEM_NONE,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gDummyItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sDummyDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -1837,16 +1341,10 @@ const struct Item gItems[] =
.name = _("????????"),
.itemId = ITEM_NONE,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gDummyItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sDummyDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -1855,16 +1353,10 @@ const struct Item gItems[] =
.name = _("????????"),
.itemId = ITEM_NONE,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gDummyItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sDummyDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -1875,16 +1367,10 @@ const struct Item gItems[] =
.name = _("TINYMUSHROOM"),
.itemId = ITEM_TINY_MUSHROOM,
.price = 500,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gTinyMushroomItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sTinyMushroomDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -1893,16 +1379,10 @@ const struct Item gItems[] =
.name = _("BIG MUSHROOM"),
.itemId = ITEM_BIG_MUSHROOM,
.price = 5000,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gBigMushroomItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sBigMushroomDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -1911,16 +1391,10 @@ const struct Item gItems[] =
.name = _("????????"),
.itemId = ITEM_NONE,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gDummyItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sDummyDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -1929,16 +1403,10 @@ const struct Item gItems[] =
.name = _("PEARL"),
.itemId = ITEM_PEARL,
.price = 1400,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gPearlItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sPearlDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -1947,16 +1415,10 @@ const struct Item gItems[] =
.name = _("BIG PEARL"),
.itemId = ITEM_BIG_PEARL,
.price = 7500,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gBigPearlItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sBigPearlDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -1965,16 +1427,10 @@ const struct Item gItems[] =
.name = _("STARDUST"),
.itemId = ITEM_STARDUST,
.price = 2000,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gStardustItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sStardustDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -1983,16 +1439,10 @@ const struct Item gItems[] =
.name = _("STAR PIECE"),
.itemId = ITEM_STAR_PIECE,
.price = 9800,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gStarPieceItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sStarPieceDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -2001,16 +1451,10 @@ const struct Item gItems[] =
.name = _("NUGGET"),
.itemId = ITEM_NUGGET,
.price = 10000,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gNuggetItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sNuggetDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -2019,16 +1463,10 @@ const struct Item gItems[] =
.name = _("HEART SCALE"),
.itemId = ITEM_HEART_SCALE,
.price = 100,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gHeartScaleItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sHeartScaleDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -2037,16 +1475,10 @@ const struct Item gItems[] =
.name = _("????????"),
.itemId = ITEM_NONE,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gDummyItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sDummyDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -2055,16 +1487,10 @@ const struct Item gItems[] =
.name = _("????????"),
.itemId = ITEM_NONE,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gDummyItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sDummyDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -2073,16 +1499,10 @@ const struct Item gItems[] =
.name = _("????????"),
.itemId = ITEM_NONE,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gDummyItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sDummyDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -2091,16 +1511,10 @@ const struct Item gItems[] =
.name = _("????????"),
.itemId = ITEM_NONE,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gDummyItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sDummyDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -2109,16 +1523,10 @@ const struct Item gItems[] =
.name = _("????????"),
.itemId = ITEM_NONE,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gDummyItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sDummyDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -2127,16 +1535,10 @@ const struct Item gItems[] =
.name = _("????????"),
.itemId = ITEM_NONE,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gDummyItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sDummyDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -2145,16 +1547,10 @@ const struct Item gItems[] =
.name = _("????????"),
.itemId = ITEM_NONE,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gDummyItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sDummyDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -2163,16 +1559,10 @@ const struct Item gItems[] =
.name = _("????????"),
.itemId = ITEM_NONE,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gDummyItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sDummyDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -2181,16 +1571,10 @@ const struct Item gItems[] =
.name = _("????????"),
.itemId = ITEM_NONE,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gDummyItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sDummyDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -2200,16 +1584,10 @@ const struct Item gItems[] =
.name = _("ORANGE MAIL"),
.itemId = ITEM_ORANGE_MAIL,
.price = 50,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gOrangeMailItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sOrangeMailDesc,
.pocket = POCKET_ITEMS,
.type = 0,
.fieldUseFunc = ItemUseOutOfBattle_Mail,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -2218,16 +1596,10 @@ const struct Item gItems[] =
.name = _("HARBOR MAIL"),
.itemId = ITEM_HARBOR_MAIL,
.price = 50,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gHarborMailItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sHarborMailDesc,
.pocket = POCKET_ITEMS,
.type = 0,
.fieldUseFunc = ItemUseOutOfBattle_Mail,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 1,
},
@@ -2236,16 +1608,10 @@ const struct Item gItems[] =
.name = _("GLITTER MAIL"),
.itemId = ITEM_GLITTER_MAIL,
.price = 50,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gGlitterMailItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sGlitterMailDesc,
.pocket = POCKET_ITEMS,
.type = 0,
.fieldUseFunc = ItemUseOutOfBattle_Mail,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 2,
},
@@ -2254,16 +1620,10 @@ const struct Item gItems[] =
.name = _("MECH MAIL"),
.itemId = ITEM_MECH_MAIL,
.price = 50,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gMechMailItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sMechMailDesc,
.pocket = POCKET_ITEMS,
.type = 0,
.fieldUseFunc = ItemUseOutOfBattle_Mail,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 3,
},
@@ -2272,16 +1632,10 @@ const struct Item gItems[] =
.name = _("WOOD MAIL"),
.itemId = ITEM_WOOD_MAIL,
.price = 50,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gWoodMailItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sWoodMailDesc,
.pocket = POCKET_ITEMS,
.type = 0,
.fieldUseFunc = ItemUseOutOfBattle_Mail,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 4,
},
@@ -2290,16 +1644,10 @@ const struct Item gItems[] =
.name = _("WAVE MAIL"),
.itemId = ITEM_WAVE_MAIL,
.price = 50,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gWaveMailItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sWaveMailDesc,
.pocket = POCKET_ITEMS,
.type = 0,
.fieldUseFunc = ItemUseOutOfBattle_Mail,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 5,
},
@@ -2308,16 +1656,10 @@ const struct Item gItems[] =
.name = _("BEAD MAIL"),
.itemId = ITEM_BEAD_MAIL,
.price = 50,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gBeadMailItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sBeadMailDesc,
.pocket = POCKET_ITEMS,
.type = 0,
.fieldUseFunc = ItemUseOutOfBattle_Mail,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 6,
},
@@ -2326,16 +1668,10 @@ const struct Item gItems[] =
.name = _("SHADOW MAIL"),
.itemId = ITEM_SHADOW_MAIL,
.price = 50,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gShadowMailItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sShadowMailDesc,
.pocket = POCKET_ITEMS,
.type = 0,
.fieldUseFunc = ItemUseOutOfBattle_Mail,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 7,
},
@@ -2344,16 +1680,10 @@ const struct Item gItems[] =
.name = _("TROPIC MAIL"),
.itemId = ITEM_TROPIC_MAIL,
.price = 50,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gTropicMailItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sTropicMailDesc,
.pocket = POCKET_ITEMS,
.type = 0,
.fieldUseFunc = ItemUseOutOfBattle_Mail,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 8,
},
@@ -2362,16 +1692,10 @@ const struct Item gItems[] =
.name = _("DREAM MAIL"),
.itemId = ITEM_DREAM_MAIL,
.price = 50,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gDreamMailItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sDreamMailDesc,
.pocket = POCKET_ITEMS,
.type = 0,
.fieldUseFunc = ItemUseOutOfBattle_Mail,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 9,
},
@@ -2380,16 +1704,10 @@ const struct Item gItems[] =
.name = _("FAB MAIL"),
.itemId = ITEM_FAB_MAIL,
.price = 50,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gFabMailItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sFabMailDesc,
.pocket = POCKET_ITEMS,
.type = 0,
.fieldUseFunc = ItemUseOutOfBattle_Mail,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 10,
},
@@ -2398,16 +1716,10 @@ const struct Item gItems[] =
.name = _("RETRO MAIL"),
.itemId = ITEM_RETRO_MAIL,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gRetroMailItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sRetroMailDesc,
.pocket = POCKET_ITEMS,
.type = 0,
.fieldUseFunc = ItemUseOutOfBattle_Mail,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 11,
},
@@ -2419,10 +1731,7 @@ const struct Item gItems[] =
.itemId = ITEM_CHERI_BERRY,
.price = 20,
.holdEffect = HOLD_EFFECT_CURE_PAR,
- .holdEffectParam = 0,
- .description = gCheriBerryItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sCheriBerryDesc,
.pocket = POCKET_BERRIES,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_Medicine,
@@ -2437,10 +1746,7 @@ const struct Item gItems[] =
.itemId = ITEM_CHESTO_BERRY,
.price = 20,
.holdEffect = HOLD_EFFECT_CURE_SLP,
- .holdEffectParam = 0,
- .description = gChestoBerryItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sChestoBerryDesc,
.pocket = POCKET_BERRIES,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_Medicine,
@@ -2455,10 +1761,7 @@ const struct Item gItems[] =
.itemId = ITEM_PECHA_BERRY,
.price = 20,
.holdEffect = HOLD_EFFECT_CURE_PSN,
- .holdEffectParam = 0,
- .description = gPechaBerryItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sPechaBerryDesc,
.pocket = POCKET_BERRIES,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_Medicine,
@@ -2473,10 +1776,7 @@ const struct Item gItems[] =
.itemId = ITEM_RAWST_BERRY,
.price = 20,
.holdEffect = HOLD_EFFECT_CURE_BRN,
- .holdEffectParam = 0,
- .description = gRawstBerryItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sRawstBerryDesc,
.pocket = POCKET_BERRIES,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_Medicine,
@@ -2491,10 +1791,7 @@ const struct Item gItems[] =
.itemId = ITEM_ASPEAR_BERRY,
.price = 20,
.holdEffect = HOLD_EFFECT_CURE_FRZ,
- .holdEffectParam = 0,
- .description = gAspearBerryItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sAspearBerryDesc,
.pocket = POCKET_BERRIES,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_Medicine,
@@ -2510,9 +1807,7 @@ const struct Item gItems[] =
.price = 20,
.holdEffect = HOLD_EFFECT_RESTORE_PP,
.holdEffectParam = 10,
- .description = gLeppaBerryItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sLeppaBerryDesc,
.pocket = POCKET_BERRIES,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_PPRecovery,
@@ -2528,9 +1823,7 @@ const struct Item gItems[] =
.price = 20,
.holdEffect = HOLD_EFFECT_RESTORE_HP,
.holdEffectParam = 10,
- .description = gOranBerryItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sOranBerryDesc,
.pocket = POCKET_BERRIES,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_Medicine,
@@ -2545,10 +1838,7 @@ const struct Item gItems[] =
.itemId = ITEM_PERSIM_BERRY,
.price = 20,
.holdEffect = HOLD_EFFECT_CURE_CONFUSION,
- .holdEffectParam = 0,
- .description = gPersimBerryItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sPersimBerryDesc,
.pocket = POCKET_BERRIES,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
@@ -2563,10 +1853,7 @@ const struct Item gItems[] =
.itemId = ITEM_LUM_BERRY,
.price = 20,
.holdEffect = HOLD_EFFECT_CURE_STATUS,
- .holdEffectParam = 0,
- .description = gLumBerryItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sLumBerryDesc,
.pocket = POCKET_BERRIES,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_Medicine,
@@ -2582,9 +1869,7 @@ const struct Item gItems[] =
.price = 20,
.holdEffect = HOLD_EFFECT_RESTORE_HP,
.holdEffectParam = 30,
- .description = gSitrusBerryItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sSitrusBerryDesc,
.pocket = POCKET_BERRIES,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_Medicine,
@@ -2600,14 +1885,10 @@ const struct Item gItems[] =
.price = 20,
.holdEffect = HOLD_EFFECT_CONFUSE_SPICY,
.holdEffectParam = 8,
- .description = gFigyBerryItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sFigyBerryDesc,
.pocket = POCKET_BERRIES,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -2618,14 +1899,10 @@ const struct Item gItems[] =
.price = 20,
.holdEffect = HOLD_EFFECT_CONFUSE_DRY,
.holdEffectParam = 8,
- .description = gWikiBerryItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sWikiBerryDesc,
.pocket = POCKET_BERRIES,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -2636,14 +1913,10 @@ const struct Item gItems[] =
.price = 20,
.holdEffect = HOLD_EFFECT_CONFUSE_SWEET,
.holdEffectParam = 8,
- .description = gMagoBerryItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sMagoBerryDesc,
.pocket = POCKET_BERRIES,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -2654,14 +1927,10 @@ const struct Item gItems[] =
.price = 20,
.holdEffect = HOLD_EFFECT_CONFUSE_BITTER,
.holdEffectParam = 8,
- .description = gAguavBerryItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sAguavBerryDesc,
.pocket = POCKET_BERRIES,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -2672,14 +1941,10 @@ const struct Item gItems[] =
.price = 20,
.holdEffect = HOLD_EFFECT_CONFUSE_SOUR,
.holdEffectParam = 8,
- .description = gIapapaBerryItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sIapapaBerryDesc,
.pocket = POCKET_BERRIES,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -2688,16 +1953,10 @@ const struct Item gItems[] =
.name = _("RAZZ BERRY"),
.itemId = ITEM_RAZZ_BERRY,
.price = 20,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gRazzBerryItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sRazzBerryDesc,
.pocket = POCKET_BERRIES,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -2706,16 +1965,10 @@ const struct Item gItems[] =
.name = _("BLUK BERRY"),
.itemId = ITEM_BLUK_BERRY,
.price = 20,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gBlukBerryItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sBlukBerryDesc,
.pocket = POCKET_BERRIES,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -2724,16 +1977,10 @@ const struct Item gItems[] =
.name = _("NANAB BERRY"),
.itemId = ITEM_NANAB_BERRY,
.price = 20,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gNanabBerryItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sNanabBerryDesc,
.pocket = POCKET_BERRIES,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -2742,16 +1989,10 @@ const struct Item gItems[] =
.name = _("WEPEAR BERRY"),
.itemId = ITEM_WEPEAR_BERRY,
.price = 20,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gWepearBerryItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sWepearBerryDesc,
.pocket = POCKET_BERRIES,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -2760,16 +2001,10 @@ const struct Item gItems[] =
.name = _("PINAP BERRY"),
.itemId = ITEM_PINAP_BERRY,
.price = 20,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gPinapBerryItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sPinapBerryDesc,
.pocket = POCKET_BERRIES,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -2778,16 +2013,10 @@ const struct Item gItems[] =
.name = _("POMEG BERRY"),
.itemId = ITEM_POMEG_BERRY,
.price = 20,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gPomegBerryItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sPomegBerryDesc,
.pocket = POCKET_BERRIES,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_ReduceEV,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -2796,16 +2025,10 @@ const struct Item gItems[] =
.name = _("KELPSY BERRY"),
.itemId = ITEM_KELPSY_BERRY,
.price = 20,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gKelpsyBerryItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sKelpsyBerryDesc,
.pocket = POCKET_BERRIES,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_ReduceEV,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -2814,16 +2037,10 @@ const struct Item gItems[] =
.name = _("QUALOT BERRY"),
.itemId = ITEM_QUALOT_BERRY,
.price = 20,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gQualotBerryItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sQualotBerryDesc,
.pocket = POCKET_BERRIES,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_ReduceEV,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -2832,16 +2049,10 @@ const struct Item gItems[] =
.name = _("HONDEW BERRY"),
.itemId = ITEM_HONDEW_BERRY,
.price = 20,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gHondewBerryItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sHondewBerryDesc,
.pocket = POCKET_BERRIES,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_ReduceEV,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -2850,16 +2061,10 @@ const struct Item gItems[] =
.name = _("GREPA BERRY"),
.itemId = ITEM_GREPA_BERRY,
.price = 20,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gGrepaBerryItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sGrepaBerryDesc,
.pocket = POCKET_BERRIES,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_ReduceEV,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -2868,16 +2073,10 @@ const struct Item gItems[] =
.name = _("TAMATO BERRY"),
.itemId = ITEM_TAMATO_BERRY,
.price = 20,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gTamatoBerryItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sTamatoBerryDesc,
.pocket = POCKET_BERRIES,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_ReduceEV,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -2886,16 +2085,10 @@ const struct Item gItems[] =
.name = _("CORNN BERRY"),
.itemId = ITEM_CORNN_BERRY,
.price = 20,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gCornnBerryItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sCornnBerryDesc,
.pocket = POCKET_BERRIES,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -2904,16 +2097,10 @@ const struct Item gItems[] =
.name = _("MAGOST BERRY"),
.itemId = ITEM_MAGOST_BERRY,
.price = 20,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gMagostBerryItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sMagostBerryDesc,
.pocket = POCKET_BERRIES,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -2922,16 +2109,10 @@ const struct Item gItems[] =
.name = _("RABUTA BERRY"),
.itemId = ITEM_RABUTA_BERRY,
.price = 20,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gRabutaBerryItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sRabutaBerryDesc,
.pocket = POCKET_BERRIES,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -2940,16 +2121,10 @@ const struct Item gItems[] =
.name = _("NOMEL BERRY"),
.itemId = ITEM_NOMEL_BERRY,
.price = 20,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gNomelBerryItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sNomelBerryDesc,
.pocket = POCKET_BERRIES,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -2958,16 +2133,10 @@ const struct Item gItems[] =
.name = _("SPELON BERRY"),
.itemId = ITEM_SPELON_BERRY,
.price = 20,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gSpelonBerryItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sSpelonBerryDesc,
.pocket = POCKET_BERRIES,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -2976,16 +2145,10 @@ const struct Item gItems[] =
.name = _("PAMTRE BERRY"),
.itemId = ITEM_PAMTRE_BERRY,
.price = 20,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gPamtreBerryItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sPamtreBerryDesc,
.pocket = POCKET_BERRIES,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -2994,16 +2157,10 @@ const struct Item gItems[] =
.name = _("WATMEL BERRY"),
.itemId = ITEM_WATMEL_BERRY,
.price = 20,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gWatmelBerryItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sWatmelBerryDesc,
.pocket = POCKET_BERRIES,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -3012,16 +2169,10 @@ const struct Item gItems[] =
.name = _("DURIN BERRY"),
.itemId = ITEM_DURIN_BERRY,
.price = 20,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gDurinBerryItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sDurinBerryDesc,
.pocket = POCKET_BERRIES,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -3030,16 +2181,10 @@ const struct Item gItems[] =
.name = _("BELUE BERRY"),
.itemId = ITEM_BELUE_BERRY,
.price = 20,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gBelueBerryItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sBelueBerryDesc,
.pocket = POCKET_BERRIES,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -3050,14 +2195,10 @@ const struct Item gItems[] =
.price = 20,
.holdEffect = HOLD_EFFECT_ATTACK_UP,
.holdEffectParam = 4,
- .description = gLiechiBerryItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sLiechiBerryDesc,
.pocket = POCKET_BERRIES,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -3068,14 +2209,10 @@ const struct Item gItems[] =
.price = 20,
.holdEffect = HOLD_EFFECT_DEFENSE_UP,
.holdEffectParam = 4,
- .description = gGanlonBerryItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sGanlonBerryDesc,
.pocket = POCKET_BERRIES,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -3086,14 +2223,10 @@ const struct Item gItems[] =
.price = 20,
.holdEffect = HOLD_EFFECT_SPEED_UP,
.holdEffectParam = 4,
- .description = gSalacBerryItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sSalacBerryDesc,
.pocket = POCKET_BERRIES,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -3104,14 +2237,10 @@ const struct Item gItems[] =
.price = 20,
.holdEffect = HOLD_EFFECT_SP_ATTACK_UP,
.holdEffectParam = 4,
- .description = gPetayaBerryItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sPetayaBerryDesc,
.pocket = POCKET_BERRIES,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -3122,14 +2251,10 @@ const struct Item gItems[] =
.price = 20,
.holdEffect = HOLD_EFFECT_SP_DEFENSE_UP,
.holdEffectParam = 4,
- .description = gApicotBerryItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sApicotBerryDesc,
.pocket = POCKET_BERRIES,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -3140,14 +2265,10 @@ const struct Item gItems[] =
.price = 20,
.holdEffect = HOLD_EFFECT_CRITICAL_UP,
.holdEffectParam = 4,
- .description = gLansatBerryItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sLansatBerryDesc,
.pocket = POCKET_BERRIES,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -3158,14 +2279,10 @@ const struct Item gItems[] =
.price = 20,
.holdEffect = HOLD_EFFECT_RANDOM_STAT_UP,
.holdEffectParam = 4,
- .description = gStarfBerryItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sStarfBerryDesc,
.pocket = POCKET_BERRIES,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -3174,11 +2291,7 @@ const struct Item gItems[] =
.name = _("ENIGMA BERRY"),
.itemId = ITEM_ENIGMA_BERRY,
.price = 20,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gEnigmaBerryItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sEnigmaBerryDesc,
.pocket = POCKET_BERRIES,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_EnigmaBerry,
@@ -3192,16 +2305,10 @@ const struct Item gItems[] =
.name = _("????????"),
.itemId = ITEM_NONE,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gDummyItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sDummyDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -3210,16 +2317,10 @@ const struct Item gItems[] =
.name = _("????????"),
.itemId = ITEM_NONE,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gDummyItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sDummyDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -3228,16 +2329,10 @@ const struct Item gItems[] =
.name = _("????????"),
.itemId = ITEM_NONE,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gDummyItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sDummyDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -3250,14 +2345,10 @@ const struct Item gItems[] =
.price = 10,
.holdEffect = HOLD_EFFECT_EVASION_UP,
.holdEffectParam = 10,
- .description = gBrightPowderItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sBrightPowderDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -3267,15 +2358,10 @@ const struct Item gItems[] =
.itemId = ITEM_WHITE_HERB,
.price = 100,
.holdEffect = HOLD_EFFECT_RESTORE_STATS,
- .holdEffectParam = 0,
- .description = gWhiteHerbItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sWhiteHerbDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -3285,15 +2371,10 @@ const struct Item gItems[] =
.itemId = ITEM_MACHO_BRACE,
.price = 3000,
.holdEffect = HOLD_EFFECT_MACHO_BRACE,
- .holdEffectParam = 0,
- .description = gMachoBraceItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sMachoBraceDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -3303,15 +2384,10 @@ const struct Item gItems[] =
.itemId = ITEM_EXP_SHARE,
.price = 3000,
.holdEffect = HOLD_EFFECT_EXP_SHARE,
- .holdEffectParam = 0,
- .description = gExpShareItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sExpShareDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -3322,14 +2398,10 @@ const struct Item gItems[] =
.price = 100,
.holdEffect = HOLD_EFFECT_QUICK_CLAW,
.holdEffectParam = 20,
- .description = gQuickClawItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sQuickClawDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -3339,15 +2411,10 @@ const struct Item gItems[] =
.itemId = ITEM_SOOTHE_BELL,
.price = 100,
.holdEffect = HOLD_EFFECT_HAPPINESS_UP,
- .holdEffectParam = 0,
- .description = gSootheBellItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sSootheBellDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -3357,15 +2424,10 @@ const struct Item gItems[] =
.itemId = ITEM_MENTAL_HERB,
.price = 100,
.holdEffect = HOLD_EFFECT_CURE_ATTRACT,
- .holdEffectParam = 0,
- .description = gMentalHerbItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sMentalHerbDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -3375,15 +2437,10 @@ const struct Item gItems[] =
.itemId = ITEM_CHOICE_BAND,
.price = 100,
.holdEffect = HOLD_EFFECT_CHOICE_BAND,
- .holdEffectParam = 0,
- .description = gChoiceBandItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sChoiceBandDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -3394,14 +2451,10 @@ const struct Item gItems[] =
.price = 100,
.holdEffect = HOLD_EFFECT_FLINCH,
.holdEffectParam = 10,
- .description = gKingsRockItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sKingsRockDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -3412,14 +2465,10 @@ const struct Item gItems[] =
.price = 100,
.holdEffect = HOLD_EFFECT_BUG_POWER,
.holdEffectParam = 10,
- .description = gSilverPowderItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sSilverPowderDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -3430,14 +2479,10 @@ const struct Item gItems[] =
.price = 100,
.holdEffect = HOLD_EFFECT_DOUBLE_PRIZE,
.holdEffectParam = 10,
- .description = gAmuletCoinItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sAmuletCoinDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -3447,15 +2492,10 @@ const struct Item gItems[] =
.itemId = ITEM_CLEANSE_TAG,
.price = 200,
.holdEffect = HOLD_EFFECT_REPEL,
- .holdEffectParam = 0,
- .description = gCleanseTagItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sCleanseTagDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -3465,15 +2505,10 @@ const struct Item gItems[] =
.itemId = ITEM_SOUL_DEW,
.price = 200,
.holdEffect = HOLD_EFFECT_SOUL_DEW,
- .holdEffectParam = 0,
- .description = gSoulDewItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sSoulDewDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -3483,15 +2518,10 @@ const struct Item gItems[] =
.itemId = ITEM_DEEP_SEA_TOOTH,
.price = 200,
.holdEffect = HOLD_EFFECT_DEEP_SEA_TOOTH,
- .holdEffectParam = 0,
- .description = gDeepSeaToothItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sDeepSeaToothDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -3501,15 +2531,10 @@ const struct Item gItems[] =
.itemId = ITEM_DEEP_SEA_SCALE,
.price = 200,
.holdEffect = HOLD_EFFECT_DEEP_SEA_SCALE,
- .holdEffectParam = 0,
- .description = gDeepSeaScaleItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sDeepSeaScaleDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -3519,15 +2544,10 @@ const struct Item gItems[] =
.itemId = ITEM_SMOKE_BALL,
.price = 200,
.holdEffect = HOLD_EFFECT_CAN_ALWAYS_RUN,
- .holdEffectParam = 0,
- .description = gSmokeBallItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sSmokeBallDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -3537,15 +2557,10 @@ const struct Item gItems[] =
.itemId = ITEM_EVERSTONE,
.price = 200,
.holdEffect = HOLD_EFFECT_PREVENT_EVOLVE,
- .holdEffectParam = 0,
- .description = gEverstoneItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sEverstoneDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -3556,14 +2571,10 @@ const struct Item gItems[] =
.price = 200,
.holdEffect = HOLD_EFFECT_FOCUS_BAND,
.holdEffectParam = 10,
- .description = gFocusBandItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sFocusBandDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -3573,15 +2584,10 @@ const struct Item gItems[] =
.itemId = ITEM_LUCKY_EGG,
.price = 200,
.holdEffect = HOLD_EFFECT_LUCKY_EGG,
- .holdEffectParam = 0,
- .description = gLuckyEggItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sLuckyEggDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -3591,15 +2597,10 @@ const struct Item gItems[] =
.itemId = ITEM_SCOPE_LENS,
.price = 200,
.holdEffect = HOLD_EFFECT_SCOPE_LENS,
- .holdEffectParam = 0,
- .description = gScopeLensItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sScopeLensDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -3610,14 +2611,10 @@ const struct Item gItems[] =
.price = 100,
.holdEffect = HOLD_EFFECT_STEEL_POWER,
.holdEffectParam = 10,
- .description = gMetalCoatItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sMetalCoatDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -3628,14 +2625,10 @@ const struct Item gItems[] =
.price = 200,
.holdEffect = HOLD_EFFECT_LEFTOVERS,
.holdEffectParam = 10,
- .description = gLeftoversItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sLeftoversDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -3646,14 +2639,10 @@ const struct Item gItems[] =
.price = 2100,
.holdEffect = HOLD_EFFECT_DRAGON_SCALE,
.holdEffectParam = 10,
- .description = gDragonScaleItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sDragonScaleDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -3663,15 +2652,10 @@ const struct Item gItems[] =
.itemId = ITEM_LIGHT_BALL,
.price = 100,
.holdEffect = HOLD_EFFECT_LIGHT_BALL,
- .holdEffectParam = 0,
- .description = gLightBallItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sLightBallDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -3682,14 +2666,10 @@ const struct Item gItems[] =
.price = 100,
.holdEffect = HOLD_EFFECT_GROUND_POWER,
.holdEffectParam = 10,
- .description = gSoftSandItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sSoftSandDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -3700,14 +2680,10 @@ const struct Item gItems[] =
.price = 100,
.holdEffect = HOLD_EFFECT_ROCK_POWER,
.holdEffectParam = 10,
- .description = gHardStoneItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sHardStoneDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -3718,14 +2694,10 @@ const struct Item gItems[] =
.price = 100,
.holdEffect = HOLD_EFFECT_GRASS_POWER,
.holdEffectParam = 10,
- .description = gMiracleSeedItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sMiracleSeedDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -3736,14 +2708,10 @@ const struct Item gItems[] =
.price = 100,
.holdEffect = HOLD_EFFECT_DARK_POWER,
.holdEffectParam = 10,
- .description = gBlackGlassesItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sBlackGlassesDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -3754,14 +2722,10 @@ const struct Item gItems[] =
.price = 100,
.holdEffect = HOLD_EFFECT_FIGHTING_POWER,
.holdEffectParam = 10,
- .description = gBlackBeltItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sBlackBeltDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -3772,14 +2736,10 @@ const struct Item gItems[] =
.price = 100,
.holdEffect = HOLD_EFFECT_ELECTRIC_POWER,
.holdEffectParam = 10,
- .description = gMagnetItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sMagnetDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -3790,14 +2750,10 @@ const struct Item gItems[] =
.price = 100,
.holdEffect = HOLD_EFFECT_WATER_POWER,
.holdEffectParam = 10,
- .description = gMysticWaterItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sMysticWaterDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -3808,14 +2764,10 @@ const struct Item gItems[] =
.price = 100,
.holdEffect = HOLD_EFFECT_FLYING_POWER,
.holdEffectParam = 10,
- .description = gSharpBeakItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sSharpBeakDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -3826,14 +2778,10 @@ const struct Item gItems[] =
.price = 100,
.holdEffect = HOLD_EFFECT_POISON_POWER,
.holdEffectParam = 10,
- .description = gPoisonBarbItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sPoisonBarbDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -3844,14 +2792,10 @@ const struct Item gItems[] =
.price = 100,
.holdEffect = HOLD_EFFECT_ICE_POWER,
.holdEffectParam = 10,
- .description = gNeverMeltIceItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sNeverMeltIceDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -3862,14 +2806,10 @@ const struct Item gItems[] =
.price = 100,
.holdEffect = HOLD_EFFECT_GHOST_POWER,
.holdEffectParam = 10,
- .description = gSpellTagItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sSpellTagDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -3880,14 +2820,10 @@ const struct Item gItems[] =
.price = 100,
.holdEffect = HOLD_EFFECT_PSYCHIC_POWER,
.holdEffectParam = 10,
- .description = gTwistedSpoonItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sTwistedSpoonDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -3898,14 +2834,10 @@ const struct Item gItems[] =
.price = 9800,
.holdEffect = HOLD_EFFECT_FIRE_POWER,
.holdEffectParam = 10,
- .description = gCharcoalItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sCharcoalDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -3916,14 +2848,10 @@ const struct Item gItems[] =
.price = 100,
.holdEffect = HOLD_EFFECT_DRAGON_POWER,
.holdEffectParam = 10,
- .description = gDragonFangItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sDragonFangDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -3934,14 +2862,10 @@ const struct Item gItems[] =
.price = 100,
.holdEffect = HOLD_EFFECT_NORMAL_POWER,
.holdEffectParam = 10,
- .description = gSilkScarfItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sSilkScarfDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -3951,15 +2875,10 @@ const struct Item gItems[] =
.itemId = ITEM_UP_GRADE,
.price = 2100,
.holdEffect = HOLD_EFFECT_UP_GRADE,
- .holdEffectParam = 0,
- .description = gUpGradeItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sUpGradeDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -3970,14 +2889,10 @@ const struct Item gItems[] =
.price = 200,
.holdEffect = HOLD_EFFECT_SHELL_BELL,
.holdEffectParam = 8,
- .description = gShellBellItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sShellBellDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -3988,14 +2903,10 @@ const struct Item gItems[] =
.price = 9600,
.holdEffect = HOLD_EFFECT_WATER_POWER,
.holdEffectParam = 5,
- .description = gSeaIncenseItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sSeaIncenseDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -4006,14 +2917,10 @@ const struct Item gItems[] =
.price = 9600,
.holdEffect = HOLD_EFFECT_EVASION_UP,
.holdEffectParam = 5,
- .description = gLaxIncenseItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sLaxIncenseDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -4023,15 +2930,10 @@ const struct Item gItems[] =
.itemId = ITEM_LUCKY_PUNCH,
.price = 10,
.holdEffect = HOLD_EFFECT_LUCKY_PUNCH,
- .holdEffectParam = 0,
- .description = gLuckyPunchItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sLuckyPunchDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -4041,15 +2943,10 @@ const struct Item gItems[] =
.itemId = ITEM_METAL_POWDER,
.price = 10,
.holdEffect = HOLD_EFFECT_METAL_POWDER,
- .holdEffectParam = 0,
- .description = gMetalPowderItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sMetalPowderDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -4059,15 +2956,10 @@ const struct Item gItems[] =
.itemId = ITEM_THICK_CLUB,
.price = 500,
.holdEffect = HOLD_EFFECT_THICK_CLUB,
- .holdEffectParam = 0,
- .description = gThickClubItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sThickClubDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -4077,15 +2969,10 @@ const struct Item gItems[] =
.itemId = ITEM_STICK,
.price = 200,
.holdEffect = HOLD_EFFECT_STICK,
- .holdEffectParam = 0,
- .description = gStickItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sStickDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -4094,16 +2981,10 @@ const struct Item gItems[] =
.name = _("????????"),
.itemId = ITEM_NONE,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gDummyItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sDummyDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -4112,16 +2993,10 @@ const struct Item gItems[] =
.name = _("????????"),
.itemId = ITEM_NONE,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gDummyItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sDummyDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -4130,16 +3005,10 @@ const struct Item gItems[] =
.name = _("????????"),
.itemId = ITEM_NONE,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gDummyItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sDummyDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -4148,16 +3017,10 @@ const struct Item gItems[] =
.name = _("????????"),
.itemId = ITEM_NONE,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gDummyItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sDummyDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -4166,16 +3029,10 @@ const struct Item gItems[] =
.name = _("????????"),
.itemId = ITEM_NONE,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gDummyItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sDummyDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -4184,16 +3041,10 @@ const struct Item gItems[] =
.name = _("????????"),
.itemId = ITEM_NONE,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gDummyItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sDummyDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -4202,16 +3053,10 @@ const struct Item gItems[] =
.name = _("????????"),
.itemId = ITEM_NONE,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gDummyItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sDummyDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -4220,16 +3065,10 @@ const struct Item gItems[] =
.name = _("????????"),
.itemId = ITEM_NONE,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gDummyItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sDummyDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -4238,16 +3077,10 @@ const struct Item gItems[] =
.name = _("????????"),
.itemId = ITEM_NONE,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gDummyItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sDummyDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -4256,16 +3089,10 @@ const struct Item gItems[] =
.name = _("????????"),
.itemId = ITEM_NONE,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gDummyItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sDummyDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -4274,16 +3101,10 @@ const struct Item gItems[] =
.name = _("????????"),
.itemId = ITEM_NONE,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gDummyItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sDummyDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -4292,16 +3113,10 @@ const struct Item gItems[] =
.name = _("????????"),
.itemId = ITEM_NONE,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gDummyItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sDummyDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -4310,16 +3125,10 @@ const struct Item gItems[] =
.name = _("????????"),
.itemId = ITEM_NONE,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gDummyItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sDummyDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -4328,16 +3137,10 @@ const struct Item gItems[] =
.name = _("????????"),
.itemId = ITEM_NONE,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gDummyItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sDummyDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -4346,16 +3149,10 @@ const struct Item gItems[] =
.name = _("????????"),
.itemId = ITEM_NONE,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gDummyItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sDummyDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -4364,16 +3161,10 @@ const struct Item gItems[] =
.name = _("????????"),
.itemId = ITEM_NONE,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gDummyItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sDummyDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -4382,16 +3173,10 @@ const struct Item gItems[] =
.name = _("????????"),
.itemId = ITEM_NONE,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gDummyItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sDummyDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -4400,16 +3185,10 @@ const struct Item gItems[] =
.name = _("????????"),
.itemId = ITEM_NONE,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gDummyItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sDummyDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -4418,16 +3197,10 @@ const struct Item gItems[] =
.name = _("????????"),
.itemId = ITEM_NONE,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gDummyItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sDummyDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -4436,16 +3209,10 @@ const struct Item gItems[] =
.name = _("????????"),
.itemId = ITEM_NONE,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gDummyItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sDummyDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -4454,16 +3221,10 @@ const struct Item gItems[] =
.name = _("????????"),
.itemId = ITEM_NONE,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gDummyItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sDummyDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -4472,16 +3233,10 @@ const struct Item gItems[] =
.name = _("????????"),
.itemId = ITEM_NONE,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gDummyItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sDummyDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -4490,16 +3245,10 @@ const struct Item gItems[] =
.name = _("????????"),
.itemId = ITEM_NONE,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gDummyItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sDummyDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -4508,16 +3257,10 @@ const struct Item gItems[] =
.name = _("????????"),
.itemId = ITEM_NONE,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gDummyItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sDummyDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -4526,16 +3269,10 @@ const struct Item gItems[] =
.name = _("????????"),
.itemId = ITEM_NONE,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gDummyItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sDummyDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -4544,16 +3281,10 @@ const struct Item gItems[] =
.name = _("????????"),
.itemId = ITEM_NONE,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gDummyItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sDummyDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -4562,16 +3293,10 @@ const struct Item gItems[] =
.name = _("????????"),
.itemId = ITEM_NONE,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gDummyItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sDummyDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -4580,16 +3305,10 @@ const struct Item gItems[] =
.name = _("????????"),
.itemId = ITEM_NONE,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gDummyItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sDummyDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -4598,16 +3317,10 @@ const struct Item gItems[] =
.name = _("RED SCARF"),
.itemId = ITEM_RED_SCARF,
.price = 100,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gRedScarfItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sRedScarfDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -4616,16 +3329,10 @@ const struct Item gItems[] =
.name = _("BLUE SCARF"),
.itemId = ITEM_BLUE_SCARF,
.price = 100,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gBlueScarfItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sBlueScarfDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -4634,16 +3341,10 @@ const struct Item gItems[] =
.name = _("PINK SCARF"),
.itemId = ITEM_PINK_SCARF,
.price = 100,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gPinkScarfItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sPinkScarfDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -4652,16 +3353,10 @@ const struct Item gItems[] =
.name = _("GREEN SCARF"),
.itemId = ITEM_GREEN_SCARF,
.price = 100,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gGreenScarfItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sGreenScarfDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -4670,16 +3365,10 @@ const struct Item gItems[] =
.name = _("YELLOW SCARF"),
.itemId = ITEM_YELLOW_SCARF,
.price = 100,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gYellowScarfItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sYellowScarfDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -4690,16 +3379,12 @@ const struct Item gItems[] =
.name = _("MACH BIKE"),
.itemId = ITEM_MACH_BIKE,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gMachBikeItemDescription,
+ .description = sMachBikeDesc,
.importance = 1,
.unk19 = 1,
.pocket = POCKET_KEY_ITEMS,
.type = 2,
.fieldUseFunc = ItemUseOutOfBattle_Bike,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -4708,16 +3393,11 @@ const struct Item gItems[] =
.name = _("COIN CASE"),
.itemId = ITEM_COIN_CASE,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gCoinCaseItemDescription,
+ .description = sCoinCaseDesc,
.importance = 1,
- .unk19 = 0,
.pocket = POCKET_KEY_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CoinCase,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -4726,16 +3406,12 @@ const struct Item gItems[] =
.name = _("ITEMFINDER"),
.itemId = ITEM_ITEMFINDER,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gItemfinderItemDescription,
+ .description = sItemfinderDesc,
.importance = 1,
.unk19 = 1,
.pocket = POCKET_KEY_ITEMS,
.type = 2,
.fieldUseFunc = ItemUseOutOfBattle_Itemfinder,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -4744,16 +3420,12 @@ const struct Item gItems[] =
.name = _("OLD ROD"),
.itemId = ITEM_OLD_ROD,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gOldRodItemDescription,
+ .description = sOldRodDesc,
.importance = 1,
.unk19 = 1,
.pocket = POCKET_KEY_ITEMS,
.type = 2,
.fieldUseFunc = ItemUseOutOfBattle_Rod,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -4762,16 +3434,12 @@ const struct Item gItems[] =
.name = _("GOOD ROD"),
.itemId = ITEM_GOOD_ROD,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gGoodRodItemDescription,
+ .description = sGoodRodDesc,
.importance = 1,
.unk19 = 1,
.pocket = POCKET_KEY_ITEMS,
.type = 2,
.fieldUseFunc = ItemUseOutOfBattle_Rod,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 1,
},
@@ -4780,16 +3448,12 @@ const struct Item gItems[] =
.name = _("SUPER ROD"),
.itemId = ITEM_SUPER_ROD,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gSuperRodItemDescription,
+ .description = sSuperRodDesc,
.importance = 1,
.unk19 = 1,
.pocket = POCKET_KEY_ITEMS,
.type = 2,
.fieldUseFunc = ItemUseOutOfBattle_Rod,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 2,
},
@@ -4798,16 +3462,11 @@ const struct Item gItems[] =
.name = _("S.S. TICKET"),
.itemId = ITEM_SS_TICKET,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gSSTicketItemDescription,
+ .description = sSSTicketDesc,
.importance = 1,
- .unk19 = 0,
.pocket = POCKET_KEY_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -4816,16 +3475,11 @@ const struct Item gItems[] =
.name = _("CONTEST PASS"),
.itemId = ITEM_CONTEST_PASS,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gContestPassItemDescription,
+ .description = sContestPassDesc,
.importance = 1,
- .unk19 = 0,
.pocket = POCKET_KEY_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -4834,16 +3488,10 @@ const struct Item gItems[] =
.name = _("????????"),
.itemId = ITEM_NONE,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gDummyItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sDummyDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -4852,16 +3500,11 @@ const struct Item gItems[] =
.name = _("WAILMER PAIL"),
.itemId = ITEM_WAILMER_PAIL,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gWailmerPailItemDescription,
+ .description = sWailmerPailDesc,
.importance = 1,
- .unk19 = 0,
.pocket = POCKET_KEY_ITEMS,
.type = 2,
.fieldUseFunc = ItemUseOutOfBattle_WailmerPail,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -4870,16 +3513,11 @@ const struct Item gItems[] =
.name = _("DEVON GOODS"),
.itemId = ITEM_DEVON_GOODS,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gDevonGoodsItemDescription,
+ .description = sDevonGoodsDesc,
.importance = 2,
- .unk19 = 0,
.pocket = POCKET_KEY_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -4888,16 +3526,11 @@ const struct Item gItems[] =
.name = _("SOOT SACK"),
.itemId = ITEM_SOOT_SACK,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gSootSackItemDescription,
+ .description = sSootSackDesc,
.importance = 1,
- .unk19 = 0,
.pocket = POCKET_KEY_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -4906,16 +3539,11 @@ const struct Item gItems[] =
.name = _("BASEMENT KEY"),
.itemId = ITEM_BASEMENT_KEY,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gBasementKeyItemDescription,
+ .description = sBasementKeyDesc,
.importance = 1,
- .unk19 = 0,
.pocket = POCKET_KEY_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -4924,16 +3552,12 @@ const struct Item gItems[] =
.name = _("ACRO BIKE"),
.itemId = ITEM_ACRO_BIKE,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gAcroBikeItemDescription,
+ .description = sAcroBikeDesc,
.importance = 1,
.unk19 = 1,
.pocket = POCKET_KEY_ITEMS,
.type = 2,
.fieldUseFunc = ItemUseOutOfBattle_Bike,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 1,
},
@@ -4942,16 +3566,12 @@ const struct Item gItems[] =
.name = _("{POKEBLOCK} CASE"),
.itemId = ITEM_POKEBLOCK_CASE,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gPokeblockCaseItemDescription,
+ .description = sPokeblockCaseDesc,
.importance = 1,
.unk19 = 1,
.pocket = POCKET_KEY_ITEMS,
.type = 3,
.fieldUseFunc = ItemUseOutOfBattle_PokeblockCase,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -4960,16 +3580,11 @@ const struct Item gItems[] =
.name = _("LETTER"),
.itemId = ITEM_LETTER,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gLetterItemDescription,
+ .description = sLetterDesc,
.importance = 2,
- .unk19 = 0,
.pocket = POCKET_KEY_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -4978,16 +3593,11 @@ const struct Item gItems[] =
.name = _("EON TICKET"),
.itemId = ITEM_EON_TICKET,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gEonTicketItemDescription,
+ .description = sEonTicketDesc,
.importance = 1,
- .unk19 = 0,
.pocket = POCKET_KEY_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 1,
},
@@ -4996,16 +3606,11 @@ const struct Item gItems[] =
.name = _("RED ORB"),
.itemId = ITEM_RED_ORB,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gRedOrbItemDescription,
+ .description = sRedOrbDesc,
.importance = 2,
- .unk19 = 0,
.pocket = POCKET_KEY_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -5014,16 +3619,11 @@ const struct Item gItems[] =
.name = _("BLUE ORB"),
.itemId = ITEM_BLUE_ORB,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gBlueOrbItemDescription,
+ .description = sBlueOrbDesc,
.importance = 2,
- .unk19 = 0,
.pocket = POCKET_KEY_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -5032,16 +3632,11 @@ const struct Item gItems[] =
.name = _("SCANNER"),
.itemId = ITEM_SCANNER,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gScannerItemDescription,
+ .description = sScannerDesc,
.importance = 1,
- .unk19 = 0,
.pocket = POCKET_KEY_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -5050,16 +3645,11 @@ const struct Item gItems[] =
.name = _("GO-GOGGLES"),
.itemId = ITEM_GO_GOGGLES,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gGoGogglesItemDescription,
+ .description = sGoGogglesDesc,
.importance = 1,
- .unk19 = 0,
.pocket = POCKET_KEY_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -5068,16 +3658,11 @@ const struct Item gItems[] =
.name = _("METEORITE"),
.itemId = ITEM_METEORITE,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gMeteoriteItemDescription,
+ .description = sMeteoriteDesc,
.importance = 1,
- .unk19 = 0,
.pocket = POCKET_KEY_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -5086,16 +3671,11 @@ const struct Item gItems[] =
.name = _("RM. 1 KEY"),
.itemId = ITEM_ROOM_1_KEY,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gRoom1KeyItemDescription,
+ .description = sRoom1KeyDesc,
.importance = 1,
- .unk19 = 0,
.pocket = POCKET_KEY_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -5104,16 +3684,11 @@ const struct Item gItems[] =
.name = _("RM. 2 KEY"),
.itemId = ITEM_ROOM_2_KEY,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gRoom2KeyItemDescription,
+ .description = sRoom2KeyDesc,
.importance = 1,
- .unk19 = 0,
.pocket = POCKET_KEY_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -5122,16 +3697,11 @@ const struct Item gItems[] =
.name = _("RM. 4 KEY"),
.itemId = ITEM_ROOM_4_KEY,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gRoom4KeyItemDescription,
+ .description = sRoom4KeyDesc,
.importance = 1,
- .unk19 = 0,
.pocket = POCKET_KEY_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -5140,16 +3710,11 @@ const struct Item gItems[] =
.name = _("RM. 6 KEY"),
.itemId = ITEM_ROOM_6_KEY,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gRoom6KeyItemDescription,
+ .description = sRoom6KeyDesc,
.importance = 1,
- .unk19 = 0,
.pocket = POCKET_KEY_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -5158,16 +3723,11 @@ const struct Item gItems[] =
.name = _("STORAGE KEY"),
.itemId = ITEM_STORAGE_KEY,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gStorageKeyItemDescription,
+ .description = sStorageKeyDesc,
.importance = 1,
- .unk19 = 0,
.pocket = POCKET_KEY_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -5176,16 +3736,11 @@ const struct Item gItems[] =
.name = _("ROOT FOSSIL"),
.itemId = ITEM_ROOT_FOSSIL,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gRootFossilItemDescription,
+ .description = sRootFossilDesc,
.importance = 1,
- .unk19 = 0,
.pocket = POCKET_KEY_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -5194,16 +3749,11 @@ const struct Item gItems[] =
.name = _("CLAW FOSSIL"),
.itemId = ITEM_CLAW_FOSSIL,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gClawFossilItemDescription,
+ .description = sClawFossilDesc,
.importance = 1,
- .unk19 = 0,
.pocket = POCKET_KEY_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -5212,16 +3762,11 @@ const struct Item gItems[] =
.name = _("DEVON SCOPE"),
.itemId = ITEM_DEVON_SCOPE,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gDevonScopeItemDescription,
+ .description = sDevonScopeDesc,
.importance = 1,
- .unk19 = 0,
.pocket = POCKET_KEY_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -5232,16 +3777,10 @@ const struct Item gItems[] =
.name = _("TM01"),
.itemId = ITEM_TM01_FOCUS_PUNCH,
.price = 3000,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gTM01ItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sTM01Desc,
.pocket = POCKET_TM_HM,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_TMHM,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -5250,16 +3789,10 @@ const struct Item gItems[] =
.name = _("TM02"),
.itemId = ITEM_TM02_DRAGON_CLAW,
.price = 3000,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gTM02ItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sTM02Desc,
.pocket = POCKET_TM_HM,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_TMHM,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -5268,16 +3801,10 @@ const struct Item gItems[] =
.name = _("TM03"),
.itemId = ITEM_TM03_WATER_PULSE,
.price = 3000,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gTM03ItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sTM03Desc,
.pocket = POCKET_TM_HM,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_TMHM,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -5286,16 +3813,10 @@ const struct Item gItems[] =
.name = _("TM04"),
.itemId = ITEM_TM04_CALM_MIND,
.price = 3000,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gTM04ItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sTM04Desc,
.pocket = POCKET_TM_HM,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_TMHM,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -5304,16 +3825,10 @@ const struct Item gItems[] =
.name = _("TM05"),
.itemId = ITEM_TM05_ROAR,
.price = 1000,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gTM05ItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sTM05Desc,
.pocket = POCKET_TM_HM,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_TMHM,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -5322,16 +3837,10 @@ const struct Item gItems[] =
.name = _("TM06"),
.itemId = ITEM_TM06_TOXIC,
.price = 3000,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gTM06ItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sTM06Desc,
.pocket = POCKET_TM_HM,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_TMHM,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -5340,16 +3849,10 @@ const struct Item gItems[] =
.name = _("TM07"),
.itemId = ITEM_TM07_HAIL,
.price = 3000,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gTM07ItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sTM07Desc,
.pocket = POCKET_TM_HM,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_TMHM,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -5358,16 +3861,10 @@ const struct Item gItems[] =
.name = _("TM08"),
.itemId = ITEM_TM08_BULK_UP,
.price = 3000,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gTM08ItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sTM08Desc,
.pocket = POCKET_TM_HM,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_TMHM,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -5376,16 +3873,10 @@ const struct Item gItems[] =
.name = _("TM09"),
.itemId = ITEM_TM09_BULLET_SEED,
.price = 3000,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gTM09ItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sTM09Desc,
.pocket = POCKET_TM_HM,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_TMHM,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -5394,16 +3885,10 @@ const struct Item gItems[] =
.name = _("TM10"),
.itemId = ITEM_TM10_HIDDEN_POWER,
.price = 3000,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gTM10ItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sTM10Desc,
.pocket = POCKET_TM_HM,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_TMHM,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -5412,16 +3897,10 @@ const struct Item gItems[] =
.name = _("TM11"),
.itemId = ITEM_TM11_SUNNY_DAY,
.price = 2000,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gTM11ItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sTM11Desc,
.pocket = POCKET_TM_HM,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_TMHM,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -5430,16 +3909,10 @@ const struct Item gItems[] =
.name = _("TM12"),
.itemId = ITEM_TM12_TAUNT,
.price = 3000,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gTM12ItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sTM12Desc,
.pocket = POCKET_TM_HM,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_TMHM,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -5448,16 +3921,10 @@ const struct Item gItems[] =
.name = _("TM13"),
.itemId = ITEM_TM13_ICE_BEAM,
.price = 3000,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gTM13ItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sTM13Desc,
.pocket = POCKET_TM_HM,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_TMHM,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -5466,16 +3933,10 @@ const struct Item gItems[] =
.name = _("TM14"),
.itemId = ITEM_TM14_BLIZZARD,
.price = 5500,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gTM14ItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sTM14Desc,
.pocket = POCKET_TM_HM,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_TMHM,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -5484,16 +3945,10 @@ const struct Item gItems[] =
.name = _("TM15"),
.itemId = ITEM_TM15_HYPER_BEAM,
.price = 7500,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gTM15ItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sTM15Desc,
.pocket = POCKET_TM_HM,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_TMHM,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -5502,16 +3957,10 @@ const struct Item gItems[] =
.name = _("TM16"),
.itemId = ITEM_TM16_LIGHT_SCREEN,
.price = 3000,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gTM16ItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sTM16Desc,
.pocket = POCKET_TM_HM,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_TMHM,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -5520,16 +3969,10 @@ const struct Item gItems[] =
.name = _("TM17"),
.itemId = ITEM_TM17_PROTECT,
.price = 3000,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gTM17ItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sTM17Desc,
.pocket = POCKET_TM_HM,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_TMHM,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -5538,16 +3981,10 @@ const struct Item gItems[] =
.name = _("TM18"),
.itemId = ITEM_TM18_RAIN_DANCE,
.price = 2000,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gTM18ItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sTM18Desc,
.pocket = POCKET_TM_HM,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_TMHM,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -5556,16 +3993,10 @@ const struct Item gItems[] =
.name = _("TM19"),
.itemId = ITEM_TM19_GIGA_DRAIN,
.price = 3000,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gTM19ItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sTM19Desc,
.pocket = POCKET_TM_HM,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_TMHM,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -5574,16 +4005,10 @@ const struct Item gItems[] =
.name = _("TM20"),
.itemId = ITEM_TM20_SAFEGUARD,
.price = 3000,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gTM20ItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sTM20Desc,
.pocket = POCKET_TM_HM,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_TMHM,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -5592,16 +4017,10 @@ const struct Item gItems[] =
.name = _("TM21"),
.itemId = ITEM_TM21_FRUSTRATION,
.price = 1000,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gTM21ItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sTM21Desc,
.pocket = POCKET_TM_HM,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_TMHM,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -5610,16 +4029,10 @@ const struct Item gItems[] =
.name = _("TM22"),
.itemId = ITEM_TM22_SOLARBEAM,
.price = 3000,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gTM22ItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sTM22Desc,
.pocket = POCKET_TM_HM,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_TMHM,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -5628,16 +4041,10 @@ const struct Item gItems[] =
.name = _("TM23"),
.itemId = ITEM_TM23_IRON_TAIL,
.price = 3000,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gTM23ItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sTM23Desc,
.pocket = POCKET_TM_HM,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_TMHM,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -5646,16 +4053,10 @@ const struct Item gItems[] =
.name = _("TM24"),
.itemId = ITEM_TM24_THUNDERBOLT,
.price = 3000,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gTM24ItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sTM24Desc,
.pocket = POCKET_TM_HM,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_TMHM,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -5664,16 +4065,10 @@ const struct Item gItems[] =
.name = _("TM25"),
.itemId = ITEM_TM25_THUNDER,
.price = 5500,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gTM25ItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sTM25Desc,
.pocket = POCKET_TM_HM,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_TMHM,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -5682,16 +4077,10 @@ const struct Item gItems[] =
.name = _("TM26"),
.itemId = ITEM_TM26_EARTHQUAKE,
.price = 3000,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gTM26ItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sTM26Desc,
.pocket = POCKET_TM_HM,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_TMHM,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -5700,16 +4089,10 @@ const struct Item gItems[] =
.name = _("TM27"),
.itemId = ITEM_TM27_RETURN,
.price = 1000,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gTM27ItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sTM27Desc,
.pocket = POCKET_TM_HM,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_TMHM,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -5718,16 +4101,10 @@ const struct Item gItems[] =
.name = _("TM28"),
.itemId = ITEM_TM28_DIG,
.price = 2000,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gTM28ItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sTM28Desc,
.pocket = POCKET_TM_HM,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_TMHM,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -5736,16 +4113,10 @@ const struct Item gItems[] =
.name = _("TM29"),
.itemId = ITEM_TM29_PSYCHIC,
.price = 2000,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gTM29ItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sTM29Desc,
.pocket = POCKET_TM_HM,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_TMHM,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -5754,16 +4125,10 @@ const struct Item gItems[] =
.name = _("TM30"),
.itemId = ITEM_TM30_SHADOW_BALL,
.price = 3000,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gTM30ItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sTM30Desc,
.pocket = POCKET_TM_HM,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_TMHM,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -5772,16 +4137,10 @@ const struct Item gItems[] =
.name = _("TM31"),
.itemId = ITEM_TM31_BRICK_BREAK,
.price = 3000,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gTM31ItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sTM31Desc,
.pocket = POCKET_TM_HM,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_TMHM,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -5790,16 +4149,10 @@ const struct Item gItems[] =
.name = _("TM32"),
.itemId = ITEM_TM32_DOUBLE_TEAM,
.price = 2000,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gTM32ItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sTM32Desc,
.pocket = POCKET_TM_HM,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_TMHM,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -5808,16 +4161,10 @@ const struct Item gItems[] =
.name = _("TM33"),
.itemId = ITEM_TM33_REFLECT,
.price = 3000,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gTM33ItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sTM33Desc,
.pocket = POCKET_TM_HM,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_TMHM,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -5826,16 +4173,10 @@ const struct Item gItems[] =
.name = _("TM34"),
.itemId = ITEM_TM34_SHOCK_WAVE,
.price = 3000,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gTM34ItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sTM34Desc,
.pocket = POCKET_TM_HM,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_TMHM,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -5844,16 +4185,10 @@ const struct Item gItems[] =
.name = _("TM35"),
.itemId = ITEM_TM35_FLAMETHROWER,
.price = 3000,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gTM35ItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sTM35Desc,
.pocket = POCKET_TM_HM,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_TMHM,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -5862,16 +4197,10 @@ const struct Item gItems[] =
.name = _("TM36"),
.itemId = ITEM_TM36_SLUDGE_BOMB,
.price = 1000,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gTM36ItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sTM36Desc,
.pocket = POCKET_TM_HM,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_TMHM,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -5880,16 +4209,10 @@ const struct Item gItems[] =
.name = _("TM37"),
.itemId = ITEM_TM37_SANDSTORM,
.price = 2000,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gTM37ItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sTM37Desc,
.pocket = POCKET_TM_HM,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_TMHM,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -5898,16 +4221,10 @@ const struct Item gItems[] =
.name = _("TM38"),
.itemId = ITEM_TM38_FIRE_BLAST,
.price = 5500,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gTM38ItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sTM38Desc,
.pocket = POCKET_TM_HM,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_TMHM,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -5916,16 +4233,10 @@ const struct Item gItems[] =
.name = _("TM39"),
.itemId = ITEM_TM39_ROCK_TOMB,
.price = 3000,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gTM39ItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sTM39Desc,
.pocket = POCKET_TM_HM,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_TMHM,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -5934,16 +4245,10 @@ const struct Item gItems[] =
.name = _("TM40"),
.itemId = ITEM_TM40_AERIAL_ACE,
.price = 3000,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gTM40ItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sTM40Desc,
.pocket = POCKET_TM_HM,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_TMHM,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -5952,16 +4257,10 @@ const struct Item gItems[] =
.name = _("TM41"),
.itemId = ITEM_TM41_TORMENT,
.price = 3000,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gTM41ItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sTM41Desc,
.pocket = POCKET_TM_HM,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_TMHM,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -5970,16 +4269,10 @@ const struct Item gItems[] =
.name = _("TM42"),
.itemId = ITEM_TM42_FACADE,
.price = 3000,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gTM42ItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sTM42Desc,
.pocket = POCKET_TM_HM,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_TMHM,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -5988,16 +4281,10 @@ const struct Item gItems[] =
.name = _("TM43"),
.itemId = ITEM_TM43_SECRET_POWER,
.price = 3000,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gTM43ItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sTM43Desc,
.pocket = POCKET_TM_HM,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_TMHM,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -6006,16 +4293,10 @@ const struct Item gItems[] =
.name = _("TM44"),
.itemId = ITEM_TM44_REST,
.price = 3000,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gTM44ItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sTM44Desc,
.pocket = POCKET_TM_HM,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_TMHM,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -6024,16 +4305,10 @@ const struct Item gItems[] =
.name = _("TM45"),
.itemId = ITEM_TM45_ATTRACT,
.price = 3000,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gTM45ItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sTM45Desc,
.pocket = POCKET_TM_HM,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_TMHM,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -6042,16 +4317,10 @@ const struct Item gItems[] =
.name = _("TM46"),
.itemId = ITEM_TM46_THIEF,
.price = 3000,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gTM46ItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sTM46Desc,
.pocket = POCKET_TM_HM,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_TMHM,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -6060,16 +4329,10 @@ const struct Item gItems[] =
.name = _("TM47"),
.itemId = ITEM_TM47_STEEL_WING,
.price = 3000,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gTM47ItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sTM47Desc,
.pocket = POCKET_TM_HM,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_TMHM,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -6078,16 +4341,10 @@ const struct Item gItems[] =
.name = _("TM48"),
.itemId = ITEM_TM48_SKILL_SWAP,
.price = 3000,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gTM48ItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sTM48Desc,
.pocket = POCKET_TM_HM,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_TMHM,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -6096,16 +4353,10 @@ const struct Item gItems[] =
.name = _("TM49"),
.itemId = ITEM_TM49_SNATCH,
.price = 3000,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gTM49ItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sTM49Desc,
.pocket = POCKET_TM_HM,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_TMHM,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -6114,16 +4365,10 @@ const struct Item gItems[] =
.name = _("TM50"),
.itemId = ITEM_TM50_OVERHEAT,
.price = 3000,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gTM50ItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sTM50Desc,
.pocket = POCKET_TM_HM,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_TMHM,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -6132,16 +4377,11 @@ const struct Item gItems[] =
.name = _("HM01"),
.itemId = ITEM_HM01_CUT,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gHM01ItemDescription,
+ .description = sHM01Desc,
.importance = 1,
- .unk19 = 0,
.pocket = POCKET_TM_HM,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_TMHM,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -6150,16 +4390,11 @@ const struct Item gItems[] =
.name = _("HM02"),
.itemId = ITEM_HM02_FLY,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gHM02ItemDescription,
+ .description = sHM02Desc,
.importance = 1,
- .unk19 = 0,
.pocket = POCKET_TM_HM,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_TMHM,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -6168,16 +4403,11 @@ const struct Item gItems[] =
.name = _("HM03"),
.itemId = ITEM_HM03_SURF,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gHM03ItemDescription,
+ .description = sHM03Desc,
.importance = 1,
- .unk19 = 0,
.pocket = POCKET_TM_HM,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_TMHM,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -6186,16 +4416,11 @@ const struct Item gItems[] =
.name = _("HM04"),
.itemId = ITEM_HM04_STRENGTH,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gHM04ItemDescription,
+ .description = sHM04Desc,
.importance = 1,
- .unk19 = 0,
.pocket = POCKET_TM_HM,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_TMHM,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -6204,16 +4429,11 @@ const struct Item gItems[] =
.name = _("HM05"),
.itemId = ITEM_HM05_FLASH,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gHM05ItemDescription,
+ .description = sHM05Desc,
.importance = 1,
- .unk19 = 0,
.pocket = POCKET_TM_HM,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_TMHM,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -6222,16 +4442,11 @@ const struct Item gItems[] =
.name = _("HM06"),
.itemId = ITEM_HM06_ROCK_SMASH,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gHM06ItemDescription,
+ .description = sHM06Desc,
.importance = 1,
- .unk19 = 0,
.pocket = POCKET_TM_HM,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_TMHM,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -6240,16 +4455,11 @@ const struct Item gItems[] =
.name = _("HM07"),
.itemId = ITEM_HM07_WATERFALL,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gHM07ItemDescription,
+ .description = sHM07Desc,
.importance = 1,
- .unk19 = 0,
.pocket = POCKET_TM_HM,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_TMHM,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -6258,16 +4468,11 @@ const struct Item gItems[] =
.name = _("HM08"),
.itemId = ITEM_HM08_DIVE,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gHM08ItemDescription,
+ .description = sHM08Desc,
.importance = 1,
- .unk19 = 0,
.pocket = POCKET_TM_HM,
.type = 1,
.fieldUseFunc = ItemUseOutOfBattle_TMHM,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -6276,16 +4481,10 @@ const struct Item gItems[] =
.name = _("????????"),
.itemId = ITEM_NONE,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gDummyItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sDummyDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -6294,16 +4493,10 @@ const struct Item gItems[] =
.name = _("????????"),
.itemId = ITEM_NONE,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gDummyItemDescription,
- .importance = 0,
- .unk19 = 0,
+ .description = sDummyDesc,
.pocket = POCKET_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -6314,16 +4507,11 @@ const struct Item gItems[] =
.name = _("OAK'S PARCEL"),
.itemId = ITEM_OAKS_PARCEL,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gOaksParcelItemDescription,
+ .description = sOaksParcelDesc,
.importance = 2,
- .unk19 = 0,
.pocket = POCKET_KEY_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -6332,16 +4520,11 @@ const struct Item gItems[] =
.name = _("POKé FLUTE"),
.itemId = ITEM_POKE_FLUTE,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gPokeFluteItemDescription,
+ .description = sPokeFluteDesc,
.importance = 1,
- .unk19 = 0,
.pocket = POCKET_KEY_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -6350,16 +4533,11 @@ const struct Item gItems[] =
.name = _("SECRET KEY"),
.itemId = ITEM_SECRET_KEY,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gSecretKeyItemDescription,
+ .description = sSecretKeyDesc,
.importance = 1,
- .unk19 = 0,
.pocket = POCKET_KEY_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -6368,16 +4546,11 @@ const struct Item gItems[] =
.name = _("BIKE VOUCHER"),
.itemId = ITEM_BIKE_VOUCHER,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gBikeVoucherItemDescription,
+ .description = sBikeVoucherDesc,
.importance = 1,
- .unk19 = 0,
.pocket = POCKET_KEY_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -6386,16 +4559,11 @@ const struct Item gItems[] =
.name = _("GOLD TEETH"),
.itemId = ITEM_GOLD_TEETH,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gGoldTeethItemDescription,
+ .description = sGoldTeethDesc,
.importance = 1,
- .unk19 = 0,
.pocket = POCKET_KEY_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -6404,16 +4572,11 @@ const struct Item gItems[] =
.name = _("OLD AMBER"),
.itemId = ITEM_OLD_AMBER,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gOldAmberItemDescription,
+ .description = sOldAmberDesc,
.importance = 1,
- .unk19 = 0,
.pocket = POCKET_KEY_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -6422,16 +4585,11 @@ const struct Item gItems[] =
.name = _("CARD KEY"),
.itemId = ITEM_CARD_KEY,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gCardKeyItemDescription,
+ .description = sCardKeyDesc,
.importance = 1,
- .unk19 = 0,
.pocket = POCKET_KEY_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -6440,16 +4598,11 @@ const struct Item gItems[] =
.name = _("LIFT KEY"),
.itemId = ITEM_LIFT_KEY,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gLiftKeyItemDescription,
+ .description = sLiftKeyDesc,
.importance = 1,
- .unk19 = 0,
.pocket = POCKET_KEY_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -6458,16 +4611,11 @@ const struct Item gItems[] =
.name = _("HELIX FOSSIL"),
.itemId = ITEM_HELIX_FOSSIL,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gHelixFossilItemDescription,
+ .description = sHelixFossilDesc,
.importance = 1,
- .unk19 = 0,
.pocket = POCKET_KEY_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -6476,16 +4624,11 @@ const struct Item gItems[] =
.name = _("DOME FOSSIL"),
.itemId = ITEM_DOME_FOSSIL,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gDomeFossilItemDescription,
+ .description = sDomeFossilDesc,
.importance = 1,
- .unk19 = 0,
.pocket = POCKET_KEY_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -6494,16 +4637,11 @@ const struct Item gItems[] =
.name = _("SILPH SCOPE"),
.itemId = ITEM_SILPH_SCOPE,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gSilphScopeItemDescription,
+ .description = sSilphScopeDesc,
.importance = 1,
- .unk19 = 0,
.pocket = POCKET_KEY_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -6512,16 +4650,12 @@ const struct Item gItems[] =
.name = _("BICYCLE"),
.itemId = ITEM_BICYCLE,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gBicycleItemDescription,
+ .description = sBicycleDesc,
.importance = 1,
.unk19 = 1,
.pocket = POCKET_KEY_ITEMS,
.type = 2,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -6530,16 +4664,12 @@ const struct Item gItems[] =
.name = _("TOWN MAP"),
.itemId = ITEM_TOWN_MAP,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gTownMapItemDescription,
+ .description = sTownMapDesc,
.importance = 1,
.unk19 = 1,
.pocket = POCKET_KEY_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -6548,16 +4678,12 @@ const struct Item gItems[] =
.name = _("VS SEEKER"),
.itemId = ITEM_VS_SEEKER,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gVSSeekerItemDescription,
+ .description = sVSSeekerDesc,
.importance = 1,
.unk19 = 1,
.pocket = POCKET_KEY_ITEMS,
.type = 2,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -6566,16 +4692,12 @@ const struct Item gItems[] =
.name = _("FAME CHECKER"),
.itemId = ITEM_FAME_CHECKER,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gFameCheckerItemDescription,
+ .description = sFameCheckerDesc,
.importance = 1,
.unk19 = 1,
.pocket = POCKET_KEY_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -6584,16 +4706,12 @@ const struct Item gItems[] =
.name = _("TM CASE"),
.itemId = ITEM_TM_CASE,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gTMCaseItemDescription,
+ .description = sTMCaseDesc,
.importance = 1,
.unk19 = 1,
.pocket = POCKET_KEY_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -6602,16 +4720,12 @@ const struct Item gItems[] =
.name = _("BERRY POUCH"),
.itemId = ITEM_BERRY_POUCH,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gBerryPouchItemDescription,
+ .description = sBerryPouchDesc,
.importance = 1,
.unk19 = 1,
.pocket = POCKET_KEY_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -6620,16 +4734,12 @@ const struct Item gItems[] =
.name = _("TEACHY TV"),
.itemId = ITEM_TEACHY_TV,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gTeachyTVItemDescription,
+ .description = sTeachyTVDesc,
.importance = 1,
.unk19 = 1,
.pocket = POCKET_KEY_ITEMS,
.type = 2,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -6638,16 +4748,12 @@ const struct Item gItems[] =
.name = _("TRI-PASS"),
.itemId = ITEM_TRI_PASS,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gTriPassItemDescription,
+ .description = sTriPassDesc,
.importance = 1,
.unk19 = 1,
.pocket = POCKET_KEY_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -6656,16 +4762,12 @@ const struct Item gItems[] =
.name = _("RAINBOW PASS"),
.itemId = ITEM_RAINBOW_PASS,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gRainbowPassItemDescription,
+ .description = sRainbowPassDesc,
.importance = 1,
.unk19 = 1,
.pocket = POCKET_KEY_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -6674,16 +4776,12 @@ const struct Item gItems[] =
.name = _("TEA"),
.itemId = ITEM_TEA,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gTeaItemDescription,
+ .description = sTeaDesc,
.importance = 1,
.unk19 = 1,
.pocket = POCKET_KEY_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -6692,16 +4790,12 @@ const struct Item gItems[] =
.name = _("MYSTICTICKET"),
.itemId = ITEM_MYSTIC_TICKET,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gMysticTicketItemDescription,
+ .description = sMysticTicketDesc,
.importance = 1,
.unk19 = 1,
.pocket = POCKET_KEY_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -6710,16 +4804,12 @@ const struct Item gItems[] =
.name = _("AURORATICKET"),
.itemId = ITEM_AURORA_TICKET,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gAuroraTicketItemDescription,
+ .description = sAuroraTicketDesc,
.importance = 1,
.unk19 = 1,
.pocket = POCKET_KEY_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -6728,16 +4818,12 @@ const struct Item gItems[] =
.name = _("POWDER JAR"),
.itemId = ITEM_POWDER_JAR,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gPowderJarItemDescription,
+ .description = sPowderJarDesc,
.importance = 1,
.unk19 = 1,
.pocket = POCKET_KEY_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_PowderJar,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -6746,16 +4832,12 @@ const struct Item gItems[] =
.name = _("RUBY"),
.itemId = ITEM_RUBY,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gRubyItemDescription,
+ .description = sRubyDesc,
.importance = 1,
.unk19 = 1,
.pocket = POCKET_KEY_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -6764,16 +4846,12 @@ const struct Item gItems[] =
.name = _("SAPPHIRE"),
.itemId = ITEM_SAPPHIRE,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gSapphireItemDescription,
+ .description = sSapphireDesc,
.importance = 1,
.unk19 = 1,
.pocket = POCKET_KEY_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -6784,16 +4862,12 @@ const struct Item gItems[] =
.name = _("MAGMA EMBLEM"),
.itemId = ITEM_MAGMA_EMBLEM,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gMagmaEmblemItemDescription,
+ .description = sMagmaEmblemDesc,
.importance = 1,
.unk19 = 1,
.pocket = POCKET_KEY_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
@@ -6802,16 +4876,12 @@ const struct Item gItems[] =
.name = _("OLD SEA MAP"),
.itemId = ITEM_OLD_SEA_MAP,
.price = 0,
- .holdEffect = HOLD_EFFECT_NONE,
- .holdEffectParam = 0,
- .description = gOldSeaMapItemDescription,
+ .description = sOldSeaMapDesc,
.importance = 1,
.unk19 = 1,
.pocket = POCKET_KEY_ITEMS,
.type = 4,
.fieldUseFunc = ItemUseOutOfBattle_CannotUse,
- .battleUsage = 0,
- .battleUseFunc = NULL,
.secondaryId = 0,
},
};
diff --git a/src/data/text/item_descriptions.h b/src/data/text/item_descriptions.h
index 1f048e440..5f79efc57 100644
--- a/src/data/text/item_descriptions.h
+++ b/src/data/text/item_descriptions.h
@@ -1,326 +1,1551 @@
-const u8 gDummyItemDescription[] = _("?????");
+static const u8 sDummyDesc[] = _(
+ "?????");
+
// Pokeballs
-const u8 gMasterBallItemDescription[] = _("The best BALL that\ncatches a POKéMON\nwithout fail.");
-const u8 gUltraBallItemDescription[] = _("A better BALL with\na higher catch rate\nthan a GREAT BALL.");
-const u8 gGreatBallItemDescription[] = _("A good BALL with a\nhigher catch rate\nthan a POKé BALL.");
-const u8 gPokeBallItemDescription[] = _("A tool used for\ncatching wild\nPOKéMON.");
-const u8 gSafariBallItemDescription[] = _("A special BALL that\nis used only in the\nSAFARI ZONE.");
-const u8 gNetBallItemDescription[] = _("A BALL that works\nwell on WATER- and\nBUG-type POKéMON.");
-const u8 gDiveBallItemDescription[] = _("A BALL that works\nbetter on POKéMON\non the ocean floor.");
-const u8 gNestBallItemDescription[] = _("A BALL that works\nbetter on weaker\nPOKéMON.");
-const u8 gRepeatBallItemDescription[] = _("A BALL that works\nbetter on POKéMON\ncaught before.");
-const u8 gTimerBallItemDescription[] = _("A BALL that gains\npower in battles\ntaking many turns.");
-const u8 gLuxuryBallItemDescription[] = _("A cozy BALL that\nmakes POKéMON\nmore friendly.");
-const u8 gPremierBallItemDescription[] = _("A rare BALL made\nin commemoration\nof some event.");
+static const u8 sMasterBallDesc[] = _(
+ "The best BALL that\n"
+ "catches a POKéMON\n"
+ "without fail.");
+
+static const u8 sUltraBallDesc[] = _(
+ "A better BALL with\n"
+ "a higher catch rate\n"
+ "than a GREAT BALL.");
+
+static const u8 sGreatBallDesc[] = _(
+ "A good BALL with a\n"
+ "higher catch rate\n"
+ "than a POKé BALL.");
+
+static const u8 sPokeBallDesc[] = _(
+ "A tool used for\n"
+ "catching wild\n"
+ "POKéMON.");
+
+static const u8 sSafariBallDesc[] = _(
+ "A special BALL that\n"
+ "is used only in the\n"
+ "SAFARI ZONE.");
+
+static const u8 sNetBallDesc[] = _(
+ "A BALL that works\n"
+ "well on WATER- and\n"
+ "BUG-type POKéMON.");
+
+static const u8 sDiveBallDesc[] = _(
+ "A BALL that works\n"
+ "better on POKéMON\n"
+ "on the ocean floor.");
+
+static const u8 sNestBallDesc[] = _(
+ "A BALL that works\n"
+ "better on weaker\n"
+ "POKéMON.");
+
+static const u8 sRepeatBallDesc[] = _(
+ "A BALL that works\n"
+ "better on POKéMON\n"
+ "caught before.");
+
+static const u8 sTimerBallDesc[] = _(
+ "A BALL that gains\n"
+ "power in battles\n"
+ "taking many turns.");
+
+static const u8 sLuxuryBallDesc[] = _(
+ "A cozy BALL that\n"
+ "makes POKéMON\n"
+ "more friendly.");
+
+static const u8 sPremierBallDesc[] = _(
+ "A rare BALL made\n"
+ "in commemoration\n"
+ "of some event.");
+
// Medicine
-const u8 gPotionItemDescription[] = _("Restores the HP of\na POKéMON by\n20 points.");
-const u8 gAntidoteItemDescription[] = _("Heals a poisoned\nPOKéMON.");
-const u8 gBurnHealItemDescription[] = _("Heals POKéMON\nof a burn.");
-const u8 gIceHealItemDescription[] = _("Defrosts a frozen\nPOKéMON.");
-const u8 gAwakeningItemDescription[] = _("Awakens a sleeping\nPOKéMON.");
-const u8 gParalyzeHealItemDescription[] = _("Heals a paralyzed\nPOKéMON.");
-const u8 gFullRestoreItemDescription[] = _("Fully restores the\nHP and status of a\nPOKéMON.");
-const u8 gMaxPotionItemDescription[] = _("Fully restores the\nHP of a POKéMON.");
-const u8 gHyperPotionItemDescription[] = _("Restores the HP of\na POKéMON by\n200 points.");
-const u8 gSuperPotionItemDescription[] = _("Restores the HP of\na POKéMON by\n50 points.");
-const u8 gFullHealItemDescription[] = _("Heals all the\nstatus problems of\none POKéMON.");
-const u8 gReviveItemDescription[] = _("Revives a fainted\nPOKéMON with half\nits HP.");
-const u8 gMaxReviveItemDescription[] = _("Revives a fainted\nPOKéMON with all\nits HP.");
-const u8 gFreshWaterItemDescription[] = _("A mineral water\nthat restores HP\nby 50 points.");
-const u8 gSodaPopItemDescription[] = _("A fizzy soda drink\nthat restores HP\nby 60 points.");
-const u8 gLemonadeItemDescription[] = _("A very sweet drink\nthat restores HP\nby 80 points.");
-const u8 gMoomooMilkItemDescription[] = _("A nutritious milk\nthat restores HP\nby 100 points.");
-const u8 gEnergyPowderItemDescription[] = _("A bitter powder\nthat restores HP\nby 50 points.");
-const u8 gEnergyRootItemDescription[] = _("A bitter root\nthat restores HP\nby 200 points.");
-const u8 gHealPowderItemDescription[] = _("A bitter powder\nthat heals all\nstatus problems.");
-const u8 gRevivalHerbItemDescription[] = _("A very bitter herb\nthat revives a\nfainted POKéMON.");
-const u8 gEtherItemDescription[] = _("Restores the PP\nof a selected move\nby 10.");
-const u8 gMaxEtherItemDescription[] = _("Fully restores the\nPP of a selected\nmove.");
-const u8 gElixirItemDescription[] = _("Restores the PP\nof all moves by 10.");
-const u8 gMaxElixirItemDescription[] = _("Fully restores the\nPP of a POKéMON's\nmoves.");
-const u8 gLavaCookieItemDescription[] = _("A local specialty\nthat heals all\nstatus problems.");
-const u8 gBlueFluteItemDescription[] = _("A glass flute that\nawakens sleeping\nPOKéMON.");
-const u8 gYellowFluteItemDescription[] = _("A glass flute that\nsnaps POKéMON\nout of confusion.");
-const u8 gRedFluteItemDescription[] = _("A glass flute that\nsnaps POKéMON\nout of attraction.");
-const u8 gBlackFluteItemDescription[] = _("A glass flute that\nkeeps away wild\nPOKéMON.");
-const u8 gWhiteFluteItemDescription[] = _("A glass flute that\nlures wild POKéMON.");
-const u8 gBerryJuiceItemDescription[] = _("A 100% pure juice\nthat restores HP\nby 20 points.");
-const u8 gSacredAshItemDescription[] = _("Fully revives and\nrestores all\nfainted POKéMON.");
+static const u8 sPotionDesc[] = _(
+ "Restores the HP of\n"
+ "a POKéMON by\n"
+ "20 points.");
+
+static const u8 sAntidoteDesc[] = _(
+ "Heals a poisoned\n"
+ "POKéMON.");
+
+static const u8 sBurnHealDesc[] = _(
+ "Heals POKéMON\n"
+ "of a burn.");
+
+static const u8 sIceHealDesc[] = _(
+ "Defrosts a frozen\n"
+ "POKéMON.");
+
+static const u8 sAwakeningDesc[] = _(
+ "Awakens a sleeping\n"
+ "POKéMON.");
+
+static const u8 sParalyzeHealDesc[] = _(
+ "Heals a paralyzed\n"
+ "POKéMON.");
+
+static const u8 sFullRestoreDesc[] = _(
+ "Fully restores the\n"
+ "HP and status of a\n"
+ "POKéMON.");
+
+static const u8 sMaxPotionDesc[] = _(
+ "Fully restores the\n"
+ "HP of a POKéMON.");
+
+static const u8 sHyperPotionDesc[] = _(
+ "Restores the HP of\n"
+ "a POKéMON by\n"
+ "200 points.");
+
+static const u8 sSuperPotionDesc[] = _(
+ "Restores the HP of\n"
+ "a POKéMON by\n"
+ "50 points.");
+
+static const u8 sFullHealDesc[] = _(
+ "Heals all the\n"
+ "status problems of\n"
+ "one POKéMON.");
+
+static const u8 sReviveDesc[] = _(
+ "Revives a fainted\n"
+ "POKéMON with half\n"
+ "its HP.");
+
+static const u8 sMaxReviveDesc[] = _(
+ "Revives a fainted\n"
+ "POKéMON with all\n"
+ "its HP.");
+
+static const u8 sFreshWaterDesc[] = _(
+ "A mineral water\n"
+ "that restores HP\n"
+ "by 50 points.");
+
+static const u8 sSodaPopDesc[] = _(
+ "A fizzy soda drink\n"
+ "that restores HP\n"
+ "by 60 points.");
+
+static const u8 sLemonadeDesc[] = _(
+ "A very sweet drink\n"
+ "that restores HP\n"
+ "by 80 points.");
+
+static const u8 sMoomooMilkDesc[] = _(
+ "A nutritious milk\n"
+ "that restores HP\n"
+ "by 100 points.");
+
+static const u8 sEnergyPowderDesc[] = _(
+ "A bitter powder\n"
+ "that restores HP\n"
+ "by 50 points.");
+
+static const u8 sEnergyRootDesc[] = _(
+ "A bitter root\n"
+ "that restores HP\n"
+ "by 200 points.");
+
+static const u8 sHealPowderDesc[] = _(
+ "A bitter powder\n"
+ "that heals all\n"
+ "status problems.");
+
+static const u8 sRevivalHerbDesc[] = _(
+ "A very bitter herb\n"
+ "that revives a\n"
+ "fainted POKéMON.");
+
+static const u8 sEtherDesc[] = _(
+ "Restores the PP\n"
+ "of a selected move\n"
+ "by 10.");
+
+static const u8 sMaxEtherDesc[] = _(
+ "Fully restores the\n"
+ "PP of a selected\n"
+ "move.");
+
+static const u8 sElixirDesc[] = _(
+ "Restores the PP\n"
+ "of all moves by 10.");
+
+static const u8 sMaxElixirDesc[] = _(
+ "Fully restores the\n"
+ "PP of a POKéMON's\n"
+ "moves.");
+
+static const u8 sLavaCookieDesc[] = _(
+ "A local specialty\n"
+ "that heals all\n"
+ "status problems.");
+
+static const u8 sBlueFluteDesc[] = _(
+ "A glass flute that\n"
+ "awakens sleeping\n"
+ "POKéMON.");
+
+static const u8 sYellowFluteDesc[] = _(
+ "A glass flute that\n"
+ "snaps POKéMON\n"
+ "out of confusion.");
+
+static const u8 sRedFluteDesc[] = _(
+ "A glass flute that\n"
+ "snaps POKéMON\n"
+ "out of attraction.");
+
+static const u8 sBlackFluteDesc[] = _(
+ "A glass flute that\n"
+ "keeps away wild\n"
+ "POKéMON.");
+
+static const u8 sWhiteFluteDesc[] = _(
+ "A glass flute that\n"
+ "lures wild POKéMON.");
+
+static const u8 sBerryJuiceDesc[] = _(
+ "A 100% pure juice\n"
+ "that restores HP\n"
+ "by 20 points.");
+
+static const u8 sSacredAshDesc[] = _(
+ "Fully revives and\n"
+ "restores all\n"
+ "fainted POKéMON.");
+
// Collectibles
-const u8 gShoalSaltItemDescription[] = _("Salt obtained from\ndeep inside the\nSHOAL CAVE.");
-const u8 gShoalShellItemDescription[] = _("A seashell found\ndeep inside the\nSHOAL CAVE.");
-const u8 gRedShardItemDescription[] = _("A shard from an\nancient item. Can\nbe sold cheaply.");
-const u8 gBlueShardItemDescription[] = _("A shard from an\nancient item. Can\nbe sold cheaply.");
-const u8 gYellowShardItemDescription[] = _("A shard from an\nancient item. Can\nbe sold cheaply.");
-const u8 gGreenShardItemDescription[] = _("A shard from an\nancient item. Can\nbe sold cheaply.");
+static const u8 sShoalSaltDesc[] = _(
+ "Salt obtained from\n"
+ "deep inside the\n"
+ "SHOAL CAVE.");
+
+static const u8 sShoalShellDesc[] = _(
+ "A seashell found\n"
+ "deep inside the\n"
+ "SHOAL CAVE.");
+
+static const u8 sRedShardDesc[] = _(
+ "A shard from an\n"
+ "ancient item. Can\n"
+ "be sold cheaply.");
+
+static const u8 sBlueShardDesc[] = _(
+ "A shard from an\n"
+ "ancient item. Can\n"
+ "be sold cheaply.");
+
+static const u8 sYellowShardDesc[] = _(
+ "A shard from an\n"
+ "ancient item. Can\n"
+ "be sold cheaply.");
+
+static const u8 sGreenShardDesc[] = _(
+ "A shard from an\n"
+ "ancient item. Can\n"
+ "be sold cheaply.");
+
// Vitamins
-const u8 gHPUpItemDescription[] = _("Raises the base HP\nof one POKéMON.");
-const u8 gProteinItemDescription[] = _("Raises the base\nATTACK stat of one\nPOKéMON.");
-const u8 gIronItemDescription[] = _("Raises the base\nDEFENSE stat of\none POKéMON.");
-const u8 gCarbosItemDescription[] = _("Raises the base\nSPEED stat of one\nPOKéMON.");
-const u8 gCalciumItemDescription[] = _("Raises the base\nSP. ATK stat of one\nPOKéMON.");
-const u8 gRareCandyItemDescription[] = _("Raises the level\nof a POKéMON by\none.");
-const u8 gPPUpItemDescription[] = _("Raises the maximum\nPP of a selected\nmove.");
-const u8 gZincItemDescription[] = _("Raises the base\nSP. DEF stat of one\nPOKéMON.");
-const u8 gPPMaxItemDescription[] = _("Raises the PP of a\nmove to its maximum\npoints.");
+static const u8 sHPUpDesc[] = _(
+ "Raises the base HP\n"
+ "of one POKéMON.");
+
+static const u8 sProteinDesc[] = _(
+ "Raises the base\n"
+ "ATTACK stat of one\n"
+ "POKéMON.");
+
+static const u8 sIronDesc[] = _(
+ "Raises the base\n"
+ "DEFENSE stat of\n"
+ "one POKéMON.");
+
+static const u8 sCarbosDesc[] = _(
+ "Raises the base\n"
+ "SPEED stat of one\n"
+ "POKéMON.");
+
+static const u8 sCalciumDesc[] = _(
+ "Raises the base\n"
+ "SP. ATK stat of one\n"
+ "POKéMON.");
+
+static const u8 sRareCandyDesc[] = _(
+ "Raises the level\n"
+ "of a POKéMON by\n"
+ "one.");
+
+static const u8 sPPUpDesc[] = _(
+ "Raises the maximum\n"
+ "PP of a selected\n"
+ "move.");
+
+static const u8 sZincDesc[] = _(
+ "Raises the base\n"
+ "SP. DEF stat of one\n"
+ "POKéMON.");
+
+static const u8 sPPMaxDesc[] = _(
+ "Raises the PP of a\n"
+ "move to its maximum\n"
+ "points.");
+
// Battle items
-const u8 gGuardSpecItemDescription[] = _("Prevents stat\nreduction when\nused in battle.");
-const u8 gDireHitItemDescription[] = _("Raises the\ncritical-hit ratio\nduring one battle.");
-const u8 gXAttackItemDescription[] = _("Raises the stat\nATTACK during one\nbattle.");
-const u8 gXDefendItemDescription[] = _("Raises the stat\nDEFENSE during one\nbattle.");
-const u8 gXSpeedItemDescription[] = _("Raises the stat\nSPEED during one\nbattle.");
-const u8 gXAccuracyItemDescription[] = _("Raises accuracy\nof attack moves\nduring one battle.");
-const u8 gXSpecialItemDescription[] = _("Raises the stat\nSP. ATK during one\nbattle.");
-const u8 gPokeDollItemDescription[] = _("Use to flee from\nany battle with\na wild POKéMON.");
-const u8 gFluffyTailItemDescription[] = _("Use to flee from\nany battle with\na wild POKéMON.");
+static const u8 sGuardSpecDesc[] = _(
+ "Prevents stat\n"
+ "reduction when\n"
+ "used in battle.");
+
+static const u8 sDireHitDesc[] = _(
+ "Raises the\n"
+ "critical-hit ratio\n"
+ "during one battle.");
+
+static const u8 sXAttackDesc[] = _(
+ "Raises the stat\n"
+ "ATTACK during one\n"
+ "battle.");
+
+static const u8 sXDefendDesc[] = _(
+ "Raises the stat\n"
+ "DEFENSE during one\n"
+ "battle.");
+
+static const u8 sXSpeedDesc[] = _(
+ "Raises the stat\n"
+ "SPEED during one\n"
+ "battle.");
+
+static const u8 sXAccuracyDesc[] = _(
+ "Raises accuracy\n"
+ "of attack moves\n"
+ "during one battle.");
+
+static const u8 sXSpecialDesc[] = _(
+ "Raises the stat\n"
+ "SP. ATK during one\n"
+ "battle.");
+
+static const u8 sPokeDollDesc[] = _(
+ "Use to flee from\n"
+ "any battle with\n"
+ "a wild POKéMON.");
+
+static const u8 sFluffyTailDesc[] = _(
+ "Use to flee from\n"
+ "any battle with\n"
+ "a wild POKéMON.");
+
// Field items
-const u8 gSuperRepelItemDescription[] = _("Repels weak wild\nPOKéMON for 200\nsteps.");
-const u8 gMaxRepelItemDescription[] = _("Repels weak wild\nPOKéMON for 250\nsteps.");
-const u8 gEscapeRopeItemDescription[] = _("Use to escape\ninstantly from a\ncave or a dungeon.");
-const u8 gRepelItemDescription[] = _("Repels weak wild\nPOKéMON for 100\nsteps.");
+static const u8 sSuperRepelDesc[] = _(
+ "Repels weak wild\n"
+ "POKéMON for 200\n"
+ "steps.");
+
+static const u8 sMaxRepelDesc[] = _(
+ "Repels weak wild\n"
+ "POKéMON for 250\n"
+ "steps.");
+
+static const u8 sEscapeRopeDesc[] = _(
+ "Use to escape\n"
+ "instantly from a\n"
+ "cave or a dungeon.");
+
+static const u8 sRepelDesc[] = _(
+ "Repels weak wild\n"
+ "POKéMON for 100\n"
+ "steps.");
+
// Evolution stones
-const u8 gSunStoneItemDescription[] = _("Makes certain\nspecies of POKéMON\nevolve.");
-const u8 gMoonStoneItemDescription[] = _("Makes certain\nspecies of POKéMON\nevolve.");
-const u8 gFireStoneItemDescription[] = _("Makes certain\nspecies of POKéMON\nevolve.");
-const u8 gThunderStoneItemDescription[] = _("Makes certain\nspecies of POKéMON\nevolve.");
-const u8 gWaterStoneItemDescription[] = _("Makes certain\nspecies of POKéMON\nevolve.");
-const u8 gLeafStoneItemDescription[] = _("Makes certain\nspecies of POKéMON\nevolve.");
+static const u8 sSunStoneDesc[] = _(
+ "Makes certain\n"
+ "species of POKéMON\n"
+ "evolve.");
+
+static const u8 sMoonStoneDesc[] = _(
+ "Makes certain\n"
+ "species of POKéMON\n"
+ "evolve.");
+
+static const u8 sFireStoneDesc[] = _(
+ "Makes certain\n"
+ "species of POKéMON\n"
+ "evolve.");
+
+static const u8 sThunderStoneDesc[] = _(
+ "Makes certain\n"
+ "species of POKéMON\n"
+ "evolve.");
+
+static const u8 sWaterStoneDesc[] = _(
+ "Makes certain\n"
+ "species of POKéMON\n"
+ "evolve.");
+
+static const u8 sLeafStoneDesc[] = _(
+ "Makes certain\n"
+ "species of POKéMON\n"
+ "evolve.");
+
// Valuable items
-const u8 gTinyMushroomItemDescription[] = _("A plain mushroom\nthat would sell\nat a cheap price.");
-const u8 gBigMushroomItemDescription[] = _("A rare mushroom\nthat would sell at a\nhigh price.");
-const u8 gPearlItemDescription[] = _("A pretty pearl\nthat would sell at a\ncheap price.");
-const u8 gBigPearlItemDescription[] = _("A lovely large pearl\nthat would sell at a\nhigh price.");
-const u8 gStardustItemDescription[] = _("Beautiful red sand.\nCan be sold at a\nhigh price.");
-const u8 gStarPieceItemDescription[] = _("A red gem shard.\nIt would sell for a\nvery high price.");
-const u8 gNuggetItemDescription[] = _("A nugget of pure\ngold. Can be sold at\na high price.");
-const u8 gHeartScaleItemDescription[] = _("A lovely scale.\nIt is coveted by\ncollectors.");
+static const u8 sTinyMushroomDesc[] = _(
+ "A plain mushroom\n"
+ "that would sell\n"
+ "at a cheap price.");
+
+static const u8 sBigMushroomDesc[] = _(
+ "A rare mushroom\n"
+ "that would sell at a\n"
+ "high price.");
+
+static const u8 sPearlDesc[] = _(
+ "A pretty pearl\n"
+ "that would sell at a\n"
+ "cheap price.");
+
+static const u8 sBigPearlDesc[] = _(
+ "A lovely large pearl\n"
+ "that would sell at a\n"
+ "high price.");
+
+static const u8 sStardustDesc[] = _(
+ "Beautiful red sand.\n"
+ "Can be sold at a\n"
+ "high price.");
+
+static const u8 sStarPieceDesc[] = _(
+ "A red gem shard.\n"
+ "It would sell for a\n"
+ "very high price.");
+
+static const u8 sNuggetDesc[] = _(
+ "A nugget of pure\n"
+ "gold. Can be sold at\n"
+ "a high price.");
+
+static const u8 sHeartScaleDesc[] = _(
+ "A lovely scale.\n"
+ "It is coveted by\n"
+ "collectors.");
+
// Mail
-const u8 gOrangeMailItemDescription[] = _("A ZIGZAGOON-print\nMAIL to be held by\na POKéMON.");
-const u8 gHarborMailItemDescription[] = _("A WINGULL-print\nMAIL to be held by\na POKéMON.");
-const u8 gGlitterMailItemDescription[] = _("A PIKACHU-print\nMAIL to be held by\na POKéMON.");
-const u8 gMechMailItemDescription[] = _("A MAGNEMITE-print\nMAIL to be held by\na POKéMON.");
-const u8 gWoodMailItemDescription[] = _("A SLAKOTH-print\nMAIL to be held by\na POKéMON.");
-const u8 gWaveMailItemDescription[] = _("A WAILMER-print\nMAIL to be held by\na POKéMON.");
-const u8 gBeadMailItemDescription[] = _("MAIL featuring a\nsketch of the\nholding POKéMON.");
-const u8 gShadowMailItemDescription[] = _("A DUSKULL-print\nMAIL to be held by\na POKéMON.");
-const u8 gTropicMailItemDescription[] = _("A BELLOSSOM-print\nMAIL to be held by\na POKéMON.");
-const u8 gDreamMailItemDescription[] = _("MAIL featuring a\nsketch of the\nholding POKéMON.");
-const u8 gFabMailItemDescription[] = _("A gorgeous-print\nMAIL to be held\nby a POKéMON.");
-const u8 gRetroMailItemDescription[] = _("MAIL featuring the\ndrawings of three\nPOKéMON.");
+static const u8 sOrangeMailDesc[] = _(
+ "A ZIGZAGOON-print\n"
+ "MAIL to be held by\n"
+ "a POKéMON.");
+
+static const u8 sHarborMailDesc[] = _(
+ "A WINGULL-print\n"
+ "MAIL to be held by\n"
+ "a POKéMON.");
+
+static const u8 sGlitterMailDesc[] = _(
+ "A PIKACHU-print\n"
+ "MAIL to be held by\n"
+ "a POKéMON.");
+
+static const u8 sMechMailDesc[] = _(
+ "A MAGNEMITE-print\n"
+ "MAIL to be held by\n"
+ "a POKéMON.");
+
+static const u8 sWoodMailDesc[] = _(
+ "A SLAKOTH-print\n"
+ "MAIL to be held by\n"
+ "a POKéMON.");
+
+static const u8 sWaveMailDesc[] = _(
+ "A WAILMER-print\n"
+ "MAIL to be held by\n"
+ "a POKéMON.");
+
+static const u8 sBeadMailDesc[] = _(
+ "MAIL featuring a\n"
+ "sketch of the\n"
+ "holding POKéMON.");
+
+static const u8 sShadowMailDesc[] = _(
+ "A DUSKULL-print\n"
+ "MAIL to be held by\n"
+ "a POKéMON.");
+
+static const u8 sTropicMailDesc[] = _(
+ "A BELLOSSOM-print\n"
+ "MAIL to be held by\n"
+ "a POKéMON.");
+
+static const u8 sDreamMailDesc[] = _(
+ "MAIL featuring a\n"
+ "sketch of the\n"
+ "holding POKéMON.");
+
+static const u8 sFabMailDesc[] = _(
+ "A gorgeous-print\n"
+ "MAIL to be held\n"
+ "by a POKéMON.");
+
+static const u8 sRetroMailDesc[] = _(
+ "MAIL featuring the\n"
+ "drawings of three\n"
+ "POKéMON.");
+
// Berries
-const u8 gCheriBerryItemDescription[] = _("A hold item that\nheals paralysis\nin battle.");
-const u8 gChestoBerryItemDescription[] = _("A hold item that\nawakens POKéMON\nin battle.");
-const u8 gPechaBerryItemDescription[] = _("A hold item that\nheals poisoning\nin battle.");
-const u8 gRawstBerryItemDescription[] = _("A hold item that\nheals a burn in\nbattle.");
-const u8 gAspearBerryItemDescription[] = _("A hold item that\ndefrosts POKéMON\nin battle.");
-const u8 gLeppaBerryItemDescription[] = _("A hold item that\nrestores 10 PP in\nbattle.");
-const u8 gOranBerryItemDescription[] = _("A hold item that\nrestores 10 HP in\nbattle.");
-const u8 gPersimBerryItemDescription[] = _("A hold item that\nheals confusion\nin battle.");
-const u8 gLumBerryItemDescription[] = _("A hold item that\nheals any status\nproblem in battle.");
-const u8 gSitrusBerryItemDescription[] = _("A hold item that\nrestores 30 HP in\nbattle.");
-const u8 gFigyBerryItemDescription[] = _("A hold item that\nrestores HP but\nmay confuse.");
-const u8 gWikiBerryItemDescription[] = _("A hold item that\nrestores HP but\nmay confuse.");
-const u8 gMagoBerryItemDescription[] = _("A hold item that\nrestores HP but\nmay confuse.");
-const u8 gAguavBerryItemDescription[] = _("A hold item that\nrestores HP but\nmay confuse.");
-const u8 gIapapaBerryItemDescription[] = _("A hold item that\nrestores HP but\nmay confuse.");
-const u8 gRazzBerryItemDescription[] = _("{POKEBLOCK} ingredient.\nPlant in loamy soil\nto grow RAZZ.");
-const u8 gBlukBerryItemDescription[] = _("{POKEBLOCK} ingredient.\nPlant in loamy soil\nto grow BLUK.");
-const u8 gNanabBerryItemDescription[] = _("{POKEBLOCK} ingredient.\nPlant in loamy soil\nto grow NANAB.");
-const u8 gWepearBerryItemDescription[] = _("{POKEBLOCK} ingredient.\nPlant in loamy soil\nto grow WEPEAR.");
-const u8 gPinapBerryItemDescription[] = _("{POKEBLOCK} ingredient.\nPlant in loamy soil\nto grow PINAP.");
-const u8 gPomegBerryItemDescription[] = _("Makes a POKéMON\nfriendly but lowers\nbase HP.");
-const u8 gKelpsyBerryItemDescription[] = _("Makes a POKéMON\nfriendly but lowers\nbase ATTACK.");
-const u8 gQualotBerryItemDescription[] = _("Makes a POKéMON\nfriendly but lowers\nbase DEFENSE.");
-const u8 gHondewBerryItemDescription[] = _("Makes a POKéMON\nfriendly but lowers\nbase SP. ATK.");
-const u8 gGrepaBerryItemDescription[] = _("Makes a POKéMON\nfriendly but lowers\nbase SP. DEF.");
-const u8 gTamatoBerryItemDescription[] = _("Makes a POKéMON\nfriendly but lowers\nbase SPEED.");
-const u8 gCornnBerryItemDescription[] = _("{POKEBLOCK} ingredient.\nPlant in loamy soil\nto grow CORNN.");
-const u8 gMagostBerryItemDescription[] = _("{POKEBLOCK} ingredient.\nPlant in loamy soil\nto grow MAGOST.");
-const u8 gRabutaBerryItemDescription[] = _("{POKEBLOCK} ingredient.\nPlant in loamy soil\nto grow RABUTA.");
-const u8 gNomelBerryItemDescription[] = _("{POKEBLOCK} ingredient.\nPlant in loamy soil\nto grow NOMEL.");
-const u8 gSpelonBerryItemDescription[] = _("{POKEBLOCK} ingredient.\nPlant in loamy soil\nto grow SPELON.");
-const u8 gPamtreBerryItemDescription[] = _("{POKEBLOCK} ingredient.\nPlant in loamy soil\nto grow PAMTRE.");
-const u8 gWatmelBerryItemDescription[] = _("{POKEBLOCK} ingredient.\nPlant in loamy soil\nto grow WATMEL.");
-const u8 gDurinBerryItemDescription[] = _("{POKEBLOCK} ingredient.\nPlant in loamy soil\nto grow DURIN.");
-const u8 gBelueBerryItemDescription[] = _("{POKEBLOCK} ingredient.\nPlant in loamy soil\nto grow BELUE.");
-const u8 gLiechiBerryItemDescription[] = _("A hold item that\nraises ATTACK in\na pinch.");
-const u8 gGanlonBerryItemDescription[] = _("A hold item that\nraises DEFENSE in\na pinch.");
-const u8 gSalacBerryItemDescription[] = _("A hold item that\nraises SPEED in\na pinch.");
-const u8 gPetayaBerryItemDescription[] = _("A hold item that\nraises SP. ATK in\na pinch.");
-const u8 gApicotBerryItemDescription[] = _("A hold item that\nraises SP. DEF in\na pinch.");
-const u8 gLansatBerryItemDescription[] = _("A hold item that\nups the critical-\nhit rate in a pinch.");
-const u8 gStarfBerryItemDescription[] = _("A hold item that\nsharply boosts a\nstat in a pinch.");
-const u8 gEnigmaBerryItemDescription[] = _("{POKEBLOCK} ingredient.\nPlant in loamy soil\nto grow a mystery.");
+static const u8 sCheriBerryDesc[] = _(
+ "A hold item that\n"
+ "heals paralysis\n"
+ "in battle.");
+
+static const u8 sChestoBerryDesc[] = _(
+ "A hold item that\n"
+ "awakens POKéMON\n"
+ "in battle.");
+
+static const u8 sPechaBerryDesc[] = _(
+ "A hold item that\n"
+ "heals poisoning\n"
+ "in battle.");
+
+static const u8 sRawstBerryDesc[] = _(
+ "A hold item that\n"
+ "heals a burn in\n"
+ "battle.");
+
+static const u8 sAspearBerryDesc[] = _(
+ "A hold item that\n"
+ "defrosts POKéMON\n"
+ "in battle.");
+
+static const u8 sLeppaBerryDesc[] = _(
+ "A hold item that\n"
+ "restores 10 PP in\n"
+ "battle.");
+
+static const u8 sOranBerryDesc[] = _(
+ "A hold item that\n"
+ "restores 10 HP in\n"
+ "battle.");
+
+static const u8 sPersimBerryDesc[] = _(
+ "A hold item that\n"
+ "heals confusion\n"
+ "in battle.");
+
+static const u8 sLumBerryDesc[] = _(
+ "A hold item that\n"
+ "heals any status\n"
+ "problem in battle.");
+
+static const u8 sSitrusBerryDesc[] = _(
+ "A hold item that\n"
+ "restores 30 HP in\n"
+ "battle.");
+
+static const u8 sFigyBerryDesc[] = _(
+ "A hold item that\n"
+ "restores HP but\n"
+ "may confuse.");
+
+static const u8 sWikiBerryDesc[] = _(
+ "A hold item that\n"
+ "restores HP but\n"
+ "may confuse.");
+
+static const u8 sMagoBerryDesc[] = _(
+ "A hold item that\n"
+ "restores HP but\n"
+ "may confuse.");
+
+static const u8 sAguavBerryDesc[] = _(
+ "A hold item that\n"
+ "restores HP but\n"
+ "may confuse.");
+
+static const u8 sIapapaBerryDesc[] = _(
+ "A hold item that\n"
+ "restores HP but\n"
+ "may confuse.");
+
+static const u8 sRazzBerryDesc[] = _(
+ "{POKEBLOCK} ingredient.\n"
+ "Plant in loamy soil\n"
+ "to grow RAZZ.");
+
+static const u8 sBlukBerryDesc[] = _(
+ "{POKEBLOCK} ingredient.\n"
+ "Plant in loamy soil\n"
+ "to grow BLUK.");
+
+static const u8 sNanabBerryDesc[] = _(
+ "{POKEBLOCK} ingredient.\n"
+ "Plant in loamy soil\n"
+ "to grow NANAB.");
+
+static const u8 sWepearBerryDesc[] = _(
+ "{POKEBLOCK} ingredient.\n"
+ "Plant in loamy soil\n"
+ "to grow WEPEAR.");
+
+static const u8 sPinapBerryDesc[] = _(
+ "{POKEBLOCK} ingredient.\n"
+ "Plant in loamy soil\n"
+ "to grow PINAP.");
+
+static const u8 sPomegBerryDesc[] = _(
+ "Makes a POKéMON\n"
+ "friendly but lowers\n"
+ "base HP.");
+
+static const u8 sKelpsyBerryDesc[] = _(
+ "Makes a POKéMON\n"
+ "friendly but lowers\n"
+ "base ATTACK.");
+
+static const u8 sQualotBerryDesc[] = _(
+ "Makes a POKéMON\n"
+ "friendly but lowers\n"
+ "base DEFENSE.");
+
+static const u8 sHondewBerryDesc[] = _(
+ "Makes a POKéMON\n"
+ "friendly but lowers\n"
+ "base SP. ATK.");
+
+static const u8 sGrepaBerryDesc[] = _(
+ "Makes a POKéMON\n"
+ "friendly but lowers\n"
+ "base SP. DEF.");
+
+static const u8 sTamatoBerryDesc[] = _(
+ "Makes a POKéMON\n"
+ "friendly but lowers\n"
+ "base SPEED.");
+
+static const u8 sCornnBerryDesc[] = _(
+ "{POKEBLOCK} ingredient.\n"
+ "Plant in loamy soil\n"
+ "to grow CORNN.");
+
+static const u8 sMagostBerryDesc[] = _(
+ "{POKEBLOCK} ingredient.\n"
+ "Plant in loamy soil\n"
+ "to grow MAGOST.");
+
+static const u8 sRabutaBerryDesc[] = _(
+ "{POKEBLOCK} ingredient.\n"
+ "Plant in loamy soil\n"
+ "to grow RABUTA.");
+
+static const u8 sNomelBerryDesc[] = _(
+ "{POKEBLOCK} ingredient.\n"
+ "Plant in loamy soil\n"
+ "to grow NOMEL.");
+
+static const u8 sSpelonBerryDesc[] = _(
+ "{POKEBLOCK} ingredient.\n"
+ "Plant in loamy soil\n"
+ "to grow SPELON.");
+
+static const u8 sPamtreBerryDesc[] = _(
+ "{POKEBLOCK} ingredient.\n"
+ "Plant in loamy soil\n"
+ "to grow PAMTRE.");
+
+static const u8 sWatmelBerryDesc[] = _(
+ "{POKEBLOCK} ingredient.\n"
+ "Plant in loamy soil\n"
+ "to grow WATMEL.");
+
+static const u8 sDurinBerryDesc[] = _(
+ "{POKEBLOCK} ingredient.\n"
+ "Plant in loamy soil\n"
+ "to grow DURIN.");
+
+static const u8 sBelueBerryDesc[] = _(
+ "{POKEBLOCK} ingredient.\n"
+ "Plant in loamy soil\n"
+ "to grow BELUE.");
+
+static const u8 sLiechiBerryDesc[] = _(
+ "A hold item that\n"
+ "raises ATTACK in\n"
+ "a pinch.");
+
+static const u8 sGanlonBerryDesc[] = _(
+ "A hold item that\n"
+ "raises DEFENSE in\n"
+ "a pinch.");
+
+static const u8 sSalacBerryDesc[] = _(
+ "A hold item that\n"
+ "raises SPEED in\n"
+ "a pinch.");
+
+static const u8 sPetayaBerryDesc[] = _(
+ "A hold item that\n"
+ "raises SP. ATK in\n"
+ "a pinch.");
+
+static const u8 sApicotBerryDesc[] = _(
+ "A hold item that\n"
+ "raises SP. DEF in\n"
+ "a pinch.");
+
+static const u8 sLansatBerryDesc[] = _(
+ "A hold item that\n"
+ "ups the critical-\n"
+ "hit rate in a pinch.");
+
+static const u8 sStarfBerryDesc[] = _(
+ "A hold item that\n"
+ "sharply boosts a\n"
+ "stat in a pinch.");
+
+static const u8 sEnigmaBerryDesc[] = _(
+ "{POKEBLOCK} ingredient.\n"
+ "Plant in loamy soil\n"
+ "to grow a mystery.");
+
// Hold items
-const u8 gBrightPowderItemDescription[] = _("A hold item that\ncasts a glare to\nreduce accuracy.");
-const u8 gWhiteHerbItemDescription[] = _("A hold item that\nrestores any\nlowered stat.");
-const u8 gMachoBraceItemDescription[] = _("A hold item that\npromotes growth,\nbut reduces SPEED.");
-const u8 gExpShareItemDescription[] = _("A hold item that\ngets EXP. points\nfrom battles.");
-const u8 gQuickClawItemDescription[] = _("A hold item that\noccasionally allows\nthe first strike.");
-const u8 gSootheBellItemDescription[] = _("A hold item that\ncalms spirits and\nfosters friendship.");
-const u8 gMentalHerbItemDescription[] = _("A hold item that\nsnaps POKéMON out\nof infatuation.");
-const u8 gChoiceBandItemDescription[] = _("Raises a move's\npower, but permits\nonly that move.");
-const u8 gKingsRockItemDescription[] = _("A hold item that\nmay cause flinching\nwhen the foe is hit.");
-const u8 gSilverPowderItemDescription[] = _("A hold item that\nraises the power of\nBUG-type moves.");
-const u8 gAmuletCoinItemDescription[] = _("Doubles money in\nbattle if the\nholder takes part.");
-const u8 gCleanseTagItemDescription[] = _("A hold item that\nhelps repel wild\nPOKéMON.");
-const u8 gSoulDewItemDescription[] = _("Hold item: raises\nSP. ATK & SP. DEF of\nLATIOS & LATIAS.");
-const u8 gDeepSeaToothItemDescription[] = _("A hold item that\nraises the SP. ATK\nof CLAMPERL.");
-const u8 gDeepSeaScaleItemDescription[] = _("A hold item that\nraises the SP. DEF\nof CLAMPERL.");
-const u8 gSmokeBallItemDescription[] = _("A hold item that\nassures fleeing\nfrom wild POKéMON.");
-const u8 gEverstoneItemDescription[] = _("A wondrous hold\nitem that prevents\nevolution.");
-const u8 gFocusBandItemDescription[] = _("A hold item that\noccasionally\nprevents fainting.");
-const u8 gLuckyEggItemDescription[] = _("A hold item that\nboosts EXP. points\nearned in battle.");
-const u8 gScopeLensItemDescription[] = _("A hold item that\nimproves the\ncritical-hit rate.");
-const u8 gMetalCoatItemDescription[] = _("A hold item that\nraises the power of\nSTEEL-type moves.");
-const u8 gLeftoversItemDescription[] = _("A hold item that\ngradually restores\nHP in battle.");
-const u8 gDragonScaleItemDescription[] = _("A strange scale\nheld by DRAGON-\ntype POKéMON.");
-const u8 gLightBallItemDescription[] = _("A hold item that\nraises the SP. ATK\nof PIKACHU.");
-const u8 gSoftSandItemDescription[] = _("A hold item that\nraises the power of\nGROUND-type moves.");
-const u8 gHardStoneItemDescription[] = _("A hold item that\nraises the power of\nROCK-type moves.");
-const u8 gMiracleSeedItemDescription[] = _("A hold item that\nraises the power of\nGRASS-type moves.");
-const u8 gBlackGlassesItemDescription[] = _("A hold item that\nraises the power of\nDARK-type moves.");
-const u8 gBlackBeltItemDescription[] = _("A hold item that\nboosts FIGHTING-\ntype moves.");
-const u8 gMagnetItemDescription[] = _("A hold item that\nboosts ELECTRIC-\ntype moves.");
-const u8 gMysticWaterItemDescription[] = _("A hold item that\nraises the power of\nWATER-type moves.");
-const u8 gSharpBeakItemDescription[] = _("A hold item that\nraises the power of\nFLYING-type moves.");
-const u8 gPoisonBarbItemDescription[] = _("A hold item that\nraises the power of\nPOISON-type moves.");
-const u8 gNeverMeltIceItemDescription[] = _("A hold item that\nraises the power of\nICE-type moves.");
-const u8 gSpellTagItemDescription[] = _("A hold item that\nraises the power of\nGHOST-type moves.");
-const u8 gTwistedSpoonItemDescription[] = _("A hold item that\nboosts PSYCHIC-\ntype moves.");
-const u8 gCharcoalItemDescription[] = _("A hold item that\nraises the power of\nFIRE-type moves.");
-const u8 gDragonFangItemDescription[] = _("A hold item that\nraises the power of\nDRAGON-type moves.");
-const u8 gSilkScarfItemDescription[] = _("A hold item that\nraises the power of\nNORMAL-type moves.");
-const u8 gUpGradeItemDescription[] = _("A peculiar box made\nby SILPH CO.");
-const u8 gShellBellItemDescription[] = _("A hold item that\nrestores HP upon\nstriking the foe.");
-const u8 gSeaIncenseItemDescription[] = _("A hold item that\nslightly boosts\nWATER-type moves.");
-const u8 gLaxIncenseItemDescription[] = _("A hold item that\nslightly lowers the\nfoe's accuracy.");
-const u8 gLuckyPunchItemDescription[] = _("A hold item that\nraises CHANSEY's\ncritical-hit rate.");
-const u8 gMetalPowderItemDescription[] = _("A hold item that\nraises DITTO's\nDEFENSE.");
-const u8 gThickClubItemDescription[] = _("A hold item that \nraises CUBONE or\nMAROWAK's ATTACK.");
-const u8 gStickItemDescription[] = _("A hold item that\nraises FARFETCH'D's\ncritical-hit ratio.");
-const u8 gRedScarfItemDescription[] = _("A hold item that\nraises COOL in\nCONTESTS.");
-const u8 gBlueScarfItemDescription[] = _("A hold item that\nraises BEAUTY in\nCONTESTS.");
-const u8 gPinkScarfItemDescription[] = _("A hold item that\nraises CUTE in\nCONTESTS.");
-const u8 gGreenScarfItemDescription[] = _("A hold item that\nraises SMART in\nCONTESTS.");
-const u8 gYellowScarfItemDescription[] = _("A hold item that\nraises TOUGH in\nCONTESTS.");
+static const u8 sBrightPowderDesc[] = _(
+ "A hold item that\n"
+ "casts a glare to\n"
+ "reduce accuracy.");
+
+static const u8 sWhiteHerbDesc[] = _(
+ "A hold item that\n"
+ "restores any\n"
+ "lowered stat.");
+
+static const u8 sMachoBraceDesc[] = _(
+ "A hold item that\n"
+ "promotes growth,\n"
+ "but reduces SPEED.");
+
+static const u8 sExpShareDesc[] = _(
+ "A hold item that\n"
+ "gets EXP. points\n"
+ "from battles.");
+
+static const u8 sQuickClawDesc[] = _(
+ "A hold item that\n"
+ "occasionally allows\n"
+ "the first strike.");
+
+static const u8 sSootheBellDesc[] = _(
+ "A hold item that\n"
+ "calms spirits and\n"
+ "fosters friendship.");
+
+static const u8 sMentalHerbDesc[] = _(
+ "A hold item that\n"
+ "snaps POKéMON out\n"
+ "of infatuation.");
+
+static const u8 sChoiceBandDesc[] = _(
+ "Raises a move's\n"
+ "power, but permits\n"
+ "only that move.");
+
+static const u8 sKingsRockDesc[] = _(
+ "A hold item that\n"
+ "may cause flinching\n"
+ "when the foe is hit.");
+
+static const u8 sSilverPowderDesc[] = _(
+ "A hold item that\n"
+ "raises the power of\n"
+ "BUG-type moves.");
+
+static const u8 sAmuletCoinDesc[] = _(
+ "Doubles money in\n"
+ "battle if the\n"
+ "holder takes part.");
+
+static const u8 sCleanseTagDesc[] = _(
+ "A hold item that\n"
+ "helps repel wild\n"
+ "POKéMON.");
+
+static const u8 sSoulDewDesc[] = _(
+ "Hold item: raises\n"
+ "SP. ATK & SP. DEF of\n"
+ "LATIOS & LATIAS.");
+
+static const u8 sDeepSeaToothDesc[] = _(
+ "A hold item that\n"
+ "raises the SP. ATK\n"
+ "of CLAMPERL.");
+
+static const u8 sDeepSeaScaleDesc[] = _(
+ "A hold item that\n"
+ "raises the SP. DEF\n"
+ "of CLAMPERL.");
+
+static const u8 sSmokeBallDesc[] = _(
+ "A hold item that\n"
+ "assures fleeing\n"
+ "from wild POKéMON.");
+
+static const u8 sEverstoneDesc[] = _(
+ "A wondrous hold\n"
+ "item that prevents\n"
+ "evolution.");
+
+static const u8 sFocusBandDesc[] = _(
+ "A hold item that\n"
+ "occasionally\n"
+ "prevents fainting.");
+
+static const u8 sLuckyEggDesc[] = _(
+ "A hold item that\n"
+ "boosts EXP. points\n"
+ "earned in battle.");
+
+static const u8 sScopeLensDesc[] = _(
+ "A hold item that\n"
+ "improves the\n"
+ "critical-hit rate.");
+
+static const u8 sMetalCoatDesc[] = _(
+ "A hold item that\n"
+ "raises the power of\n"
+ "STEEL-type moves.");
+
+static const u8 sLeftoversDesc[] = _(
+ "A hold item that\n"
+ "gradually restores\n"
+ "HP in battle.");
+
+static const u8 sDragonScaleDesc[] = _(
+ "A strange scale\n"
+ "held by DRAGON-\n"
+ "type POKéMON.");
+
+static const u8 sLightBallDesc[] = _(
+ "A hold item that\n"
+ "raises the SP. ATK\n"
+ "of PIKACHU.");
+
+static const u8 sSoftSandDesc[] = _(
+ "A hold item that\n"
+ "raises the power of\n"
+ "GROUND-type moves.");
+
+static const u8 sHardStoneDesc[] = _(
+ "A hold item that\n"
+ "raises the power of\n"
+ "ROCK-type moves.");
+
+static const u8 sMiracleSeedDesc[] = _(
+ "A hold item that\n"
+ "raises the power of\n"
+ "GRASS-type moves.");
+
+static const u8 sBlackGlassesDesc[] = _(
+ "A hold item that\n"
+ "raises the power of\n"
+ "DARK-type moves.");
+
+static const u8 sBlackBeltDesc[] = _(
+ "A hold item that\n"
+ "boosts FIGHTING-\n"
+ "type moves.");
+
+static const u8 sMagnetDesc[] = _(
+ "A hold item that\n"
+ "boosts ELECTRIC-\n"
+ "type moves.");
+
+static const u8 sMysticWaterDesc[] = _(
+ "A hold item that\n"
+ "raises the power of\n"
+ "WATER-type moves.");
+
+static const u8 sSharpBeakDesc[] = _(
+ "A hold item that\n"
+ "raises the power of\n"
+ "FLYING-type moves.");
+
+static const u8 sPoisonBarbDesc[] = _(
+ "A hold item that\n"
+ "raises the power of\n"
+ "POISON-type moves.");
+
+static const u8 sNeverMeltIceDesc[] = _(
+ "A hold item that\n"
+ "raises the power of\n"
+ "ICE-type moves.");
+
+static const u8 sSpellTagDesc[] = _(
+ "A hold item that\n"
+ "raises the power of\n"
+ "GHOST-type moves.");
+
+static const u8 sTwistedSpoonDesc[] = _(
+ "A hold item that\n"
+ "boosts PSYCHIC-\n"
+ "type moves.");
+
+static const u8 sCharcoalDesc[] = _(
+ "A hold item that\n"
+ "raises the power of\n"
+ "FIRE-type moves.");
+
+static const u8 sDragonFangDesc[] = _(
+ "A hold item that\n"
+ "raises the power of\n"
+ "DRAGON-type moves.");
+
+static const u8 sSilkScarfDesc[] = _(
+ "A hold item that\n"
+ "raises the power of\n"
+ "NORMAL-type moves.");
+
+static const u8 sUpGradeDesc[] = _(
+ "A peculiar box made\n"
+ "by SILPH CO.");
+
+static const u8 sShellBellDesc[] = _(
+ "A hold item that\n"
+ "restores HP upon\n"
+ "striking the foe.");
+
+static const u8 sSeaIncenseDesc[] = _(
+ "A hold item that\n"
+ "slightly boosts\n"
+ "WATER-type moves.");
+
+static const u8 sLaxIncenseDesc[] = _(
+ "A hold item that\n"
+ "slightly lowers the\n"
+ "foe's accuracy.");
+
+static const u8 sLuckyPunchDesc[] = _(
+ "A hold item that\n"
+ "raises CHANSEY's\n"
+ "critical-hit rate.");
+
+static const u8 sMetalPowderDesc[] = _(
+ "A hold item that\n"
+ "raises DITTO's\n"
+ "DEFENSE.");
+
+static const u8 sThickClubDesc[] = _(
+ "A hold item that \n"
+ "raises CUBONE or\n"
+ "MAROWAK's ATTACK.");
+
+static const u8 sStickDesc[] = _(
+ "A hold item that\n"
+ "raises FARFETCH'D's\n"
+ "critical-hit ratio.");
+
+static const u8 sRedScarfDesc[] = _(
+ "A hold item that\n"
+ "raises COOL in\n"
+ "CONTESTS.");
+
+static const u8 sBlueScarfDesc[] = _(
+ "A hold item that\n"
+ "raises BEAUTY in\n"
+ "CONTESTS.");
+
+static const u8 sPinkScarfDesc[] = _(
+ "A hold item that\n"
+ "raises CUTE in\n"
+ "CONTESTS.");
+
+static const u8 sGreenScarfDesc[] = _(
+ "A hold item that\n"
+ "raises SMART in\n"
+ "CONTESTS.");
+
+static const u8 sYellowScarfDesc[] = _(
+ "A hold item that\n"
+ "raises TOUGH in\n"
+ "CONTESTS.");
+
// Key items
-const u8 gMachBikeItemDescription[] = _("A folding bicycle\nthat doubles your\nspeed or better.");
-const u8 gCoinCaseItemDescription[] = _("A case that holds\nup to 9,999 COINS.");
-const u8 gItemfinderItemDescription[] = _("A device that\nsignals an invisible\nitem by sound.");
-const u8 gOldRodItemDescription[] = _("Use by any body of\nwater to fish for\nwild POKéMON.");
-const u8 gGoodRodItemDescription[] = _("A decent fishing\nrod for catching\nwild POKéMON.");
-const u8 gSuperRodItemDescription[] = _("The best fishing\nrod for catching\nwild POKéMON.");
-const u8 gSSTicketItemDescription[] = _("The ticket required\nfor sailing on a\nferry.");
-const u8 gContestPassItemDescription[] = _("The pass required\nfor entering\nPOKéMON CONTESTS.");
-const u8 gWailmerPailItemDescription[] = _("A tool used for\nwatering BERRIES\nand plants.");
-const u8 gDevonGoodsItemDescription[] = _("A package that\ncontains DEVON's\nmachine parts.");
-const u8 gSootSackItemDescription[] = _("A sack used to\ngather and hold\nvolcanic ash.");
-const u8 gBasementKeyItemDescription[] = _("The key for NEW\nMAUVILLE beneath\nMAUVILLE CITY.");
-const u8 gAcroBikeItemDescription[] = _("A folding bicycle\ncapable of jumps\nand wheelies.");
-const u8 gPokeblockCaseItemDescription[] = _("A case for holding\n{POKEBLOCK}S made with\na BERRY BLENDER.");
-const u8 gLetterItemDescription[] = _("A letter to STEVEN\nfrom the PRESIDENT\nof the DEVON CORP.");
-const u8 gEonTicketItemDescription[] = _("The ticket for a\nferry to a distant\nsouthern island.");
-const u8 gRedOrbItemDescription[] = _("A red, glowing orb\nsaid to contain an\nancient power.");
-const u8 gBlueOrbItemDescription[] = _("A blue, glowing orb\nsaid to contain an\nancient power.");
-const u8 gScannerItemDescription[] = _("A device found\ninside the\nABANDONED SHIP.");
-const u8 gGoGogglesItemDescription[] = _("Nifty goggles that\nprotect eyes from\ndesert sandstorms.");
-const u8 gMeteoriteItemDescription[] = _("A meteorite found\nat METEOR FALLS.");
-const u8 gRoom1KeyItemDescription[] = _("A key that opens a\ndoor inside the\nABANDONED SHIP.");
-const u8 gRoom2KeyItemDescription[] = _("A key that opens a\ndoor inside the\nABANDONED SHIP.");
-const u8 gRoom4KeyItemDescription[] = _("A key that opens a\ndoor inside the\nABANDONED SHIP.");
-const u8 gRoom6KeyItemDescription[] = _("A key that opens a\ndoor inside the\nABANDONED SHIP.");
-const u8 gStorageKeyItemDescription[] = _("The key to the\nstorage inside the\nABANDONED SHIP.");
-const u8 gRootFossilItemDescription[] = _("A fossil of an\nancient, seafloor-\ndwelling POKéMON.");
-const u8 gClawFossilItemDescription[] = _("A fossil of an\nancient, seafloor-\ndwelling POKéMON.");
-const u8 gDevonScopeItemDescription[] = _("A device by DEVON\nthat signals any\nunseeable POKéMON.");
+static const u8 sMachBikeDesc[] = _(
+ "A folding bicycle\n"
+ "that doubles your\n"
+ "speed or better.");
+
+static const u8 sCoinCaseDesc[] = _(
+ "A case that holds\n"
+ "up to 9,999 COINS.");
+
+static const u8 sItemfinderDesc[] = _(
+ "A device that\n"
+ "signals an invisible\n"
+ "item by sound.");
+
+static const u8 sOldRodDesc[] = _(
+ "Use by any body of\n"
+ "water to fish for\n"
+ "wild POKéMON.");
+
+static const u8 sGoodRodDesc[] = _(
+ "A decent fishing\n"
+ "rod for catching\n"
+ "wild POKéMON.");
+
+static const u8 sSuperRodDesc[] = _(
+ "The best fishing\n"
+ "rod for catching\n"
+ "wild POKéMON.");
+
+static const u8 sSSTicketDesc[] = _(
+ "The ticket required\n"
+ "for sailing on a\n"
+ "ferry.");
+
+static const u8 sContestPassDesc[] = _(
+ "The pass required\n"
+ "for entering\n"
+ "POKéMON CONTESTS.");
+
+static const u8 sWailmerPailDesc[] = _(
+ "A tool used for\n"
+ "watering BERRIES\n"
+ "and plants.");
+
+static const u8 sDevonGoodsDesc[] = _(
+ "A package that\n"
+ "contains DEVON's\n"
+ "machine parts.");
+
+static const u8 sSootSackDesc[] = _(
+ "A sack used to\n"
+ "gather and hold\n"
+ "volcanic ash.");
+
+static const u8 sBasementKeyDesc[] = _(
+ "The key for NEW\n"
+ "MAUVILLE beneath\n"
+ "MAUVILLE CITY.");
+
+static const u8 sAcroBikeDesc[] = _(
+ "A folding bicycle\n"
+ "capable of jumps\n"
+ "and wheelies.");
+
+static const u8 sPokeblockCaseDesc[] = _(
+ "A case for holding\n"
+ "{POKEBLOCK}S made with\n"
+ "a BERRY BLENDER.");
+
+static const u8 sLetterDesc[] = _(
+ "A letter to STEVEN\n"
+ "from the PRESIDENT\n"
+ "of the DEVON CORP.");
+
+static const u8 sEonTicketDesc[] = _(
+ "The ticket for a\n"
+ "ferry to a distant\n"
+ "southern island.");
+
+static const u8 sRedOrbDesc[] = _(
+ "A red, glowing orb\n"
+ "said to contain an\n"
+ "ancient power.");
+
+static const u8 sBlueOrbDesc[] = _(
+ "A blue, glowing orb\n"
+ "said to contain an\n"
+ "ancient power.");
+
+static const u8 sScannerDesc[] = _(
+ "A device found\n"
+ "inside the\n"
+ "ABANDONED SHIP.");
+
+static const u8 sGoGogglesDesc[] = _(
+ "Nifty goggles that\n"
+ "protect eyes from\n"
+ "desert sandstorms.");
+
+static const u8 sMeteoriteDesc[] = _(
+ "A meteorite found\n"
+ "at METEOR FALLS.");
+
+static const u8 sRoom1KeyDesc[] = _(
+ "A key that opens a\n"
+ "door inside the\n"
+ "ABANDONED SHIP.");
+
+static const u8 sRoom2KeyDesc[] = _(
+ "A key that opens a\n"
+ "door inside the\n"
+ "ABANDONED SHIP.");
+
+static const u8 sRoom4KeyDesc[] = _(
+ "A key that opens a\n"
+ "door inside the\n"
+ "ABANDONED SHIP.");
+
+static const u8 sRoom6KeyDesc[] = _(
+ "A key that opens a\n"
+ "door inside the\n"
+ "ABANDONED SHIP.");
+
+static const u8 sStorageKeyDesc[] = _(
+ "The key to the\n"
+ "storage inside the\n"
+ "ABANDONED SHIP.");
+
+static const u8 sRootFossilDesc[] = _(
+ "A fossil of an\n"
+ "ancient, seafloor-\n"
+ "dwelling POKéMON.");
+
+static const u8 sClawFossilDesc[] = _(
+ "A fossil of an\n"
+ "ancient, seafloor-\n"
+ "dwelling POKéMON.");
+
+static const u8 sDevonScopeDesc[] = _(
+ "A device by DEVON\n"
+ "that signals any\n"
+ "unseeable POKéMON.");
+
// TMs/HMs
-const u8 gTM01ItemDescription[] = _("Powerful, but makes\nthe user flinch if\nhit by the foe.");
-const u8 gTM02ItemDescription[] = _("Hooks and slashes\nthe foe with long,\nsharp claws.");
-const u8 gTM03ItemDescription[] = _("Generates an\nultrasonic wave\nthat may confuse.");
-const u8 gTM04ItemDescription[] = _("Raises SP. ATK and\nSP. DEF by focusing\nthe mind.");
-const u8 gTM05ItemDescription[] = _("A savage roar that\nmakes the foe flee \nto end the battle.");
-const u8 gTM06ItemDescription[] = _("Poisons the foe\nwith a toxin that\ngradually worsens.");
-const u8 gTM07ItemDescription[] = _("Creates a hailstorm\nthat damages all\ntypes except ICE.");
-const u8 gTM08ItemDescription[] = _("Bulks up the body\nto boost both\nATTACK & DEFENSE.");
-const u8 gTM09ItemDescription[] = _("Shoots 2 to 5 seeds\nin a row to strike\nthe foe.");
-const u8 gTM10ItemDescription[] = _("The attack power\nvaries among\ndifferent POKéMON.");
-const u8 gTM11ItemDescription[] = _("Raises the power of\nFIRE-type moves\nfor 5 turns.");
-const u8 gTM12ItemDescription[] = _("Enrages the foe so\nit can only use\nattack moves.");
-const u8 gTM13ItemDescription[] = _("Fires an icy cold\nbeam that may\nfreeze the foe.");
-const u8 gTM14ItemDescription[] = _("A brutal snow-and-\nwind attack that\nmay freeze the foe.");
-const u8 gTM15ItemDescription[] = _("Powerful, but needs\nrecharging the\nnext turn.");
-const u8 gTM16ItemDescription[] = _("Creates a wall of\nlight that lowers\nSP. ATK damage.");
-const u8 gTM17ItemDescription[] = _("Negates all damage,\nbut may fail if used\nin succession.");
-const u8 gTM18ItemDescription[] = _("Raises the power of\nWATER-type moves\nfor 5 turns.");
-const u8 gTM19ItemDescription[] = _("Recovers half the\nHP of the damage \nthis move inflicts.");
-const u8 gTM20ItemDescription[] = _("Prevents status\nabnormality with a\nmystical power.");
-const u8 gTM21ItemDescription[] = _("The less the user\nlikes you, the more\npowerful this move.");
-const u8 gTM22ItemDescription[] = _("Absorbs sunlight in\nthe 1st turn, then\nattacks next turn.");
-const u8 gTM23ItemDescription[] = _("Slams the foe with\na hard tail. It may\nlower DEFENSE.");
-const u8 gTM24ItemDescription[] = _("A powerful electric\nattack that may\ncause paralysis.");
-const u8 gTM25ItemDescription[] = _("Strikes the foe\nwith a thunderbolt.\nIt may paralyze.");
-const u8 gTM26ItemDescription[] = _("Causes a quake\nthat has no effect\non flying foes.");
-const u8 gTM27ItemDescription[] = _("The more the user\nlikes you, the more\npowerful this move.");
-const u8 gTM28ItemDescription[] = _("Digs underground\nthe 1st turn, then\nstrikes next turn.");
-const u8 gTM29ItemDescription[] = _("A powerful psychic\nattack that may\nlower SP. DEF.");
-const u8 gTM30ItemDescription[] = _("Hurls a dark lump\nat the foe. It may\nlower SP. DEF.");
-const u8 gTM31ItemDescription[] = _("Destroys barriers\nlike LIGHT SCREEN\nand causes damage.");
-const u8 gTM32ItemDescription[] = _("Creates illusory\ncopies to enhance\nelusiveness.");
-const u8 gTM33ItemDescription[] = _("Creates a wall of\nlight that weakens\nphysical attacks.");
-const u8 gTM34ItemDescription[] = _("Zaps the foe with a\njolt of electricity\nthat never misses.");
-const u8 gTM35ItemDescription[] = _("Looses a stream of\nfire that may burn\nthe foe.");
-const u8 gTM36ItemDescription[] = _("Hurls sludge at the\nfoe. It may poison\nthe foe.");
-const u8 gTM37ItemDescription[] = _("Causes a sandstorm\nthat hits the foe\nover several turns.");
-const u8 gTM38ItemDescription[] = _("A powerful fire\nattack that may\nburn the foe.");
-const u8 gTM39ItemDescription[] = _("Stops the foe from\nmoving with rocks.\nMay lower SPEED.");
-const u8 gTM40ItemDescription[] = _("An extremely fast\nattack that can't\nbe avoided.");
-const u8 gTM41ItemDescription[] = _("Prevents the foe\nfrom using the same\nmove in a row.");
-const u8 gTM42ItemDescription[] = _("Raises ATTACK when\npoisoned, burned,\nor paralyzed.");
-const u8 gTM43ItemDescription[] = _("Adds an effect to\nattack depending\non the location.");
-const u8 gTM44ItemDescription[] = _("The user sleeps for\n2 turns to restore\nhealth and status.");
-const u8 gTM45ItemDescription[] = _("Makes it tough to\nattack a foe of the\nopposite gender.");
-const u8 gTM46ItemDescription[] = _("While attacking,\nit may steal the\nfoe's held item.");
-const u8 gTM47ItemDescription[] = _("Spreads hard-\nedged wings and\nslams into the foe.");
-const u8 gTM48ItemDescription[] = _("Switches abilities\nwith the foe on the\nturn this is used.");
-const u8 gTM49ItemDescription[] = _("Steals the effects\nof the move the foe\nis trying to use.");
-const u8 gTM50ItemDescription[] = _("Enables full-power\nattack, but sharply\nlowers SP. ATK.");
-
-const u8 gHM01ItemDescription[] = _("Attacks the foe\nwith sharp blades\nor claws.");
-const u8 gHM02ItemDescription[] = _("Flies up on the\nfirst turn, then\nattacks next turn.");
-const u8 gHM03ItemDescription[] = _("Creates a huge\nwave, then crashes\nit down on the foe.");
-const u8 gHM04ItemDescription[] = _("Builds enormous\npower, then slams\nthe foe.");
-const u8 gHM05ItemDescription[] = _("Looses a powerful\nblast of light that\nreduces accuracy.");
-const u8 gHM06ItemDescription[] = _("A rock-crushingly\ntough attack that\nmay lower DEFENSE.");
-const u8 gHM07ItemDescription[] = _("Attacks the foe\nwith enough power\nto climb waterfalls.");
-const u8 gHM08ItemDescription[] = _("Dives underwater\nthe 1st turn, then\nattacks next turn.");
+static const u8 sTM01Desc[] = _(
+ "Powerful, but makes\n"
+ "the user flinch if\n"
+ "hit by the foe.");
+
+static const u8 sTM02Desc[] = _(
+ "Hooks and slashes\n"
+ "the foe with long,\n"
+ "sharp claws.");
+
+static const u8 sTM03Desc[] = _(
+ "Generates an\n"
+ "ultrasonic wave\n"
+ "that may confuse.");
+
+static const u8 sTM04Desc[] = _(
+ "Raises SP. ATK and\n"
+ "SP. DEF by focusing\n"
+ "the mind.");
+
+static const u8 sTM05Desc[] = _(
+ "A savage roar that\n"
+ "makes the foe flee \n"
+ "to end the battle.");
+
+static const u8 sTM06Desc[] = _(
+ "Poisons the foe\n"
+ "with a toxin that\n"
+ "gradually worsens.");
+
+static const u8 sTM07Desc[] = _(
+ "Creates a hailstorm\n"
+ "that damages all\n"
+ "types except ICE.");
+
+static const u8 sTM08Desc[] = _(
+ "Bulks up the body\n"
+ "to boost both\n"
+ "ATTACK & DEFENSE.");
+
+static const u8 sTM09Desc[] = _(
+ "Shoots 2 to 5 seeds\n"
+ "in a row to strike\n"
+ "the foe.");
+
+static const u8 sTM10Desc[] = _(
+ "The attack power\n"
+ "varies among\n"
+ "different POKéMON.");
+
+static const u8 sTM11Desc[] = _(
+ "Raises the power of\n"
+ "FIRE-type moves\n"
+ "for 5 turns.");
+
+static const u8 sTM12Desc[] = _(
+ "Enrages the foe so\n"
+ "it can only use\n"
+ "attack moves.");
+
+static const u8 sTM13Desc[] = _(
+ "Fires an icy cold\n"
+ "beam that may\n"
+ "freeze the foe.");
+
+static const u8 sTM14Desc[] = _(
+ "A brutal snow-and-\n"
+ "wind attack that\n"
+ "may freeze the foe.");
+
+static const u8 sTM15Desc[] = _(
+ "Powerful, but needs\n"
+ "recharging the\n"
+ "next turn.");
+
+static const u8 sTM16Desc[] = _(
+ "Creates a wall of\n"
+ "light that lowers\n"
+ "SP. ATK damage.");
+
+static const u8 sTM17Desc[] = _(
+ "Negates all damage,\n"
+ "but may fail if used\n"
+ "in succession.");
+
+static const u8 sTM18Desc[] = _(
+ "Raises the power of\n"
+ "WATER-type moves\n"
+ "for 5 turns.");
+
+static const u8 sTM19Desc[] = _(
+ "Recovers half the\n"
+ "HP of the damage \n"
+ "this move inflicts.");
+
+static const u8 sTM20Desc[] = _(
+ "Prevents status\n"
+ "abnormality with a\n"
+ "mystical power.");
+
+static const u8 sTM21Desc[] = _(
+ "The less the user\n"
+ "likes you, the more\n"
+ "powerful this move.");
+
+static const u8 sTM22Desc[] = _(
+ "Absorbs sunlight in\n"
+ "the 1st turn, then\n"
+ "attacks next turn.");
+
+static const u8 sTM23Desc[] = _(
+ "Slams the foe with\n"
+ "a hard tail. It may\n"
+ "lower DEFENSE.");
+
+static const u8 sTM24Desc[] = _(
+ "A powerful electric\n"
+ "attack that may\n"
+ "cause paralysis.");
+
+static const u8 sTM25Desc[] = _(
+ "Strikes the foe\n"
+ "with a thunderbolt.\n"
+ "It may paralyze.");
+
+static const u8 sTM26Desc[] = _(
+ "Causes a quake\n"
+ "that has no effect\n"
+ "on flying foes.");
+
+static const u8 sTM27Desc[] = _(
+ "The more the user\n"
+ "likes you, the more\n"
+ "powerful this move.");
+
+static const u8 sTM28Desc[] = _(
+ "Digs underground\n"
+ "the 1st turn, then\n"
+ "strikes next turn.");
+
+static const u8 sTM29Desc[] = _(
+ "A powerful psychic\n"
+ "attack that may\n"
+ "lower SP. DEF.");
+
+static const u8 sTM30Desc[] = _(
+ "Hurls a dark lump\n"
+ "at the foe. It may\n"
+ "lower SP. DEF.");
+
+static const u8 sTM31Desc[] = _(
+ "Destroys barriers\n"
+ "like LIGHT SCREEN\n"
+ "and causes damage.");
+
+static const u8 sTM32Desc[] = _(
+ "Creates illusory\n"
+ "copies to enhance\n"
+ "elusiveness.");
+
+static const u8 sTM33Desc[] = _(
+ "Creates a wall of\n"
+ "light that weakens\n"
+ "physical attacks.");
+
+static const u8 sTM34Desc[] = _(
+ "Zaps the foe with a\n"
+ "jolt of electricity\n"
+ "that never misses.");
+
+static const u8 sTM35Desc[] = _(
+ "Looses a stream of\n"
+ "fire that may burn\n"
+ "the foe.");
+
+static const u8 sTM36Desc[] = _(
+ "Hurls sludge at the\n"
+ "foe. It may poison\n"
+ "the foe.");
+
+static const u8 sTM37Desc[] = _(
+ "Causes a sandstorm\n"
+ "that hits the foe\n"
+ "over several turns.");
+
+static const u8 sTM38Desc[] = _(
+ "A powerful fire\n"
+ "attack that may\n"
+ "burn the foe.");
+
+static const u8 sTM39Desc[] = _(
+ "Stops the foe from\n"
+ "moving with rocks.\n"
+ "May lower SPEED.");
+
+static const u8 sTM40Desc[] = _(
+ "An extremely fast\n"
+ "attack that can't\n"
+ "be avoided.");
+
+static const u8 sTM41Desc[] = _(
+ "Prevents the foe\n"
+ "from using the same\n"
+ "move in a row.");
+
+static const u8 sTM42Desc[] = _(
+ "Raises ATTACK when\n"
+ "poisoned, burned,\n"
+ "or paralyzed.");
+
+static const u8 sTM43Desc[] = _(
+ "Adds an effect to\n"
+ "attack depending\n"
+ "on the location.");
+
+static const u8 sTM44Desc[] = _(
+ "The user sleeps for\n"
+ "2 turns to restore\n"
+ "health and status.");
+
+static const u8 sTM45Desc[] = _(
+ "Makes it tough to\n"
+ "attack a foe of the\n"
+ "opposite gender.");
+
+static const u8 sTM46Desc[] = _(
+ "While attacking,\n"
+ "it may steal the\n"
+ "foe's held item.");
+
+static const u8 sTM47Desc[] = _(
+ "Spreads hard-\n"
+ "edged wings and\n"
+ "slams into the foe.");
+
+static const u8 sTM48Desc[] = _(
+ "Switches abilities\n"
+ "with the foe on the\n"
+ "turn this is used.");
+
+static const u8 sTM49Desc[] = _(
+ "Steals the effects\n"
+ "of the move the foe\n"
+ "is trying to use.");
+
+static const u8 sTM50Desc[] = _(
+ "Enables full-power\n"
+ "attack, but sharply\n"
+ "lowers SP. ATK.");
+
+
+static const u8 sHM01Desc[] = _(
+ "Attacks the foe\n"
+ "with sharp blades\n"
+ "or claws.");
+
+static const u8 sHM02Desc[] = _(
+ "Flies up on the\n"
+ "first turn, then\n"
+ "attacks next turn.");
+
+static const u8 sHM03Desc[] = _(
+ "Creates a huge\n"
+ "wave, then crashes\n"
+ "it down on the foe.");
+
+static const u8 sHM04Desc[] = _(
+ "Builds enormous\n"
+ "power, then slams\n"
+ "the foe.");
+
+static const u8 sHM05Desc[] = _(
+ "Looses a powerful\n"
+ "blast of light that\n"
+ "reduces accuracy.");
+
+static const u8 sHM06Desc[] = _(
+ "A rock-crushingly\n"
+ "tough attack that\n"
+ "may lower DEFENSE.");
+
+static const u8 sHM07Desc[] = _(
+ "Attacks the foe\n"
+ "with enough power\n"
+ "to climb waterfalls.");
+
+static const u8 sHM08Desc[] = _(
+ "Dives underwater\n"
+ "the 1st turn, then\n"
+ "attacks next turn.");
+
// FireRed/LeafGreen key items
-const u8 gOaksParcelItemDescription[] = _("A parcel for PROF.\nOAK from a POKéMON\nMART's clerk.");
-const u8 gPokeFluteItemDescription[] = _("A sweet-sounding\nflute that awakens\nPOKéMON.");
-const u8 gSecretKeyItemDescription[] = _("The key to the\nCINNABAR ISLAND\nGYM's entrance.");
-const u8 gBikeVoucherItemDescription[] = _("A voucher for\nobtaining a bicycle\nfrom the BIKE SHOP.");
-const u8 gGoldTeethItemDescription[] = _("Gold dentures lost\nby the SAFARI\nZONE's WARDEN.");
-const u8 gOldAmberItemDescription[] = _("A stone containing\nthe genes of an\nancient POKéMON.");
-const u8 gCardKeyItemDescription[] = _("A card-type door\nkey used in SILPH\nCO's office.");
-const u8 gLiftKeyItemDescription[] = _("An elevator key\nused in TEAM\nROCKET's HIDEOUT.");
-const u8 gHelixFossilItemDescription[] = _("A piece of an\nancient marine\nPOKéMON's seashell.");
-const u8 gDomeFossilItemDescription[] = _("A piece of an\nancient marine\nPOKéMON's shell.");
-const u8 gSilphScopeItemDescription[] = _("SILPH CO's scope\nmakes unseeable\nPOKéMON visible.");
-const u8 gBicycleItemDescription[] = _("A folding bicycle\nthat is faster than\nthe RUNNING SHOES.");
-const u8 gTownMapItemDescription[] = _("Can be viewed\nanytime. Shows your\npresent location.");
-const u8 gVSSeekerItemDescription[] = _("A rechargeable unit\nthat flags battle-\nready TRAINERS.");
-const u8 gFameCheckerItemDescription[] = _("Stores information\non famous people\nfor instant recall.");
-const u8 gTMCaseItemDescription[] = _("A convenient case \nthat holds TMs and\nHMs.");
-const u8 gBerryPouchItemDescription[] = _("A convenient\ncontainer that\nholds BERRIES.");
-const u8 gTeachyTVItemDescription[] = _("A TV set tuned to\nan advice program\nfor TRAINERS.");
-const u8 gTriPassItemDescription[] = _("A pass for ferries\nbetween ONE, TWO,\nand THREE ISLAND.");
-const u8 gRainbowPassItemDescription[] = _("For ferries serving\nVERMILION and the\nSEVII ISLANDS.");
-const u8 gTeaItemDescription[] = _("A thirst-quenching\ntea prepared by an\nold lady.");
-const u8 gMysticTicketItemDescription[] = _("A ticket required\nto board the ship\nto NAVEL ROCK.");
-const u8 gAuroraTicketItemDescription[] = _("A ticket required\nto board the ship\nto BIRTH ISLAND.");
-const u8 gPowderJarItemDescription[] = _("Stores BERRY\nPOWDER made using\na BERRY CRUSHER.");
-const u8 gRubyItemDescription[] = _("An exquisite, red-\nglowing gem that\nsymbolizes passion.");
-const u8 gSapphireItemDescription[] = _("A brilliant blue gem\nthat symbolizes\nhonesty.");
+static const u8 sOaksParcelDesc[] = _(
+ "A parcel for PROF.\n"
+ "OAK from a POKéMON\n"
+ "MART's clerk.");
+
+static const u8 sPokeFluteDesc[] = _(
+ "A sweet-sounding\n"
+ "flute that awakens\n"
+ "POKéMON.");
+
+static const u8 sSecretKeyDesc[] = _(
+ "The key to the\n"
+ "CINNABAR ISLAND\n"
+ "GYM's entrance.");
+
+static const u8 sBikeVoucherDesc[] = _(
+ "A voucher for\n"
+ "obtaining a bicycle\n"
+ "from the BIKE SHOP.");
+
+static const u8 sGoldTeethDesc[] = _(
+ "Gold dentures lost\n"
+ "by the SAFARI\n"
+ "ZONE's WARDEN.");
+
+static const u8 sOldAmberDesc[] = _(
+ "A stone containing\n"
+ "the genes of an\n"
+ "ancient POKéMON.");
+
+static const u8 sCardKeyDesc[] = _(
+ "A card-type door\n"
+ "key used in SILPH\n"
+ "CO's office.");
+
+static const u8 sLiftKeyDesc[] = _(
+ "An elevator key\n"
+ "used in TEAM\n"
+ "ROCKET's HIDEOUT.");
+
+static const u8 sHelixFossilDesc[] = _(
+ "A piece of an\n"
+ "ancient marine\n"
+ "POKéMON's seashell.");
+
+static const u8 sDomeFossilDesc[] = _(
+ "A piece of an\n"
+ "ancient marine\n"
+ "POKéMON's shell.");
+
+static const u8 sSilphScopeDesc[] = _(
+ "SILPH CO's scope\n"
+ "makes unseeable\n"
+ "POKéMON visible.");
+
+static const u8 sBicycleDesc[] = _(
+ "A folding bicycle\n"
+ "that is faster than\n"
+ "the RUNNING SHOES.");
+
+static const u8 sTownMapDesc[] = _(
+ "Can be viewed\n"
+ "anytime. Shows your\n"
+ "present location.");
+
+static const u8 sVSSeekerDesc[] = _(
+ "A rechargeable unit\n"
+ "that flags battle-\n"
+ "ready TRAINERS.");
+
+static const u8 sFameCheckerDesc[] = _(
+ "Stores information\n"
+ "on famous people\n"
+ "for instant recall.");
+
+static const u8 sTMCaseDesc[] = _(
+ "A convenient case \n"
+ "that holds TMs and\n"
+ "HMs.");
+
+static const u8 sBerryPouchDesc[] = _(
+ "A convenient\n"
+ "container that\n"
+ "holds BERRIES.");
+
+static const u8 sTeachyTVDesc[] = _(
+ "A TV set tuned to\n"
+ "an advice program\n"
+ "for TRAINERS.");
+
+static const u8 sTriPassDesc[] = _(
+ "A pass for ferries\n"
+ "between ONE, TWO,\n"
+ "and THREE ISLAND.");
+
+static const u8 sRainbowPassDesc[] = _(
+ "For ferries serving\n"
+ "VERMILION and the\n"
+ "SEVII ISLANDS.");
+
+static const u8 sTeaDesc[] = _(
+ "A thirst-quenching\n"
+ "tea prepared by an\n"
+ "old lady.");
+
+static const u8 sMysticTicketDesc[] = _(
+ "A ticket required\n"
+ "to board the ship\n"
+ "to NAVEL ROCK.");
+
+static const u8 sAuroraTicketDesc[] = _(
+ "A ticket required\n"
+ "to board the ship\n"
+ "to BIRTH ISLAND.");
+
+static const u8 sPowderJarDesc[] = _(
+ "Stores BERRY\n"
+ "POWDER made using\n"
+ "a BERRY CRUSHER.");
+
+static const u8 sRubyDesc[] = _(
+ "An exquisite, red-\n"
+ "glowing gem that\n"
+ "symbolizes passion.");
+
+static const u8 sSapphireDesc[] = _(
+ "A brilliant blue gem\n"
+ "that symbolizes\n"
+ "honesty.");
+
// Emerald-specific key items
-const u8 gMagmaEmblemItemDescription[] = _("A medal-like item in\nthe same shape as\nTEAM MAGMA's mark.");
-const u8 gOldSeaMapItemDescription[] = _("A faded sea chart\nthat shows the way\nto a certain island.");
+static const u8 sMagmaEmblemDesc[] = _(
+ "A medal-like item in\n"
+ "the same shape as\n"
+ "TEAM MAGMA's mark.");
+
+static const u8 sOldSeaMapDesc[] = _(
+ "A faded sea chart\n"
+ "that shows the way\n"
+ "to a certain island.");