From 6d1013d34e169a840b1c3bf8edcee8f173458426 Mon Sep 17 00:00:00 2001 From: Maruno17 Date: Sat, 21 Sep 2024 19:10:32 +0100 Subject: [PATCH] Rearranged Bag pockets, replaced Mail pocket with Held Items pocket --- .../002_Save data/005_Game_SaveConversions.rb | 26 +- .../001_Hardcoded data/018_BagPocket.rb | 50 +- Data/Scripts/013_Items/008_PokemonBag.rb | 7 +- .../003_Debug menus/002_Debug_MenuCommands.rb | 1 - PBS/Gen 5 backup/items.txt | 5392 +++++------ PBS/Gen 6 backup/items.txt | 6564 +++++++------- PBS/Gen 7 backup/items.txt | 6490 +++++++------- PBS/Gen 8 backup/items.txt | 7680 ++++++++-------- PBS/Gen 9 backup/items.txt | 7908 ++++++++--------- PBS/items.txt | 7908 ++++++++--------- 10 files changed, 21018 insertions(+), 21008 deletions(-) diff --git a/Data/Scripts/002_Save data/005_Game_SaveConversions.rb b/Data/Scripts/002_Save data/005_Game_SaveConversions.rb index 1dbeaee61..30ee4ec49 100644 --- a/Data/Scripts/002_Save data/005_Game_SaveConversions.rb +++ b/Data/Scripts/002_Save data/005_Game_SaveConversions.rb @@ -92,25 +92,31 @@ SaveData.register_conversion(:v22_convert_bag_object) do to_value :bag do |bag| bag.instance_eval do all_pockets = GameData::BagPocket.all_pockets + if @pockets.is_a?(Array) + new_pockets = {} + all_pockets.each { |pckt| new_pockets[pckt] = [] } + @pockets.each_with_index do |value, i| + next if i == 0 + value.each do |item| + pckt = GameData::Item.get(item[0]).bag_pocket + new_pockets[pckt].push(item) + end + end + @pockets = new_pockets + end if @last_viewed_pocket.is_a?(Integer) - @last_viewed_pocket = all_pockets[@last_viewed_pocket - 1] + @last_viewed_pocket = all_pockets[@last_viewed_pocket - 1] || all_pockets.first end if @last_pocket_selections.is_a?(Array) new_sels = {} + all_pockets.each { |pckt| new_sels[pckt] = 0 } @last_pocket_selections.each_with_index do |value, i| next if i == 0 - new_sels[all_pockets[i - 1]] = value + pckt = all_pockets[i - 1] + new_sels[pckt] = value if pckt && value <= @pockets[pckt].length - 1 end @last_pocket_selections = new_sels end - if @pockets.is_a?(Array) - new_pockets = {} - @pockets.each_with_index do |value, i| - next if i == 0 - new_pockets[all_pockets[i - 1]] = value - end - @pockets = new_pockets - end end end end diff --git a/Data/Scripts/010_Data/001_Hardcoded data/018_BagPocket.rb b/Data/Scripts/010_Data/001_Hardcoded data/018_BagPocket.rb index cf8e5e3fc..978828c21 100644 --- a/Data/Scripts/010_Data/001_Hardcoded data/018_BagPocket.rb +++ b/Data/Scripts/010_Data/001_Hardcoded data/018_BagPocket.rb @@ -88,7 +88,7 @@ end GameData::BagPocket.register({ :id => :Items, - :name => _INTL("Items"), + :name => _INTL("Other Items"), :icon_position => 0, :order => 10 }) @@ -107,6 +107,28 @@ GameData::BagPocket.register({ :order => 30 }) +GameData::BagPocket.register({ + :id => :Berries, + :name => _INTL("Berries"), + :icon_position => 3, + :order => 40, + :auto_sort => true +}) + +GameData::BagPocket.register({ + :id => :HeldItems, + :name => _INTL("Held Items"), + :icon_position => 4, + :order => 50 +}) + +GameData::BagPocket.register({ + :id => :BattleItems, + :name => _INTL("Battle Items"), + :icon_position => 5, + :order => 60 +}) + # This pocket is hardcoded to allow showing the details of a machine item in # this pocket in the Bag. The display of this information is toggled by pressing # the Action input. It is not possible to open the screen menu with the Action @@ -115,31 +137,9 @@ GameData::BagPocket.register({ GameData::BagPocket.register({ :id => :Machines, :name => _INTL("TMs & HMs"), - :icon_position => 3, - :order => 40, - :auto_sort => true -}) - -GameData::BagPocket.register({ - :id => :Berries, - :name => _INTL("Berries"), - :icon_position => 4, - :order => 50, - :auto_sort => true -}) - -GameData::BagPocket.register({ - :id => :Mail, - :name => _INTL("Mail"), - :icon_position => 5, - :order => 60 -}) - -GameData::BagPocket.register({ - :id => :BattleItems, - :name => _INTL("Battle Items"), :icon_position => 6, - :order => 70 + :order => 70, + :auto_sort => true }) GameData::BagPocket.register({ diff --git a/Data/Scripts/013_Items/008_PokemonBag.rb b/Data/Scripts/013_Items/008_PokemonBag.rb index 695d606e5..be76f83c5 100644 --- a/Data/Scripts/013_Items/008_PokemonBag.rb +++ b/Data/Scripts/013_Items/008_PokemonBag.rb @@ -30,7 +30,12 @@ class PokemonBag def clear @pockets.each_value { |pocket| pocket.clear } - GameData::BagPocket.all_pockets.each { |pckt| @last_pocket_selections[pckt] = 0 } + @pockets.clear + @last_pocket_selections.clear + GameData::BagPocket.all_pockets.each do |pckt| + @pockets[pckt] = [] + @last_pocket_selections[pckt] = 0 + end end #----------------------------------------------------------------------------- diff --git a/Data/Scripts/020_Debug/003_Debug menus/002_Debug_MenuCommands.rb b/Data/Scripts/020_Debug/003_Debug menus/002_Debug_MenuCommands.rb index e39b45730..723c80696 100644 --- a/Data/Scripts/020_Debug/003_Debug menus/002_Debug_MenuCommands.rb +++ b/Data/Scripts/020_Debug/003_Debug menus/002_Debug_MenuCommands.rb @@ -821,7 +821,6 @@ MenuHandlers.add(:debug_menu, :fill_bag, { bag = $bag.pockets # Called here so that it only rearranges itself once GameData::Item.each do |i| bag_pocket = i.bag_pocket - next if GameData::BagPocket.get(bag_pocket).max_slots next if !pocket_sizes[bag_pocket] || pocket_sizes[bag_pocket] == 0 next if pocket_sizes[bag_pocket] > 0 && bag[bag_pocket].length >= pocket_sizes[bag_pocket] item_qty = (i.is_important?) ? 1 : qty diff --git a/PBS/Gen 5 backup/items.txt b/PBS/Gen 5 backup/items.txt index 748cb675e..21128340e 100644 --- a/PBS/Gen 5 backup/items.txt +++ b/PBS/Gen 5 backup/items.txt @@ -3,7 +3,7 @@ [REPEL] Name = Repel NamePlural = Repels -Pocket = 1 +Pocket = Items Price = 350 FieldUse = Direct Flags = Repel,Fling_30 @@ -12,7 +12,7 @@ Description = An item that prevents weak wild Pokémon from appearing for 100 st [SUPERREPEL] Name = Super Repel NamePlural = Super Repels -Pocket = 1 +Pocket = Items Price = 500 FieldUse = Direct Flags = Repel,Fling_30 @@ -21,7 +21,7 @@ Description = An item that prevents weak wild Pokémon from appearing for 200 st [MAXREPEL] Name = Max Repel NamePlural = Max Repels -Pocket = 1 +Pocket = Items Price = 700 FieldUse = Direct Flags = Repel,Fling_30 @@ -30,7 +30,7 @@ Description = An item that prevents weak wild Pokémon from appearing for 250 st [BLACKFLUTE] Name = Black Flute NamePlural = Black Flutes -Pocket = 1 +Pocket = Items Price = 400 FieldUse = Direct Flags = Fling_30 @@ -40,7 +40,7 @@ Description = A black flute made from blown glass. Its melody makes wild Pokémo [WHITEFLUTE] Name = White Flute NamePlural = White Flutes -Pocket = 1 +Pocket = Items Price = 500 FieldUse = Direct Flags = Fling_30 @@ -52,7 +52,7 @@ Name = Honey NamePlural = Honey PortionName = jar of Honey PortionNamePlural = jars of Honey -Pocket = 1 +Pocket = Items Price = 300 FieldUse = Direct Flags = Fling_30 @@ -61,7 +61,7 @@ Description = A sweet honey with an aroma that attracts wild Pokémon when used [ESCAPEROPE] Name = Escape Rope NamePlural = Escape Ropes -Pocket = 1 +Pocket = Items Price = 550 FieldUse = Direct Flags = Fling_30 @@ -70,7 +70,7 @@ Description = A long, durable rope. Use it to escape instantly from a cave or a [REDSHARD] Name = Red Shard NamePlural = Red Shards -Pocket = 1 +Pocket = Items Price = 200 Flags = Fling_30 Description = A small red shard. It appears to be from some sort of implement made long ago. @@ -78,7 +78,7 @@ Description = A small red shard. It appears to be from some sort of implement ma [YELLOWSHARD] Name = Yellow Shard NamePlural = Yellow Shards -Pocket = 1 +Pocket = Items Price = 200 Flags = Fling_30 Description = A small yellow shard. It appears to be from some sort of implement made long ago. @@ -86,7 +86,7 @@ Description = A small yellow shard. It appears to be from some sort of implement [BLUESHARD] Name = Blue Shard NamePlural = Blue Shards -Pocket = 1 +Pocket = Items Price = 200 Flags = Fling_30 Description = A small blue shard. It appears to be from some sort of implement made long ago. @@ -94,7 +94,7 @@ Description = A small blue shard. It appears to be from some sort of implement m [GREENSHARD] Name = Green Shard NamePlural = Green Shards -Pocket = 1 +Pocket = Items Price = 200 Flags = Fling_30 Description = A small green shard. It appears to be from some sort of implement made long ago. @@ -102,7 +102,7 @@ Description = A small green shard. It appears to be from some sort of implement [FIRESTONE] Name = Fire Stone NamePlural = Fire Stones -Pocket = 1 +Pocket = Items Price = 2100 BPPrice = 3 FieldUse = OnPokemon @@ -112,7 +112,7 @@ Description = A peculiar stone that makes certain species of Pokémon evolve. It [THUNDERSTONE] Name = Thunder Stone NamePlural = Thunder Stones -Pocket = 1 +Pocket = Items Price = 2100 BPPrice = 3 FieldUse = OnPokemon @@ -122,7 +122,7 @@ Description = A peculiar stone that makes certain species of Pokémon evolve. It [WATERSTONE] Name = Water Stone NamePlural = Water Stones -Pocket = 1 +Pocket = Items Price = 2100 BPPrice = 3 FieldUse = OnPokemon @@ -132,7 +132,7 @@ Description = A peculiar stone that makes certain species of Pokémon evolve. It [LEAFSTONE] Name = Leaf Stone NamePlural = Leaf Stones -Pocket = 1 +Pocket = Items Price = 2100 BPPrice = 3 FieldUse = OnPokemon @@ -142,7 +142,7 @@ Description = A peculiar stone that makes certain species of Pokémon evolve. It [MOONSTONE] Name = Moon Stone NamePlural = Moon Stones -Pocket = 1 +Pocket = Items Price = 2100 BPPrice = 3 FieldUse = OnPokemon @@ -152,7 +152,7 @@ Description = A peculiar stone that makes certain species of Pokémon evolve. It [SUNSTONE] Name = Sun Stone NamePlural = Sun Stones -Pocket = 1 +Pocket = Items Price = 2100 BPPrice = 3 FieldUse = OnPokemon @@ -162,7 +162,7 @@ Description = A peculiar stone that makes certain species of Pokémon evolve. It [DUSKSTONE] Name = Dusk Stone NamePlural = Dusk Stones -Pocket = 1 +Pocket = Items Price = 2100 BPPrice = 3 FieldUse = OnPokemon @@ -172,7 +172,7 @@ Description = A peculiar stone that makes certain species of Pokémon evolve. It [DAWNSTONE] Name = Dawn Stone NamePlural = Dawn Stones -Pocket = 1 +Pocket = Items Price = 2100 BPPrice = 3 FieldUse = OnPokemon @@ -182,7 +182,7 @@ Description = A peculiar stone that makes certain species of Pokémon evolve. It [SHINYSTONE] Name = Shiny Stone NamePlural = Shiny Stones -Pocket = 1 +Pocket = Items Price = 2100 BPPrice = 3 FieldUse = OnPokemon @@ -192,7 +192,7 @@ Description = A peculiar stone that makes certain species of Pokémon evolve. It [REDAPRICORN] Name = Red Apricorn NamePlural = Red Apricorns -Pocket = 1 +Pocket = Items Price = 200 Flags = Apricorn Description = A red Apricorn. It assails your nostrils. @@ -200,7 +200,7 @@ Description = A red Apricorn. It assails your nostrils. [YLWAPRICORN] Name = Ylw Apricorn NamePlural = Ylw Apricorns -Pocket = 1 +Pocket = Items Price = 200 Flags = Apricorn Description = A yellow Apricorn. It has an invigorating scent. @@ -208,7 +208,7 @@ Description = A yellow Apricorn. It has an invigorating scent. [BLUAPRICORN] Name = Blu Apricorn NamePlural = Blu Apricorns -Pocket = 1 +Pocket = Items Price = 200 Flags = Apricorn Description = A blue Apricorn. It smells a bit like grass. @@ -216,7 +216,7 @@ Description = A blue Apricorn. It smells a bit like grass. [GRNAPRICORN] Name = Grn Apricorn NamePlural = Grn Apricorns -Pocket = 1 +Pocket = Items Price = 200 Flags = Apricorn Description = A green Apricorn. It has a mysterious, aromatic scent. @@ -224,7 +224,7 @@ Description = A green Apricorn. It has a mysterious, aromatic scent. [PNKAPRICORN] Name = Pnk Apricorn NamePlural = Pnk Apricorns -Pocket = 1 +Pocket = Items Price = 200 Flags = Apricorn Description = A pink Apricorn. It has a nice, sweet scent. @@ -232,7 +232,7 @@ Description = A pink Apricorn. It has a nice, sweet scent. [WHTAPRICORN] Name = Wht Apricorn NamePlural = Wht Apricorns -Pocket = 1 +Pocket = Items Price = 200 Flags = Apricorn Description = A white Apricorn. It doesn't smell like anything. @@ -240,7 +240,7 @@ Description = A white Apricorn. It doesn't smell like anything. [BLKAPRICORN] Name = Blk Apricorn NamePlural = Blk Apricorns -Pocket = 1 +Pocket = Items Price = 200 Flags = Apricorn Description = A black Apricorn. It has an indescribable scent. @@ -248,7 +248,7 @@ Description = A black Apricorn. It has an indescribable scent. [HELIXFOSSIL] Name = Helix Fossil NamePlural = Helix Fossils -Pocket = 1 +Pocket = Items Price = 1000 Flags = Fossil,Fling_100 Description = A fossil of an ancient Pokémon that lived in the sea. It appears to be part of a seashell. @@ -256,7 +256,7 @@ Description = A fossil of an ancient Pokémon that lived in the sea. It appears [DOMEFOSSIL] Name = Dome Fossil NamePlural = Dome Fossils -Pocket = 1 +Pocket = Items Price = 1000 Flags = Fossil,Fling_100 Description = A fossil of an ancient Pokémon that lived in the sea. It appears to be part of a shell. @@ -264,7 +264,7 @@ Description = A fossil of an ancient Pokémon that lived in the sea. It appears [OLDAMBER] Name = Old Amber NamePlural = Old Ambers -Pocket = 1 +Pocket = Items Price = 1000 Flags = Fossil,Fling_100 Description = A piece of amber that contains the genes of an ancient Pokémon. It is clear with a reddish tint. @@ -272,7 +272,7 @@ Description = A piece of amber that contains the genes of an ancient Pokémon. I [ROOTFOSSIL] Name = Root Fossil NamePlural = Root Fossils -Pocket = 1 +Pocket = Items Price = 1000 Flags = Fossil,Fling_100 Description = A fossil of an ancient Pokémon that lived in the sea. It appears to be part of a plant root. @@ -280,7 +280,7 @@ Description = A fossil of an ancient Pokémon that lived in the sea. It appears [CLAWFOSSIL] Name = Claw Fossil NamePlural = Claw Fossils -Pocket = 1 +Pocket = Items Price = 1000 Flags = Fossil,Fling_100 Description = A fossil of an ancient Pokémon that lived in the sea. It appears to be part of a claw. @@ -288,7 +288,7 @@ Description = A fossil of an ancient Pokémon that lived in the sea. It appears [SKULLFOSSIL] Name = Skull Fossil NamePlural = Skull Fossils -Pocket = 1 +Pocket = Items Price = 1000 Flags = Fossil,Fling_100 Description = A fossil from a prehistoric Pokémon that lived on the land. It appears to be part of a head. @@ -296,7 +296,7 @@ Description = A fossil from a prehistoric Pokémon that lived on the land. It ap [ARMORFOSSIL] Name = Armor Fossil NamePlural = Armor Fossils -Pocket = 1 +Pocket = Items Price = 1000 Flags = Fossil,Fling_100 Description = A fossil from a prehistoric Pokémon that lived on the land. It appears to be part of a collar. @@ -304,7 +304,7 @@ Description = A fossil from a prehistoric Pokémon that lived on the land. It ap [COVERFOSSIL] Name = Cover Fossil NamePlural = Cover Fossils -Pocket = 1 +Pocket = Items Price = 1000 Flags = Fossil,Fling_100 Description = A fossil of an ancient Pokémon that lived in the sea in ancient times. It appears to be part of its back. @@ -312,7 +312,7 @@ Description = A fossil of an ancient Pokémon that lived in the sea in ancient t [PLUMEFOSSIL] Name = Plume Fossil NamePlural = Plume Fossils -Pocket = 1 +Pocket = Items Price = 1000 Flags = Fossil,Fling_100 Description = A fossil of an ancient Pokémon that flew in the sky in ancient times. It appears to be part of its wing. @@ -320,7 +320,7 @@ Description = A fossil of an ancient Pokémon that flew in the sky in ancient ti [PRETTYWING] Name = Pretty Wing NamePlural = Pretty Wings -Pocket = 1 +Pocket = Items Price = 200 Flags = Fling_20 Description = Though this feather is beautiful, it's just a regular feather and has no effect on Pokémon. @@ -328,7 +328,7 @@ Description = Though this feather is beautiful, it's just a regular feather and [TINYMUSHROOM] Name = Tiny Mushroom NamePlural = Tiny Mushrooms -Pocket = 1 +Pocket = Items Price = 500 Flags = Fling_30 Description = A small and rare mushroom. It is sought after by collectors. @@ -336,7 +336,7 @@ Description = A small and rare mushroom. It is sought after by collectors. [BIGMUSHROOM] Name = Big Mushroom NamePlural = Big Mushrooms -Pocket = 1 +Pocket = Items Price = 5000 Flags = Fling_30 Description = A large and rare mushroom. It is sought after by collectors. @@ -344,7 +344,7 @@ Description = A large and rare mushroom. It is sought after by collectors. [BALMMUSHROOM] Name = Balm Mushroom NamePlural = Balm Mushrooms -Pocket = 1 +Pocket = Items Price = 50000 Flags = Fling_30 Description = A rare mushroom which gives off a nice fragrance. A maniac will buy it for a high price. @@ -352,7 +352,7 @@ Description = A rare mushroom which gives off a nice fragrance. A maniac will bu [PEARL] Name = Pearl NamePlural = Pearls -Pocket = 1 +Pocket = Items Price = 1400 Flags = Fling_30 Description = A somewhat-small pearl that sparkles in a pretty silver color. It can be sold cheaply to shops. @@ -360,7 +360,7 @@ Description = A somewhat-small pearl that sparkles in a pretty silver color. It [BIGPEARL] Name = Big Pearl NamePlural = Big Pearls -Pocket = 1 +Pocket = Items Price = 7500 Flags = Fling_30 Description = A quite-large pearl that sparkles in a pretty silver color. It can be sold at a high price to shops. @@ -368,7 +368,7 @@ Description = A quite-large pearl that sparkles in a pretty silver color. It can [PEARLSTRING] Name = Pearl String NamePlural = Pearl Strings -Pocket = 1 +Pocket = Items Price = 50000 Flags = Fling_30 Description = Very large pearls that sparkle in a pretty silver color. A maniac will buy them for a high price. @@ -378,7 +378,7 @@ Name = Stardust NamePlural = Stardusts PortionName = bag of Stardust PortionNamePlural = bags of Stardust -Pocket = 1 +Pocket = Items Price = 2000 Flags = Fling_30 Description = Lovely, red-colored sand with a loose, silky feel. It can be sold at a high price to shops. @@ -386,7 +386,7 @@ Description = Lovely, red-colored sand with a loose, silky feel. It can be sold [STARPIECE] Name = Star Piece NamePlural = Star Pieces -Pocket = 1 +Pocket = Items Price = 9800 Flags = Fling_30 Description = A shard of a pretty gem that sparkles in a red color. It can be sold at a high price to shops. @@ -394,7 +394,7 @@ Description = A shard of a pretty gem that sparkles in a red color. It can be so [COMETSHARD] Name = Comet Shard NamePlural = Comet Shards -Pocket = 1 +Pocket = Items Price = 120000 Flags = Fling_30 Description = A shard which fell to the ground when a comet approached. A maniac will buy it for a high price. @@ -402,7 +402,7 @@ Description = A shard which fell to the ground when a comet approached. A maniac [NUGGET] Name = Nugget NamePlural = Nuggets -Pocket = 1 +Pocket = Items Price = 10000 Flags = Fling_30 Description = A nugget of pure gold that gives off a lustrous gleam. It can be sold at a high price to shops. @@ -410,7 +410,7 @@ Description = A nugget of pure gold that gives off a lustrous gleam. It can be s [BIGNUGGET] Name = Big Nugget NamePlural = Big Nuggets -Pocket = 1 +Pocket = Items Price = 60000 Flags = Fling_30 Description = A big nugget of pure gold that gives off a lustrous gleam. A maniac will buy it for a high price. @@ -418,7 +418,7 @@ Description = A big nugget of pure gold that gives off a lustrous gleam. A mania [HEARTSCALE] Name = Heart Scale NamePlural = Heart Scales -Pocket = 1 +Pocket = Items Price = 100 Flags = Fling_30 Description = A pretty, heart-shaped scale that is extremely rare. It glows faintly in the colors of the rainbow. @@ -426,14 +426,14 @@ Description = A pretty, heart-shaped scale that is extremely rare. It glows fain [SLOWPOKETAIL] Name = Slowpoke Tail NamePlural = Slowpoke Tails -Pocket = 1 +Pocket = Items Price = 9800 Description = A very tasty tail of something. It sells for a high price. #------------------------------- [RAREBONE] Name = Rare Bone NamePlural = Rare Bones -Pocket = 1 +Pocket = Items Price = 10000 Flags = Fling_100 Description = A bone that is extremely valuable for Pokémon archaeology. It can be sold for a high price to shops. @@ -443,7 +443,7 @@ Name = Relic Copper NamePlural = Relic Coppers PortionName = Relic Copper coin PortionNamePlural = Relic Copper coins -Pocket = 1 +Pocket = Items Price = 2000 Flags = Fling_30 Description = A copper coin used in a civilization about 3,000 years ago. A maniac will buy it for a high price. @@ -453,7 +453,7 @@ Name = Relic Silver NamePlural = Relic Silvers PortionName = Relic Silver coin PortionNamePlural = Relic Silver coins -Pocket = 1 +Pocket = Items Price = 10000 Flags = Fling_30 Description = A silver coin used in a civilization about 3,000 years ago. A maniac will buy it for a high price. @@ -463,7 +463,7 @@ Name = Relic Gold NamePlural = Relic Golds PortionName = Relic Gold coin PortionNamePlural = Relic Gold coins -Pocket = 1 +Pocket = Items Price = 20000 Flags = Fling_30 Description = A gold coin used in a civilization about 3,000 years ago. A maniac will buy it for a high price. @@ -471,7 +471,7 @@ Description = A gold coin used in a civilization about 3,000 years ago. A maniac [RELICVASE] Name = Relic Vase NamePlural = Relic Vases -Pocket = 1 +Pocket = Items Price = 100000 Flags = Fling_30 Description = A vase made in a civilization about 3,000 years ago. A maniac will buy it for a high price. @@ -479,7 +479,7 @@ Description = A vase made in a civilization about 3,000 years ago. A maniac will [RELICBAND] Name = Relic Band NamePlural = Relic Bands -Pocket = 1 +Pocket = Items Price = 200000 Flags = Fling_30 Description = A bracelet made in a civilization about 3,000 years ago. A maniac will buy it for a high price. @@ -487,7 +487,7 @@ Description = A bracelet made in a civilization about 3,000 years ago. A maniac [RELICSTATUE] Name = Relic Statue NamePlural = Relic Statues -Pocket = 1 +Pocket = Items Price = 400000 Flags = Fling_30 Description = A stone figure made in a civilization about 3,000 years ago. A maniac will buy it for a high price. @@ -495,7 +495,7 @@ Description = A stone figure made in a civilization about 3,000 years ago. A man [RELICCROWN] Name = Relic Crown NamePlural = Relic Crowns -Pocket = 1 +Pocket = Items Price = 600000 Flags = Fling_30 Description = A crown made in a civilization about 3,000 years ago. A maniac will buy it for a high price. @@ -505,7 +505,7 @@ Name = Growth Mulch NamePlural = Growth Mulch PortionName = bag of Growth Mulch PortionNamePlural = bags of Growth Mulch -Pocket = 1 +Pocket = Items Price = 200 Flags = Mulch,Fling_30 Description = A fertilizer to be spread on soft soil in regions where Berries are grown. A maniac will buy it for a high price. @@ -515,7 +515,7 @@ Name = Damp Mulch NamePlural = Damp Mulch PortionName = bag of Damp Mulch PortionNamePlural = bags of Damp Mulch -Pocket = 1 +Pocket = Items Price = 200 Flags = Mulch,Fling_30 Description = A fertilizer to be spread on soft soil in regions where Berries are grown. A maniac will buy it for a high price. @@ -525,7 +525,7 @@ Name = Stable Mulch NamePlural = Stable Mulch PortionName = bag of Stable Mulch PortionNamePlural = bags of Stable Mulch -Pocket = 1 +Pocket = Items Price = 200 Flags = Mulch,Fling_30 Description = A fertilizer to be spread on soft soil in regions where Berries are grown. A maniac will buy it for a high price. @@ -535,7 +535,7 @@ Name = Gooey Mulch NamePlural = Gooey Mulch PortionName = bag of Gooey Mulch PortionNamePlural = bags of Gooey Mulch -Pocket = 1 +Pocket = Items Price = 200 Flags = Mulch,Fling_30 Description = A fertilizer to be spread on soft soil in regions where Berries are grown. A maniac will buy it for a high price. @@ -545,7 +545,7 @@ Name = Shoal Salt NamePlural = Shoal Salts PortionName = pile of Shoal Salt PortionNamePlural = piles of Shoal Salt -Pocket = 1 +Pocket = Items Price = 20 Flags = Fling_30 Description = Pure salt that can be discovered deep inside the Shoal Cave. A maniac will buy it for a high price. @@ -553,7 +553,7 @@ Description = Pure salt that can be discovered deep inside the Shoal Cave. A man [SHOALSHELL] Name = Shoal Shell NamePlural = Shoal Shells -Pocket = 1 +Pocket = Items Price = 20 Flags = Fling_30 Description = A pretty seashell that can be found deep inside the Shoal Cave. A maniac will buy it for a high price. @@ -561,1338 +561,135 @@ Description = A pretty seashell that can be found deep inside the Shoal Cave. A [ODDKEYSTONE] Name = Odd Keystone NamePlural = Odd Keystones -Pocket = 1 +Pocket = Items Price = 2100 Flags = Fling_80 Description = A vital item that is needed to keep a stone tower from collapsing. Voices can be heard from it occasionally. #------------------------------- -[AIRBALLOON] -Name = Air Balloon -NamePlural = Air Balloons -Pocket = 1 -Price = 200 -BPPrice = 12 -Flags = Fling_10 -Description = An item to be held by a Pokémon. The holder will float in the air until hit. Once hit, this item will burst. -#------------------------------- -[BRIGHTPOWDER] -Name = Bright Powder -NamePlural = Bright Powders -PortionName = bag of Bright Powder -PortionNamePlural = bags of Bright Powder -Pocket = 1 -Price = 10 -BPPrice = 12 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It casts a tricky glare that lowers the opponent's accuracy. -#------------------------------- -[EVIOLITE] -Name = Eviolite -NamePlural = Eviolites -Pocket = 1 -Price = 200 -BPPrice = 24 -Flags = Fling_40 -Description = A mysterious evolutionary lump. When held, it raises the Defense and Sp. Def if the holder can still evolve. -#------------------------------- -[FLOATSTONE] -Name = Float Stone -NamePlural = Float Stones -Pocket = 1 -Price = 200 -BPPrice = 8 -Flags = Fling_30 -Description = A very light stone. It reduces the weight of a Pokémon when held. -#------------------------------- -[DESTINYKNOT] -Name = Destiny Knot -NamePlural = Destiny Knots -Pocket = 1 -Price = 200 -BPPrice = 8 -Flags = Fling_10 -Description = A long, thin, bright-red string to be held by a Pokémon. If the holder becomes infatuated, so does the foe. -#------------------------------- -[ROCKYHELMET] -Name = Rocky Helmet -NamePlural = Rocky Helmets -Pocket = 1 -Price = 200 -BPPrice = 24 -Flags = Fling_60 -Description = If the holder of this item takes damage, the attacker will also be damaged upon contact. -#------------------------------- -[EJECTBUTTON] -Name = Eject Button -NamePlural = Eject Buttons -Pocket = 1 -Price = 200 -BPPrice = 16 -Flags = Fling_30 -Description = If the holder is hit by an attack, it will switch with another Pokémon in your party. -#------------------------------- -[REDCARD] -Name = Red Card -NamePlural = Red Cards -Pocket = 1 -Price = 200 -BPPrice = 16 -Flags = Fling_10 -Description = A card with a mysterious power. When the holder is struck by a foe, the attacker is removed from battle. -#------------------------------- -[SHEDSHELL] -Name = Shed Shell -NamePlural = Shed Shells -Pocket = 1 -Price = 100 -Flags = Fling_10 -Description = An item to be held by a Pokémon. This discarded carapace lets the holder switch out of battle without fail. -#------------------------------- -[SMOKEBALL] -Name = Smoke Ball -NamePlural = Smoke Balls -Pocket = 1 -Price = 200 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It enables the holder to flee from any wild Pokémon without fail. -#------------------------------- -[LUCKYEGG] -Name = Lucky Egg -NamePlural = Lucky Eggs -Pocket = 1 -Price = 200 -BPPrice = 77 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It is an egg filled with happiness that earns extra Exp. Points in battle. -#------------------------------- -[EXPSHARE] -Name = Exp. Share -NamePlural = Exp. Shares -Pocket = 1 -Price = 3000 -Flags = Fling_30 -Description = An item to be held by a Pokémon. The holder gets a share of a battle's Exp. Points without battling. -#------------------------------- -[AMULETCOIN] -Name = Amulet Coin -NamePlural = Amulet Coins -Pocket = 1 -Price = 100 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It doubles a battle's prize money if the holding Pokémon joins in. -#------------------------------- -[SOOTHEBELL] -Name = Soothe Bell -NamePlural = Soothe Bells -Pocket = 1 -Price = 100 -BPPrice = 8 -Flags = Fling_10 -Description = An item to be held by a Pokémon. The comforting chime of this bell calms the holder, making it friendly. -#------------------------------- -[CLEANSETAG] -Name = Cleanse Tag -NamePlural = Cleanse Tags -Pocket = 1 -Price = 200 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It helps keep wild Pokémon away if the holder is the first one in the party. -#------------------------------- -[CHOICEBAND] -Name = Choice Band -NamePlural = Choice Bands -Pocket = 1 -Price = 100 -BPPrice = 24 -Flags = Fling_10 -Description = An item to be held by a Pokémon. This headband ups Attack, but allows the use of only one move. -#------------------------------- -[CHOICESPECS] -Name = Choice Specs -NamePlural = Choice Specs -PortionName = pair of Choice Specs -PortionNamePlural = pairs of Choice Specs -Pocket = 1 -Price = 200 -BPPrice = 24 -Flags = Fling_10 -Description = An item to be held by a Pokémon. These curious glasses boost Sp. Atk but allows the use of only one move. -#------------------------------- -[CHOICESCARF] -Name = Choice Scarf -NamePlural = Choice Scarves -Pocket = 1 -Price = 200 -BPPrice = 24 -Flags = Fling_10 -Description = An item to be held by a Pokémon. This scarf boosts Speed but allows the use of only one move. -#------------------------------- -[HEATROCK] -Name = Heat Rock -NamePlural = Heat Rocks -Pocket = 1 -Price = 200 -BPPrice = 8 -Flags = Fling_60 -Description = A Pokémon held item that extends the duration of the move Sunny Day used by the holder. -#------------------------------- -[DAMPROCK] -Name = Damp Rock -NamePlural = Damp Rocks -Pocket = 1 -Price = 200 -BPPrice = 8 -Flags = Fling_60 -Description = A Pokémon held item that extends the duration of the move Rain Dance used by the holder. -#------------------------------- -[SMOOTHROCK] -Name = Smooth Rock -NamePlural = Smooth Rocks -Pocket = 1 -Price = 200 -BPPrice = 8 -Flags = Fling_10 -Description = A Pokémon held item that extends the duration of the move Sandstorm used by the holder. -#------------------------------- -[ICYROCK] -Name = Icy Rock -NamePlural = Icy Rocks -Pocket = 1 -Price = 200 -BPPrice = 8 -Flags = Fling_40 -Description = A Pokémon held item that extends the duration of the move Hail used by the holder. -#------------------------------- -[LIGHTCLAY] -Name = Light Clay -NamePlural = Light Clays -PortionName = lump of Light Clay -PortionNamePlural = lumps of Light Clay -Pocket = 1 -Price = 200 -BPPrice = 8 -Flags = Fling_30 -Description = An item to be held by a Pokémon. Protective moves like Light Screen and Reflect will be effective longer. -#------------------------------- -[GRIPCLAW] -Name = Grip Claw -NamePlural = Grip Claws -Pocket = 1 -Price = 200 -BPPrice = 8 -Flags = Fling_90 -Description = A Pokémon held item that extends the duration of multiturn attacks like Bind and Wrap. -#------------------------------- -[BINDINGBAND] -Name = Binding Band -NamePlural = Binding Bands -Pocket = 1 -Price = 200 -BPPrice = 8 -Flags = Fling_30 -Description = A band that increases the power of binding moves when held. -#------------------------------- -[BIGROOT] -Name = Big Root -NamePlural = Big Roots -Pocket = 1 -Price = 200 -BPPrice = 16 -Flags = Fling_10 -Description = A Pokémon held item that boosts the power of HP-stealing moves to let the holder recover more HP. -#------------------------------- -[BLACKSLUDGE] -Name = Black Sludge -NamePlural = Black Sludges -PortionName = blob of Black Sludge -PortionNamePlural = blobs of Black Sludge -Pocket = 1 -Price = 200 -BPPrice = 24 -Flags = Fling_30 -Description = A held item that gradually restores the HP of Poison-type Pokémon. It inflicts damage on all other types. -#------------------------------- -[LEFTOVERS] -Name = Leftovers -NamePlural = Leftovers -PortionName = serving of Leftovers -PortionNamePlural = servings of Leftovers -Pocket = 1 -Price = 200 -BPPrice = 24 -Flags = Fling_10 -Description = An item to be held by a Pokémon. The holder's HP is gradually restored during battle. -#------------------------------- -[SHELLBELL] -Name = Shell Bell -NamePlural = Shell Bells -Pocket = 1 -Price = 200 -BPPrice = 24 -Flags = Fling_30 -Description = An item to be held by a Pokémon. The holder's HP is restored a little every time it inflicts damage. -#------------------------------- -[MENTALHERB] -Name = Mental Herb -NamePlural = Mental Herbs -Pocket = 1 -Price = 100 -BPPrice = 16 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It snaps the holder out of infatuation. It can be used only once. -#------------------------------- -[WHITEHERB] -Name = White Herb -NamePlural = White Herbs -Pocket = 1 -Price = 100 -BPPrice = 16 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It restores any lowered stat in battle. It can be used only once. -#------------------------------- -[POWERHERB] -Name = Power Herb -NamePlural = Power Herbs -Pocket = 1 -Price = 100 -BPPrice = 16 -Flags = Fling_10 -Description = A single-use item to be held by a Pokémon. It allows the immediate use of a move that charges up first. -#------------------------------- -[ABSORBBULB] -Name = Absorb Bulb -NamePlural = Absorb Bulbs -Pocket = 1 -Price = 200 -BPPrice = 16 -Flags = Fling_30 -Description = A consumable bulb. If the holder is hit by a Water-type move, its Sp. Atk will rise. -#------------------------------- -[CELLBATTERY] -Name = Cell Battery -NamePlural = Cell Batteries -Pocket = 1 -Price = 200 -BPPrice = 16 -Flags = Fling_30 -Description = A consumable battery. If the holder is hit by an Electric-type move, its Attack will rise. -#------------------------------- -[LIFEORB] -Name = Life Orb -NamePlural = Life Orbs -Pocket = 1 -Price = 200 -BPPrice = 24 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It boosts the power of moves, but at the cost of some HP on each hit. -#------------------------------- -[EXPERTBELT] -Name = Expert Belt -NamePlural = Expert Belts -Pocket = 1 -Price = 200 -BPPrice = 24 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It is a well-worn belt that slightly boosts the power of supereffective moves. -#------------------------------- -[METRONOME] -Name = Metronome -NamePlural = Metronomes -Pocket = 1 -Price = 200 -BPPrice = 24 -Flags = Fling_30 -Description = A Pokémon held item that boosts a move used consecutively. Its effect is reset if another move is used. -#------------------------------- -[MUSCLEBAND] -Name = Muscle Band -NamePlural = Muscle Bands -Pocket = 1 -Price = 200 -BPPrice = 8 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It is a headband that slightly boosts the power of physical moves. -#------------------------------- -[WISEGLASSES] -Name = Wise Glasses -NamePlural = Wise Glasses -PortionName = pair of Wise Glasses -PortionNamePlural = pairs of Wise Glasses -Pocket = 1 -Price = 200 -BPPrice = 8 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It is a thick pair of glasses that slightly boosts the power of special moves. -#------------------------------- -[RAZORCLAW] -Name = Razor Claw -NamePlural = Razor Claws -Pocket = 1 -Price = 2100 -BPPrice = 8 -Flags = Fling_80 -Description = An item to be held by a Pokémon. It is a sharply hooked claw that ups the holder's critical-hit ratio. -#------------------------------- -[SCOPELENS] -Name = Scope Lens -NamePlural = Scope Lenses -Pocket = 1 -Price = 200 -BPPrice = 8 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It is a lens that boosts the holder's critical-hit ratio. -#------------------------------- -[WIDELENS] -Name = Wide Lens -NamePlural = Wide Lenses -Pocket = 1 -Price = 200 -BPPrice = 8 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It is a magnifying lens that slightly boosts the accuracy of moves. -#------------------------------- -[ZOOMLENS] -Name = Zoom Lens -NamePlural = Zoom Lenses -Pocket = 1 -Price = 200 -BPPrice = 12 -Flags = Fling_10 -Description = An item to be held by a Pokémon. If the holder moves after its target, its accuracy will be boosted. -#------------------------------- -[KINGSROCK] -Name = King's Rock -NamePlural = King's Rocks -Pocket = 1 -Price = 100 -BPPrice = 8 -Flags = Fling_30 -Description = An item to be held by a Pokémon. When the holder inflicts damage, the target may flinch. -#------------------------------- -[RAZORFANG] -Name = Razor Fang -NamePlural = Razor Fangs -Pocket = 1 -Price = 2100 -BPPrice = 8 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It may make foes and allies flinch when the holder inflicts damage. -#------------------------------- -[LAGGINGTAIL] -Name = Lagging Tail -NamePlural = Lagging Tails -Pocket = 1 -Price = 200 -BPPrice = 24 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It is tremendously heavy and makes the holder move slower than usual. -#------------------------------- -[QUICKCLAW] -Name = Quick Claw -NamePlural = Quick Claws -Pocket = 1 -Price = 100 -BPPrice = 24 -Flags = Fling_80 -Description = An item to be held by a Pokémon. A light, sharp claw that lets the bearer move first occasionally. -#------------------------------- -[FOCUSBAND] -Name = Focus Band -NamePlural = Focus Bands -Pocket = 1 -Price = 200 -BPPrice = 12 -Flags = Fling_10 -Description = An item to be held by a Pokémon. The holder may endure a potential KO attack, leaving it with just 1 HP. -#------------------------------- -[FOCUSSASH] -Name = Focus Sash -NamePlural = Focus Sashes -Pocket = 1 -Price = 200 -BPPrice = 24 -Flags = Fling_10 -Description = An item to be held by a Pokémon. If it has full HP, the holder will endure one potential KO attack, leaving 1 HP. -#------------------------------- -[FLAMEORB] -Name = Flame Orb -NamePlural = Flame Orbs -Pocket = 1 -Price = 100 -BPPrice = 16 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It is a bizarre orb that inflicts a burn on the holder in battle. -#------------------------------- -[TOXICORB] -Name = Toxic Orb -NamePlural = Toxic Orbs -Pocket = 1 -Price = 100 -BPPrice = 16 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It is a bizarre orb that badly poisons the holder in battle. -#------------------------------- -[STICKYBARB] -Name = Sticky Barb -NamePlural = Sticky Barbs -Pocket = 1 -Price = 200 -BPPrice = 16 -Flags = Fling_80 -Description = A held item that damages the holder on every turn. It may latch on to Pokémon that touch the holder. -#------------------------------- -[IRONBALL] -Name = Iron Ball -NamePlural = Iron Balls -Pocket = 1 -Price = 200 -BPPrice = 12 -Flags = Fling_130 -Description = A Pokémon held item that cuts Speed. It makes Flying-type and levitating holders susceptible to Ground moves. -#------------------------------- -[RINGTARGET] -Name = Ring Target -NamePlural = Ring Targets -Pocket = 1 -Price = 200 -BPPrice = 12 -Flags = Fling_10 -Description = Moves that would otherwise have no effect will land on the Pokémon that holds it. -#------------------------------- -[MACHOBRACE] -Name = Macho Brace -NamePlural = Macho Braces -Pocket = 1 -Price = 3000 -BPPrice = 16 -Flags = Fling_60 -Description = An item to be held by a Pokémon. It is a stiff, heavy brace that promotes strong growth but lowers Speed. -#------------------------------- -[POWERWEIGHT] -Name = Power Weight -NamePlural = Power Weights -Pocket = 1 -Price = 3000 -BPPrice = 16 -Flags = Fling_70 -Description = A Pokémon held item that promotes HP gain on leveling, but reduces the Speed stat. -#------------------------------- -[POWERBRACER] -Name = Power Bracer -NamePlural = Power Bracers -Pocket = 1 -Price = 3000 -BPPrice = 16 -Flags = Fling_70 -Description = A Pokémon held item that promotes Attack gain on leveling, but reduces the Speed stat. -#------------------------------- -[POWERBELT] -Name = Power Belt -NamePlural = Power Belts -Pocket = 1 -Price = 3000 -BPPrice = 16 -Flags = Fling_70 -Description = A Pokémon held item that promotes Defense gain on leveling, but reduces the Speed stat. -#------------------------------- -[POWERLENS] -Name = Power Lens -NamePlural = Power Lenses -Pocket = 1 -Price = 3000 -BPPrice = 16 -Flags = Fling_70 -Description = A Pokémon held item that promotes Sp. Atk gain on leveling, but reduces the Speed stat. -#------------------------------- -[POWERBAND] -Name = Power Band -NamePlural = Power Bands -Pocket = 1 -Price = 3000 -BPPrice = 16 -Flags = Fling_70 -Description = A Pokémon held item that promotes Sp. Def gain on leveling, but reduces the Speed stat. -#------------------------------- -[POWERANKLET] -Name = Power Anklet -NamePlural = Power Anklets -Pocket = 1 -Price = 3000 -BPPrice = 16 -Flags = Fling_70 -Description = A Pokémon held item that promotes Speed gain on leveling, but reduces the Speed stat. -#------------------------------- -[LAXINCENSE] -Name = Lax Incense -NamePlural = Lax Incenses -PortionName = jar of Lax Incense -PortionNamePlural = jars of Lax Incense -Pocket = 1 -Price = 9600 -Flags = Fling_10 -Description = An item to be held by a Pokémon. The tricky aroma of this incense may make attacks miss the holder. -#------------------------------- -[FULLINCENSE] -Name = Full Incense -NamePlural = Full Incenses -PortionName = jar of Full Incense -PortionNamePlural = jars of Full Incense -Pocket = 1 -Price = 9600 -Flags = Fling_10 -Description = An item to be held by a Pokémon. This exotic-smelling incense makes the holder bloated and slow moving. -#------------------------------- -[LUCKINCENSE] -Name = Luck Incense -NamePlural = Luck Incenses -PortionName = jar of Luck Incense -PortionNamePlural = jars of Luck Incense -Pocket = 1 -Price = 9600 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It doubles a battle's prize money if the holding Pokémon joins in. -#------------------------------- -[PUREINCENSE] -Name = Pure Incense -NamePlural = Pure Incenses -PortionName = jar of Pure Incense -PortionNamePlural = jars of Pure Incense -Pocket = 1 -Price = 9600 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It helps keep wild Pokémon away if the holder is the first one in the party. -#------------------------------- -[SEAINCENSE] -Name = Sea Incense -NamePlural = Sea Incenses -PortionName = jar of Sea Incense -PortionNamePlural = jars of Sea Incense -Pocket = 1 -Price = 9600 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It has a curious aroma that boosts the power of Water-type moves. -#------------------------------- -[WAVEINCENSE] -Name = Wave Incense -NamePlural = Wave Incenses -PortionName = jar of Wave Incense -PortionNamePlural = jars of Wave Incense -Pocket = 1 -Price = 9600 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It has a curious aroma that boosts the power of Water-type moves. -#------------------------------- -[ROSEINCENSE] -Name = Rose Incense -NamePlural = Rose Incenses -PortionName = jar of Rose Incense -PortionNamePlural = jars of Rose Incense -Pocket = 1 -Price = 9600 -Flags = Fling_10 -Description = An item to be held by a Pokémon. This exotic-smelling incense boosts the power of Grass-type moves. -#------------------------------- -[ODDINCENSE] -Name = Odd Incense -NamePlural = Odd Incenses -PortionName = jar of Odd Incense -PortionNamePlural = jars of Odd Incense -Pocket = 1 -Price = 9600 -Flags = Fling_10 -Description = An item to be held by a Pokémon. This exotic-smelling incense boosts the power of Psychic-type moves. -#------------------------------- -[ROCKINCENSE] -Name = Rock Incense -NamePlural = Rock Incenses -PortionName = jar of Rock Incense -PortionNamePlural = jars of Rock Incense -Pocket = 1 -Price = 9600 -Flags = Fling_10 -Description = An item to be held by a Pokémon. This exotic-smelling incense boosts the power of Rock-type moves. -#------------------------------- -[CHARCOAL] -Name = Charcoal -NamePlural = Charcoals -PortionName = piece of Charcoal -PortionNamePlural = pieces of Charcoal -Pocket = 1 -Price = 9800 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It is a combustible fuel that boosts the power of Fire-type moves. -#------------------------------- -[MYSTICWATER] -Name = Mystic Water -NamePlural = Mystic Waters -Pocket = 1 -Price = 100 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It is a teardrop-shaped gem that ups the power of Water-type moves. -#------------------------------- -[MAGNET] -Name = Magnet -NamePlural = Magnets -Pocket = 1 -Price = 100 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It is a powerful magnet that boosts the power of Electric-type moves. -#------------------------------- -[MIRACLESEED] -Name = Miracle Seed -NamePlural = Miracle Seeds -Pocket = 1 -Price = 100 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It is a seed imbued with life that ups the power of Grass-type moves. -#------------------------------- -[NEVERMELTICE] -Name = Never-Melt Ice -NamePlural = Never-Melt Ices -PortionName = piece of Never-Melt Ice -PortionNamePlural = pieces of Never-Melt Ice -Pocket = 1 -Price = 100 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It is a piece of ice that repels heat and boosts Ice-type moves. -#------------------------------- -[BLACKBELT] -Name = Black Belt -NamePlural = Black Belts -Pocket = 1 -Price = 100 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It is a belt that boosts determination and Fighting-type moves. -#------------------------------- -[POISONBARB] -Name = Poison Barb -NamePlural = Poison Barbs -Pocket = 1 -Price = 100 -Flags = Fling_70 -Description = An item to be held by a Pokémon. It is a small, poisonous barb that ups the power of Poison-type moves. -#------------------------------- -[SOFTSAND] -Name = Soft Sand -NamePlural = Soft Sand -PortionName = bag of Soft Sand -PortionNamePlural = bags of Soft Sand -Pocket = 1 -Price = 100 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It is a loose, silky sand that boosts the power of Ground-type moves. -#------------------------------- -[SHARPBEAK] -Name = Sharp Beak -NamePlural = Sharp Beaks -Pocket = 1 -Price = 100 -Flags = Fling_50 -Description = An item to be held by a Pokémon. It is a long, sharp beak that boosts the power of Flying-type moves. -#------------------------------- -[TWISTEDSPOON] -Name = Twisted Spoon -NamePlural = Twisted Spoons -Pocket = 1 -Price = 100 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It is a spoon imbued with telekinetic power that boosts Psychic-type moves. -#------------------------------- -[SILVERPOWDER] -Name = Silver Powder -NamePlural = Silver Powders -PortionName = pile of Silver Powder -PortionNamePlural = piles of Silver Powder -Pocket = 1 -Price = 100 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It is a shiny, silver powder that ups the power of Bug-type moves. -#------------------------------- -[HARDSTONE] -Name = Hard Stone -NamePlural = Hard Stones -Pocket = 1 -Price = 100 -Flags = Fling_100 -Description = An item to be held by a Pokémon. It is an unbreakable stone that ups the power of Rock-type moves. -#------------------------------- -[SPELLTAG] -Name = Spell Tag -NamePlural = Spell Tags -Pocket = 1 -Price = 100 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It is a sinister, eerie tag that boosts the power of Ghost-type moves. -#------------------------------- -[DRAGONFANG] -Name = Dragon Fang -NamePlural = Dragon Fangs -Pocket = 1 -Price = 100 -Flags = Fling_70 -Description = An item to be held by a Pokémon. It is a hard and sharp fang that ups the power of Dragon-type moves. -#------------------------------- -[BLACKGLASSES] -Name = Black Glasses -NamePlural = Black Glasses -PortionName = pair of Black Glasses -PortionNamePlural = pairs of Black Glasses -Pocket = 1 -Price = 100 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It is a shady-looking pair of glasses that boosts Dark-type moves. -#------------------------------- -[METALCOAT] -Name = Metal Coat -NamePlural = Metal Coats -Pocket = 1 -Price = 100 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It is a special metallic film that ups the power of Steel-type moves. -#------------------------------- -[SILKSCARF] -Name = Silk Scarf -NamePlural = Silk Scarves -Pocket = 1 -Price = 100 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It is a sumptuous scarf that boosts the power of Normal-type moves. -#------------------------------- -[FLAMEPLATE] -Name = Flame Plate -NamePlural = Flame Plates -Pocket = 1 -Price = 1000 -Flags = Fling_90 -Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Fire-type moves. -#------------------------------- -[SPLASHPLATE] -Name = Splash Plate -NamePlural = Splash Plates -Pocket = 1 -Price = 1000 -Flags = Fling_90 -Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Water-type moves. -#------------------------------- -[ZAPPLATE] -Name = Zap Plate -NamePlural = Zap Plates -Pocket = 1 -Price = 1000 -Flags = Fling_90 -Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Electric-type moves. -#------------------------------- -[MEADOWPLATE] -Name = Meadow Plate -NamePlural = Meadow Plates -Pocket = 1 -Price = 1000 -Flags = Fling_90 -Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Grass-type moves. -#------------------------------- -[ICICLEPLATE] -Name = Icicle Plate -NamePlural = Icicle Plates -Pocket = 1 -Price = 1000 -Flags = Fling_90 -Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Ice-type moves. -#------------------------------- -[FISTPLATE] -Name = Fist Plate -NamePlural = Fist Plates -Pocket = 1 -Price = 1000 -Flags = Fling_90 -Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Fighting-type moves. -#------------------------------- -[TOXICPLATE] -Name = Toxic Plate -NamePlural = Toxic Plates -Pocket = 1 -Price = 1000 -Flags = Fling_90 -Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Poison-type moves. -#------------------------------- -[EARTHPLATE] -Name = Earth Plate -NamePlural = Earth Plates -Pocket = 1 -Price = 1000 -Flags = Fling_90 -Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Ground-type moves. -#------------------------------- -[SKYPLATE] -Name = Sky Plate -NamePlural = Sky Plates -Pocket = 1 -Price = 1000 -Flags = Fling_90 -Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Flying-type moves. -#------------------------------- -[MINDPLATE] -Name = Mind Plate -NamePlural = Mind Plates -Pocket = 1 -Price = 1000 -Flags = Fling_90 -Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Psychic-type moves. -#------------------------------- -[INSECTPLATE] -Name = Insect Plate -NamePlural = Insect Plates -Pocket = 1 -Price = 1000 -Flags = Fling_90 -Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Bug-type moves. -#------------------------------- -[STONEPLATE] -Name = Stone Plate -NamePlural = Stone Plates -Pocket = 1 -Price = 1000 -Flags = Fling_90 -Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Rock-type moves. -#------------------------------- -[SPOOKYPLATE] -Name = Spooky Plate -NamePlural = Spooky Plates -Pocket = 1 -Price = 1000 -Flags = Fling_90 -Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Ghost-type moves. -#------------------------------- -[DRACOPLATE] -Name = Draco Plate -NamePlural = Draco Plates -Pocket = 1 -Price = 1000 -Flags = Fling_90 -Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Dragon-type moves. -#------------------------------- -[DREADPLATE] -Name = Dread Plate -NamePlural = Dread Plates -Pocket = 1 -Price = 1000 -Flags = Fling_90 -Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Dark-type moves. -#------------------------------- -[IRONPLATE] -Name = Iron Plate -NamePlural = Iron Plates -Pocket = 1 -Price = 1000 -Flags = Fling_90 -Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Steel-type moves. -#------------------------------- -[FIREGEM] -Name = Fire Gem -NamePlural = Fire Gems -Pocket = 1 -Price = 200 -Flags = TypeGem -Description = A gem with an essence of fire. When held, it strengthens the power of a Fire-type move only once. -#------------------------------- -[WATERGEM] -Name = Water Gem -NamePlural = Water Gems -Pocket = 1 -Price = 200 -Flags = TypeGem -Description = A gem with an essence of water. When held, it strengthens the power of a Water-type move only once. -#------------------------------- -[ELECTRICGEM] -Name = Electric Gem -NamePlural = Electric Gems -Pocket = 1 -Price = 200 -Flags = TypeGem -Description = A gem with an essence of electricity. When held, it strengthens the power of an Electric-type move only once. -#------------------------------- -[GRASSGEM] -Name = Grass Gem -NamePlural = Grass Gems -Pocket = 1 -Price = 200 -Flags = TypeGem -Description = A gem with an essence of nature. When held, it strengthens the power of a Grass-type move only once. -#------------------------------- -[ICEGEM] -Name = Ice Gem -NamePlural = Ice Gems -Pocket = 1 -Price = 200 -Flags = TypeGem -Description = A gem with an essence of ice. When held, it strengthens the power of an Ice-type move only once. -#------------------------------- -[FIGHTINGGEM] -Name = Fighting Gem -NamePlural = Fighting Gems -Pocket = 1 -Price = 200 -Flags = TypeGem -Description = A gem with an essence of combat. When held, it strengthens the power of a Fighting-type move only once. -#------------------------------- -[POISONGEM] -Name = Poison Gem -NamePlural = Poison Gems -Pocket = 1 -Price = 200 -Flags = TypeGem -Description = A gem with an essence of poison. When held, it strengthens the power of a Poison-type move only once. -#------------------------------- -[GROUNDGEM] -Name = Ground Gem -NamePlural = Ground Gems -Pocket = 1 -Price = 200 -Flags = TypeGem -Description = A gem with an essence of land. When held, it strengthens the power of a Ground-type move only once. -#------------------------------- -[FLYINGGEM] -Name = Flying Gem -NamePlural = Flying Gems -Pocket = 1 -Price = 200 -Flags = TypeGem -Description = A gem with an essence of air. When held, it strengthens the power of a Flying-type move only once. -#------------------------------- -[PSYCHICGEM] -Name = Psychic Gem -NamePlural = Psychic Gems -Pocket = 1 -Price = 200 -Flags = TypeGem -Description = A gem with an essence of the mind. When held, it strengthens the power of a Psychic-type move only once. -#------------------------------- -[BUGGEM] -Name = Bug Gem -NamePlural = Bug Gems -Pocket = 1 -Price = 200 -Flags = TypeGem -Description = A gem with an insect-like essence. When held, it strengthens the power of a Bug-type move only once. -#------------------------------- -[ROCKGEM] -Name = Rock Gem -NamePlural = Rock Gems -Pocket = 1 -Price = 200 -Flags = TypeGem -Description = A gem with an essence of rock. When held, it strengthens the power of a Rock-type move only once. -#------------------------------- -[GHOSTGEM] -Name = Ghost Gem -NamePlural = Ghost Gems -Pocket = 1 -Price = 200 -Flags = TypeGem -Description = A gem with a spectral essence. When held, it strengthens the power of a Ghost-type move only once. -#------------------------------- -[DRAGONGEM] -Name = Dragon Gem -NamePlural = Dragon Gems -Pocket = 1 -Price = 200 -Flags = TypeGem -Description = A gem with a draconic essence. When held, it strengthens the power of a Dragon-type move only once. -#------------------------------- -[DARKGEM] -Name = Dark Gem -NamePlural = Dark Gems -Pocket = 1 -Price = 200 -Flags = TypeGem -Description = A gem with an essence of darkness. When held, it strengthens the power of a Dark-type move only once. -#------------------------------- -[STEELGEM] -Name = Steel Gem -NamePlural = Steel Gems -Pocket = 1 -Price = 200 -Flags = TypeGem -Description = A gem with an essence of steel. When held, it strengthens the power of a Steel-type move only once. -#------------------------------- -[NORMALGEM] -Name = Normal Gem -NamePlural = Normal Gems -Pocket = 1 -Price = 200 -Flags = TypeGem -Description = A gem with an ordinary essence. When held, it strengthens the power of a Normal-type move only once. -#------------------------------- -[LIGHTBALL] -Name = Light Ball -NamePlural = Light Balls -Pocket = 1 -Price = 100 -Flags = Fling_30 -Description = An item to be held by Pikachu. It is a puzzling orb that raises the Attack and Sp. Atk stat. -#------------------------------- -[LUCKYPUNCH] -Name = Lucky Punch -NamePlural = Lucky Punches -Pocket = 1 -Price = 10 -BPPrice = 7 -Flags = Fling_40 -Description = An item to be held by Chansey. It is a pair of gloves that boosts Chansey's critical-hit ratio. -#------------------------------- -[METALPOWDER] -Name = Metal Powder -NamePlural = Metal Powders -PortionName = bag of Metal Powder -PortionNamePlural = bags of Metal Powder -Pocket = 1 -Price = 10 -Flags = Fling_10 -Description = An item to be held by Ditto. Extremely fine yet hard, this odd powder boosts the Defense stat. -#------------------------------- -[QUICKPOWDER] -Name = Quick Powder -NamePlural = Quick Powders -PortionName = bag of Quick Powder -PortionNamePlural = bags of Quick Powder -Pocket = 1 -Price = 10 -Flags = Fling_10 -Description = An item to be held by Ditto. Extremely fine yet hard, this odd powder boosts the Speed stat. -#------------------------------- -[THICKCLUB] -Name = Thick Club -NamePlural = Thick Clubs -Pocket = 1 -Price = 500 -Flags = Fling_90 -Description = An item to be held by Cubone or Marowak. It is a hard bone of some sort that boosts the Attack stat. -#------------------------------- -[STICK] -Name = Stick -NamePlural = Sticks -Pocket = 1 -Price = 200 -Flags = Fling_60 -Description = An item to be held by Farfetch'd. It is a very long and stiff stalk of leek that boosts the critical-hit ratio. -#------------------------------- -[SOULDEW] -Name = Soul Dew -NamePlural = Soul Dews -Pocket = 1 -Price = 200 -Flags = Fling_30 -Description = A wondrous orb to be held by Latios or Latias. It raises both the Sp. Atk and Sp. Def stats. -#------------------------------- -[DEEPSEATOOTH] -Name = Deep Sea Tooth -NamePlural = Deep Sea Teeth -Pocket = 1 -Price = 200 -BPPrice = 8 -Flags = Fling_90 -Description = An item to be held by Clamperl. A fang that gleams a sharp silver, it raises the Sp. Atk stat. -#------------------------------- -[DEEPSEASCALE] -Name = Deep Sea Scale -NamePlural = Deep Sea Scales -Pocket = 1 -Price = 200 -BPPrice = 8 -Flags = Fling_30 -Description = An item to be held by Clamperl. A scale that shines a faint pink, it raises the Sp. Def stat. -#------------------------------- -[ADAMANTORB] -Name = Adamant Orb -NamePlural = Adamant Orbs -Pocket = 1 -Price = 10000 -Flags = Fling_60 -Description = A brightly gleaming orb to be held by Dialga. It boosts the power of Dragon- and Steel-type moves. -#------------------------------- -[LUSTROUSORB] -Name = Lustrous Orb -NamePlural = Lustrous Orbs -Pocket = 1 -Price = 10000 -Flags = Fling_60 -Description = A beautifully glowing orb to be held by Palkia. It boosts the power of Dragon- and Water-type moves. -#------------------------------- -[GRISEOUSORB] -Name = Griseous Orb -NamePlural = Griseous Orbs -Pocket = 1 -Price = 10000 -Flags = Fling_60 -Description = A glowing orb to be held by Giratina. It boosts the power of Dragon- and Ghost-type moves. -#------------------------------- -[DOUSEDRIVE] -Name = Douse Drive -NamePlural = Douse Drives -Pocket = 1 -Price = 1000 -Flags = Fling_70 -Description = A cassette to be held by Genesect. It changes Techno Blast to a Water-type move. -#------------------------------- -[SHOCKDRIVE] -Name = Shock Drive -NamePlural = Shock Drives -Pocket = 1 -Price = 1000 -Flags = Fling_70 -Description = A cassette to be held by Genesect. It changes Techno Blast to an Electric-type move. -#------------------------------- -[BURNDRIVE] -Name = Burn Drive -NamePlural = Burn Drives -Pocket = 1 -Price = 1000 -Flags = Fling_70 -Description = A cassette to be held by Genesect. It changes Techno Blast to a Fire-type move. -#------------------------------- -[CHILLDRIVE] -Name = Chill Drive -NamePlural = Chill Drives -Pocket = 1 -Price = 1000 -Flags = Fling_70 -Description = A cassette to be held by Genesect. It changes Techno Blast to an Ice-type move. -#------------------------------- -[EVERSTONE] -Name = Everstone -NamePlural = Everstones -Pocket = 1 -Price = 200 -BPPrice = 3 -Flags = Fling_30 -Description = An item to be held by a Pokémon. The Pokémon holding this peculiar stone is prevented from evolving. -#------------------------------- -[DRAGONSCALE] -Name = Dragon Scale -NamePlural = Dragon Scales -Pocket = 1 -Price = 2100 -BPPrice = 8 -Flags = Fling_30 -Description = A thick and tough scale. Dragon-type Pokémon may be holding this item when caught. -#------------------------------- -[UPGRADE] -Name = Up-Grade -NamePlural = Up-Grades -Pocket = 1 -Price = 2100 -BPPrice = 8 -Flags = Fling_30 -Description = A transparent device filled with all sorts of data. It was produced by Silph Co. -#------------------------------- -[DUBIOUSDISC] -Name = Dubious Disc -NamePlural = Dubious Discs -Pocket = 1 -Price = 2100 -BPPrice = 8 -Flags = Fling_50 -Description = A transparent device overflowing with dubious data. Its producer is unknown. -#------------------------------- -[PROTECTOR] -Name = Protector -NamePlural = Protectors -Pocket = 1 -Price = 2100 -BPPrice = 8 -Flags = Fling_80 -Description = A protective item of some sort. It is extremely stiff and heavy. It is loved by a certain Pokémon. -#------------------------------- -[ELECTIRIZER] -Name = Electirizer -NamePlural = Electirizers -Pocket = 1 -Price = 2100 -BPPrice = 8 -Flags = Fling_80 -Description = A box packed with a tremendous amount of electric energy. It is loved by a certain Pokémon. -#------------------------------- -[MAGMARIZER] -Name = Magmarizer -NamePlural = Magmarizers -Pocket = 1 -Price = 2100 -BPPrice = 8 -Flags = Fling_80 -Description = A box packed with a tremendous amount of magma energy. It is loved by a certain Pokémon. -#------------------------------- -[REAPERCLOTH] -Name = Reaper Cloth -NamePlural = Reaper Cloths -PortionName = scrap of Reaper Cloth -PortionNamePlural = scraps of Reaper Cloth -Pocket = 1 -Price = 2100 -BPPrice = 8 -Flags = Fling_10 -Description = A cloth imbued with horrifyingly strong spiritual energy. It is loved by a certain Pokémon. -#------------------------------- -[PRISMSCALE] -Name = Prism Scale -NamePlural = Prism Scales -Pocket = 1 -Price = 500 -BPPrice = 8 -Flags = Fling_30 -Description = A mysterious scale that evolves certain Pokémon. It shines in rainbow colors. -#------------------------------- -[OVALSTONE] -Name = Oval Stone -NamePlural = Oval Stones -Pocket = 1 -Price = 2100 -BPPrice = 8 -Flags = Fling_80 -Description = A peculiar stone that makes certain species of Pokémon evolve. It is shaped like an egg. -#------------------------------- -[REDSCARF] -Name = Red Scarf -NamePlural = Red Scarves -Pocket = 1 -Price = 100 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It boosts the Cool aspect of the holder in a Contest. -#------------------------------- -[BLUESCARF] -Name = Blue Scarf -NamePlural = Blue Scarves -Pocket = 1 -Price = 100 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It boosts the Beauty aspect of the holder in a Contest. -#------------------------------- -[PINKSCARF] -Name = Pink Scarf -NamePlural = Pink Scarves -Pocket = 1 -Price = 100 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It boosts the Cute aspect of the holder in a Contest. -#------------------------------- -[GREENSCARF] -Name = Green Scarf -NamePlural = Green Scarves -Pocket = 1 -Price = 100 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It boosts the Smart aspect of the holder in a Contest. -#------------------------------- -[YELLOWSCARF] -Name = Yellow Scarf -NamePlural = Yellow Scarves -Pocket = 1 -Price = 100 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It boosts the Tough aspect of the holder in a Contest. +[GRASSMAIL] +Name = Grass Mail +NamePlural = Grass Mail +PortionName = piece of Grass Mail +PortionNamePlural = pieces of Grass Mail +Pocket = Items +Price = 50 +Flags = IconMail +Description = Stationery featuring a print of a refreshingly green field. Let a Pokémon hold it for delivery. +#------------------------------- +[FLAMEMAIL] +Name = Flame Mail +NamePlural = Flame Mail +PortionName = piece of Flame Mail +PortionNamePlural = pieces of Flame Mail +Pocket = Items +Price = 50 +Flags = IconMail +Description = Stationery featuring a print of flames in blazing red. Let a Pokémon hold it for delivery. +#------------------------------- +[BUBBLEMAIL] +Name = Bubble Mail +NamePlural = Bubble Mail +PortionName = piece of Bubble Mail +PortionNamePlural = pieces of Bubble Mail +Pocket = Items +Price = 50 +Flags = IconMail +Description = Stationery featuring a print of a blue world underwater. Let a Pokémon hold it for delivery. +#------------------------------- +[BLOOMMAIL] +Name = Bloom Mail +NamePlural = Bloom Mail +PortionName = piece of Bloom Mail +PortionNamePlural = pieces of Bloom Mail +Pocket = Items +Price = 50 +Flags = IconMail +Description = Stationery featuring a print of pretty floral patterns. Let a Pokémon hold it for delivery. +#------------------------------- +[TUNNELMAIL] +Name = Tunnel Mail +NamePlural = Tunnel Mail +PortionName = piece of Tunnel Mail +PortionNamePlural = pieces of Tunnel Mail +Pocket = Items +Price = 50 +Flags = IconMail +Description = Stationery featuring a print of a dimly lit coal mine. Let a Pokémon hold it for delivery. +#------------------------------- +[STEELMAIL] +Name = Steel Mail +NamePlural = Steel Mail +PortionName = piece of Steel Mail +PortionNamePlural = pieces of Steel Mail +Pocket = Items +Price = 50 +Flags = IconMail +Description = Stationery featuring a print of cool mechanical designs. Let a Pokémon hold it for delivery. +#------------------------------- +[HEARTMAIL] +Name = Heart Mail +NamePlural = Heart Mail +PortionName = piece of Heart Mail +PortionNamePlural = pieces of Heart Mail +Pocket = Items +Price = 50 +Flags = IconMail +Description = Stationery featuring a print of giant heart patterns. Let a Pokémon hold it for delivery. +#------------------------------- +[SNOWMAIL] +Name = Snow Mail +NamePlural = Snow Mail +PortionName = piece of Snow Mail +PortionNamePlural = pieces of Snow Mail +Pocket = Items +Price = 50 +Flags = IconMail +Description = Stationery featuring a print of a chilly, snow-covered world. Let a Pokémon hold it for delivery. +#------------------------------- +[SPACEMAIL] +Name = Space Mail +NamePlural = Space Mail +PortionName = piece of Space Mail +PortionNamePlural = pieces of Space Mail +Pocket = Items +Price = 50 +Flags = IconMail +Description = Stationery featuring a print depicting the huge expanse of space. Let a Pokémon hold it for delivery. +#------------------------------- +[AIRMAIL] +Name = Air Mail +NamePlural = Air Mail +PortionName = piece of Air Mail +PortionNamePlural = pieces of Air Mail +Pocket = Items +Price = 50 +Flags = IconMail +Description = Stationery featuring a print of colorful letter sets. Let a Pokémon hold it for delivery. +#------------------------------- +[MOSAICMAIL] +Name = Mosaic Mail +NamePlural = Mosaic Mail +PortionName = piece of Mosaic Mail +PortionNamePlural = pieces of Mosaic Mail +Pocket = Items +Price = 50 +Flags = IconMail +Description = Stationery featuring a print of a vivid rainbow pattern. Let a Pokémon hold it for delivery. +#------------------------------- +[BRICKMAIL] +Name = Brick Mail +NamePlural = Brick Mail +PortionName = piece of Brick Mail +PortionNamePlural = pieces of Brick Mail +Pocket = Items +Price = 50 +Flags = IconMail +Description = Stationery featuring a print of a tough-looking brick pattern. Let a Pokémon hold it for delivery. #------------------------------- [POTION] Name = Potion NamePlural = Potions -Pocket = 2 +Pocket = Medicine Price = 300 FieldUse = OnPokemon BattleUse = OnPokemon @@ -1902,7 +699,7 @@ Description = A spray-type medicine for wounds. It restores the HP of one Pokém [SUPERPOTION] Name = Super Potion NamePlural = Super Potions -Pocket = 2 +Pocket = Medicine Price = 700 FieldUse = OnPokemon BattleUse = OnPokemon @@ -1912,7 +709,7 @@ Description = A spray-type medicine for wounds. It restores the HP of one Pokém [HYPERPOTION] Name = Hyper Potion NamePlural = Hyper Potions -Pocket = 2 +Pocket = Medicine Price = 1200 FieldUse = OnPokemon BattleUse = OnPokemon @@ -1922,7 +719,7 @@ Description = A spray-type medicine for wounds. It restores the HP of one Pokém [MAXPOTION] Name = Max Potion NamePlural = Max Potions -Pocket = 2 +Pocket = Medicine Price = 2500 BPPrice = 2 FieldUse = OnPokemon @@ -1933,7 +730,7 @@ Description = A spray-type medicine for wounds. It completely restores the HP of [FULLRESTORE] Name = Full Restore NamePlural = Full Restores -Pocket = 2 +Pocket = Medicine Price = 3000 FieldUse = OnPokemon BattleUse = OnPokemon @@ -1945,7 +742,7 @@ Name = Sacred Ash NamePlural = Sacred Ashes PortionName = bag of Sacred Ash PortionNamePlural = bags of Sacred Ash -Pocket = 2 +Pocket = Medicine Price = 200 FieldUse = Direct Flags = Fling_30 @@ -1954,7 +751,7 @@ Description = It revives all fainted Pokémon. In doing so, it also fully restor [AWAKENING] Name = Awakening NamePlural = Awakenings -Pocket = 2 +Pocket = Medicine Price = 250 FieldUse = OnPokemon BattleUse = OnPokemon @@ -1964,7 +761,7 @@ Description = A spray-type medicine. It awakens a Pokémon from the clutches of [ANTIDOTE] Name = Antidote NamePlural = Antidotes -Pocket = 2 +Pocket = Medicine Price = 100 FieldUse = OnPokemon BattleUse = OnPokemon @@ -1974,7 +771,7 @@ Description = A spray-type medicine. It lifts the effect of poison from one Pok [BURNHEAL] Name = Burn Heal NamePlural = Burn Heals -Pocket = 2 +Pocket = Medicine Price = 250 FieldUse = OnPokemon BattleUse = OnPokemon @@ -1984,7 +781,7 @@ Description = A spray-type medicine. It heals a single Pokémon that is sufferin [PARALYZEHEAL] Name = Paralyze Heal NamePlural = Paralyze Heals -Pocket = 2 +Pocket = Medicine Price = 200 FieldUse = OnPokemon BattleUse = OnPokemon @@ -1994,7 +791,7 @@ Description = A spray-type medicine. It eliminates paralysis from a single Poké [ICEHEAL] Name = Ice Heal NamePlural = Ice Heals -Pocket = 2 +Pocket = Medicine Price = 250 FieldUse = OnPokemon BattleUse = OnPokemon @@ -2004,7 +801,7 @@ Description = A spray-type medicine. It defrosts a Pokémon that has been frozen [FULLHEAL] Name = Full Heal NamePlural = Full Heals -Pocket = 2 +Pocket = Medicine Price = 600 FieldUse = OnPokemon BattleUse = OnPokemon @@ -2014,7 +811,7 @@ Description = A spray-type medicine. It heals all the status problems of a singl [LAVACOOKIE] Name = Lava Cookie NamePlural = Lava Cookies -Pocket = 2 +Pocket = Medicine Price = 200 FieldUse = OnPokemon BattleUse = OnPokemon @@ -2024,7 +821,7 @@ Description = Lavaridge Town's local specialty. It heals all the status problems [OLDGATEAU] Name = Old Gateau NamePlural = Old Gateaux -Pocket = 2 +Pocket = Medicine Price = 200 FieldUse = OnPokemon BattleUse = OnPokemon @@ -2034,7 +831,7 @@ Description = Old Chateau's hidden specialty. It heals all the status problems o [CASTELIACONE] Name = Casteliacone NamePlural = Casteliacones -Pocket = 2 +Pocket = Medicine Price = 100 FieldUse = OnPokemon BattleUse = OnPokemon @@ -2044,7 +841,7 @@ Description = Castelia City's specialty, soft-serve ice cream. It heals all the [REVIVE] Name = Revive NamePlural = Revives -Pocket = 2 +Pocket = Medicine Price = 1500 FieldUse = OnPokemon BattleUse = OnPokemon @@ -2054,7 +851,7 @@ Description = A medicine that revives a fainted Pokémon. It restores half the P [MAXREVIVE] Name = Max Revive NamePlural = Max Revives -Pocket = 2 +Pocket = Medicine Price = 4000 BPPrice = 24 FieldUse = OnPokemon @@ -2067,7 +864,7 @@ Name = Berry Juice NamePlural = Berry Juices PortionName = cup of Berry Juice PortionNamePlural = cups of Berry Juice -Pocket = 2 +Pocket = Medicine Price = 100 FieldUse = OnPokemon BattleUse = OnPokemon @@ -2077,7 +874,7 @@ Description = A 100% pure juice made of Berries. It restores the HP of one Poké [RAGECANDYBAR] Name = Rage Candy Bar NamePlural = Rage Candy Bars -Pocket = 2 +Pocket = Medicine Price = 400 FieldUse = OnPokemon BattleUse = OnPokemon @@ -2087,7 +884,7 @@ Description = A famous Mahogany Town candy that tourists like to buy. It restore [SWEETHEART] Name = Sweet Heart NamePlural = Sweet Hearts -Pocket = 2 +Pocket = Medicine Price = 100 FieldUse = OnPokemon BattleUse = OnPokemon @@ -2099,7 +896,7 @@ Name = Fresh Water NamePlural = Fresh Waters PortionName = bottle of Fresh Water PortionNamePlural = bottles of Fresh Water -Pocket = 2 +Pocket = Medicine Price = 200 FieldUse = OnPokemon BattleUse = OnPokemon @@ -2111,7 +908,7 @@ Name = Soda Pop NamePlural = Soda Pops PortionName = bottle of Soda Pop PortionNamePlural = bottles of Soda Pop -Pocket = 2 +Pocket = Medicine Price = 300 FieldUse = OnPokemon BattleUse = OnPokemon @@ -2123,7 +920,7 @@ Name = Lemonade NamePlural = Lemonades PortionName = can of Lemonade PortionNamePlural = cans of Lemonade -Pocket = 2 +Pocket = Medicine Price = 350 FieldUse = OnPokemon BattleUse = OnPokemon @@ -2135,7 +932,7 @@ Name = Moomoo Milk NamePlural = Moomoo Milks PortionName = bottle of Moomoo Milk PortionNamePlural = bottles of Moomoo Milk -Pocket = 2 +Pocket = Medicine Price = 500 FieldUse = OnPokemon BattleUse = OnPokemon @@ -2147,7 +944,7 @@ Name = Energy Powder NamePlural = Energy Powders PortionName = dose of Energy Powder PortionNamePlural = doses of Energy Powder -Pocket = 2 +Pocket = Medicine Price = 500 FieldUse = OnPokemon BattleUse = OnPokemon @@ -2157,7 +954,7 @@ Description = A very bitter medicine powder. It restores the HP of one Pokémon [ENERGYROOT] Name = Energy Root NamePlural = Energy Roots -Pocket = 2 +Pocket = Medicine Price = 800 FieldUse = OnPokemon BattleUse = OnPokemon @@ -2169,7 +966,7 @@ Name = Heal Powder NamePlural = Heal Powders PortionName = dose of Heal Powder PortionNamePlural = doses of Heal Powder -Pocket = 2 +Pocket = Medicine Price = 450 FieldUse = OnPokemon BattleUse = OnPokemon @@ -2179,7 +976,7 @@ Description = A very bitter medicine powder. It heals all the status problems of [REVIVALHERB] Name = Revival Herb NamePlural = Revival Herbs -Pocket = 2 +Pocket = Medicine Price = 2800 FieldUse = OnPokemon BattleUse = OnPokemon @@ -2189,7 +986,7 @@ Description = A very bitter medicinal herb. It revives a fainted Pokémon, fully [ETHER] Name = Ether NamePlural = Ethers -Pocket = 2 +Pocket = Medicine Price = 1200 BPPrice = 4 FieldUse = OnPokemon @@ -2200,7 +997,7 @@ Description = It restores the PP of a Pokémon's selected move by a maximum of 1 [MAXETHER] Name = Max Ether NamePlural = Max Ethers -Pocket = 2 +Pocket = Medicine Price = 2000 FieldUse = OnPokemon BattleUse = OnMove @@ -2210,7 +1007,7 @@ Description = It fully restores the PP of a single selected move that has been l [ELIXIR] Name = Elixir NamePlural = Elixirs -Pocket = 2 +Pocket = Medicine Price = 3000 FieldUse = OnPokemon BattleUse = OnPokemon @@ -2220,7 +1017,7 @@ Description = It restores the PP of all the moves learned by the targeted Pokém [MAXELIXIR] Name = Max Elixir NamePlural = Max Elixirs -Pocket = 2 +Pocket = Medicine Price = 4500 FieldUse = OnPokemon BattleUse = OnPokemon @@ -2232,7 +1029,7 @@ Name = PP Up NamePlural = PP Ups PortionName = bottle of PP Up PortionNamePlural = bottles of PP Up -Pocket = 2 +Pocket = Medicine Price = 9800 BPPrice = 16 FieldUse = OnPokemon @@ -2244,7 +1041,7 @@ Name = PP Max NamePlural = PP Maxes PortionName = bottle of PP Max PortionNamePlural = bottles of PP Max -Pocket = 2 +Pocket = Medicine Price = 9800 FieldUse = OnPokemon Flags = Fling_30 @@ -2255,7 +1052,7 @@ Name = HP Up NamePlural = HP Ups PortionName = bottle of HP Up PortionNamePlural = bottles of HP Up -Pocket = 2 +Pocket = Medicine Price = 9800 FieldUse = OnPokemon Flags = Fling_30 @@ -2266,7 +1063,7 @@ Name = Protein NamePlural = Proteins PortionName = bottle of Protein PortionNamePlural = bottles of Protein -Pocket = 2 +Pocket = Medicine Price = 9800 FieldUse = OnPokemon Flags = Fling_30 @@ -2277,7 +1074,7 @@ Name = Iron NamePlural = Irons PortionName = bottle of Iron PortionNamePlural = bottles of Iron -Pocket = 2 +Pocket = Medicine Price = 9800 FieldUse = OnPokemon Flags = Fling_30 @@ -2288,7 +1085,7 @@ Name = Calcium NamePlural = Calciums PortionName = bottle of Calcium PortionNamePlural = bottles of Calcium -Pocket = 2 +Pocket = Medicine Price = 9800 FieldUse = OnPokemon Flags = Fling_30 @@ -2299,7 +1096,7 @@ Name = Zinc NamePlural = Zincs PortionName = bottle of Zinc PortionNamePlural = bottles of Zinc -Pocket = 2 +Pocket = Medicine Price = 9800 FieldUse = OnPokemon Flags = Fling_30 @@ -2310,7 +1107,7 @@ Name = Carbos NamePlural = Carbos PortionName = bottle of Carbos PortionNamePlural = bottles of Carbos -Pocket = 2 +Pocket = Medicine Price = 9800 FieldUse = OnPokemon Flags = Fling_30 @@ -2319,7 +1116,7 @@ Description = A nutritious drink for Pokémon. It raises the base Speed stat of [HEALTHWING] Name = Health Wing NamePlural = Health Wings -Pocket = 2 +Pocket = Medicine Price = 3000 FieldUse = OnPokemon Flags = Fling_20 @@ -2328,7 +1125,7 @@ Description = An item for use on a Pokémon. It slightly increases the base HP o [MUSCLEWING] Name = Muscle Wing NamePlural = Muscle Wings -Pocket = 2 +Pocket = Medicine Price = 3000 FieldUse = OnPokemon Flags = Fling_20 @@ -2337,7 +1134,7 @@ Description = An item for use on a Pokémon. It slightly increases the base Atta [RESISTWING] Name = Resist Wing NamePlural = Resist Wings -Pocket = 2 +Pocket = Medicine Price = 3000 FieldUse = OnPokemon Flags = Fling_20 @@ -2346,7 +1143,7 @@ Description = An item for use on a Pokémon. It slightly increases the base Defe [GENIUSWING] Name = Genius Wing NamePlural = Genius Wings -Pocket = 2 +Pocket = Medicine Price = 3000 FieldUse = OnPokemon Flags = Fling_20 @@ -2355,7 +1152,7 @@ Description = An item for use on a Pokémon. It slightly increases the base Sp. [CLEVERWING] Name = Clever Wing NamePlural = Clever Wings -Pocket = 2 +Pocket = Medicine Price = 3000 FieldUse = OnPokemon Flags = Fling_20 @@ -2364,7 +1161,7 @@ Description = An item for use on a Pokémon. It slightly increases the base Sp. [SWIFTWING] Name = Swift Wing NamePlural = Swift Wings -Pocket = 2 +Pocket = Medicine Price = 3000 FieldUse = OnPokemon Flags = Fling_20 @@ -2373,7 +1170,7 @@ Description = An item for use on a Pokémon. It slightly increases the base Spee [RARECANDY] Name = Rare Candy NamePlural = Rare Candies -Pocket = 2 +Pocket = Medicine Price = 4800 BPPrice = 24 FieldUse = OnPokemon @@ -2383,7 +1180,7 @@ Description = A candy that is packed with energy. It raises the level of a singl [MASTERBALL] Name = Master Ball NamePlural = Master Balls -Pocket = 3 +Pocket = PokeBalls Price = 0 BattleUse = OnFoe Flags = PokeBall @@ -2392,7 +1189,7 @@ Description = The best Ball with the ultimate level of performance. It will catc [ULTRABALL] Name = Ultra Ball NamePlural = Ultra Balls -Pocket = 3 +Pocket = PokeBalls Price = 1200 BattleUse = OnFoe Flags = PokeBall @@ -2401,7 +1198,7 @@ Description = An ultra-performance Ball that provides a higher Pokémon catch ra [GREATBALL] Name = Great Ball NamePlural = Great Balls -Pocket = 3 +Pocket = PokeBalls Price = 600 BattleUse = OnFoe Flags = PokeBall @@ -2410,7 +1207,7 @@ Description = A good, high-performance Ball that provides a higher Pokémon catc [POKEBALL] Name = Poké Ball NamePlural = Poké Balls -Pocket = 3 +Pocket = PokeBalls Price = 200 BattleUse = OnFoe Flags = PokeBall @@ -2419,7 +1216,7 @@ Description = A device for catching wild Pokémon. It is thrown like a ball at t [SAFARIBALL] Name = Safari Ball NamePlural = Safari Balls -Pocket = 3 +Pocket = PokeBalls Price = 0 BattleUse = OnFoe Flags = PokeBall @@ -2428,7 +1225,7 @@ Description = A special Poké Ball that is used only in the Safari Zone. It is d [SPORTBALL] Name = Sport Ball NamePlural = Sport Balls -Pocket = 3 +Pocket = PokeBalls Price = 0 BattleUse = OnFoe Flags = PokeBall @@ -2437,7 +1234,7 @@ Description = A special Poké Ball for the Bug-Catching Contest. [NETBALL] Name = Net Ball NamePlural = Net Balls -Pocket = 3 +Pocket = PokeBalls Price = 1000 BattleUse = OnFoe Flags = PokeBall @@ -2446,7 +1243,7 @@ Description = A somewhat different Poké Ball that works especially well on Wate [DIVEBALL] Name = Dive Ball NamePlural = Dive Balls -Pocket = 3 +Pocket = PokeBalls Price = 1000 BattleUse = OnFoe Flags = PokeBall @@ -2455,7 +1252,7 @@ Description = A somewhat different Poké Ball that works especially well on Pok [NESTBALL] Name = Nest Ball NamePlural = Nest Balls -Pocket = 3 +Pocket = PokeBalls Price = 1000 BattleUse = OnFoe Flags = PokeBall @@ -2464,7 +1261,7 @@ Description = A somewhat different Poké Ball that works especially well on weak [REPEATBALL] Name = Repeat Ball NamePlural = Repeat Balls -Pocket = 3 +Pocket = PokeBalls Price = 1000 BattleUse = OnFoe Flags = PokeBall @@ -2473,7 +1270,7 @@ Description = A somewhat different Poké Ball that works especially well on Pok [TIMERBALL] Name = Timer Ball NamePlural = Timer Balls -Pocket = 3 +Pocket = PokeBalls Price = 1000 BattleUse = OnFoe Flags = PokeBall @@ -2482,7 +1279,7 @@ Description = A somewhat different Ball that becomes progressively better the mo [LUXURYBALL] Name = Luxury Ball NamePlural = Luxury Balls -Pocket = 3 +Pocket = PokeBalls Price = 1000 BattleUse = OnFoe Flags = PokeBall @@ -2491,7 +1288,7 @@ Description = A comfortable Poké Ball that makes a caught wild Pokémon quickly [PREMIERBALL] Name = Premier Ball NamePlural = Premier Balls -Pocket = 3 +Pocket = PokeBalls Price = 200 BattleUse = OnFoe Flags = PokeBall @@ -2500,7 +1297,7 @@ Description = A somewhat rare Poké Ball that has been specially made to commemo [DUSKBALL] Name = Dusk Ball NamePlural = Dusk Balls -Pocket = 3 +Pocket = PokeBalls Price = 1000 BattleUse = OnFoe Flags = PokeBall @@ -2509,7 +1306,7 @@ Description = A somewhat different Poké Ball that makes it easier to catch wild [HEALBALL] Name = Heal Ball NamePlural = Heal Balls -Pocket = 3 +Pocket = PokeBalls Price = 300 BattleUse = OnFoe Flags = PokeBall @@ -2518,7 +1315,7 @@ Description = A remedial Poké Ball that restores the caught Pokémon's HP and e [QUICKBALL] Name = Quick Ball NamePlural = Quick Balls -Pocket = 3 +Pocket = PokeBalls Price = 1000 BattleUse = OnFoe Flags = PokeBall @@ -2527,7 +1324,7 @@ Description = A somewhat different Poké Ball that provides a better catch rate [CHERISHBALL] Name = Cherish Ball NamePlural = Cherish Balls -Pocket = 3 +Pocket = PokeBalls Price = 1000 BattleUse = OnFoe Flags = PokeBall @@ -2536,7 +1333,7 @@ Description = A quite rare Poké Ball that has been specially crafted to commemo [FASTBALL] Name = Fast Ball NamePlural = Fast Balls -Pocket = 3 +Pocket = PokeBalls Price = 300 BattleUse = OnFoe Flags = PokeBall @@ -2545,7 +1342,7 @@ Description = A Poké Ball that makes it easier to catch fast Pokémon. [LEVELBALL] Name = Level Ball NamePlural = Level Balls -Pocket = 3 +Pocket = PokeBalls Price = 300 BattleUse = OnFoe Flags = PokeBall @@ -2554,7 +1351,7 @@ Description = A Poké Ball for catching Pokémon that are a lower level than you [LUREBALL] Name = Lure Ball NamePlural = Lure Balls -Pocket = 3 +Pocket = PokeBalls Price = 300 BattleUse = OnFoe Flags = PokeBall @@ -2563,7 +1360,7 @@ Description = A Poké Ball for catching Pokémon hooked by a Rod when fishing. [HEAVYBALL] Name = Heavy Ball NamePlural = Heavy Balls -Pocket = 3 +Pocket = PokeBalls Price = 300 BattleUse = OnFoe Flags = PokeBall @@ -2572,7 +1369,7 @@ Description = A Poké Ball for catching very heavy Pokémon. [LOVEBALL] Name = Love Ball NamePlural = Love Balls -Pocket = 3 +Pocket = PokeBalls Price = 300 BattleUse = OnFoe Flags = PokeBall @@ -2581,7 +1378,7 @@ Description = A Poké Ball for catching Pokémon that are the opposite gender of [FRIENDBALL] Name = Friend Ball NamePlural = Friend Balls -Pocket = 3 +Pocket = PokeBalls Price = 300 BattleUse = OnFoe Flags = PokeBall @@ -2590,1020 +1387,16 @@ Description = A Poké Ball that makes caught Pokémon more friendly. [MOONBALL] Name = Moon Ball NamePlural = Moon Balls -Pocket = 3 +Pocket = PokeBalls Price = 300 BattleUse = OnFoe Flags = PokeBall Description = A Poké Ball for catching Pokémon that evolve using the Moon Stone. #------------------------------- -[TM01] -Name = TM01 -NamePlural = TM01s -Pocket = 4 -Price = 3000 -BPPrice = 6 -FieldUse = TM -Move = HONECLAWS -Description = The user sharpens its claws to boost its Attack stat and accuracy. -#------------------------------- -[TM02] -Name = TM02 -NamePlural = TM02s -Pocket = 4 -Price = 3000 -BPPrice = 6 -FieldUse = TM -Move = DRAGONCLAW -Description = The user slashes the target with huge, sharp claws. -#------------------------------- -[TM03] -Name = TM03 -NamePlural = TM03s -Pocket = 4 -Price = 3000 -BPPrice = 6 -FieldUse = TM -Move = PSYSHOCK -Description = The user materializes an odd psychic wave to attack the target. This attack does physical damage. -#------------------------------- -[TM04] -Name = TM04 -NamePlural = TM04s -Pocket = 4 -Price = 1500 -BPPrice = 6 -FieldUse = TM -Move = CALMMIND -Description = The user quietly focuses its mind and calms its spirit to raise its Sp. Atk and Sp. Def stats. -#------------------------------- -[TM05] -Name = TM05 -NamePlural = TM05s -Pocket = 4 -Price = 1000 -BPPrice = 6 -FieldUse = TM -Move = ROAR -Description = The target is scared off and replaced by another Pokémon in its party. In the wild, the battle ends. -#------------------------------- -[TM06] -Name = TM06 -NamePlural = TM06s -Pocket = 4 -Price = 3000 -BPPrice = 6 -FieldUse = TM -Move = TOXIC -Description = A move that leaves the target badly poisoned. Its poison damage worsens every turn. -#------------------------------- -[TM07] -Name = TM07 -NamePlural = TM07s -Pocket = 4 -Price = 3000 -BPPrice = 6 -FieldUse = TM -Move = HAIL -Description = Summons a hailstorm that lasts for five turns. The hailstorm damages all types except Ice. -#------------------------------- -[TM08] -Name = TM08 -NamePlural = TM08s -Pocket = 4 -Price = 1500 -BPPrice = 6 -FieldUse = TM -Move = BULKUP -Description = The user tenses its muscles to bulk up its body, boosting both its Attack and Defense stats. -#------------------------------- -[TM09] -Name = TM09 -NamePlural = TM09s -Pocket = 4 -Price = 2000 -BPPrice = 6 -FieldUse = TM -Move = VENOSHOCK -Description = The user drenches the target in a special poisonous liquid. Its power is doubled if the target is poisoned. -#------------------------------- -[TM10] -Name = TM10 -NamePlural = TM10s -Pocket = 4 -Price = 2000 -BPPrice = 18 -FieldUse = TM -Move = HIDDENPOWER -Description = A unique attack that varies in type and intensity depending on the Pokémon using it. -#------------------------------- -[TM11] -Name = TM11 -NamePlural = TM11s -Pocket = 4 -Price = 2000 -BPPrice = 6 -FieldUse = TM -Move = SUNNYDAY -Description = The user intensifies the sun for five turns, powering up Fire-type moves. -#------------------------------- -[TM12] -Name = TM12 -NamePlural = TM12s -Pocket = 4 -Price = 1500 -BPPrice = 6 -FieldUse = TM -Move = TAUNT -Description = The target is taunted into a rage that allows it to use only attack moves for three turns. -#------------------------------- -[TM13] -Name = TM13 -NamePlural = TM13s -Pocket = 4 -Price = 3000 -BPPrice = 6 -FieldUse = TM -Move = ICEBEAM -Description = The target is struck with an icy-cold beam of energy. It may also freeze the target solid. -#------------------------------- -[TM14] -Name = TM14 -NamePlural = TM14s -Pocket = 4 -Price = 5500 -BPPrice = 6 -FieldUse = TM -Move = BLIZZARD -Description = A howling blizzard is summoned to strike the opposing team. It may also freeze them solid. -#------------------------------- -[TM15] -Name = TM15 -NamePlural = TM15s -Pocket = 4 -Price = 7500 -BPPrice = 6 -FieldUse = TM -Move = HYPERBEAM -Description = The target is attacked with a powerful beam. The user must rest on the next turn to regain its energy. -#------------------------------- -[TM16] -Name = TM16 -NamePlural = TM16s -Pocket = 4 -Price = 2000 -BPPrice = 6 -FieldUse = TM -Move = LIGHTSCREEN -Description = A wondrous wall of light is put up to suppress damage from special attacks for five turns. -#------------------------------- -[TM17] -Name = TM17 -NamePlural = TM17s -Pocket = 4 -Price = 2000 -BPPrice = 6 -FieldUse = TM -Move = PROTECT -Description = It enables the user to evade all attacks. Its chance of failing rises if it is used in succession. -#------------------------------- -[TM18] -Name = TM18 -NamePlural = TM18s -Pocket = 4 -Price = 2000 -BPPrice = 6 -FieldUse = TM -Move = RAINDANCE -Description = The user summons a heavy rain that falls for five turns, powering up Water-type moves. -#------------------------------- -[TM19] -Name = TM19 -NamePlural = TM19s -Pocket = 4 -Price = 3000 -BPPrice = 6 -FieldUse = TM -Move = TELEKINESIS -Description = The user makes the target float with its psychic power. The target is easier to hit for three turns. -#------------------------------- -[TM20] -Name = TM20 -NamePlural = TM20s -Pocket = 4 -Price = 2000 -BPPrice = 6 -FieldUse = TM -Move = SAFEGUARD -Description = The user creates a protective field that prevents status problems for five turns. -#------------------------------- -[TM21] -Name = TM21 -NamePlural = TM21s -Pocket = 4 -Price = 1000 -BPPrice = 6 -FieldUse = TM -Move = FRUSTRATION -Description = A full-power attack that grows more powerful the less the user likes its Trainer. -#------------------------------- -[TM22] -Name = TM22 -NamePlural = TM22s -Pocket = 4 -Price = 3000 -BPPrice = 6 -FieldUse = TM -Move = SOLARBEAM -Description = A two-turn attack. The user gathers light, then blasts a bundled beam on the second turn. -#------------------------------- -[TM23] -Name = TM23 -NamePlural = TM23s -Pocket = 4 -Price = 3000 -BPPrice = 18 -FieldUse = TM -Move = SMACKDOWN -Description = The user throws a stone or similar projectile to attack a foe. A flying Pokémon will fall to the ground if hit. -#------------------------------- -[TM24] -Name = TM24 -NamePlural = TM24s -Pocket = 4 -Price = 3000 -BPPrice = 6 -FieldUse = TM -Move = THUNDERBOLT -Description = A strong electric blast is loosed at the target. It may also leave the target with paralysis. -#------------------------------- -[TM25] -Name = TM25 -NamePlural = TM25s -Pocket = 4 -Price = 5500 -BPPrice = 6 -FieldUse = TM -Move = THUNDER -Description = A wicked thunderbolt is dropped on the target to inflict damage. It may also leave the target with paralysis. -#------------------------------- -[TM26] -Name = TM26 -NamePlural = TM26s -Pocket = 4 -Price = 3000 -BPPrice = 6 -FieldUse = TM -Move = EARTHQUAKE -Description = The user sets off an earthquake that strikes every Pokémon around it. -#------------------------------- -[TM27] -Name = TM27 -NamePlural = TM27s -Pocket = 4 -Price = 1000 -BPPrice = 6 -FieldUse = TM -Move = RETURN -Description = A full-power attack that grows more powerful the more the user likes its Trainer. -#------------------------------- -[TM28] -Name = TM28 -NamePlural = TM28s -Pocket = 4 -Price = 2000 -BPPrice = 6 -FieldUse = TM -Move = DIG -Description = The user burrows, then attacks on the second turn. It can also be used to exit dungeons. -#------------------------------- -[TM29] -Name = TM29 -NamePlural = TM29s -Pocket = 4 -Price = 3000 -BPPrice = 6 -FieldUse = TM -Move = PSYCHIC -Description = The target is hit by a strong telekinetic force. It may also reduce the target's Sp. Def stat. -#------------------------------- -[TM30] -Name = TM30 -NamePlural = TM30s -Pocket = 4 -Price = 3000 -BPPrice = 6 -FieldUse = TM -Move = SHADOWBALL -Description = The user hurls a shadowy blob at the target. It may also lower the target's Sp. Def stat. -#------------------------------- -[TM31] -Name = TM31 -NamePlural = TM31s -Pocket = 4 -Price = 3000 -BPPrice = 12 -FieldUse = TM -Move = BRICKBREAK -Description = The user attacks with tough fists, etc. It can also break any barrier such as Light Screen and Reflect. -#------------------------------- -[TM32] -Name = TM32 -NamePlural = TM32s -Pocket = 4 -Price = 1000 -BPPrice = 6 -FieldUse = TM -Move = DOUBLETEAM -Description = By moving rapidly, the user makes illusory copies of itself to raise its evasiveness. -#------------------------------- -[TM33] -Name = TM33 -NamePlural = TM33s -Pocket = 4 -Price = 2000 -BPPrice = 6 -FieldUse = TM -Move = REFLECT -Description = A wondrous wall of light is put up to suppress damage from physical attacks for five turns. -#------------------------------- -[TM34] -Name = TM34 -NamePlural = TM34s -Pocket = 4 -Price = 3000 -BPPrice = 24 -FieldUse = TM -Move = SLUDGEWAVE -Description = It swamps the area around the user with a giant sludge wave. It may also poison those hit. -#------------------------------- -[TM35] -Name = TM35 -NamePlural = TM35s -Pocket = 4 -Price = 3000 -BPPrice = 6 -FieldUse = TM -Move = FLAMETHROWER -Description = The target is scorched with an intense blast of fire. It may also leave the target with a burn. -#------------------------------- -[TM36] -Name = TM36 -NamePlural = TM36s -Pocket = 4 -Price = 3000 -BPPrice = 6 -FieldUse = TM -Move = SLUDGEBOMB -Description = Unsanitary sludge is hurled at the target. It may also poison the target. -#------------------------------- -[TM37] -Name = TM37 -NamePlural = TM37s -Pocket = 4 -Price = 2000 -BPPrice = 6 -FieldUse = TM -Move = SANDSTORM -Description = A five-turn sandstorm is summoned to hurt all combatants except the Rock, Ground, and Steel types. -#------------------------------- -[TM38] -Name = TM38 -NamePlural = TM38s -Pocket = 4 -Price = 5500 -BPPrice = 6 -FieldUse = TM -Move = FIREBLAST -Description = The foe is attacked with an intense blast of all-consuming fire. It may also leave the target with a burn. -#------------------------------- -[TM39] -Name = TM39 -NamePlural = TM39s -Pocket = 4 -Price = 2000 -BPPrice = 6 -FieldUse = TM -Move = ROCKTOMB -Description = Boulders are hurled at the target. It also lowers the target's Speed by preventing its movement. -#------------------------------- -[TM40] -Name = TM40 -NamePlural = TM40s -Pocket = 4 -Price = 3000 -BPPrice = 6 -FieldUse = TM -Move = AERIALACE -Description = The user confounds the target with speed, then slashes. The attack lands without fail. -#------------------------------- -[TM41] -Name = TM41 -NamePlural = TM41s -Pocket = 4 -Price = 1500 -BPPrice = 6 -FieldUse = TM -Move = TORMENT -Description = The user torments and enrages the target, making it incapable of using the same move twice in a row. -#------------------------------- -[TM42] -Name = TM42 -NamePlural = TM42s -Pocket = 4 -Price = 3000 -BPPrice = 6 -FieldUse = TM -Move = FACADE -Description = An attack move that doubles its power if the user is poisoned, paralyzed, or has a burn. -#------------------------------- -[TM43] -Name = TM43 -NamePlural = TM43s -Pocket = 4 -Price = 2000 -BPPrice = 6 -FieldUse = TM -Move = FLAMECHARGE -Description = The user cloaks itself with flame and attacks. Building up more power, it raises the user's Speed stat. -#------------------------------- -[TM44] -Name = TM44 -NamePlural = TM44s -Pocket = 4 -Price = 3000 -BPPrice = 6 -FieldUse = TM -Move = REST -Description = The user goes to sleep for two turns. It fully restores the user's HP and heals any status problem. -#------------------------------- -[TM45] -Name = TM45 -NamePlural = TM45s -Pocket = 4 -Price = 3000 -BPPrice = 6 -FieldUse = TM -Move = ATTRACT -Description = If it is the opposite gender of the user, the target becomes infatuated and less likely to attack. -#------------------------------- -[TM46] -Name = TM46 -NamePlural = TM46s -Pocket = 4 -Price = 2000 -BPPrice = 6 -FieldUse = TM -Move = THIEF -Description = The user attacks and steals the target's held item simultaneously. It can't steal if the user holds an item. -#------------------------------- -[TM47] -Name = TM47 -NamePlural = TM47s -Pocket = 4 -Price = 3000 -BPPrice = 6 -FieldUse = TM -Move = LOWSWEEP -Description = The user attacks the target's legs swiftly, reducing the target's Speed stat. -#------------------------------- -[TM48] -Name = TM48 -NamePlural = TM48s -Pocket = 4 -Price = 3000 -BPPrice = 18 -FieldUse = TM -Move = ROUND -Description = The user attacks the target with a song. Others can join in the Round to increase the power of the attack. -#------------------------------- -[TM49] -Name = TM49 -NamePlural = TM49s -Pocket = 4 -Price = 1500 -BPPrice = 6 -FieldUse = TM -Move = ECHOEDVOICE -Description = The user attacks the target with an echoing voice. If this move is used every turn, it does greater damage. -#------------------------------- -[TM50] -Name = TM50 -NamePlural = TM50s -Pocket = 4 -Price = 5500 -BPPrice = 6 -FieldUse = TM -Move = OVERHEAT -Description = The user attacks the target at full power. The attack's recoil sharply reduces the user's Sp. Atk stat. -#------------------------------- -[TM51] -Name = TM51 -NamePlural = TM51s -Pocket = 4 -Price = 1000 -BPPrice = 24 -FieldUse = TM -Move = ALLYSWITCH -Description = The user teleports using a strange power and switches its place with one of its allies. -#------------------------------- -[TM52] -Name = TM52 -NamePlural = TM52s -Pocket = 4 -Price = 5500 -BPPrice = 6 -FieldUse = TM -Move = FOCUSBLAST -Description = The user heightens its mental focus and unleashes its power. It may also lower the target's Sp. Def. -#------------------------------- -[TM53] -Name = TM53 -NamePlural = TM53s -Pocket = 4 -Price = 3000 -BPPrice = 6 -FieldUse = TM -Move = ENERGYBALL -Description = The user draws power from nature and fires it at the target. It may also lower the target's Sp. Def. -#------------------------------- -[TM54] -Name = TM54 -NamePlural = TM54s -Pocket = 4 -Price = 2000 -BPPrice = 6 -FieldUse = TM -Move = FALSESWIPE -Description = A restrained attack that prevents the target from fainting. The target is left with at least 1 HP. -#------------------------------- -[TM55] -Name = TM55 -NamePlural = TM55s -Pocket = 4 -Price = 3000 -BPPrice = 6 -FieldUse = TM -Move = SCALD -Description = The user shoots boiling hot water at its target. It may also leave the target with a burn. -#------------------------------- -[TM56] -Name = TM56 -NamePlural = TM56s -Pocket = 4 -Price = 2000 -BPPrice = 6 -FieldUse = TM -Move = FLING -Description = The user flings its held item at the target as an attack. Its power and effects depend on the item. -#------------------------------- -[TM57] -Name = TM57 -NamePlural = TM57s -Pocket = 4 -Price = 3000 -BPPrice = 6 -FieldUse = TM -Move = CHARGEBEAM -Description = The user fires a concentrated bundle of electricity. It may also raise the user's Sp. Atk stat. -#------------------------------- -[TM58] -Name = TM58 -NamePlural = TM58s -Pocket = 4 -Price = 2000 -BPPrice = 6 -FieldUse = TM -Move = SKYDROP -Description = The user hurls the foe into the sky, then drops it on the next turn. The foe cannot attack while in the sky. -#------------------------------- -[TM59] -Name = TM59 -NamePlural = TM59s -Pocket = 4 -Price = 1500 -BPPrice = 6 -FieldUse = TM -Move = INCINERATE -Description = The user attacks the target with fire. If the target is holding a Berry, it becomes burnt up and unusable. -#------------------------------- -[TM60] -Name = TM60 -NamePlural = TM60s -Pocket = 4 -Price = 3000 -BPPrice = 24 -FieldUse = TM -Move = QUASH -Description = The user suppresses the target and makes its move go last. -#------------------------------- -[TM61] -Name = TM61 -NamePlural = TM61s -Pocket = 4 -Price = 2000 -BPPrice = 6 -FieldUse = TM -Move = WILLOWISP -Description = The user shoots a sinister, bluish-white flame at the target to inflict a burn. -#------------------------------- -[TM62] -Name = TM62 -NamePlural = TM62s -Pocket = 4 -Price = 3000 -BPPrice = 6 -FieldUse = TM -Move = ACROBATICS -Description = The user nimbly strikes the target. If the user is not holding an item, this attack inflicts massive damage. -#------------------------------- -[TM63] -Name = TM63 -NamePlural = TM63s -Pocket = 4 -Price = 2000 -BPPrice = 6 -FieldUse = TM -Move = EMBARGO -Description = It prevents the target from using its held item. Its Trainer is also prevented from using items on it. -#------------------------------- -[TM64] -Name = TM64 -NamePlural = TM64s -Pocket = 4 -Price = 7500 -BPPrice = 24 -FieldUse = TM -Move = EXPLOSION -Description = The user explodes to inflict damage on those around it. The user faints upon using this move. -#------------------------------- -[TM65] -Name = TM65 -NamePlural = TM65s -Pocket = 4 -Price = 3000 -BPPrice = 6 -FieldUse = TM -Move = SHADOWCLAW -Description = The user slashes with a sharp claw made from shadows. It has a high critical-hit ratio. -#------------------------------- -[TM66] -Name = TM66 -NamePlural = TM66s -Pocket = 4 -Price = 3000 -BPPrice = 6 -FieldUse = TM -Move = PAYBACK -Description = The user stores power, then attacks. If the user can use this attack after the foe, its power is doubled. -#------------------------------- -[TM67] -Name = TM67 -NamePlural = TM67s -Pocket = 4 -Price = 1000 -BPPrice = 6 -FieldUse = TM -Move = RETALIATE -Description = The user gets revenge for a fainted ally. If an ally fainted in the last turn, this move's power is increased. -#------------------------------- -[TM68] -Name = TM68 -NamePlural = TM68s -Pocket = 4 -Price = 7500 -BPPrice = 6 -FieldUse = TM -Move = GIGAIMPACT -Description = The user charges at the target using every bit of its power. The user must rest on the next turn. -#------------------------------- -[TM69] -Name = TM69 -NamePlural = TM69s -Pocket = 4 -Price = 1500 -BPPrice = 6 -FieldUse = TM -Move = ROCKPOLISH -Description = The user polishes its body to reduce drag. It sharply raises the Speed stat. -#------------------------------- -[TM70] -Name = TM70 -NamePlural = TM70s -Pocket = 4 -Price = 1000 -BPPrice = 6 -FieldUse = TM -Move = FLASH -Description = The user flashes a bright light that cuts the target's accuracy. It can also be used to illuminate caves. -#------------------------------- -[TM71] -Name = TM71 -NamePlural = TM71s -Pocket = 4 -Price = 3000 -BPPrice = 6 -FieldUse = TM -Move = STONEEDGE -Description = The user stabs the foe with sharpened stones from below. It has a high critical-hit ratio. -#------------------------------- -[TM72] -Name = TM72 -NamePlural = TM72s -Pocket = 4 -Price = 3000 -BPPrice = 6 -FieldUse = TM -Move = VOLTSWITCH -Description = After making its attack, the user rushes back to switch places with a party Pokémon in waiting. -#------------------------------- -[TM73] -Name = TM73 -NamePlural = TM73s -Pocket = 4 -Price = 2000 -BPPrice = 6 -FieldUse = TM -Move = THUNDERWAVE -Description = A weak electric charge is launched at the target. It causes paralysis if it hits. -#------------------------------- -[TM74] -Name = TM74 -NamePlural = TM74s -Pocket = 4 -Price = 3000 -BPPrice = 6 -FieldUse = TM -Move = GYROBALL -Description = The user tackles the target with a high-speed spin. The slower the user, the greater the damage. -#------------------------------- -[TM75] -Name = TM75 -NamePlural = TM75s -Pocket = 4 -Price = 1500 -BPPrice = 18 -FieldUse = TM -Move = SWORDSDANCE -Description = A frenetic dance to uplift the fighting spirit. It sharply raises the user's Attack stat. -#------------------------------- -[TM76] -Name = TM76 -NamePlural = TM76s -Pocket = 4 -Price = 2000 -BPPrice = 6 -FieldUse = TM -Move = STRUGGLEBUG -Description = Resisting, the user attacks the opposing Pokémon. The targets' Sp. Atk stat is reduced. -#------------------------------- -[TM77] -Name = TM77 -NamePlural = TM77s -Pocket = 4 -Price = 1500 -BPPrice = 24 -FieldUse = TM -Move = PSYCHUP -Description = The user hypnotizes itself into copying any stat change made by the target. -#------------------------------- -[TM78] -Name = TM78 -NamePlural = TM78s -Pocket = 4 -Price = 1500 -BPPrice = 6 -FieldUse = TM -Move = BULLDOZE -Description = The user stomps down on the ground and attacks everything in the area. The targets' Speed stat is reduced. -#------------------------------- -[TM79] -Name = TM79 -NamePlural = TM79s -Pocket = 4 -Price = 3000 -BPPrice = 12 -FieldUse = TM -Move = FROSTBREATH -Description = The user blows a cold breath on the target. This attack always results in a critical hit. -#------------------------------- -[TM80] -Name = TM80 -NamePlural = TM80s -Pocket = 4 -Price = 3000 -BPPrice = 6 -FieldUse = TM -Move = ROCKSLIDE -Description = Large boulders are hurled at the opposing team to inflict damage. They may also make the targets flinch. -#------------------------------- -[TM81] -Name = TM81 -NamePlural = TM81s -Pocket = 4 -Price = 3000 -BPPrice = 6 -FieldUse = TM -Move = XSCISSOR -Description = The user slashes at the target by crossing its scythes or claws as if they were a pair of scissors. -#------------------------------- -[TM82] -Name = TM82 -NamePlural = TM82s -Pocket = 4 -Price = 1000 -BPPrice = 6 -FieldUse = TM -Move = DRAGONTAIL -Description = The user knocks away the target and drags out another Pokémon in its party. In the wild, the battle ends. -#------------------------------- -[TM83] -Name = TM83 -NamePlural = TM83s -Pocket = 4 -Price = 2000 -BPPrice = 6 -FieldUse = TM -Move = WORKUP -Description = The user is roused, and its Attack and Sp. Atk stats increase. -#------------------------------- -[TM84] -Name = TM84 -NamePlural = TM84s -Pocket = 4 -Price = 3000 -BPPrice = 6 -FieldUse = TM -Move = POISONJAB -Description = The target is stabbed with a tentacle or arm steeped in poison. It may also poison the target. -#------------------------------- -[TM85] -Name = TM85 -NamePlural = TM85s -Pocket = 4 -Price = 3000 -BPPrice = 6 -FieldUse = TM -Move = DREAMEATER -Description = The user eats the dreams of a sleeping target. It absorbs half the damage caused to heal the user's HP. -#------------------------------- -[TM86] -Name = TM86 -NamePlural = TM86s -Pocket = 4 -Price = 3000 -BPPrice = 6 -FieldUse = TM -Move = GRASSKNOT -Description = The user snares the target with grass and trips it. The heavier the target, the greater the damage. -#------------------------------- -[TM87] -Name = TM87 -NamePlural = TM87s -Pocket = 4 -Price = 1500 -BPPrice = 18 -FieldUse = TM -Move = SWAGGER -Description = The user enrages and confuses the target. However, it also sharply raises the target's Attack stat. -#------------------------------- -[TM88] -Name = TM88 -NamePlural = TM88s -Pocket = 4 -Price = 3000 -BPPrice = 18 -FieldUse = TM -Move = PLUCK -Description = The user pecks the target. If the target is holding a Berry, the user plucks it and gains its effect. -#------------------------------- -[TM89] -Name = TM89 -NamePlural = TM89s -Pocket = 4 -Price = 3000 -BPPrice = 12 -FieldUse = TM -Move = UTURN -Description = After making its attack, the user rushes back to switch places with a party Pokémon in waiting. -#------------------------------- -[TM90] -Name = TM90 -NamePlural = TM90s -Pocket = 4 -Price = 2000 -BPPrice = 6 -FieldUse = TM -Move = SUBSTITUTE -Description = The user makes a copy of itself using some of its HP. The copy serves as the user's decoy. -#------------------------------- -[TM91] -Name = TM91 -NamePlural = TM91s -Pocket = 4 -Price = 3000 -BPPrice = 6 -FieldUse = TM -Move = FLASHCANNON -Description = The user gathers all its light energy and releases it at once. It may also lower the target's Sp. Def stat. -#------------------------------- -[TM92] -Name = TM92 -NamePlural = TM92s -Pocket = 4 -Price = 5500 -BPPrice = 6 -FieldUse = TM -Move = TRICKROOM -Description = The user creates a bizarre space in which slower Pokémon get to move first for five turns. -#------------------------------- -[TM93] -Name = TM93 -NamePlural = TM93s -Pocket = 4 -Price = 3000 -BPPrice = 6 -FieldUse = TM -Move = WILDCHARGE -Description = The user shrouds itself in electricity and smashes into its target. It also damages the user a little. -#------------------------------- -[TM94] -Name = TM94 -NamePlural = TM94s -Pocket = 4 -Price = 1000 -BPPrice = 6 -FieldUse = TM -Move = ROCKSMASH -Description = The user attacks with a punch that can shatter a rock. It may also lower the target's Defense stat. -#------------------------------- -[TM95] -Name = TM95 -NamePlural = TM95s -Pocket = 4 -Price = 3000 -BPPrice = 6 -FieldUse = TM -Move = SNARL -Description = The user yells as if it is ranting about something, making the target's Sp. Atk stat decrease. -#------------------------------- -[HM01] -Name = HM01 -NamePlural = HM01s -Pocket = 4 -Price = 0 -FieldUse = HM -Move = CUT -Description = The target is cut with a scythe or claw. It can also be used to cut down thin trees. -#------------------------------- -[HM02] -Name = HM02 -NamePlural = HM02s -Pocket = 4 -Price = 0 -FieldUse = HM -Move = FLY -Description = The user soars, then strikes on the second turn. It can also be used to fly to any familiar town. -#------------------------------- -[HM03] -Name = HM03 -NamePlural = HM03s -Pocket = 4 -Price = 0 -FieldUse = HM -Move = SURF -Description = It swamps the area around the user with a giant wave. It can also be used for crossing water. -#------------------------------- -[HM04] -Name = HM04 -NamePlural = HM04s -Pocket = 4 -Price = 0 -FieldUse = HM -Move = STRENGTH -Description = The target is slugged with a punch thrown at maximum power. This move can also be used to move boulders. -#------------------------------- -[HM05] -Name = HM05 -NamePlural = HM05s -Pocket = 4 -Price = 0 -FieldUse = HM -Move = WATERFALL -Description = The user charges the target at an awesome speed. It can also be used to climb a waterfall. -#------------------------------- -[HM06] -Name = HM06 -NamePlural = HM06s -Pocket = 4 -Price = 0 -FieldUse = HM -Move = DIVE -Description = The user dives on the first turn, and floats up and attacks on the second. It can be used to dive in the ocean. -#------------------------------- [CHERIBERRY] Name = Cheri Berry NamePlural = Cheri Berries -Pocket = 5 +Pocket = Berries Price = 20 FieldUse = OnPokemon BattleUse = OnPokemon @@ -3613,7 +1406,7 @@ Description = It may be used or held by a Pokémon to recover from paralysis. [CHESTOBERRY] Name = Chesto Berry NamePlural = Chesto Berries -Pocket = 5 +Pocket = Berries Price = 20 FieldUse = OnPokemon BattleUse = OnPokemon @@ -3623,7 +1416,7 @@ Description = It may be used or held by a Pokémon to recover from sleep. [PECHABERRY] Name = Pecha Berry NamePlural = Pecha Berries -Pocket = 5 +Pocket = Berries Price = 20 FieldUse = OnPokemon BattleUse = OnPokemon @@ -3633,7 +1426,7 @@ Description = It may be used or held by a Pokémon to recover from poison. [RAWSTBERRY] Name = Rawst Berry NamePlural = Rawst Berries -Pocket = 5 +Pocket = Berries Price = 20 FieldUse = OnPokemon BattleUse = OnPokemon @@ -3643,7 +1436,7 @@ Description = It may be used or held by a Pokémon to recover from a burn. [ASPEARBERRY] Name = Aspear Berry NamePlural = Aspear Berries -Pocket = 5 +Pocket = Berries Price = 20 FieldUse = OnPokemon BattleUse = OnPokemon @@ -3653,7 +1446,7 @@ Description = It may be used or held by a Pokémon to defrost it. [LEPPABERRY] Name = Leppa Berry NamePlural = Leppa Berries -Pocket = 5 +Pocket = Berries Price = 20 FieldUse = OnPokemon BattleUse = OnMove @@ -3663,7 +1456,7 @@ Description = It may be used or held by a Pokémon to restore a move's PP by 10. [ORANBERRY] Name = Oran Berry NamePlural = Oran Berries -Pocket = 5 +Pocket = Berries Price = 20 FieldUse = OnPokemon BattleUse = OnPokemon @@ -3673,7 +1466,7 @@ Description = It may be used or held by a Pokémon to heal the user by just 10 H [PERSIMBERRY] Name = Persim Berry NamePlural = Persim Berries -Pocket = 5 +Pocket = Berries Price = 20 BattleUse = OnBattler Flags = Berry,Fling_10,NaturalGift_GROUND_60 @@ -3682,7 +1475,7 @@ Description = It may be used or held by a Pokémon to recover from confusion. [LUMBERRY] Name = Lum Berry NamePlural = Lum Berries -Pocket = 5 +Pocket = Berries Price = 20 FieldUse = OnPokemon BattleUse = OnPokemon @@ -3692,7 +1485,7 @@ Description = It may be used or held by a Pokémon to recover from any status pr [SITRUSBERRY] Name = Sitrus Berry NamePlural = Sitrus Berries -Pocket = 5 +Pocket = Berries Price = 20 FieldUse = OnPokemon BattleUse = OnPokemon @@ -3702,7 +1495,7 @@ Description = It may be used or held by a Pokémon to heal the user's HP a littl [FIGYBERRY] Name = Figy Berry NamePlural = Figy Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_BUG_60 Description = If held by a Pokémon, it restores the user's HP in a pinch, but will cause confusion if it hates the taste. @@ -3710,7 +1503,7 @@ Description = If held by a Pokémon, it restores the user's HP in a pinch, but w [WIKIBERRY] Name = Wiki Berry NamePlural = Wiki Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_ROCK_60 Description = If held by a Pokémon, it restores the user's HP in a pinch, but will cause confusion if it hates the taste. @@ -3718,7 +1511,7 @@ Description = If held by a Pokémon, it restores the user's HP in a pinch, but w [MAGOBERRY] Name = Mago Berry NamePlural = Mago Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_GHOST_60 Description = If held by a Pokémon, it restores the user's HP in a pinch, but will cause confusion if it hates the taste. @@ -3726,7 +1519,7 @@ Description = If held by a Pokémon, it restores the user's HP in a pinch, but w [AGUAVBERRY] Name = Aguav Berry NamePlural = Aguav Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_DRAGON_60 Description = If held by a Pokémon, it restores the user's HP in a pinch, but will cause confusion if it hates the taste. @@ -3734,7 +1527,7 @@ Description = If held by a Pokémon, it restores the user's HP in a pinch, but w [IAPAPABERRY] Name = Iapapa Berry NamePlural = Iapapa Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_DARK_60 Description = If held by a Pokémon, it restores the user's HP in a pinch, but will cause confusion if it hates the taste. @@ -3742,7 +1535,7 @@ Description = If held by a Pokémon, it restores the user's HP in a pinch, but w [RAZZBERRY] Name = Razz Berry NamePlural = Razz Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_STEEL_60 Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry. @@ -3750,7 +1543,7 @@ Description = In the Sinnoh region, they like to make sweets known as Poffins wi [BLUKBERRY] Name = Bluk Berry NamePlural = Bluk Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_FIRE_70 Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry. @@ -3758,7 +1551,7 @@ Description = In the Sinnoh region, they like to make sweets known as Poffins wi [NANABBERRY] Name = Nanab Berry NamePlural = Nanab Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_WATER_70 Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry. @@ -3766,7 +1559,7 @@ Description = In the Sinnoh region, they like to make sweets known as Poffins wi [WEPEARBERRY] Name = Wepear Berry NamePlural = Wepear Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_ELECTRIC_70 Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry. @@ -3774,7 +1567,7 @@ Description = In the Sinnoh region, they like to make sweets known as Poffins wi [PINAPBERRY] Name = Pinap Berry NamePlural = Pinap Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_GRASS_70 Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry. @@ -3782,7 +1575,7 @@ Description = In the Sinnoh region, they like to make sweets known as Poffins wi [POMEGBERRY] Name = Pomeg Berry NamePlural = Pomeg Berries -Pocket = 5 +Pocket = Berries Price = 20 FieldUse = OnPokemon Flags = Berry,Fling_10,NaturalGift_ICE_70 @@ -3791,7 +1584,7 @@ Description = Using it on a Pokémon makes it more friendly, but it also lowers [KELPSYBERRY] Name = Kelpsy Berry NamePlural = Kelpsy Berries -Pocket = 5 +Pocket = Berries Price = 20 FieldUse = OnPokemon Flags = Berry,Fling_10,NaturalGift_FIGHTING_70 @@ -3800,7 +1593,7 @@ Description = Using it on a Pokémon makes it more friendly, but it also lowers [QUALOTBERRY] Name = Qualot Berry NamePlural = Qualot Berries -Pocket = 5 +Pocket = Berries Price = 20 FieldUse = OnPokemon Flags = Berry,Fling_10,NaturalGift_POISON_70 @@ -3809,7 +1602,7 @@ Description = Using it on a Pokémon makes it more friendly, but it also lowers [HONDEWBERRY] Name = Hondew Berry NamePlural = Hondew Berries -Pocket = 5 +Pocket = Berries Price = 20 FieldUse = OnPokemon Flags = Berry,Fling_10,NaturalGift_GROUND_70 @@ -3818,7 +1611,7 @@ Description = Using it on a Pokémon makes it more friendly, but it also lowers [GREPABERRY] Name = Grepa Berry NamePlural = Grepa Berries -Pocket = 5 +Pocket = Berries Price = 20 FieldUse = OnPokemon Flags = Berry,Fling_10,NaturalGift_FLYING_70 @@ -3827,7 +1620,7 @@ Description = Using it on a Pokémon makes it more friendly, but it also lowers [TAMATOBERRY] Name = Tamato Berry NamePlural = Tamato Berries -Pocket = 5 +Pocket = Berries Price = 20 FieldUse = OnPokemon Flags = Berry,Fling_10,NaturalGift_PSYCHIC_70 @@ -3836,7 +1629,7 @@ Description = Using it on a Pokémon makes it more friendly, but it also lowers [CORNNBERRY] Name = Cornn Berry NamePlural = Cornn Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_BUG_70 Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry. @@ -3844,7 +1637,7 @@ Description = In the Sinnoh region, they like to make sweets known as Poffins wi [MAGOSTBERRY] Name = Magost Berry NamePlural = Magost Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_ROCK_70 Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry. @@ -3852,7 +1645,7 @@ Description = In the Sinnoh region, they like to make sweets known as Poffins wi [RABUTABERRY] Name = Rabuta Berry NamePlural = Rabuta Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_GHOST_70 Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry. @@ -3860,7 +1653,7 @@ Description = In the Sinnoh region, they like to make sweets known as Poffins wi [NOMELBERRY] Name = Nomel Berry NamePlural = Nomel Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_DRAGON_70 Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry. @@ -3868,7 +1661,7 @@ Description = In the Sinnoh region, they like to make sweets known as Poffins wi [SPELONBERRY] Name = Spelon Berry NamePlural = Spelon Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_DARK_70 Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry. @@ -3876,7 +1669,7 @@ Description = In the Sinnoh region, they like to make sweets known as Poffins wi [PAMTREBERRY] Name = Pamtre Berry NamePlural = Pamtre Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_STEEL_70 Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry. @@ -3884,7 +1677,7 @@ Description = In the Sinnoh region, they like to make sweets known as Poffins wi [WATMELBERRY] Name = Watmel Berry NamePlural = Watmel Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_FIRE_80 Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry. @@ -3892,7 +1685,7 @@ Description = In the Sinnoh region, they like to make sweets known as Poffins wi [DURINBERRY] Name = Durin Berry NamePlural = Durin Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_WATER_80 Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry. @@ -3900,7 +1693,7 @@ Description = In the Sinnoh region, they like to make sweets known as Poffins wi [BELUEBERRY] Name = Belue Berry NamePlural = Belue Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_ELECTRIC_80 Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry. @@ -3908,7 +1701,7 @@ Description = In the Sinnoh region, they like to make sweets known as Poffins wi [OCCABERRY] Name = Occa Berry NamePlural = Occa Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_FIRE_60 Description = Weakens a supereffective Fire-type attack against the holding Pokémon. @@ -3916,7 +1709,7 @@ Description = Weakens a supereffective Fire-type attack against the holding Pok [PASSHOBERRY] Name = Passho Berry NamePlural = Passho Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_WATER_60 Description = Weakens a supereffective Water-type attack against the holding Pokémon. @@ -3924,7 +1717,7 @@ Description = Weakens a supereffective Water-type attack against the holding Pok [WACANBERRY] Name = Wacan Berry NamePlural = Wacan Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_ELECTRIC_60 Description = Weakens a supereffective Electric-type attack against the holding Pokémon. @@ -3932,7 +1725,7 @@ Description = Weakens a supereffective Electric-type attack against the holding [RINDOBERRY] Name = Rindo Berry NamePlural = Rindo Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_GRASS_60 Description = Weakens a supereffective Grass-type attack against the holding Pokémon. @@ -3940,7 +1733,7 @@ Description = Weakens a supereffective Grass-type attack against the holding Pok [YACHEBERRY] Name = Yache Berry NamePlural = Yache Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_ICE_60 Description = Weakens a supereffective Ice-type attack against the holding Pokémon. @@ -3948,7 +1741,7 @@ Description = Weakens a supereffective Ice-type attack against the holding Poké [CHOPLEBERRY] Name = Chople Berry NamePlural = Chople Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_FIGHTING_60 Description = Weakens a supereffective Fighting-type attack against the holding Pokémon. @@ -3956,7 +1749,7 @@ Description = Weakens a supereffective Fighting-type attack against the holding [KEBIABERRY] Name = Kebia Berry NamePlural = Kebia Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_POISON_60 Description = Weakens a supereffective Poison-type attack against the holding Pokémon. @@ -3964,7 +1757,7 @@ Description = Weakens a supereffective Poison-type attack against the holding Po [SHUCABERRY] Name = Shuca Berry NamePlural = Shuca Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_GROUND_60 Description = Weakens a supereffective Ground-type attack against the holding Pokémon. @@ -3972,7 +1765,7 @@ Description = Weakens a supereffective Ground-type attack against the holding Po [COBABERRY] Name = Coba Berry NamePlural = Coba Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_FLYING_60 Description = Weakens a supereffective Flying-type attack against the holding Pokémon. @@ -3980,7 +1773,7 @@ Description = Weakens a supereffective Flying-type attack against the holding Po [PAYAPABERRY] Name = Payapa Berry NamePlural = Payapa Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_PSYCHIC_60 Description = Weakens a supereffective Psychic-type attack against the holding Pokémon. @@ -3988,7 +1781,7 @@ Description = Weakens a supereffective Psychic-type attack against the holding P [TANGABERRY] Name = Tanga Berry NamePlural = Tanga Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_BUG_60 Description = Weakens a supereffective Bug-type attack against the holding Pokémon. @@ -3996,7 +1789,7 @@ Description = Weakens a supereffective Bug-type attack against the holding Poké [CHARTIBERRY] Name = Charti Berry NamePlural = Charti Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_ROCK_60 Description = Weakens a supereffective Rock-type attack against the holding Pokémon. @@ -4004,7 +1797,7 @@ Description = Weakens a supereffective Rock-type attack against the holding Pok [KASIBBERRY] Name = Kasib Berry NamePlural = Kasib Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_GHOST_60 Description = Weakens a supereffective Ghost-type attack against the holding Pokémon. @@ -4012,7 +1805,7 @@ Description = Weakens a supereffective Ghost-type attack against the holding Pok [HABANBERRY] Name = Haban Berry NamePlural = Haban Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_DRAGON_60 Description = Weakens a supereffective Dragon-type attack against the holding Pokémon. @@ -4020,7 +1813,7 @@ Description = Weakens a supereffective Dragon-type attack against the holding Po [COLBURBERRY] Name = Colbur Berry NamePlural = Colbur Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_DARK_60 Description = Weakens a supereffective Dark-type attack against the holding Pokémon. @@ -4028,7 +1821,7 @@ Description = Weakens a supereffective Dark-type attack against the holding Pok [BABIRIBERRY] Name = Babiri Berry NamePlural = Babiri Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_STEEL_60 Description = Weakens a supereffective Steel-type attack against the holding Pokémon. @@ -4036,7 +1829,7 @@ Description = Weakens a supereffective Steel-type attack against the holding Pok [CHILANBERRY] Name = Chilan Berry NamePlural = Chilan Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_NORMAL_60 Description = Weakens a Normal-type attack against the Pokémon holding this berry. @@ -4044,7 +1837,7 @@ Description = Weakens a Normal-type attack against the Pokémon holding this ber [LIECHIBERRY] Name = Liechi Berry NamePlural = Liechi Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_GRASS_80 Description = If held by a Pokémon, it raises its Attack stat in a pinch. @@ -4052,7 +1845,7 @@ Description = If held by a Pokémon, it raises its Attack stat in a pinch. [GANLONBERRY] Name = Ganlon Berry NamePlural = Ganlon Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_ICE_80 Description = If held by a Pokémon, it raises its Defense stat in a pinch. @@ -4060,7 +1853,7 @@ Description = If held by a Pokémon, it raises its Defense stat in a pinch. [SALACBERRY] Name = Salac Berry NamePlural = Salac Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_FIGHTING_80 Description = If held by a Pokémon, it raises its Speed stat in a pinch. @@ -4068,7 +1861,7 @@ Description = If held by a Pokémon, it raises its Speed stat in a pinch. [PETAYABERRY] Name = Petaya Berry NamePlural = Petaya Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_POISON_80 Description = If held by a Pokémon, it raises its Sp. Atk stat in a pinch. @@ -4076,7 +1869,7 @@ Description = If held by a Pokémon, it raises its Sp. Atk stat in a pinch. [APICOTBERRY] Name = Apicot Berry NamePlural = Apicot Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_GROUND_80 Description = If held by a Pokémon, it raises its Sp. Def stat in a pinch. @@ -4084,7 +1877,7 @@ Description = If held by a Pokémon, it raises its Sp. Def stat in a pinch. [LANSATBERRY] Name = Lansat Berry NamePlural = Lansat Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_FLYING_80 Description = If held by a Pokémon, it raises its critical-hit ratio in a pinch. @@ -4092,7 +1885,7 @@ Description = If held by a Pokémon, it raises its critical-hit ratio in a pinch [STARFBERRY] Name = Starf Berry NamePlural = Starf Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_PSYCHIC_80 Description = If held by a Pokémon, it sharply raises one of its stats in a pinch. @@ -4100,7 +1893,7 @@ Description = If held by a Pokémon, it sharply raises one of its stats in a pin [ENIGMABERRY] Name = Enigma Berry NamePlural = Enigma Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_BUG_80 Description = If held by a Pokémon, it restores its HP if it is hit by any supereffective attack. @@ -4108,7 +1901,7 @@ Description = If held by a Pokémon, it restores its HP if it is hit by any supe [MICLEBERRY] Name = Micle Berry NamePlural = Micle Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_ROCK_80 Description = If held by a Pokémon, it raises the accuracy of a move just once in a pinch. @@ -4116,7 +1909,7 @@ Description = If held by a Pokémon, it raises the accuracy of a move just once [CUSTAPBERRY] Name = Custap Berry NamePlural = Custap Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_GHOST_80 Description = If held by a Pokémon, it gets to move first just once in a pinch. @@ -4124,7 +1917,7 @@ Description = If held by a Pokémon, it gets to move first just once in a pinch. [JABOCABERRY] Name = Jaboca Berry NamePlural = Jaboca Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_DRAGON_80 Description = If held by a Pokémon and a physical attack lands, the attacker also takes damage. @@ -4132,135 +1925,1338 @@ Description = If held by a Pokémon and a physical attack lands, the attacker al [ROWAPBERRY] Name = Rowap Berry NamePlural = Rowap Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_DARK_80 Description = If held by a Pokémon and a special attack lands, the attacker also takes damage. #------------------------------- -[GRASSMAIL] -Name = Grass Mail -NamePlural = Grass Mail -PortionName = piece of Grass Mail -PortionNamePlural = pieces of Grass Mail -Pocket = 6 -Price = 50 -Flags = IconMail -Description = Stationery featuring a print of a refreshingly green field. Let a Pokémon hold it for delivery. +[AIRBALLOON] +Name = Air Balloon +NamePlural = Air Balloons +Pocket = HeldItems +Price = 200 +BPPrice = 12 +Flags = Fling_10 +Description = An item to be held by a Pokémon. The holder will float in the air until hit. Once hit, this item will burst. #------------------------------- -[FLAMEMAIL] -Name = Flame Mail -NamePlural = Flame Mail -PortionName = piece of Flame Mail -PortionNamePlural = pieces of Flame Mail -Pocket = 6 -Price = 50 -Flags = IconMail -Description = Stationery featuring a print of flames in blazing red. Let a Pokémon hold it for delivery. +[BRIGHTPOWDER] +Name = Bright Powder +NamePlural = Bright Powders +PortionName = bag of Bright Powder +PortionNamePlural = bags of Bright Powder +Pocket = HeldItems +Price = 10 +BPPrice = 12 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It casts a tricky glare that lowers the opponent's accuracy. #------------------------------- -[BUBBLEMAIL] -Name = Bubble Mail -NamePlural = Bubble Mail -PortionName = piece of Bubble Mail -PortionNamePlural = pieces of Bubble Mail -Pocket = 6 -Price = 50 -Flags = IconMail -Description = Stationery featuring a print of a blue world underwater. Let a Pokémon hold it for delivery. +[EVIOLITE] +Name = Eviolite +NamePlural = Eviolites +Pocket = HeldItems +Price = 200 +BPPrice = 24 +Flags = Fling_40 +Description = A mysterious evolutionary lump. When held, it raises the Defense and Sp. Def if the holder can still evolve. #------------------------------- -[BLOOMMAIL] -Name = Bloom Mail -NamePlural = Bloom Mail -PortionName = piece of Bloom Mail -PortionNamePlural = pieces of Bloom Mail -Pocket = 6 -Price = 50 -Flags = IconMail -Description = Stationery featuring a print of pretty floral patterns. Let a Pokémon hold it for delivery. +[FLOATSTONE] +Name = Float Stone +NamePlural = Float Stones +Pocket = HeldItems +Price = 200 +BPPrice = 8 +Flags = Fling_30 +Description = A very light stone. It reduces the weight of a Pokémon when held. #------------------------------- -[TUNNELMAIL] -Name = Tunnel Mail -NamePlural = Tunnel Mail -PortionName = piece of Tunnel Mail -PortionNamePlural = pieces of Tunnel Mail -Pocket = 6 -Price = 50 -Flags = IconMail -Description = Stationery featuring a print of a dimly lit coal mine. Let a Pokémon hold it for delivery. +[DESTINYKNOT] +Name = Destiny Knot +NamePlural = Destiny Knots +Pocket = HeldItems +Price = 200 +BPPrice = 8 +Flags = Fling_10 +Description = A long, thin, bright-red string to be held by a Pokémon. If the holder becomes infatuated, so does the foe. #------------------------------- -[STEELMAIL] -Name = Steel Mail -NamePlural = Steel Mail -PortionName = piece of Steel Mail -PortionNamePlural = pieces of Steel Mail -Pocket = 6 -Price = 50 -Flags = IconMail -Description = Stationery featuring a print of cool mechanical designs. Let a Pokémon hold it for delivery. +[ROCKYHELMET] +Name = Rocky Helmet +NamePlural = Rocky Helmets +Pocket = HeldItems +Price = 200 +BPPrice = 24 +Flags = Fling_60 +Description = If the holder of this item takes damage, the attacker will also be damaged upon contact. #------------------------------- -[HEARTMAIL] -Name = Heart Mail -NamePlural = Heart Mail -PortionName = piece of Heart Mail -PortionNamePlural = pieces of Heart Mail -Pocket = 6 -Price = 50 -Flags = IconMail -Description = Stationery featuring a print of giant heart patterns. Let a Pokémon hold it for delivery. +[EJECTBUTTON] +Name = Eject Button +NamePlural = Eject Buttons +Pocket = HeldItems +Price = 200 +BPPrice = 16 +Flags = Fling_30 +Description = If the holder is hit by an attack, it will switch with another Pokémon in your party. #------------------------------- -[SNOWMAIL] -Name = Snow Mail -NamePlural = Snow Mail -PortionName = piece of Snow Mail -PortionNamePlural = pieces of Snow Mail -Pocket = 6 -Price = 50 -Flags = IconMail -Description = Stationery featuring a print of a chilly, snow-covered world. Let a Pokémon hold it for delivery. +[REDCARD] +Name = Red Card +NamePlural = Red Cards +Pocket = HeldItems +Price = 200 +BPPrice = 16 +Flags = Fling_10 +Description = A card with a mysterious power. When the holder is struck by a foe, the attacker is removed from battle. #------------------------------- -[SPACEMAIL] -Name = Space Mail -NamePlural = Space Mail -PortionName = piece of Space Mail -PortionNamePlural = pieces of Space Mail -Pocket = 6 -Price = 50 -Flags = IconMail -Description = Stationery featuring a print depicting the huge expanse of space. Let a Pokémon hold it for delivery. +[SHEDSHELL] +Name = Shed Shell +NamePlural = Shed Shells +Pocket = HeldItems +Price = 100 +Flags = Fling_10 +Description = An item to be held by a Pokémon. This discarded carapace lets the holder switch out of battle without fail. #------------------------------- -[AIRMAIL] -Name = Air Mail -NamePlural = Air Mail -PortionName = piece of Air Mail -PortionNamePlural = pieces of Air Mail -Pocket = 6 -Price = 50 -Flags = IconMail -Description = Stationery featuring a print of colorful letter sets. Let a Pokémon hold it for delivery. +[SMOKEBALL] +Name = Smoke Ball +NamePlural = Smoke Balls +Pocket = HeldItems +Price = 200 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It enables the holder to flee from any wild Pokémon without fail. #------------------------------- -[MOSAICMAIL] -Name = Mosaic Mail -NamePlural = Mosaic Mail -PortionName = piece of Mosaic Mail -PortionNamePlural = pieces of Mosaic Mail -Pocket = 6 -Price = 50 -Flags = IconMail -Description = Stationery featuring a print of a vivid rainbow pattern. Let a Pokémon hold it for delivery. +[LUCKYEGG] +Name = Lucky Egg +NamePlural = Lucky Eggs +Pocket = HeldItems +Price = 200 +BPPrice = 77 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It is an egg filled with happiness that earns extra Exp. Points in battle. #------------------------------- -[BRICKMAIL] -Name = Brick Mail -NamePlural = Brick Mail -PortionName = piece of Brick Mail -PortionNamePlural = pieces of Brick Mail -Pocket = 6 -Price = 50 -Flags = IconMail -Description = Stationery featuring a print of a tough-looking brick pattern. Let a Pokémon hold it for delivery. +[EXPSHARE] +Name = Exp. Share +NamePlural = Exp. Shares +Pocket = HeldItems +Price = 3000 +Flags = Fling_30 +Description = An item to be held by a Pokémon. The holder gets a share of a battle's Exp. Points without battling. +#------------------------------- +[AMULETCOIN] +Name = Amulet Coin +NamePlural = Amulet Coins +Pocket = HeldItems +Price = 100 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It doubles a battle's prize money if the holding Pokémon joins in. +#------------------------------- +[SOOTHEBELL] +Name = Soothe Bell +NamePlural = Soothe Bells +Pocket = HeldItems +Price = 100 +BPPrice = 8 +Flags = Fling_10 +Description = An item to be held by a Pokémon. The comforting chime of this bell calms the holder, making it friendly. +#------------------------------- +[CLEANSETAG] +Name = Cleanse Tag +NamePlural = Cleanse Tags +Pocket = HeldItems +Price = 200 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It helps keep wild Pokémon away if the holder is the first one in the party. +#------------------------------- +[CHOICEBAND] +Name = Choice Band +NamePlural = Choice Bands +Pocket = HeldItems +Price = 100 +BPPrice = 24 +Flags = Fling_10 +Description = An item to be held by a Pokémon. This headband ups Attack, but allows the use of only one move. +#------------------------------- +[CHOICESPECS] +Name = Choice Specs +NamePlural = Choice Specs +PortionName = pair of Choice Specs +PortionNamePlural = pairs of Choice Specs +Pocket = HeldItems +Price = 200 +BPPrice = 24 +Flags = Fling_10 +Description = An item to be held by a Pokémon. These curious glasses boost Sp. Atk but allows the use of only one move. +#------------------------------- +[CHOICESCARF] +Name = Choice Scarf +NamePlural = Choice Scarves +Pocket = HeldItems +Price = 200 +BPPrice = 24 +Flags = Fling_10 +Description = An item to be held by a Pokémon. This scarf boosts Speed but allows the use of only one move. +#------------------------------- +[HEATROCK] +Name = Heat Rock +NamePlural = Heat Rocks +Pocket = HeldItems +Price = 200 +BPPrice = 8 +Flags = Fling_60 +Description = A Pokémon held item that extends the duration of the move Sunny Day used by the holder. +#------------------------------- +[DAMPROCK] +Name = Damp Rock +NamePlural = Damp Rocks +Pocket = HeldItems +Price = 200 +BPPrice = 8 +Flags = Fling_60 +Description = A Pokémon held item that extends the duration of the move Rain Dance used by the holder. +#------------------------------- +[SMOOTHROCK] +Name = Smooth Rock +NamePlural = Smooth Rocks +Pocket = HeldItems +Price = 200 +BPPrice = 8 +Flags = Fling_10 +Description = A Pokémon held item that extends the duration of the move Sandstorm used by the holder. +#------------------------------- +[ICYROCK] +Name = Icy Rock +NamePlural = Icy Rocks +Pocket = HeldItems +Price = 200 +BPPrice = 8 +Flags = Fling_40 +Description = A Pokémon held item that extends the duration of the move Hail used by the holder. +#------------------------------- +[LIGHTCLAY] +Name = Light Clay +NamePlural = Light Clays +PortionName = lump of Light Clay +PortionNamePlural = lumps of Light Clay +Pocket = HeldItems +Price = 200 +BPPrice = 8 +Flags = Fling_30 +Description = An item to be held by a Pokémon. Protective moves like Light Screen and Reflect will be effective longer. +#------------------------------- +[GRIPCLAW] +Name = Grip Claw +NamePlural = Grip Claws +Pocket = HeldItems +Price = 200 +BPPrice = 8 +Flags = Fling_90 +Description = A Pokémon held item that extends the duration of multiturn attacks like Bind and Wrap. +#------------------------------- +[BINDINGBAND] +Name = Binding Band +NamePlural = Binding Bands +Pocket = HeldItems +Price = 200 +BPPrice = 8 +Flags = Fling_30 +Description = A band that increases the power of binding moves when held. +#------------------------------- +[BIGROOT] +Name = Big Root +NamePlural = Big Roots +Pocket = HeldItems +Price = 200 +BPPrice = 16 +Flags = Fling_10 +Description = A Pokémon held item that boosts the power of HP-stealing moves to let the holder recover more HP. +#------------------------------- +[BLACKSLUDGE] +Name = Black Sludge +NamePlural = Black Sludges +PortionName = blob of Black Sludge +PortionNamePlural = blobs of Black Sludge +Pocket = HeldItems +Price = 200 +BPPrice = 24 +Flags = Fling_30 +Description = A held item that gradually restores the HP of Poison-type Pokémon. It inflicts damage on all other types. +#------------------------------- +[LEFTOVERS] +Name = Leftovers +NamePlural = Leftovers +PortionName = serving of Leftovers +PortionNamePlural = servings of Leftovers +Pocket = HeldItems +Price = 200 +BPPrice = 24 +Flags = Fling_10 +Description = An item to be held by a Pokémon. The holder's HP is gradually restored during battle. +#------------------------------- +[SHELLBELL] +Name = Shell Bell +NamePlural = Shell Bells +Pocket = HeldItems +Price = 200 +BPPrice = 24 +Flags = Fling_30 +Description = An item to be held by a Pokémon. The holder's HP is restored a little every time it inflicts damage. +#------------------------------- +[MENTALHERB] +Name = Mental Herb +NamePlural = Mental Herbs +Pocket = HeldItems +Price = 100 +BPPrice = 16 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It snaps the holder out of infatuation. It can be used only once. +#------------------------------- +[WHITEHERB] +Name = White Herb +NamePlural = White Herbs +Pocket = HeldItems +Price = 100 +BPPrice = 16 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It restores any lowered stat in battle. It can be used only once. +#------------------------------- +[POWERHERB] +Name = Power Herb +NamePlural = Power Herbs +Pocket = HeldItems +Price = 100 +BPPrice = 16 +Flags = Fling_10 +Description = A single-use item to be held by a Pokémon. It allows the immediate use of a move that charges up first. +#------------------------------- +[ABSORBBULB] +Name = Absorb Bulb +NamePlural = Absorb Bulbs +Pocket = HeldItems +Price = 200 +BPPrice = 16 +Flags = Fling_30 +Description = A consumable bulb. If the holder is hit by a Water-type move, its Sp. Atk will rise. +#------------------------------- +[CELLBATTERY] +Name = Cell Battery +NamePlural = Cell Batteries +Pocket = HeldItems +Price = 200 +BPPrice = 16 +Flags = Fling_30 +Description = A consumable battery. If the holder is hit by an Electric-type move, its Attack will rise. +#------------------------------- +[LIFEORB] +Name = Life Orb +NamePlural = Life Orbs +Pocket = HeldItems +Price = 200 +BPPrice = 24 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It boosts the power of moves, but at the cost of some HP on each hit. +#------------------------------- +[EXPERTBELT] +Name = Expert Belt +NamePlural = Expert Belts +Pocket = HeldItems +Price = 200 +BPPrice = 24 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It is a well-worn belt that slightly boosts the power of supereffective moves. +#------------------------------- +[METRONOME] +Name = Metronome +NamePlural = Metronomes +Pocket = HeldItems +Price = 200 +BPPrice = 24 +Flags = Fling_30 +Description = A Pokémon held item that boosts a move used consecutively. Its effect is reset if another move is used. +#------------------------------- +[MUSCLEBAND] +Name = Muscle Band +NamePlural = Muscle Bands +Pocket = HeldItems +Price = 200 +BPPrice = 8 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It is a headband that slightly boosts the power of physical moves. +#------------------------------- +[WISEGLASSES] +Name = Wise Glasses +NamePlural = Wise Glasses +PortionName = pair of Wise Glasses +PortionNamePlural = pairs of Wise Glasses +Pocket = HeldItems +Price = 200 +BPPrice = 8 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It is a thick pair of glasses that slightly boosts the power of special moves. +#------------------------------- +[RAZORCLAW] +Name = Razor Claw +NamePlural = Razor Claws +Pocket = HeldItems +Price = 2100 +BPPrice = 8 +Flags = Fling_80 +Description = An item to be held by a Pokémon. It is a sharply hooked claw that ups the holder's critical-hit ratio. +#------------------------------- +[SCOPELENS] +Name = Scope Lens +NamePlural = Scope Lenses +Pocket = HeldItems +Price = 200 +BPPrice = 8 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It is a lens that boosts the holder's critical-hit ratio. +#------------------------------- +[WIDELENS] +Name = Wide Lens +NamePlural = Wide Lenses +Pocket = HeldItems +Price = 200 +BPPrice = 8 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It is a magnifying lens that slightly boosts the accuracy of moves. +#------------------------------- +[ZOOMLENS] +Name = Zoom Lens +NamePlural = Zoom Lenses +Pocket = HeldItems +Price = 200 +BPPrice = 12 +Flags = Fling_10 +Description = An item to be held by a Pokémon. If the holder moves after its target, its accuracy will be boosted. +#------------------------------- +[KINGSROCK] +Name = King's Rock +NamePlural = King's Rocks +Pocket = HeldItems +Price = 100 +BPPrice = 8 +Flags = Fling_30 +Description = An item to be held by a Pokémon. When the holder inflicts damage, the target may flinch. +#------------------------------- +[RAZORFANG] +Name = Razor Fang +NamePlural = Razor Fangs +Pocket = HeldItems +Price = 2100 +BPPrice = 8 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It may make foes and allies flinch when the holder inflicts damage. +#------------------------------- +[LAGGINGTAIL] +Name = Lagging Tail +NamePlural = Lagging Tails +Pocket = HeldItems +Price = 200 +BPPrice = 24 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It is tremendously heavy and makes the holder move slower than usual. +#------------------------------- +[QUICKCLAW] +Name = Quick Claw +NamePlural = Quick Claws +Pocket = HeldItems +Price = 100 +BPPrice = 24 +Flags = Fling_80 +Description = An item to be held by a Pokémon. A light, sharp claw that lets the bearer move first occasionally. +#------------------------------- +[FOCUSBAND] +Name = Focus Band +NamePlural = Focus Bands +Pocket = HeldItems +Price = 200 +BPPrice = 12 +Flags = Fling_10 +Description = An item to be held by a Pokémon. The holder may endure a potential KO attack, leaving it with just 1 HP. +#------------------------------- +[FOCUSSASH] +Name = Focus Sash +NamePlural = Focus Sashes +Pocket = HeldItems +Price = 200 +BPPrice = 24 +Flags = Fling_10 +Description = An item to be held by a Pokémon. If it has full HP, the holder will endure one potential KO attack, leaving 1 HP. +#------------------------------- +[FLAMEORB] +Name = Flame Orb +NamePlural = Flame Orbs +Pocket = HeldItems +Price = 100 +BPPrice = 16 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It is a bizarre orb that inflicts a burn on the holder in battle. +#------------------------------- +[TOXICORB] +Name = Toxic Orb +NamePlural = Toxic Orbs +Pocket = HeldItems +Price = 100 +BPPrice = 16 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It is a bizarre orb that badly poisons the holder in battle. +#------------------------------- +[STICKYBARB] +Name = Sticky Barb +NamePlural = Sticky Barbs +Pocket = HeldItems +Price = 200 +BPPrice = 16 +Flags = Fling_80 +Description = A held item that damages the holder on every turn. It may latch on to Pokémon that touch the holder. +#------------------------------- +[IRONBALL] +Name = Iron Ball +NamePlural = Iron Balls +Pocket = HeldItems +Price = 200 +BPPrice = 12 +Flags = Fling_130 +Description = A Pokémon held item that cuts Speed. It makes Flying-type and levitating holders susceptible to Ground moves. +#------------------------------- +[RINGTARGET] +Name = Ring Target +NamePlural = Ring Targets +Pocket = HeldItems +Price = 200 +BPPrice = 12 +Flags = Fling_10 +Description = Moves that would otherwise have no effect will land on the Pokémon that holds it. +#------------------------------- +[MACHOBRACE] +Name = Macho Brace +NamePlural = Macho Braces +Pocket = HeldItems +Price = 3000 +BPPrice = 16 +Flags = Fling_60 +Description = An item to be held by a Pokémon. It is a stiff, heavy brace that promotes strong growth but lowers Speed. +#------------------------------- +[POWERWEIGHT] +Name = Power Weight +NamePlural = Power Weights +Pocket = HeldItems +Price = 3000 +BPPrice = 16 +Flags = Fling_70 +Description = A Pokémon held item that promotes HP gain on leveling, but reduces the Speed stat. +#------------------------------- +[POWERBRACER] +Name = Power Bracer +NamePlural = Power Bracers +Pocket = HeldItems +Price = 3000 +BPPrice = 16 +Flags = Fling_70 +Description = A Pokémon held item that promotes Attack gain on leveling, but reduces the Speed stat. +#------------------------------- +[POWERBELT] +Name = Power Belt +NamePlural = Power Belts +Pocket = HeldItems +Price = 3000 +BPPrice = 16 +Flags = Fling_70 +Description = A Pokémon held item that promotes Defense gain on leveling, but reduces the Speed stat. +#------------------------------- +[POWERLENS] +Name = Power Lens +NamePlural = Power Lenses +Pocket = HeldItems +Price = 3000 +BPPrice = 16 +Flags = Fling_70 +Description = A Pokémon held item that promotes Sp. Atk gain on leveling, but reduces the Speed stat. +#------------------------------- +[POWERBAND] +Name = Power Band +NamePlural = Power Bands +Pocket = HeldItems +Price = 3000 +BPPrice = 16 +Flags = Fling_70 +Description = A Pokémon held item that promotes Sp. Def gain on leveling, but reduces the Speed stat. +#------------------------------- +[POWERANKLET] +Name = Power Anklet +NamePlural = Power Anklets +Pocket = HeldItems +Price = 3000 +BPPrice = 16 +Flags = Fling_70 +Description = A Pokémon held item that promotes Speed gain on leveling, but reduces the Speed stat. +#------------------------------- +[LAXINCENSE] +Name = Lax Incense +NamePlural = Lax Incenses +PortionName = jar of Lax Incense +PortionNamePlural = jars of Lax Incense +Pocket = HeldItems +Price = 9600 +Flags = Fling_10 +Description = An item to be held by a Pokémon. The tricky aroma of this incense may make attacks miss the holder. +#------------------------------- +[FULLINCENSE] +Name = Full Incense +NamePlural = Full Incenses +PortionName = jar of Full Incense +PortionNamePlural = jars of Full Incense +Pocket = HeldItems +Price = 9600 +Flags = Fling_10 +Description = An item to be held by a Pokémon. This exotic-smelling incense makes the holder bloated and slow moving. +#------------------------------- +[LUCKINCENSE] +Name = Luck Incense +NamePlural = Luck Incenses +PortionName = jar of Luck Incense +PortionNamePlural = jars of Luck Incense +Pocket = HeldItems +Price = 9600 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It doubles a battle's prize money if the holding Pokémon joins in. +#------------------------------- +[PUREINCENSE] +Name = Pure Incense +NamePlural = Pure Incenses +PortionName = jar of Pure Incense +PortionNamePlural = jars of Pure Incense +Pocket = HeldItems +Price = 9600 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It helps keep wild Pokémon away if the holder is the first one in the party. +#------------------------------- +[SEAINCENSE] +Name = Sea Incense +NamePlural = Sea Incenses +PortionName = jar of Sea Incense +PortionNamePlural = jars of Sea Incense +Pocket = HeldItems +Price = 9600 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It has a curious aroma that boosts the power of Water-type moves. +#------------------------------- +[WAVEINCENSE] +Name = Wave Incense +NamePlural = Wave Incenses +PortionName = jar of Wave Incense +PortionNamePlural = jars of Wave Incense +Pocket = HeldItems +Price = 9600 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It has a curious aroma that boosts the power of Water-type moves. +#------------------------------- +[ROSEINCENSE] +Name = Rose Incense +NamePlural = Rose Incenses +PortionName = jar of Rose Incense +PortionNamePlural = jars of Rose Incense +Pocket = HeldItems +Price = 9600 +Flags = Fling_10 +Description = An item to be held by a Pokémon. This exotic-smelling incense boosts the power of Grass-type moves. +#------------------------------- +[ODDINCENSE] +Name = Odd Incense +NamePlural = Odd Incenses +PortionName = jar of Odd Incense +PortionNamePlural = jars of Odd Incense +Pocket = HeldItems +Price = 9600 +Flags = Fling_10 +Description = An item to be held by a Pokémon. This exotic-smelling incense boosts the power of Psychic-type moves. +#------------------------------- +[ROCKINCENSE] +Name = Rock Incense +NamePlural = Rock Incenses +PortionName = jar of Rock Incense +PortionNamePlural = jars of Rock Incense +Pocket = HeldItems +Price = 9600 +Flags = Fling_10 +Description = An item to be held by a Pokémon. This exotic-smelling incense boosts the power of Rock-type moves. +#------------------------------- +[CHARCOAL] +Name = Charcoal +NamePlural = Charcoals +PortionName = piece of Charcoal +PortionNamePlural = pieces of Charcoal +Pocket = HeldItems +Price = 9800 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It is a combustible fuel that boosts the power of Fire-type moves. +#------------------------------- +[MYSTICWATER] +Name = Mystic Water +NamePlural = Mystic Waters +Pocket = HeldItems +Price = 100 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It is a teardrop-shaped gem that ups the power of Water-type moves. +#------------------------------- +[MAGNET] +Name = Magnet +NamePlural = Magnets +Pocket = HeldItems +Price = 100 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It is a powerful magnet that boosts the power of Electric-type moves. +#------------------------------- +[MIRACLESEED] +Name = Miracle Seed +NamePlural = Miracle Seeds +Pocket = HeldItems +Price = 100 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It is a seed imbued with life that ups the power of Grass-type moves. +#------------------------------- +[NEVERMELTICE] +Name = Never-Melt Ice +NamePlural = Never-Melt Ices +PortionName = piece of Never-Melt Ice +PortionNamePlural = pieces of Never-Melt Ice +Pocket = HeldItems +Price = 100 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It is a piece of ice that repels heat and boosts Ice-type moves. +#------------------------------- +[BLACKBELT] +Name = Black Belt +NamePlural = Black Belts +Pocket = HeldItems +Price = 100 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It is a belt that boosts determination and Fighting-type moves. +#------------------------------- +[POISONBARB] +Name = Poison Barb +NamePlural = Poison Barbs +Pocket = HeldItems +Price = 100 +Flags = Fling_70 +Description = An item to be held by a Pokémon. It is a small, poisonous barb that ups the power of Poison-type moves. +#------------------------------- +[SOFTSAND] +Name = Soft Sand +NamePlural = Soft Sand +PortionName = bag of Soft Sand +PortionNamePlural = bags of Soft Sand +Pocket = HeldItems +Price = 100 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It is a loose, silky sand that boosts the power of Ground-type moves. +#------------------------------- +[SHARPBEAK] +Name = Sharp Beak +NamePlural = Sharp Beaks +Pocket = HeldItems +Price = 100 +Flags = Fling_50 +Description = An item to be held by a Pokémon. It is a long, sharp beak that boosts the power of Flying-type moves. +#------------------------------- +[TWISTEDSPOON] +Name = Twisted Spoon +NamePlural = Twisted Spoons +Pocket = HeldItems +Price = 100 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It is a spoon imbued with telekinetic power that boosts Psychic-type moves. +#------------------------------- +[SILVERPOWDER] +Name = Silver Powder +NamePlural = Silver Powders +PortionName = pile of Silver Powder +PortionNamePlural = piles of Silver Powder +Pocket = HeldItems +Price = 100 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It is a shiny, silver powder that ups the power of Bug-type moves. +#------------------------------- +[HARDSTONE] +Name = Hard Stone +NamePlural = Hard Stones +Pocket = HeldItems +Price = 100 +Flags = Fling_100 +Description = An item to be held by a Pokémon. It is an unbreakable stone that ups the power of Rock-type moves. +#------------------------------- +[SPELLTAG] +Name = Spell Tag +NamePlural = Spell Tags +Pocket = HeldItems +Price = 100 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It is a sinister, eerie tag that boosts the power of Ghost-type moves. +#------------------------------- +[DRAGONFANG] +Name = Dragon Fang +NamePlural = Dragon Fangs +Pocket = HeldItems +Price = 100 +Flags = Fling_70 +Description = An item to be held by a Pokémon. It is a hard and sharp fang that ups the power of Dragon-type moves. +#------------------------------- +[BLACKGLASSES] +Name = Black Glasses +NamePlural = Black Glasses +PortionName = pair of Black Glasses +PortionNamePlural = pairs of Black Glasses +Pocket = HeldItems +Price = 100 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It is a shady-looking pair of glasses that boosts Dark-type moves. +#------------------------------- +[METALCOAT] +Name = Metal Coat +NamePlural = Metal Coats +Pocket = HeldItems +Price = 100 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It is a special metallic film that ups the power of Steel-type moves. +#------------------------------- +[SILKSCARF] +Name = Silk Scarf +NamePlural = Silk Scarves +Pocket = HeldItems +Price = 100 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It is a sumptuous scarf that boosts the power of Normal-type moves. +#------------------------------- +[FLAMEPLATE] +Name = Flame Plate +NamePlural = Flame Plates +Pocket = HeldItems +Price = 1000 +Flags = Fling_90 +Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Fire-type moves. +#------------------------------- +[SPLASHPLATE] +Name = Splash Plate +NamePlural = Splash Plates +Pocket = HeldItems +Price = 1000 +Flags = Fling_90 +Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Water-type moves. +#------------------------------- +[ZAPPLATE] +Name = Zap Plate +NamePlural = Zap Plates +Pocket = HeldItems +Price = 1000 +Flags = Fling_90 +Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Electric-type moves. +#------------------------------- +[MEADOWPLATE] +Name = Meadow Plate +NamePlural = Meadow Plates +Pocket = HeldItems +Price = 1000 +Flags = Fling_90 +Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Grass-type moves. +#------------------------------- +[ICICLEPLATE] +Name = Icicle Plate +NamePlural = Icicle Plates +Pocket = HeldItems +Price = 1000 +Flags = Fling_90 +Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Ice-type moves. +#------------------------------- +[FISTPLATE] +Name = Fist Plate +NamePlural = Fist Plates +Pocket = HeldItems +Price = 1000 +Flags = Fling_90 +Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Fighting-type moves. +#------------------------------- +[TOXICPLATE] +Name = Toxic Plate +NamePlural = Toxic Plates +Pocket = HeldItems +Price = 1000 +Flags = Fling_90 +Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Poison-type moves. +#------------------------------- +[EARTHPLATE] +Name = Earth Plate +NamePlural = Earth Plates +Pocket = HeldItems +Price = 1000 +Flags = Fling_90 +Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Ground-type moves. +#------------------------------- +[SKYPLATE] +Name = Sky Plate +NamePlural = Sky Plates +Pocket = HeldItems +Price = 1000 +Flags = Fling_90 +Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Flying-type moves. +#------------------------------- +[MINDPLATE] +Name = Mind Plate +NamePlural = Mind Plates +Pocket = HeldItems +Price = 1000 +Flags = Fling_90 +Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Psychic-type moves. +#------------------------------- +[INSECTPLATE] +Name = Insect Plate +NamePlural = Insect Plates +Pocket = HeldItems +Price = 1000 +Flags = Fling_90 +Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Bug-type moves. +#------------------------------- +[STONEPLATE] +Name = Stone Plate +NamePlural = Stone Plates +Pocket = HeldItems +Price = 1000 +Flags = Fling_90 +Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Rock-type moves. +#------------------------------- +[SPOOKYPLATE] +Name = Spooky Plate +NamePlural = Spooky Plates +Pocket = HeldItems +Price = 1000 +Flags = Fling_90 +Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Ghost-type moves. +#------------------------------- +[DRACOPLATE] +Name = Draco Plate +NamePlural = Draco Plates +Pocket = HeldItems +Price = 1000 +Flags = Fling_90 +Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Dragon-type moves. +#------------------------------- +[DREADPLATE] +Name = Dread Plate +NamePlural = Dread Plates +Pocket = HeldItems +Price = 1000 +Flags = Fling_90 +Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Dark-type moves. +#------------------------------- +[IRONPLATE] +Name = Iron Plate +NamePlural = Iron Plates +Pocket = HeldItems +Price = 1000 +Flags = Fling_90 +Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Steel-type moves. +#------------------------------- +[FIREGEM] +Name = Fire Gem +NamePlural = Fire Gems +Pocket = HeldItems +Price = 200 +Flags = TypeGem +Description = A gem with an essence of fire. When held, it strengthens the power of a Fire-type move only once. +#------------------------------- +[WATERGEM] +Name = Water Gem +NamePlural = Water Gems +Pocket = HeldItems +Price = 200 +Flags = TypeGem +Description = A gem with an essence of water. When held, it strengthens the power of a Water-type move only once. +#------------------------------- +[ELECTRICGEM] +Name = Electric Gem +NamePlural = Electric Gems +Pocket = HeldItems +Price = 200 +Flags = TypeGem +Description = A gem with an essence of electricity. When held, it strengthens the power of an Electric-type move only once. +#------------------------------- +[GRASSGEM] +Name = Grass Gem +NamePlural = Grass Gems +Pocket = HeldItems +Price = 200 +Flags = TypeGem +Description = A gem with an essence of nature. When held, it strengthens the power of a Grass-type move only once. +#------------------------------- +[ICEGEM] +Name = Ice Gem +NamePlural = Ice Gems +Pocket = HeldItems +Price = 200 +Flags = TypeGem +Description = A gem with an essence of ice. When held, it strengthens the power of an Ice-type move only once. +#------------------------------- +[FIGHTINGGEM] +Name = Fighting Gem +NamePlural = Fighting Gems +Pocket = HeldItems +Price = 200 +Flags = TypeGem +Description = A gem with an essence of combat. When held, it strengthens the power of a Fighting-type move only once. +#------------------------------- +[POISONGEM] +Name = Poison Gem +NamePlural = Poison Gems +Pocket = HeldItems +Price = 200 +Flags = TypeGem +Description = A gem with an essence of poison. When held, it strengthens the power of a Poison-type move only once. +#------------------------------- +[GROUNDGEM] +Name = Ground Gem +NamePlural = Ground Gems +Pocket = HeldItems +Price = 200 +Flags = TypeGem +Description = A gem with an essence of land. When held, it strengthens the power of a Ground-type move only once. +#------------------------------- +[FLYINGGEM] +Name = Flying Gem +NamePlural = Flying Gems +Pocket = HeldItems +Price = 200 +Flags = TypeGem +Description = A gem with an essence of air. When held, it strengthens the power of a Flying-type move only once. +#------------------------------- +[PSYCHICGEM] +Name = Psychic Gem +NamePlural = Psychic Gems +Pocket = HeldItems +Price = 200 +Flags = TypeGem +Description = A gem with an essence of the mind. When held, it strengthens the power of a Psychic-type move only once. +#------------------------------- +[BUGGEM] +Name = Bug Gem +NamePlural = Bug Gems +Pocket = HeldItems +Price = 200 +Flags = TypeGem +Description = A gem with an insect-like essence. When held, it strengthens the power of a Bug-type move only once. +#------------------------------- +[ROCKGEM] +Name = Rock Gem +NamePlural = Rock Gems +Pocket = HeldItems +Price = 200 +Flags = TypeGem +Description = A gem with an essence of rock. When held, it strengthens the power of a Rock-type move only once. +#------------------------------- +[GHOSTGEM] +Name = Ghost Gem +NamePlural = Ghost Gems +Pocket = HeldItems +Price = 200 +Flags = TypeGem +Description = A gem with a spectral essence. When held, it strengthens the power of a Ghost-type move only once. +#------------------------------- +[DRAGONGEM] +Name = Dragon Gem +NamePlural = Dragon Gems +Pocket = HeldItems +Price = 200 +Flags = TypeGem +Description = A gem with a draconic essence. When held, it strengthens the power of a Dragon-type move only once. +#------------------------------- +[DARKGEM] +Name = Dark Gem +NamePlural = Dark Gems +Pocket = HeldItems +Price = 200 +Flags = TypeGem +Description = A gem with an essence of darkness. When held, it strengthens the power of a Dark-type move only once. +#------------------------------- +[STEELGEM] +Name = Steel Gem +NamePlural = Steel Gems +Pocket = HeldItems +Price = 200 +Flags = TypeGem +Description = A gem with an essence of steel. When held, it strengthens the power of a Steel-type move only once. +#------------------------------- +[NORMALGEM] +Name = Normal Gem +NamePlural = Normal Gems +Pocket = HeldItems +Price = 200 +Flags = TypeGem +Description = A gem with an ordinary essence. When held, it strengthens the power of a Normal-type move only once. +#------------------------------- +[LIGHTBALL] +Name = Light Ball +NamePlural = Light Balls +Pocket = HeldItems +Price = 100 +Flags = Fling_30 +Description = An item to be held by Pikachu. It is a puzzling orb that raises the Attack and Sp. Atk stat. +#------------------------------- +[LUCKYPUNCH] +Name = Lucky Punch +NamePlural = Lucky Punches +Pocket = HeldItems +Price = 10 +BPPrice = 7 +Flags = Fling_40 +Description = An item to be held by Chansey. It is a pair of gloves that boosts Chansey's critical-hit ratio. +#------------------------------- +[METALPOWDER] +Name = Metal Powder +NamePlural = Metal Powders +PortionName = bag of Metal Powder +PortionNamePlural = bags of Metal Powder +Pocket = HeldItems +Price = 10 +Flags = Fling_10 +Description = An item to be held by Ditto. Extremely fine yet hard, this odd powder boosts the Defense stat. +#------------------------------- +[QUICKPOWDER] +Name = Quick Powder +NamePlural = Quick Powders +PortionName = bag of Quick Powder +PortionNamePlural = bags of Quick Powder +Pocket = HeldItems +Price = 10 +Flags = Fling_10 +Description = An item to be held by Ditto. Extremely fine yet hard, this odd powder boosts the Speed stat. +#------------------------------- +[THICKCLUB] +Name = Thick Club +NamePlural = Thick Clubs +Pocket = HeldItems +Price = 500 +Flags = Fling_90 +Description = An item to be held by Cubone or Marowak. It is a hard bone of some sort that boosts the Attack stat. +#------------------------------- +[STICK] +Name = Stick +NamePlural = Sticks +Pocket = HeldItems +Price = 200 +Flags = Fling_60 +Description = An item to be held by Farfetch'd. It is a very long and stiff stalk of leek that boosts the critical-hit ratio. +#------------------------------- +[SOULDEW] +Name = Soul Dew +NamePlural = Soul Dews +Pocket = HeldItems +Price = 200 +Flags = Fling_30 +Description = A wondrous orb to be held by Latios or Latias. It raises both the Sp. Atk and Sp. Def stats. +#------------------------------- +[DEEPSEATOOTH] +Name = Deep Sea Tooth +NamePlural = Deep Sea Teeth +Pocket = HeldItems +Price = 200 +BPPrice = 8 +Flags = Fling_90 +Description = An item to be held by Clamperl. A fang that gleams a sharp silver, it raises the Sp. Atk stat. +#------------------------------- +[DEEPSEASCALE] +Name = Deep Sea Scale +NamePlural = Deep Sea Scales +Pocket = HeldItems +Price = 200 +BPPrice = 8 +Flags = Fling_30 +Description = An item to be held by Clamperl. A scale that shines a faint pink, it raises the Sp. Def stat. +#------------------------------- +[ADAMANTORB] +Name = Adamant Orb +NamePlural = Adamant Orbs +Pocket = HeldItems +Price = 10000 +Flags = Fling_60 +Description = A brightly gleaming orb to be held by Dialga. It boosts the power of Dragon- and Steel-type moves. +#------------------------------- +[LUSTROUSORB] +Name = Lustrous Orb +NamePlural = Lustrous Orbs +Pocket = HeldItems +Price = 10000 +Flags = Fling_60 +Description = A beautifully glowing orb to be held by Palkia. It boosts the power of Dragon- and Water-type moves. +#------------------------------- +[GRISEOUSORB] +Name = Griseous Orb +NamePlural = Griseous Orbs +Pocket = HeldItems +Price = 10000 +Flags = Fling_60 +Description = A glowing orb to be held by Giratina. It boosts the power of Dragon- and Ghost-type moves. +#------------------------------- +[DOUSEDRIVE] +Name = Douse Drive +NamePlural = Douse Drives +Pocket = HeldItems +Price = 1000 +Flags = Fling_70 +Description = A cassette to be held by Genesect. It changes Techno Blast to a Water-type move. +#------------------------------- +[SHOCKDRIVE] +Name = Shock Drive +NamePlural = Shock Drives +Pocket = HeldItems +Price = 1000 +Flags = Fling_70 +Description = A cassette to be held by Genesect. It changes Techno Blast to an Electric-type move. +#------------------------------- +[BURNDRIVE] +Name = Burn Drive +NamePlural = Burn Drives +Pocket = HeldItems +Price = 1000 +Flags = Fling_70 +Description = A cassette to be held by Genesect. It changes Techno Blast to a Fire-type move. +#------------------------------- +[CHILLDRIVE] +Name = Chill Drive +NamePlural = Chill Drives +Pocket = HeldItems +Price = 1000 +Flags = Fling_70 +Description = A cassette to be held by Genesect. It changes Techno Blast to an Ice-type move. +#------------------------------- +[EVERSTONE] +Name = Everstone +NamePlural = Everstones +Pocket = HeldItems +Price = 200 +BPPrice = 3 +Flags = Fling_30 +Description = An item to be held by a Pokémon. The Pokémon holding this peculiar stone is prevented from evolving. +#------------------------------- +[DRAGONSCALE] +Name = Dragon Scale +NamePlural = Dragon Scales +Pocket = HeldItems +Price = 2100 +BPPrice = 8 +Flags = Fling_30 +Description = A thick and tough scale. Dragon-type Pokémon may be holding this item when caught. +#------------------------------- +[UPGRADE] +Name = Up-Grade +NamePlural = Up-Grades +Pocket = HeldItems +Price = 2100 +BPPrice = 8 +Flags = Fling_30 +Description = A transparent device filled with all sorts of data. It was produced by Silph Co. +#------------------------------- +[DUBIOUSDISC] +Name = Dubious Disc +NamePlural = Dubious Discs +Pocket = HeldItems +Price = 2100 +BPPrice = 8 +Flags = Fling_50 +Description = A transparent device overflowing with dubious data. Its producer is unknown. +#------------------------------- +[PROTECTOR] +Name = Protector +NamePlural = Protectors +Pocket = HeldItems +Price = 2100 +BPPrice = 8 +Flags = Fling_80 +Description = A protective item of some sort. It is extremely stiff and heavy. It is loved by a certain Pokémon. +#------------------------------- +[ELECTIRIZER] +Name = Electirizer +NamePlural = Electirizers +Pocket = HeldItems +Price = 2100 +BPPrice = 8 +Flags = Fling_80 +Description = A box packed with a tremendous amount of electric energy. It is loved by a certain Pokémon. +#------------------------------- +[MAGMARIZER] +Name = Magmarizer +NamePlural = Magmarizers +Pocket = HeldItems +Price = 2100 +BPPrice = 8 +Flags = Fling_80 +Description = A box packed with a tremendous amount of magma energy. It is loved by a certain Pokémon. +#------------------------------- +[REAPERCLOTH] +Name = Reaper Cloth +NamePlural = Reaper Cloths +PortionName = scrap of Reaper Cloth +PortionNamePlural = scraps of Reaper Cloth +Pocket = HeldItems +Price = 2100 +BPPrice = 8 +Flags = Fling_10 +Description = A cloth imbued with horrifyingly strong spiritual energy. It is loved by a certain Pokémon. +#------------------------------- +[PRISMSCALE] +Name = Prism Scale +NamePlural = Prism Scales +Pocket = HeldItems +Price = 500 +BPPrice = 8 +Flags = Fling_30 +Description = A mysterious scale that evolves certain Pokémon. It shines in rainbow colors. +#------------------------------- +[OVALSTONE] +Name = Oval Stone +NamePlural = Oval Stones +Pocket = HeldItems +Price = 2100 +BPPrice = 8 +Flags = Fling_80 +Description = A peculiar stone that makes certain species of Pokémon evolve. It is shaped like an egg. +#------------------------------- +[REDSCARF] +Name = Red Scarf +NamePlural = Red Scarves +Pocket = HeldItems +Price = 100 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It boosts the Cool aspect of the holder in a Contest. +#------------------------------- +[BLUESCARF] +Name = Blue Scarf +NamePlural = Blue Scarves +Pocket = HeldItems +Price = 100 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It boosts the Beauty aspect of the holder in a Contest. +#------------------------------- +[PINKSCARF] +Name = Pink Scarf +NamePlural = Pink Scarves +Pocket = HeldItems +Price = 100 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It boosts the Cute aspect of the holder in a Contest. +#------------------------------- +[GREENSCARF] +Name = Green Scarf +NamePlural = Green Scarves +Pocket = HeldItems +Price = 100 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It boosts the Smart aspect of the holder in a Contest. +#------------------------------- +[YELLOWSCARF] +Name = Yellow Scarf +NamePlural = Yellow Scarves +Pocket = HeldItems +Price = 100 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It boosts the Tough aspect of the holder in a Contest. #------------------------------- [XATTACK] Name = X Attack NamePlural = X Attacks -Pocket = 7 +Pocket = BattleItems Price = 500 BattleUse = OnBattler Flags = Fling_30 @@ -4269,7 +3265,7 @@ Description = An item that raises the Attack stat of a Pokémon in battle. It we [XATTACK2] Name = X Attack 2 NamePlural = X Attack 2s -Pocket = 7 +Pocket = BattleItems Price = 0 BattleUse = OnBattler Flags = Fling_30 @@ -4278,7 +3274,7 @@ Description = It sharply raises the Attack stat of a Pokémon in battle. It wear [XATTACK3] Name = X Attack 3 NamePlural = X Attack 3s -Pocket = 7 +Pocket = BattleItems Price = 0 BattleUse = OnBattler Flags = Fling_30 @@ -4287,7 +3283,7 @@ Description = It drastically raises the Attack stat of a Pokémon in battle. It [XATTACK6] Name = X Attack 6 NamePlural = X Attack 6s -Pocket = 7 +Pocket = BattleItems Price = 0 BattleUse = OnBattler Flags = Fling_30 @@ -4296,7 +3292,7 @@ Description = It raises the Attack stat of a Pokémon in battle immensely. It we [XDEFENSE] Name = X Defense NamePlural = X Defenses -Pocket = 7 +Pocket = BattleItems Price = 550 BattleUse = OnBattler Flags = Fling_30 @@ -4305,7 +3301,7 @@ Description = An item that raises the Defense of a Pokémon in battle. It wears [XDEFENSE2] Name = X Defense 2 NamePlural = X Defense 2s -Pocket = 7 +Pocket = BattleItems Price = 0 BattleUse = OnBattler Flags = Fling_30 @@ -4314,7 +3310,7 @@ Description = It sharply raises the Defense stat of a Pokémon in battle. It wea [XDEFENSE3] Name = X Defense 3 NamePlural = X Defense 3s -Pocket = 7 +Pocket = BattleItems Price = 0 BattleUse = OnBattler Flags = Fling_30 @@ -4323,7 +3319,7 @@ Description = It drastically raises the Defense stat of a Pokémon in battle. It [XDEFENSE6] Name = X Defense 6 NamePlural = X Defense 6s -Pocket = 7 +Pocket = BattleItems Price = 0 BattleUse = OnBattler Flags = Fling_30 @@ -4332,7 +3328,7 @@ Description = It raises the Defense stat of a Pokémon in battle immensely. It w [XSPATK] Name = X Sp. Atk NamePlural = X Sp. Atks -Pocket = 7 +Pocket = BattleItems Price = 350 BattleUse = OnBattler Flags = Fling_30 @@ -4341,7 +3337,7 @@ Description = An item that raises the Sp. Atk stat of a Pokémon in battle. It w [XSPATK2] Name = X Sp. Atk 2 NamePlural = X Sp. Atk 2s -Pocket = 7 +Pocket = BattleItems Price = 0 BattleUse = OnBattler Flags = Fling_30 @@ -4350,7 +3346,7 @@ Description = It sharply raises the Sp. Atk stat of a Pokémon in battle. It wea [XSPATK3] Name = X Sp. Atk 3 NamePlural = X Sp. Atk 3s -Pocket = 7 +Pocket = BattleItems Price = 0 BattleUse = OnBattler Flags = Fling_30 @@ -4359,7 +3355,7 @@ Description = It drastically raises the Sp. Atk stat of a Pokémon in battle. It [XSPATK6] Name = X Sp. Atk 6 NamePlural = X Sp. Atk 6s -Pocket = 7 +Pocket = BattleItems Price = 0 BattleUse = OnBattler Flags = Fling_30 @@ -4368,7 +3364,7 @@ Description = It raises the Sp. Atk stat of a Pokémon in battle immensely. It w [XSPDEF] Name = X Sp. Def NamePlural = X Sp. Defs -Pocket = 7 +Pocket = BattleItems Price = 350 BattleUse = OnBattler Flags = Fling_30 @@ -4377,7 +3373,7 @@ Description = An item that raises the Sp. Def stat of a Pokémon in battle. It w [XSPDEF2] Name = X Sp. Def 2 NamePlural = X Sp. Def 2s -Pocket = 7 +Pocket = BattleItems Price = 0 BattleUse = OnBattler Flags = Fling_30 @@ -4386,7 +3382,7 @@ Description = It sharply raises the Sp. Def stat of a Pokémon in battle. It wea [XSPDEF3] Name = X Sp. Def 3 NamePlural = X Sp. Def 3s -Pocket = 7 +Pocket = BattleItems Price = 0 BattleUse = OnBattler Flags = Fling_30 @@ -4395,7 +3391,7 @@ Description = It drastically raises the Sp. Def stat of a Pokémon in battle. It [XSPDEF6] Name = X Sp. Def 6 NamePlural = X Sp. Def 6s -Pocket = 7 +Pocket = BattleItems Price = 0 BattleUse = OnBattler Flags = Fling_30 @@ -4404,7 +3400,7 @@ Description = It raises the Sp. Def stat of a Pokémon in battle immensely. It w [XSPEED] Name = X Speed NamePlural = X Speeds -Pocket = 7 +Pocket = BattleItems Price = 350 BattleUse = OnBattler Flags = Fling_30 @@ -4413,7 +3409,7 @@ Description = An item that raises the Speed stat of a Pokémon in battle. It wea [XSPEED2] Name = X Speed 2 NamePlural = X Speed 2s -Pocket = 7 +Pocket = BattleItems Price = 0 BattleUse = OnBattler Flags = Fling_30 @@ -4422,7 +3418,7 @@ Description = It sharply raises the Speed stat of a Pokémon in battle. It wears [XSPEED3] Name = X Speed 3 NamePlural = X Speed 3s -Pocket = 7 +Pocket = BattleItems Price = 0 BattleUse = OnBattler Flags = Fling_30 @@ -4431,7 +3427,7 @@ Description = It drastically raises the Speed stat of a Pokémon in battle. It w [XSPEED6] Name = X Speed 6 NamePlural = X Speed 6s -Pocket = 7 +Pocket = BattleItems Price = 0 BattleUse = OnBattler Flags = Fling_30 @@ -4440,7 +3436,7 @@ Description = It raises the Speed stat of a Pokémon in battle immensely. It wea [XACCURACY] Name = X Accuracy NamePlural = X Accuracies -Pocket = 7 +Pocket = BattleItems Price = 950 BattleUse = OnBattler Flags = Fling_30 @@ -4449,7 +3445,7 @@ Description = An item that raises the accuracy of a Pokémon in battle. It wears [XACCURACY2] Name = X Accuracy 2 NamePlural = X Accuracy 2s -Pocket = 7 +Pocket = BattleItems Price = 0 BattleUse = OnBattler Flags = Fling_30 @@ -4458,7 +3454,7 @@ Description = It sharply raises the accuracy of a Pokémon in battle. It wears o [XACCURACY3] Name = X Accuracy 3 NamePlural = X Accuracy 3s -Pocket = 7 +Pocket = BattleItems Price = 0 BattleUse = OnBattler Flags = Fling_30 @@ -4467,7 +3463,7 @@ Description = It drastically raises the accuracy of a Pokémon in battle. It wea [XACCURACY6] Name = X Accuracy 6 NamePlural = X Accuracy 6s -Pocket = 7 +Pocket = BattleItems Price = 0 BattleUse = OnBattler Flags = Fling_30 @@ -4476,7 +3472,7 @@ Description = It raises the accuracy of a Pokémon in battle immensely. It wears [DIREHIT] Name = Dire Hit NamePlural = Dire Hits -Pocket = 7 +Pocket = BattleItems Price = 650 BattleUse = OnBattler Flags = Fling_30 @@ -4485,7 +3481,7 @@ Description = It raises the critical-hit ratio. It can be used only once and wea [DIREHIT2] Name = Dire Hit 2 NamePlural = Dire Hit 2s -Pocket = 7 +Pocket = BattleItems Price = 0 BattleUse = OnBattler Flags = Fling_30 @@ -4494,7 +3490,7 @@ Description = It sharply raises the critical-hit ratio. It wears off if the Pok [DIREHIT3] Name = Dire Hit 3 NamePlural = Dire Hit 3s -Pocket = 7 +Pocket = BattleItems Price = 0 BattleUse = OnBattler Flags = Fling_30 @@ -4503,7 +3499,7 @@ Description = It greatly raises the critical-hit ratio. It wears off if the Pok [GUARDSPEC] Name = Guard Spec. NamePlural = Guard Specs. -Pocket = 7 +Pocket = BattleItems Price = 700 BattleUse = Direct Flags = Fling_30 @@ -4512,7 +3508,7 @@ Description = An item that prevents stat reduction among the Trainer's party Pok [RESETURGE] Name = Reset Urge NamePlural = Reset Urges -Pocket = 7 +Pocket = BattleItems Price = 0 Flags = Fling_30 Description = When used, it restores any stat changes of an ally Pokémon. @@ -4520,7 +3516,7 @@ Description = When used, it restores any stat changes of an ally Pokémon. [ABILITYURGE] Name = Ability Urge NamePlural = Ability Urges -Pocket = 7 +Pocket = BattleItems Price = 0 Flags = Fling_30 Description = When used, it activates the Ability of an ally Pokémon. @@ -4528,7 +3524,7 @@ Description = When used, it activates the Ability of an ally Pokémon. [ITEMURGE] Name = Item Urge NamePlural = Item Urges -Pocket = 7 +Pocket = BattleItems Price = 0 Flags = Fling_30 Description = When used, it causes an ally Pokémon to use its held item. @@ -4536,7 +3532,7 @@ Description = When used, it causes an ally Pokémon to use its held item. [ITEMDROP] Name = Item Drop NamePlural = Item Drops -Pocket = 7 +Pocket = BattleItems Price = 0 Flags = Fling_30 Description = When used, it causes an ally Pokémon to drop a held item. @@ -4544,7 +3540,7 @@ Description = When used, it causes an ally Pokémon to drop a held item. [BLUEFLUTE] Name = Blue Flute NamePlural = Blue Flutes -Pocket = 7 +Pocket = BattleItems Price = 100 FieldUse = OnPokemon BattleUse = OnPokemon @@ -4555,7 +3551,7 @@ Description = A blue flute made from blown glass. Its melody awakens a single Po [YELLOWFLUTE] Name = Yellow Flute NamePlural = Yellow Flutes -Pocket = 7 +Pocket = BattleItems Price = 300 BattleUse = OnBattler Flags = Fling_30 @@ -4565,7 +3561,7 @@ Description = A yellow flute made from blown glass. Its melody snaps a single Po [REDFLUTE] Name = Red Flute NamePlural = Red Flutes -Pocket = 7 +Pocket = BattleItems Price = 200 BattleUse = OnBattler Flags = Fling_30 @@ -4575,7 +3571,7 @@ Description = A red flute made from blown glass. Its melody snaps a single Poké [POKEDOLL] Name = Poké Doll NamePlural = Poké Dolls -Pocket = 7 +Pocket = BattleItems Price = 1000 BattleUse = Direct Flags = Fling_30 @@ -4584,7 +3580,7 @@ Description = A doll that attracts Pokémon. Use it to flee from any battle with [FLUFFYTAIL] Name = Fluffy Tail NamePlural = Fluffy Tails -Pocket = 7 +Pocket = BattleItems Price = 1000 BattleUse = Direct Flags = Fling_30 @@ -4593,16 +3589,1020 @@ Description = An item that attracts Pokémon. Use it to flee from any battle wit [POKETOY] Name = Poké Toy NamePlural = Poké Toys -Pocket = 7 +Pocket = BattleItems Price = 500 BattleUse = Direct Flags = Fling_30 Description = An item that attracts Pokémon. Use it to flee from any battle with a wild Pokémon. #------------------------------- +[TM01] +Name = TM01 +NamePlural = TM01s +Pocket = Machines +Price = 3000 +BPPrice = 6 +FieldUse = TM +Move = HONECLAWS +Description = The user sharpens its claws to boost its Attack stat and accuracy. +#------------------------------- +[TM02] +Name = TM02 +NamePlural = TM02s +Pocket = Machines +Price = 3000 +BPPrice = 6 +FieldUse = TM +Move = DRAGONCLAW +Description = The user slashes the target with huge, sharp claws. +#------------------------------- +[TM03] +Name = TM03 +NamePlural = TM03s +Pocket = Machines +Price = 3000 +BPPrice = 6 +FieldUse = TM +Move = PSYSHOCK +Description = The user materializes an odd psychic wave to attack the target. This attack does physical damage. +#------------------------------- +[TM04] +Name = TM04 +NamePlural = TM04s +Pocket = Machines +Price = 1500 +BPPrice = 6 +FieldUse = TM +Move = CALMMIND +Description = The user quietly focuses its mind and calms its spirit to raise its Sp. Atk and Sp. Def stats. +#------------------------------- +[TM05] +Name = TM05 +NamePlural = TM05s +Pocket = Machines +Price = 1000 +BPPrice = 6 +FieldUse = TM +Move = ROAR +Description = The target is scared off and replaced by another Pokémon in its party. In the wild, the battle ends. +#------------------------------- +[TM06] +Name = TM06 +NamePlural = TM06s +Pocket = Machines +Price = 3000 +BPPrice = 6 +FieldUse = TM +Move = TOXIC +Description = A move that leaves the target badly poisoned. Its poison damage worsens every turn. +#------------------------------- +[TM07] +Name = TM07 +NamePlural = TM07s +Pocket = Machines +Price = 3000 +BPPrice = 6 +FieldUse = TM +Move = HAIL +Description = Summons a hailstorm that lasts for five turns. The hailstorm damages all types except Ice. +#------------------------------- +[TM08] +Name = TM08 +NamePlural = TM08s +Pocket = Machines +Price = 1500 +BPPrice = 6 +FieldUse = TM +Move = BULKUP +Description = The user tenses its muscles to bulk up its body, boosting both its Attack and Defense stats. +#------------------------------- +[TM09] +Name = TM09 +NamePlural = TM09s +Pocket = Machines +Price = 2000 +BPPrice = 6 +FieldUse = TM +Move = VENOSHOCK +Description = The user drenches the target in a special poisonous liquid. Its power is doubled if the target is poisoned. +#------------------------------- +[TM10] +Name = TM10 +NamePlural = TM10s +Pocket = Machines +Price = 2000 +BPPrice = 18 +FieldUse = TM +Move = HIDDENPOWER +Description = A unique attack that varies in type and intensity depending on the Pokémon using it. +#------------------------------- +[TM11] +Name = TM11 +NamePlural = TM11s +Pocket = Machines +Price = 2000 +BPPrice = 6 +FieldUse = TM +Move = SUNNYDAY +Description = The user intensifies the sun for five turns, powering up Fire-type moves. +#------------------------------- +[TM12] +Name = TM12 +NamePlural = TM12s +Pocket = Machines +Price = 1500 +BPPrice = 6 +FieldUse = TM +Move = TAUNT +Description = The target is taunted into a rage that allows it to use only attack moves for three turns. +#------------------------------- +[TM13] +Name = TM13 +NamePlural = TM13s +Pocket = Machines +Price = 3000 +BPPrice = 6 +FieldUse = TM +Move = ICEBEAM +Description = The target is struck with an icy-cold beam of energy. It may also freeze the target solid. +#------------------------------- +[TM14] +Name = TM14 +NamePlural = TM14s +Pocket = Machines +Price = 5500 +BPPrice = 6 +FieldUse = TM +Move = BLIZZARD +Description = A howling blizzard is summoned to strike the opposing team. It may also freeze them solid. +#------------------------------- +[TM15] +Name = TM15 +NamePlural = TM15s +Pocket = Machines +Price = 7500 +BPPrice = 6 +FieldUse = TM +Move = HYPERBEAM +Description = The target is attacked with a powerful beam. The user must rest on the next turn to regain its energy. +#------------------------------- +[TM16] +Name = TM16 +NamePlural = TM16s +Pocket = Machines +Price = 2000 +BPPrice = 6 +FieldUse = TM +Move = LIGHTSCREEN +Description = A wondrous wall of light is put up to suppress damage from special attacks for five turns. +#------------------------------- +[TM17] +Name = TM17 +NamePlural = TM17s +Pocket = Machines +Price = 2000 +BPPrice = 6 +FieldUse = TM +Move = PROTECT +Description = It enables the user to evade all attacks. Its chance of failing rises if it is used in succession. +#------------------------------- +[TM18] +Name = TM18 +NamePlural = TM18s +Pocket = Machines +Price = 2000 +BPPrice = 6 +FieldUse = TM +Move = RAINDANCE +Description = The user summons a heavy rain that falls for five turns, powering up Water-type moves. +#------------------------------- +[TM19] +Name = TM19 +NamePlural = TM19s +Pocket = Machines +Price = 3000 +BPPrice = 6 +FieldUse = TM +Move = TELEKINESIS +Description = The user makes the target float with its psychic power. The target is easier to hit for three turns. +#------------------------------- +[TM20] +Name = TM20 +NamePlural = TM20s +Pocket = Machines +Price = 2000 +BPPrice = 6 +FieldUse = TM +Move = SAFEGUARD +Description = The user creates a protective field that prevents status problems for five turns. +#------------------------------- +[TM21] +Name = TM21 +NamePlural = TM21s +Pocket = Machines +Price = 1000 +BPPrice = 6 +FieldUse = TM +Move = FRUSTRATION +Description = A full-power attack that grows more powerful the less the user likes its Trainer. +#------------------------------- +[TM22] +Name = TM22 +NamePlural = TM22s +Pocket = Machines +Price = 3000 +BPPrice = 6 +FieldUse = TM +Move = SOLARBEAM +Description = A two-turn attack. The user gathers light, then blasts a bundled beam on the second turn. +#------------------------------- +[TM23] +Name = TM23 +NamePlural = TM23s +Pocket = Machines +Price = 3000 +BPPrice = 18 +FieldUse = TM +Move = SMACKDOWN +Description = The user throws a stone or similar projectile to attack a foe. A flying Pokémon will fall to the ground if hit. +#------------------------------- +[TM24] +Name = TM24 +NamePlural = TM24s +Pocket = Machines +Price = 3000 +BPPrice = 6 +FieldUse = TM +Move = THUNDERBOLT +Description = A strong electric blast is loosed at the target. It may also leave the target with paralysis. +#------------------------------- +[TM25] +Name = TM25 +NamePlural = TM25s +Pocket = Machines +Price = 5500 +BPPrice = 6 +FieldUse = TM +Move = THUNDER +Description = A wicked thunderbolt is dropped on the target to inflict damage. It may also leave the target with paralysis. +#------------------------------- +[TM26] +Name = TM26 +NamePlural = TM26s +Pocket = Machines +Price = 3000 +BPPrice = 6 +FieldUse = TM +Move = EARTHQUAKE +Description = The user sets off an earthquake that strikes every Pokémon around it. +#------------------------------- +[TM27] +Name = TM27 +NamePlural = TM27s +Pocket = Machines +Price = 1000 +BPPrice = 6 +FieldUse = TM +Move = RETURN +Description = A full-power attack that grows more powerful the more the user likes its Trainer. +#------------------------------- +[TM28] +Name = TM28 +NamePlural = TM28s +Pocket = Machines +Price = 2000 +BPPrice = 6 +FieldUse = TM +Move = DIG +Description = The user burrows, then attacks on the second turn. It can also be used to exit dungeons. +#------------------------------- +[TM29] +Name = TM29 +NamePlural = TM29s +Pocket = Machines +Price = 3000 +BPPrice = 6 +FieldUse = TM +Move = PSYCHIC +Description = The target is hit by a strong telekinetic force. It may also reduce the target's Sp. Def stat. +#------------------------------- +[TM30] +Name = TM30 +NamePlural = TM30s +Pocket = Machines +Price = 3000 +BPPrice = 6 +FieldUse = TM +Move = SHADOWBALL +Description = The user hurls a shadowy blob at the target. It may also lower the target's Sp. Def stat. +#------------------------------- +[TM31] +Name = TM31 +NamePlural = TM31s +Pocket = Machines +Price = 3000 +BPPrice = 12 +FieldUse = TM +Move = BRICKBREAK +Description = The user attacks with tough fists, etc. It can also break any barrier such as Light Screen and Reflect. +#------------------------------- +[TM32] +Name = TM32 +NamePlural = TM32s +Pocket = Machines +Price = 1000 +BPPrice = 6 +FieldUse = TM +Move = DOUBLETEAM +Description = By moving rapidly, the user makes illusory copies of itself to raise its evasiveness. +#------------------------------- +[TM33] +Name = TM33 +NamePlural = TM33s +Pocket = Machines +Price = 2000 +BPPrice = 6 +FieldUse = TM +Move = REFLECT +Description = A wondrous wall of light is put up to suppress damage from physical attacks for five turns. +#------------------------------- +[TM34] +Name = TM34 +NamePlural = TM34s +Pocket = Machines +Price = 3000 +BPPrice = 24 +FieldUse = TM +Move = SLUDGEWAVE +Description = It swamps the area around the user with a giant sludge wave. It may also poison those hit. +#------------------------------- +[TM35] +Name = TM35 +NamePlural = TM35s +Pocket = Machines +Price = 3000 +BPPrice = 6 +FieldUse = TM +Move = FLAMETHROWER +Description = The target is scorched with an intense blast of fire. It may also leave the target with a burn. +#------------------------------- +[TM36] +Name = TM36 +NamePlural = TM36s +Pocket = Machines +Price = 3000 +BPPrice = 6 +FieldUse = TM +Move = SLUDGEBOMB +Description = Unsanitary sludge is hurled at the target. It may also poison the target. +#------------------------------- +[TM37] +Name = TM37 +NamePlural = TM37s +Pocket = Machines +Price = 2000 +BPPrice = 6 +FieldUse = TM +Move = SANDSTORM +Description = A five-turn sandstorm is summoned to hurt all combatants except the Rock, Ground, and Steel types. +#------------------------------- +[TM38] +Name = TM38 +NamePlural = TM38s +Pocket = Machines +Price = 5500 +BPPrice = 6 +FieldUse = TM +Move = FIREBLAST +Description = The foe is attacked with an intense blast of all-consuming fire. It may also leave the target with a burn. +#------------------------------- +[TM39] +Name = TM39 +NamePlural = TM39s +Pocket = Machines +Price = 2000 +BPPrice = 6 +FieldUse = TM +Move = ROCKTOMB +Description = Boulders are hurled at the target. It also lowers the target's Speed by preventing its movement. +#------------------------------- +[TM40] +Name = TM40 +NamePlural = TM40s +Pocket = Machines +Price = 3000 +BPPrice = 6 +FieldUse = TM +Move = AERIALACE +Description = The user confounds the target with speed, then slashes. The attack lands without fail. +#------------------------------- +[TM41] +Name = TM41 +NamePlural = TM41s +Pocket = Machines +Price = 1500 +BPPrice = 6 +FieldUse = TM +Move = TORMENT +Description = The user torments and enrages the target, making it incapable of using the same move twice in a row. +#------------------------------- +[TM42] +Name = TM42 +NamePlural = TM42s +Pocket = Machines +Price = 3000 +BPPrice = 6 +FieldUse = TM +Move = FACADE +Description = An attack move that doubles its power if the user is poisoned, paralyzed, or has a burn. +#------------------------------- +[TM43] +Name = TM43 +NamePlural = TM43s +Pocket = Machines +Price = 2000 +BPPrice = 6 +FieldUse = TM +Move = FLAMECHARGE +Description = The user cloaks itself with flame and attacks. Building up more power, it raises the user's Speed stat. +#------------------------------- +[TM44] +Name = TM44 +NamePlural = TM44s +Pocket = Machines +Price = 3000 +BPPrice = 6 +FieldUse = TM +Move = REST +Description = The user goes to sleep for two turns. It fully restores the user's HP and heals any status problem. +#------------------------------- +[TM45] +Name = TM45 +NamePlural = TM45s +Pocket = Machines +Price = 3000 +BPPrice = 6 +FieldUse = TM +Move = ATTRACT +Description = If it is the opposite gender of the user, the target becomes infatuated and less likely to attack. +#------------------------------- +[TM46] +Name = TM46 +NamePlural = TM46s +Pocket = Machines +Price = 2000 +BPPrice = 6 +FieldUse = TM +Move = THIEF +Description = The user attacks and steals the target's held item simultaneously. It can't steal if the user holds an item. +#------------------------------- +[TM47] +Name = TM47 +NamePlural = TM47s +Pocket = Machines +Price = 3000 +BPPrice = 6 +FieldUse = TM +Move = LOWSWEEP +Description = The user attacks the target's legs swiftly, reducing the target's Speed stat. +#------------------------------- +[TM48] +Name = TM48 +NamePlural = TM48s +Pocket = Machines +Price = 3000 +BPPrice = 18 +FieldUse = TM +Move = ROUND +Description = The user attacks the target with a song. Others can join in the Round to increase the power of the attack. +#------------------------------- +[TM49] +Name = TM49 +NamePlural = TM49s +Pocket = Machines +Price = 1500 +BPPrice = 6 +FieldUse = TM +Move = ECHOEDVOICE +Description = The user attacks the target with an echoing voice. If this move is used every turn, it does greater damage. +#------------------------------- +[TM50] +Name = TM50 +NamePlural = TM50s +Pocket = Machines +Price = 5500 +BPPrice = 6 +FieldUse = TM +Move = OVERHEAT +Description = The user attacks the target at full power. The attack's recoil sharply reduces the user's Sp. Atk stat. +#------------------------------- +[TM51] +Name = TM51 +NamePlural = TM51s +Pocket = Machines +Price = 1000 +BPPrice = 24 +FieldUse = TM +Move = ALLYSWITCH +Description = The user teleports using a strange power and switches its place with one of its allies. +#------------------------------- +[TM52] +Name = TM52 +NamePlural = TM52s +Pocket = Machines +Price = 5500 +BPPrice = 6 +FieldUse = TM +Move = FOCUSBLAST +Description = The user heightens its mental focus and unleashes its power. It may also lower the target's Sp. Def. +#------------------------------- +[TM53] +Name = TM53 +NamePlural = TM53s +Pocket = Machines +Price = 3000 +BPPrice = 6 +FieldUse = TM +Move = ENERGYBALL +Description = The user draws power from nature and fires it at the target. It may also lower the target's Sp. Def. +#------------------------------- +[TM54] +Name = TM54 +NamePlural = TM54s +Pocket = Machines +Price = 2000 +BPPrice = 6 +FieldUse = TM +Move = FALSESWIPE +Description = A restrained attack that prevents the target from fainting. The target is left with at least 1 HP. +#------------------------------- +[TM55] +Name = TM55 +NamePlural = TM55s +Pocket = Machines +Price = 3000 +BPPrice = 6 +FieldUse = TM +Move = SCALD +Description = The user shoots boiling hot water at its target. It may also leave the target with a burn. +#------------------------------- +[TM56] +Name = TM56 +NamePlural = TM56s +Pocket = Machines +Price = 2000 +BPPrice = 6 +FieldUse = TM +Move = FLING +Description = The user flings its held item at the target as an attack. Its power and effects depend on the item. +#------------------------------- +[TM57] +Name = TM57 +NamePlural = TM57s +Pocket = Machines +Price = 3000 +BPPrice = 6 +FieldUse = TM +Move = CHARGEBEAM +Description = The user fires a concentrated bundle of electricity. It may also raise the user's Sp. Atk stat. +#------------------------------- +[TM58] +Name = TM58 +NamePlural = TM58s +Pocket = Machines +Price = 2000 +BPPrice = 6 +FieldUse = TM +Move = SKYDROP +Description = The user hurls the foe into the sky, then drops it on the next turn. The foe cannot attack while in the sky. +#------------------------------- +[TM59] +Name = TM59 +NamePlural = TM59s +Pocket = Machines +Price = 1500 +BPPrice = 6 +FieldUse = TM +Move = INCINERATE +Description = The user attacks the target with fire. If the target is holding a Berry, it becomes burnt up and unusable. +#------------------------------- +[TM60] +Name = TM60 +NamePlural = TM60s +Pocket = Machines +Price = 3000 +BPPrice = 24 +FieldUse = TM +Move = QUASH +Description = The user suppresses the target and makes its move go last. +#------------------------------- +[TM61] +Name = TM61 +NamePlural = TM61s +Pocket = Machines +Price = 2000 +BPPrice = 6 +FieldUse = TM +Move = WILLOWISP +Description = The user shoots a sinister, bluish-white flame at the target to inflict a burn. +#------------------------------- +[TM62] +Name = TM62 +NamePlural = TM62s +Pocket = Machines +Price = 3000 +BPPrice = 6 +FieldUse = TM +Move = ACROBATICS +Description = The user nimbly strikes the target. If the user is not holding an item, this attack inflicts massive damage. +#------------------------------- +[TM63] +Name = TM63 +NamePlural = TM63s +Pocket = Machines +Price = 2000 +BPPrice = 6 +FieldUse = TM +Move = EMBARGO +Description = It prevents the target from using its held item. Its Trainer is also prevented from using items on it. +#------------------------------- +[TM64] +Name = TM64 +NamePlural = TM64s +Pocket = Machines +Price = 7500 +BPPrice = 24 +FieldUse = TM +Move = EXPLOSION +Description = The user explodes to inflict damage on those around it. The user faints upon using this move. +#------------------------------- +[TM65] +Name = TM65 +NamePlural = TM65s +Pocket = Machines +Price = 3000 +BPPrice = 6 +FieldUse = TM +Move = SHADOWCLAW +Description = The user slashes with a sharp claw made from shadows. It has a high critical-hit ratio. +#------------------------------- +[TM66] +Name = TM66 +NamePlural = TM66s +Pocket = Machines +Price = 3000 +BPPrice = 6 +FieldUse = TM +Move = PAYBACK +Description = The user stores power, then attacks. If the user can use this attack after the foe, its power is doubled. +#------------------------------- +[TM67] +Name = TM67 +NamePlural = TM67s +Pocket = Machines +Price = 1000 +BPPrice = 6 +FieldUse = TM +Move = RETALIATE +Description = The user gets revenge for a fainted ally. If an ally fainted in the last turn, this move's power is increased. +#------------------------------- +[TM68] +Name = TM68 +NamePlural = TM68s +Pocket = Machines +Price = 7500 +BPPrice = 6 +FieldUse = TM +Move = GIGAIMPACT +Description = The user charges at the target using every bit of its power. The user must rest on the next turn. +#------------------------------- +[TM69] +Name = TM69 +NamePlural = TM69s +Pocket = Machines +Price = 1500 +BPPrice = 6 +FieldUse = TM +Move = ROCKPOLISH +Description = The user polishes its body to reduce drag. It sharply raises the Speed stat. +#------------------------------- +[TM70] +Name = TM70 +NamePlural = TM70s +Pocket = Machines +Price = 1000 +BPPrice = 6 +FieldUse = TM +Move = FLASH +Description = The user flashes a bright light that cuts the target's accuracy. It can also be used to illuminate caves. +#------------------------------- +[TM71] +Name = TM71 +NamePlural = TM71s +Pocket = Machines +Price = 3000 +BPPrice = 6 +FieldUse = TM +Move = STONEEDGE +Description = The user stabs the foe with sharpened stones from below. It has a high critical-hit ratio. +#------------------------------- +[TM72] +Name = TM72 +NamePlural = TM72s +Pocket = Machines +Price = 3000 +BPPrice = 6 +FieldUse = TM +Move = VOLTSWITCH +Description = After making its attack, the user rushes back to switch places with a party Pokémon in waiting. +#------------------------------- +[TM73] +Name = TM73 +NamePlural = TM73s +Pocket = Machines +Price = 2000 +BPPrice = 6 +FieldUse = TM +Move = THUNDERWAVE +Description = A weak electric charge is launched at the target. It causes paralysis if it hits. +#------------------------------- +[TM74] +Name = TM74 +NamePlural = TM74s +Pocket = Machines +Price = 3000 +BPPrice = 6 +FieldUse = TM +Move = GYROBALL +Description = The user tackles the target with a high-speed spin. The slower the user, the greater the damage. +#------------------------------- +[TM75] +Name = TM75 +NamePlural = TM75s +Pocket = Machines +Price = 1500 +BPPrice = 18 +FieldUse = TM +Move = SWORDSDANCE +Description = A frenetic dance to uplift the fighting spirit. It sharply raises the user's Attack stat. +#------------------------------- +[TM76] +Name = TM76 +NamePlural = TM76s +Pocket = Machines +Price = 2000 +BPPrice = 6 +FieldUse = TM +Move = STRUGGLEBUG +Description = Resisting, the user attacks the opposing Pokémon. The targets' Sp. Atk stat is reduced. +#------------------------------- +[TM77] +Name = TM77 +NamePlural = TM77s +Pocket = Machines +Price = 1500 +BPPrice = 24 +FieldUse = TM +Move = PSYCHUP +Description = The user hypnotizes itself into copying any stat change made by the target. +#------------------------------- +[TM78] +Name = TM78 +NamePlural = TM78s +Pocket = Machines +Price = 1500 +BPPrice = 6 +FieldUse = TM +Move = BULLDOZE +Description = The user stomps down on the ground and attacks everything in the area. The targets' Speed stat is reduced. +#------------------------------- +[TM79] +Name = TM79 +NamePlural = TM79s +Pocket = Machines +Price = 3000 +BPPrice = 12 +FieldUse = TM +Move = FROSTBREATH +Description = The user blows a cold breath on the target. This attack always results in a critical hit. +#------------------------------- +[TM80] +Name = TM80 +NamePlural = TM80s +Pocket = Machines +Price = 3000 +BPPrice = 6 +FieldUse = TM +Move = ROCKSLIDE +Description = Large boulders are hurled at the opposing team to inflict damage. They may also make the targets flinch. +#------------------------------- +[TM81] +Name = TM81 +NamePlural = TM81s +Pocket = Machines +Price = 3000 +BPPrice = 6 +FieldUse = TM +Move = XSCISSOR +Description = The user slashes at the target by crossing its scythes or claws as if they were a pair of scissors. +#------------------------------- +[TM82] +Name = TM82 +NamePlural = TM82s +Pocket = Machines +Price = 1000 +BPPrice = 6 +FieldUse = TM +Move = DRAGONTAIL +Description = The user knocks away the target and drags out another Pokémon in its party. In the wild, the battle ends. +#------------------------------- +[TM83] +Name = TM83 +NamePlural = TM83s +Pocket = Machines +Price = 2000 +BPPrice = 6 +FieldUse = TM +Move = WORKUP +Description = The user is roused, and its Attack and Sp. Atk stats increase. +#------------------------------- +[TM84] +Name = TM84 +NamePlural = TM84s +Pocket = Machines +Price = 3000 +BPPrice = 6 +FieldUse = TM +Move = POISONJAB +Description = The target is stabbed with a tentacle or arm steeped in poison. It may also poison the target. +#------------------------------- +[TM85] +Name = TM85 +NamePlural = TM85s +Pocket = Machines +Price = 3000 +BPPrice = 6 +FieldUse = TM +Move = DREAMEATER +Description = The user eats the dreams of a sleeping target. It absorbs half the damage caused to heal the user's HP. +#------------------------------- +[TM86] +Name = TM86 +NamePlural = TM86s +Pocket = Machines +Price = 3000 +BPPrice = 6 +FieldUse = TM +Move = GRASSKNOT +Description = The user snares the target with grass and trips it. The heavier the target, the greater the damage. +#------------------------------- +[TM87] +Name = TM87 +NamePlural = TM87s +Pocket = Machines +Price = 1500 +BPPrice = 18 +FieldUse = TM +Move = SWAGGER +Description = The user enrages and confuses the target. However, it also sharply raises the target's Attack stat. +#------------------------------- +[TM88] +Name = TM88 +NamePlural = TM88s +Pocket = Machines +Price = 3000 +BPPrice = 18 +FieldUse = TM +Move = PLUCK +Description = The user pecks the target. If the target is holding a Berry, the user plucks it and gains its effect. +#------------------------------- +[TM89] +Name = TM89 +NamePlural = TM89s +Pocket = Machines +Price = 3000 +BPPrice = 12 +FieldUse = TM +Move = UTURN +Description = After making its attack, the user rushes back to switch places with a party Pokémon in waiting. +#------------------------------- +[TM90] +Name = TM90 +NamePlural = TM90s +Pocket = Machines +Price = 2000 +BPPrice = 6 +FieldUse = TM +Move = SUBSTITUTE +Description = The user makes a copy of itself using some of its HP. The copy serves as the user's decoy. +#------------------------------- +[TM91] +Name = TM91 +NamePlural = TM91s +Pocket = Machines +Price = 3000 +BPPrice = 6 +FieldUse = TM +Move = FLASHCANNON +Description = The user gathers all its light energy and releases it at once. It may also lower the target's Sp. Def stat. +#------------------------------- +[TM92] +Name = TM92 +NamePlural = TM92s +Pocket = Machines +Price = 5500 +BPPrice = 6 +FieldUse = TM +Move = TRICKROOM +Description = The user creates a bizarre space in which slower Pokémon get to move first for five turns. +#------------------------------- +[TM93] +Name = TM93 +NamePlural = TM93s +Pocket = Machines +Price = 3000 +BPPrice = 6 +FieldUse = TM +Move = WILDCHARGE +Description = The user shrouds itself in electricity and smashes into its target. It also damages the user a little. +#------------------------------- +[TM94] +Name = TM94 +NamePlural = TM94s +Pocket = Machines +Price = 1000 +BPPrice = 6 +FieldUse = TM +Move = ROCKSMASH +Description = The user attacks with a punch that can shatter a rock. It may also lower the target's Defense stat. +#------------------------------- +[TM95] +Name = TM95 +NamePlural = TM95s +Pocket = Machines +Price = 3000 +BPPrice = 6 +FieldUse = TM +Move = SNARL +Description = The user yells as if it is ranting about something, making the target's Sp. Atk stat decrease. +#------------------------------- +[HM01] +Name = HM01 +NamePlural = HM01s +Pocket = Machines +Price = 0 +FieldUse = HM +Move = CUT +Description = The target is cut with a scythe or claw. It can also be used to cut down thin trees. +#------------------------------- +[HM02] +Name = HM02 +NamePlural = HM02s +Pocket = Machines +Price = 0 +FieldUse = HM +Move = FLY +Description = The user soars, then strikes on the second turn. It can also be used to fly to any familiar town. +#------------------------------- +[HM03] +Name = HM03 +NamePlural = HM03s +Pocket = Machines +Price = 0 +FieldUse = HM +Move = SURF +Description = It swamps the area around the user with a giant wave. It can also be used for crossing water. +#------------------------------- +[HM04] +Name = HM04 +NamePlural = HM04s +Pocket = Machines +Price = 0 +FieldUse = HM +Move = STRENGTH +Description = The target is slugged with a punch thrown at maximum power. This move can also be used to move boulders. +#------------------------------- +[HM05] +Name = HM05 +NamePlural = HM05s +Pocket = Machines +Price = 0 +FieldUse = HM +Move = WATERFALL +Description = The user charges the target at an awesome speed. It can also be used to climb a waterfall. +#------------------------------- +[HM06] +Name = HM06 +NamePlural = HM06s +Pocket = Machines +Price = 0 +FieldUse = HM +Move = DIVE +Description = The user dives on the first turn, and floats up and attacks on the second. It can be used to dive in the ocean. +#------------------------------- [BICYCLE] Name = Bicycle NamePlural = Bicycles -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = Direct Flags = KeyItem @@ -4611,7 +4611,7 @@ Description = A folding Bicycle that enables much faster movement than the Runni [OLDROD] Name = Old Rod NamePlural = Old Rods -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = Direct Flags = KeyItem @@ -4620,7 +4620,7 @@ Description = An old and beat-up fishing rod. Use it by any body of water to fis [GOODROD] Name = Good Rod NamePlural = Good Rods -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = Direct Flags = KeyItem @@ -4629,7 +4629,7 @@ Description = A new, good-quality fishing rod. Use it by any body of water to fi [SUPERROD] Name = Super Rod NamePlural = Super Rods -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = Direct Flags = KeyItem @@ -4638,7 +4638,7 @@ Description = An awesome, high-tech fishing rod. Use it by any body of water to [ITEMFINDER] Name = Itemfinder NamePlural = Itemfinders -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = Direct Flags = KeyItem @@ -4647,7 +4647,7 @@ Description = A device used for finding items. If there is a hidden item nearby [DOWSINGMACHINE] Name = Dowsing Machine NamePlural = Dowsing Machines -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = Direct Flags = KeyItem @@ -4656,7 +4656,7 @@ Description = It checks for unseen items in the area and makes noise and lights [POKERADAR] Name = Poké Radar NamePlural = Poké Radars -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = Direct Flags = KeyItem @@ -4665,7 +4665,7 @@ Description = A tool that can search out Pokémon that are hiding in grass. Its [TOWNMAP] Name = Town Map NamePlural = Town Maps -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = Direct Flags = KeyItem @@ -4674,7 +4674,7 @@ Description = A very convenient map that can be viewed anytime. It even shows yo [POKEFLUTE] Name = Poké Flute NamePlural = Poké Flutes -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = OnPokemon BattleUse = Direct @@ -4684,7 +4684,7 @@ Description = A flute that is said to instantly awaken any Pokémon. It has a lo [COINCASE] Name = Coin Case NamePlural = Coin Cases -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = Direct Flags = KeyItem @@ -4693,7 +4693,7 @@ Description = A case for holding coins obtained at the Game Corner. It holds up [SOOTSACK] Name = Soot Sack NamePlural = Soot Sacks -Pocket = 8 +Pocket = KeyItems Price = 0 Flags = KeyItem Description = A sack used to gather and hold volcanic ash. @@ -4701,7 +4701,7 @@ Description = A sack used to gather and hold volcanic ash. [SILPHSCOPE] Name = Silph Scope NamePlural = Silph Scopes -Pocket = 8 +Pocket = KeyItems Price = 0 Flags = KeyItem Description = A scope that makes unseeable Pokémon visible. It is made by Silph Co. @@ -4709,7 +4709,7 @@ Description = A scope that makes unseeable Pokémon visible. It is made by Silph [DEVONSCOPE] Name = Devon Scope NamePlural = Devon Scopes -Pocket = 8 +Pocket = KeyItems Price = 0 Flags = KeyItem Description = A device by Devon that signals any unseeable Pokémon. @@ -4717,7 +4717,7 @@ Description = A device by Devon that signals any unseeable Pokémon. [SQUIRTBOTTLE] Name = Squirt Bottle NamePlural = Squirt Bottles -Pocket = 8 +Pocket = KeyItems Price = 0 Flags = KeyItem Description = A watering can shaped like a Squirtle. It helps promote healthy growth of Berries planted in soft soil. @@ -4725,7 +4725,7 @@ Description = A watering can shaped like a Squirtle. It helps promote healthy gr [SPRAYDUCK] Name = Sprayduck NamePlural = Sprayducks -Pocket = 8 +Pocket = KeyItems Price = 0 Flags = KeyItem Description = A watering can shaped like a Psyduck. It helps promote healthy growth of Berries planted in soft soil. @@ -4733,7 +4733,7 @@ Description = A watering can shaped like a Psyduck. It helps promote healthy gro [WAILMERPAIL] Name = Wailmer Pail NamePlural = Wailmer Pails -Pocket = 8 +Pocket = KeyItems Price = 0 Flags = KeyItem Description = A nifty watering pail. Use it to promote strong growth in Berries planted in soft soil. @@ -4741,7 +4741,7 @@ Description = A nifty watering pail. Use it to promote strong growth in Berries [GRACIDEA] Name = Gracidea NamePlural = Gracideas -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = OnPokemon Flags = KeyItem @@ -4750,7 +4750,7 @@ Description = A flower sometimes bundled in bouquets to convey gratitude on spec [AURORATICKET] Name = Aurora Ticket NamePlural = Aurora Tickets -Pocket = 8 +Pocket = KeyItems Price = 0 Flags = KeyItem Description = A ticket required to board the ship to Berth Island. It glows beautifully. @@ -4758,7 +4758,7 @@ Description = A ticket required to board the ship to Berth Island. It glows beau [OLDSEAMAP] Name = Old Sea Map NamePlural = Old Sea Maps -Pocket = 8 +Pocket = KeyItems Price = 0 Flags = KeyItem Description = A faded sea chart that shows the way to a certain island. @@ -4766,7 +4766,7 @@ Description = A faded sea chart that shows the way to a certain island. [DNASPLICERS] Name = DNA Splicers NamePlural = DNA Splicers -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = OnPokemon Flags = KeyItem @@ -4775,7 +4775,7 @@ Description = A splicer that fuses Kyurem and a certain Pokémon. They are said [DNASPLICERSUSED] Name = DNA Splicers NamePlural = DNA Splicers -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = OnPokemon Flags = KeyItem @@ -4784,7 +4784,7 @@ Description = A splicer that separates Kyurem and a certain Pokémon when they h [REVEALGLASS] Name = Reveal Glass NamePlural = Reveal Glasses -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = OnPokemon Flags = KeyItem @@ -4793,7 +4793,7 @@ Description = A glass that reveals the truth. It is a mysterious glass that retu [OVALCHARM] Name = Oval Charm NamePlural = Oval Charms -Pocket = 8 +Pocket = KeyItems Price = 0 Flags = KeyItem Description = An oval charm said to increase the chance of Eggs being found at the Day Care. @@ -4801,7 +4801,7 @@ Description = An oval charm said to increase the chance of Eggs being found at t [SHINYCHARM] Name = Shiny Charm NamePlural = Shiny Charms -Pocket = 8 +Pocket = KeyItems Price = 0 Flags = KeyItem Description = A shiny charm said to increase the chance of finding a Shiny Pokémon. diff --git a/PBS/Gen 6 backup/items.txt b/PBS/Gen 6 backup/items.txt index 81df41b30..2ed864ff2 100644 --- a/PBS/Gen 6 backup/items.txt +++ b/PBS/Gen 6 backup/items.txt @@ -3,7 +3,7 @@ [REPEL] Name = Repel NamePlural = Repels -Pocket = 1 +Pocket = Items Price = 400 FieldUse = Direct Flags = Repel,Fling_30 @@ -12,7 +12,7 @@ Description = An item that prevents weak wild Pokémon from appearing for 100 st [SUPERREPEL] Name = Super Repel NamePlural = Super Repels -Pocket = 1 +Pocket = Items Price = 700 FieldUse = Direct Flags = Repel,Fling_30 @@ -21,7 +21,7 @@ Description = An item that prevents weak wild Pokémon from appearing for 200 st [MAXREPEL] Name = Max Repel NamePlural = Max Repels -Pocket = 1 +Pocket = Items Price = 900 FieldUse = Direct Flags = Repel,Fling_30 @@ -30,7 +30,7 @@ Description = An item that prevents weak wild Pokémon from appearing for 250 st [BLACKFLUTE] Name = Black Flute NamePlural = Black Flutes -Pocket = 1 +Pocket = Items Price = 400 FieldUse = Direct Flags = Fling_30 @@ -40,7 +40,7 @@ Description = A black flute made from blown glass. Its melody makes wild Pokémo [WHITEFLUTE] Name = White Flute NamePlural = White Flutes -Pocket = 1 +Pocket = Items Price = 500 FieldUse = Direct Flags = Fling_30 @@ -52,7 +52,7 @@ Name = Honey NamePlural = Honey PortionName = jar of Honey PortionNamePlural = jars of Honey -Pocket = 1 +Pocket = Items Price = 300 FieldUse = Direct Flags = Fling_30 @@ -61,7 +61,7 @@ Description = A sweet honey with an aroma that attracts wild Pokémon when used [ESCAPEROPE] Name = Escape Rope NamePlural = Escape Ropes -Pocket = 1 +Pocket = Items Price = 1000 FieldUse = Direct Flags = Fling_30 @@ -70,7 +70,7 @@ Description = A long, durable rope. Use it to escape instantly from a cave or a [REDSHARD] Name = Red Shard NamePlural = Red Shards -Pocket = 1 +Pocket = Items Price = 1000 Flags = Fling_30 Description = A small red shard. It appears to be from some sort of implement made long ago. @@ -78,7 +78,7 @@ Description = A small red shard. It appears to be from some sort of implement ma [YELLOWSHARD] Name = Yellow Shard NamePlural = Yellow Shards -Pocket = 1 +Pocket = Items Price = 1000 Flags = Fling_30 Description = A small yellow shard. It appears to be from some sort of implement made long ago. @@ -86,7 +86,7 @@ Description = A small yellow shard. It appears to be from some sort of implement [BLUESHARD] Name = Blue Shard NamePlural = Blue Shards -Pocket = 1 +Pocket = Items Price = 1000 Flags = Fling_30 Description = A small blue shard. It appears to be from some sort of implement made long ago. @@ -94,7 +94,7 @@ Description = A small blue shard. It appears to be from some sort of implement m [GREENSHARD] Name = Green Shard NamePlural = Green Shards -Pocket = 1 +Pocket = Items Price = 1000 Flags = Fling_30 Description = A small green shard. It appears to be from some sort of implement made long ago. @@ -102,7 +102,7 @@ Description = A small green shard. It appears to be from some sort of implement [FIRESTONE] Name = Fire Stone NamePlural = Fire Stones -Pocket = 1 +Pocket = Items Price = 3000 BPPrice = 16 FieldUse = OnPokemon @@ -112,7 +112,7 @@ Description = A peculiar stone that makes certain species of Pokémon evolve. It [THUNDERSTONE] Name = Thunder Stone NamePlural = Thunder Stones -Pocket = 1 +Pocket = Items Price = 3000 BPPrice = 16 FieldUse = OnPokemon @@ -122,7 +122,7 @@ Description = A peculiar stone that makes certain species of Pokémon evolve. It [WATERSTONE] Name = Water Stone NamePlural = Water Stones -Pocket = 1 +Pocket = Items Price = 3000 BPPrice = 16 FieldUse = OnPokemon @@ -132,7 +132,7 @@ Description = A peculiar stone that makes certain species of Pokémon evolve. It [LEAFSTONE] Name = Leaf Stone NamePlural = Leaf Stones -Pocket = 1 +Pocket = Items Price = 3000 BPPrice = 16 FieldUse = OnPokemon @@ -142,7 +142,7 @@ Description = A peculiar stone that makes certain species of Pokémon evolve. It [MOONSTONE] Name = Moon Stone NamePlural = Moon Stones -Pocket = 1 +Pocket = Items Price = 3000 BPPrice = 16 FieldUse = OnPokemon @@ -152,7 +152,7 @@ Description = A peculiar stone that makes certain species of Pokémon evolve. It [SUNSTONE] Name = Sun Stone NamePlural = Sun Stones -Pocket = 1 +Pocket = Items Price = 3000 BPPrice = 16 FieldUse = OnPokemon @@ -162,7 +162,7 @@ Description = A peculiar stone that makes certain species of Pokémon evolve. It [DUSKSTONE] Name = Dusk Stone NamePlural = Dusk Stones -Pocket = 1 +Pocket = Items Price = 3000 BPPrice = 16 FieldUse = OnPokemon @@ -172,7 +172,7 @@ Description = A peculiar stone that makes certain species of Pokémon evolve. It [DAWNSTONE] Name = Dawn Stone NamePlural = Dawn Stones -Pocket = 1 +Pocket = Items Price = 3000 BPPrice = 16 FieldUse = OnPokemon @@ -182,7 +182,7 @@ Description = A peculiar stone that makes certain species of Pokémon evolve. It [SHINYSTONE] Name = Shiny Stone NamePlural = Shiny Stones -Pocket = 1 +Pocket = Items Price = 3000 BPPrice = 16 FieldUse = OnPokemon @@ -192,7 +192,7 @@ Description = A peculiar stone that makes certain species of Pokémon evolve. It [REDAPRICORN] Name = Red Apricorn NamePlural = Red Apricorns -Pocket = 1 +Pocket = Items Price = 20 Flags = Apricorn Description = A red Apricorn. It assails your nostrils. @@ -200,7 +200,7 @@ Description = A red Apricorn. It assails your nostrils. [YELLOWAPRICORN] Name = Yellow Apricorn NamePlural = Yellow Apricorns -Pocket = 1 +Pocket = Items Price = 20 Flags = Apricorn Description = A yellow Apricorn. It has an invigorating scent. @@ -208,7 +208,7 @@ Description = A yellow Apricorn. It has an invigorating scent. [BLUEAPRICORN] Name = Blue Apricorn NamePlural = Blue Apricorns -Pocket = 1 +Pocket = Items Price = 20 Flags = Apricorn Description = A blue Apricorn. It smells a bit like grass. @@ -216,7 +216,7 @@ Description = A blue Apricorn. It smells a bit like grass. [GREENAPRICORN] Name = Green Apricorn NamePlural = Green Apricorns -Pocket = 1 +Pocket = Items Price = 20 Flags = Apricorn Description = A green Apricorn. It has a mysterious, aromatic scent. @@ -224,7 +224,7 @@ Description = A green Apricorn. It has a mysterious, aromatic scent. [PINKAPRICORN] Name = Pink Apricorn NamePlural = Pink Apricorns -Pocket = 1 +Pocket = Items Price = 20 Flags = Apricorn Description = A pink Apricorn. It has a nice, sweet scent. @@ -232,7 +232,7 @@ Description = A pink Apricorn. It has a nice, sweet scent. [WHITEAPRICORN] Name = White Apricorn NamePlural = White Apricorns -Pocket = 1 +Pocket = Items Price = 20 Flags = Apricorn Description = A white Apricorn. It doesn't smell like anything. @@ -240,7 +240,7 @@ Description = A white Apricorn. It doesn't smell like anything. [BLACKAPRICORN] Name = Black Apricorn NamePlural = Black Apricorns -Pocket = 1 +Pocket = Items Price = 20 Flags = Apricorn Description = A black Apricorn. It has an indescribable scent. @@ -248,7 +248,7 @@ Description = A black Apricorn. It has an indescribable scent. [HELIXFOSSIL] Name = Helix Fossil NamePlural = Helix Fossils -Pocket = 1 +Pocket = Items Price = 7000 Flags = Fossil,Fling_100 Description = A fossil of an ancient Pokémon that lived in the sea. It appears to be part of a seashell. @@ -256,7 +256,7 @@ Description = A fossil of an ancient Pokémon that lived in the sea. It appears [DOMEFOSSIL] Name = Dome Fossil NamePlural = Dome Fossils -Pocket = 1 +Pocket = Items Price = 7000 Flags = Fossil,Fling_100 Description = A fossil of an ancient Pokémon that lived in the sea. It appears to be part of a shell. @@ -264,7 +264,7 @@ Description = A fossil of an ancient Pokémon that lived in the sea. It appears [OLDAMBER] Name = Old Amber NamePlural = Old Ambers -Pocket = 1 +Pocket = Items Price = 1000 Flags = Fossil,Fling_100 Description = A piece of amber that contains the genes of an ancient Pokémon. It is clear with a reddish tint. @@ -272,7 +272,7 @@ Description = A piece of amber that contains the genes of an ancient Pokémon. I [ROOTFOSSIL] Name = Root Fossil NamePlural = Root Fossils -Pocket = 1 +Pocket = Items Price = 7000 Flags = Fossil,Fling_100 Description = A fossil of an ancient Pokémon that lived in the sea. It appears to be part of a plant root. @@ -280,7 +280,7 @@ Description = A fossil of an ancient Pokémon that lived in the sea. It appears [CLAWFOSSIL] Name = Claw Fossil NamePlural = Claw Fossils -Pocket = 1 +Pocket = Items Price = 7000 Flags = Fossil,Fling_100 Description = A fossil of an ancient Pokémon that lived in the sea. It appears to be part of a claw. @@ -288,7 +288,7 @@ Description = A fossil of an ancient Pokémon that lived in the sea. It appears [SKULLFOSSIL] Name = Skull Fossil NamePlural = Skull Fossils -Pocket = 1 +Pocket = Items Price = 7000 Flags = Fossil,Fling_100 Description = A fossil from a prehistoric Pokémon that lived on the land. It appears to be part of a head. @@ -296,7 +296,7 @@ Description = A fossil from a prehistoric Pokémon that lived on the land. It ap [ARMORFOSSIL] Name = Armor Fossil NamePlural = Armor Fossils -Pocket = 1 +Pocket = Items Price = 7000 Flags = Fossil,Fling_100 Description = A fossil from a prehistoric Pokémon that lived on the land. It appears to be part of a collar. @@ -304,7 +304,7 @@ Description = A fossil from a prehistoric Pokémon that lived on the land. It ap [COVERFOSSIL] Name = Cover Fossil NamePlural = Cover Fossils -Pocket = 1 +Pocket = Items Price = 7000 Flags = Fossil,Fling_100 Description = A fossil of an ancient Pokémon that lived in the sea in ancient times. It appears to be part of its back. @@ -312,7 +312,7 @@ Description = A fossil of an ancient Pokémon that lived in the sea in ancient t [PLUMEFOSSIL] Name = Plume Fossil NamePlural = Plume Fossils -Pocket = 1 +Pocket = Items Price = 7000 Flags = Fossil,Fling_100 Description = A fossil of an ancient Pokémon that flew in the sky in ancient times. It appears to be part of its wing. @@ -320,7 +320,7 @@ Description = A fossil of an ancient Pokémon that flew in the sky in ancient ti [JAWFOSSIL] Name = Jaw Fossil NamePlural = Jaw Fossils -Pocket = 1 +Pocket = Items Price = 7000 Flags = Fossil,Fling_100 Description = A fossil from a prehistoric Pokémon that once lived on the land. It appears to be part of a large jaw. @@ -328,7 +328,7 @@ Description = A fossil from a prehistoric Pokémon that once lived on the land. [SAILFOSSIL] Name = Sail Fossil NamePlural = Sail Fossils -Pocket = 1 +Pocket = Items Price = 7000 Flags = Fossil,Fling_100 Description = A fossil from a prehistoric Pokémon that once lived on the land. It looks like the impression from a skin sail. @@ -336,7 +336,7 @@ Description = A fossil from a prehistoric Pokémon that once lived on the land. [PRETTYWING] Name = Pretty Wing NamePlural = Pretty Wings -Pocket = 1 +Pocket = Items Price = 1000 Flags = Fling_20 Description = Though this feather is beautiful, it's just a regular feather and has no effect on Pokémon. @@ -344,7 +344,7 @@ Description = Though this feather is beautiful, it's just a regular feather and [TINYMUSHROOM] Name = Tiny Mushroom NamePlural = Tiny Mushrooms -Pocket = 1 +Pocket = Items Price = 500 Flags = Fling_30 Description = A small and rare mushroom. It is sought after by collectors. @@ -352,7 +352,7 @@ Description = A small and rare mushroom. It is sought after by collectors. [BIGMUSHROOM] Name = Big Mushroom NamePlural = Big Mushrooms -Pocket = 1 +Pocket = Items Price = 5000 Flags = Fling_30 Description = A large and rare mushroom. It is sought after by collectors. @@ -360,7 +360,7 @@ Description = A large and rare mushroom. It is sought after by collectors. [BALMMUSHROOM] Name = Balm Mushroom NamePlural = Balm Mushrooms -Pocket = 1 +Pocket = Items Price = 15000 Flags = Fling_30 Description = A rare mushroom which gives off a nice fragrance. A maniac will buy it for a high price. @@ -368,7 +368,7 @@ Description = A rare mushroom which gives off a nice fragrance. A maniac will bu [PEARL] Name = Pearl NamePlural = Pearls -Pocket = 1 +Pocket = Items Price = 2000 Flags = Fling_30 Description = A somewhat-small pearl that sparkles in a pretty silver color. It can be sold cheaply to shops. @@ -376,7 +376,7 @@ Description = A somewhat-small pearl that sparkles in a pretty silver color. It [BIGPEARL] Name = Big Pearl NamePlural = Big Pearls -Pocket = 1 +Pocket = Items Price = 8000 Flags = Fling_30 Description = A quite-large pearl that sparkles in a pretty silver color. It can be sold at a high price to shops. @@ -384,7 +384,7 @@ Description = A quite-large pearl that sparkles in a pretty silver color. It can [PEARLSTRING] Name = Pearl String NamePlural = Pearl Strings -Pocket = 1 +Pocket = Items Price = 30000 Flags = Fling_30 Description = Very large pearls that sparkle in a pretty silver color. A maniac will buy them for a high price. @@ -394,7 +394,7 @@ Name = Stardust NamePlural = Stardusts PortionName = bag of Stardust PortionNamePlural = bags of Stardust -Pocket = 1 +Pocket = Items Price = 3000 Flags = Fling_30 Description = Lovely, red-colored sand with a loose, silky feel. It can be sold at a high price to shops. @@ -402,7 +402,7 @@ Description = Lovely, red-colored sand with a loose, silky feel. It can be sold [STARPIECE] Name = Star Piece NamePlural = Star Pieces -Pocket = 1 +Pocket = Items Price = 12000 Flags = Fling_30 Description = A shard of a pretty gem that sparkles in a red color. It can be sold at a high price to shops. @@ -410,7 +410,7 @@ Description = A shard of a pretty gem that sparkles in a red color. It can be so [COMETSHARD] Name = Comet Shard NamePlural = Comet Shards -Pocket = 1 +Pocket = Items Price = 60000 Flags = Fling_30 Description = A shard which fell to the ground when a comet approached. A maniac will buy it for a high price. @@ -418,7 +418,7 @@ Description = A shard which fell to the ground when a comet approached. A maniac [NUGGET] Name = Nugget NamePlural = Nuggets -Pocket = 1 +Pocket = Items Price = 10000 Flags = Fling_30 Description = A nugget of pure gold that gives off a lustrous gleam. It can be sold at a high price to shops. @@ -426,7 +426,7 @@ Description = A nugget of pure gold that gives off a lustrous gleam. It can be s [BIGNUGGET] Name = Big Nugget NamePlural = Big Nuggets -Pocket = 1 +Pocket = Items Price = 40000 Flags = Fling_30 Description = A big nugget of pure gold that gives off a lustrous gleam. A maniac will buy it for a high price. @@ -434,7 +434,7 @@ Description = A big nugget of pure gold that gives off a lustrous gleam. A mania [HEARTSCALE] Name = Heart Scale NamePlural = Heart Scales -Pocket = 1 +Pocket = Items Price = 100 Flags = Fling_30 Description = A pretty, heart-shaped scale that is extremely rare. It glows faintly in the colors of the rainbow. @@ -442,14 +442,14 @@ Description = A pretty, heart-shaped scale that is extremely rare. It glows fain [SLOWPOKETAIL] Name = Slowpoke Tail NamePlural = Slowpoke Tails -Pocket = 1 +Pocket = Items Price = 10000 Description = A very tasty tail of something. It can be sold at a high price to shops. #------------------------------- [RAREBONE] Name = Rare Bone NamePlural = Rare Bones -Pocket = 1 +Pocket = Items Price = 5000 Flags = Fling_100 Description = A bone that is extremely valuable for Pokémon archaeology. It can be sold for a high price to shops. @@ -459,7 +459,7 @@ Name = Relic Copper NamePlural = Relic Coppers PortionName = Relic Copper coin PortionNamePlural = Relic Copper coins -Pocket = 1 +Pocket = Items Price = 0 Flags = Fling_30 Description = A copper coin used in a civilization about 3,000 years ago. A maniac will buy it for a high price. @@ -469,7 +469,7 @@ Name = Relic Silver NamePlural = Relic Silvers PortionName = Relic Silver coin PortionNamePlural = Relic Silver coins -Pocket = 1 +Pocket = Items Price = 0 Flags = Fling_30 Description = A silver coin used in a civilization about 3,000 years ago. A maniac will buy it for a high price. @@ -479,7 +479,7 @@ Name = Relic Gold NamePlural = Relic Golds PortionName = Relic Gold coin PortionNamePlural = Relic Gold coins -Pocket = 1 +Pocket = Items Price = 0 Flags = Fling_30 Description = A gold coin used in a civilization about 3,000 years ago. A maniac will buy it for a high price. @@ -487,7 +487,7 @@ Description = A gold coin used in a civilization about 3,000 years ago. A maniac [RELICVASE] Name = Relic Vase NamePlural = Relic Vases -Pocket = 1 +Pocket = Items Price = 0 Flags = Fling_30 Description = A vase made in a civilization about 3,000 years ago. A maniac will buy it for a high price. @@ -495,7 +495,7 @@ Description = A vase made in a civilization about 3,000 years ago. A maniac will [RELICBAND] Name = Relic Band NamePlural = Relic Bands -Pocket = 1 +Pocket = Items Price = 0 Flags = Fling_30 Description = A bracelet made in a civilization about 3,000 years ago. A maniac will buy it for a high price. @@ -503,7 +503,7 @@ Description = A bracelet made in a civilization about 3,000 years ago. A maniac [RELICSTATUE] Name = Relic Statue NamePlural = Relic Statues -Pocket = 1 +Pocket = Items Price = 0 Flags = Fling_30 Description = A stone figure made in a civilization about 3,000 years ago. A maniac will buy it for a high price. @@ -511,7 +511,7 @@ Description = A stone figure made in a civilization about 3,000 years ago. A man [RELICCROWN] Name = Relic Crown NamePlural = Relic Crowns -Pocket = 1 +Pocket = Items Price = 0 Flags = Fling_30 Description = A crown made in a civilization about 3,000 years ago. A maniac will buy it for a high price. @@ -521,7 +521,7 @@ Name = Growth Mulch NamePlural = Growth Mulch PortionName = bag of Growth Mulch PortionNamePlural = bags of Growth Mulch -Pocket = 1 +Pocket = Items Price = 200 Flags = Mulch,Fling_30 Description = A fertilizer to be spread on soft soil in regions where Berries are grown. A maniac will buy it for a high price. @@ -531,7 +531,7 @@ Name = Damp Mulch NamePlural = Damp Mulch PortionName = bag of Damp Mulch PortionNamePlural = bags of Damp Mulch -Pocket = 1 +Pocket = Items Price = 200 Flags = Mulch,Fling_30 Description = A fertilizer to be spread on soft soil in regions where Berries are grown. A maniac will buy it for a high price. @@ -541,7 +541,7 @@ Name = Stable Mulch NamePlural = Stable Mulch PortionName = bag of Stable Mulch PortionNamePlural = bags of Stable Mulch -Pocket = 1 +Pocket = Items Price = 200 Flags = Mulch,Fling_30 Description = A fertilizer to be spread on soft soil in regions where Berries are grown. A maniac will buy it for a high price. @@ -551,7 +551,7 @@ Name = Gooey Mulch NamePlural = Gooey Mulch PortionName = bag of Gooey Mulch PortionNamePlural = bags of Gooey Mulch -Pocket = 1 +Pocket = Items Price = 200 Flags = Mulch,Fling_30 Description = A fertilizer to be spread on soft soil in regions where Berries are grown. A maniac will buy it for a high price. @@ -561,7 +561,7 @@ Name = Shoal Salt NamePlural = Shoal Salts PortionName = pile of Shoal Salt PortionNamePlural = piles of Shoal Salt -Pocket = 1 +Pocket = Items Price = 20 Flags = Fling_30 Description = Pure salt that can be discovered deep inside the Shoal Cave. A maniac will buy it for a high price. @@ -569,7 +569,7 @@ Description = Pure salt that can be discovered deep inside the Shoal Cave. A man [SHOALSHELL] Name = Shoal Shell NamePlural = Shoal Shells -Pocket = 1 +Pocket = Items Price = 20 Flags = Fling_30 Description = A pretty seashell that can be found deep inside the Shoal Cave. A maniac will buy it for a high price. @@ -577,1862 +577,135 @@ Description = A pretty seashell that can be found deep inside the Shoal Cave. A [ODDKEYSTONE] Name = Odd Keystone NamePlural = Odd Keystones -Pocket = 1 +Pocket = Items Price = 2100 Flags = Fling_80 Description = A vital item that is needed to keep a stone tower from collapsing. Voices can be heard from it occasionally. #------------------------------- -[AIRBALLOON] -Name = Air Balloon -NamePlural = Air Balloons -Pocket = 1 -Price = 4000 -BPPrice = 48 -Flags = Fling_10 -Description = An item to be held by a Pokémon. The holder will float in the air until hit. Once hit, this item will burst. -#------------------------------- -[BRIGHTPOWDER] -Name = Bright Powder -NamePlural = Bright Powders -PortionName = bag of Bright Powder -PortionNamePlural = bags of Bright Powder -Pocket = 1 -Price = 4000 -BPPrice = 48 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It casts a tricky glare that lowers the opponent's accuracy. -#------------------------------- -[EVIOLITE] -Name = Eviolite -NamePlural = Eviolites -Pocket = 1 -Price = 4000 -BPPrice = 48 -Flags = Fling_40 -Description = A mysterious evolutionary lump. When held, it raises the Defense and Sp. Def if the holder can still evolve. -#------------------------------- -[FLOATSTONE] -Name = Float Stone -NamePlural = Float Stones -Pocket = 1 -Price = 4000 -BPPrice = 48 -Flags = Fling_30 -Description = A very light stone. It reduces the weight of a Pokémon when held. -#------------------------------- -[DESTINYKNOT] -Name = Destiny Knot -NamePlural = Destiny Knots -Pocket = 1 -Price = 4000 -BPPrice = 48 -Flags = Fling_10 -Description = A long, thin, bright-red string to be held by a Pokémon. If the holder becomes infatuated, so does the foe. -#------------------------------- -[ROCKYHELMET] -Name = Rocky Helmet -NamePlural = Rocky Helmets -Pocket = 1 -Price = 4000 -BPPrice = 48 -Flags = Fling_60 -Description = If the holder of this item takes damage, the attacker will also be damaged upon contact. -#------------------------------- -[ASSAULTVEST] -Name = Assault Vest -NamePlural = Assault Vests -Pocket = 1 -Price = 1000 -BPPrice = 48 -Flags = Fling_80 -Description = An item to be held by a Pokémon. This offensive vest raises Sp. Def but prevents the use of status moves. -#------------------------------- -[SAFETYGOGGLES] -Name = Safety Goggles -NamePlural = Safety Goggles -PortionName = pair of Safety Goggles -PortionNamePlural = pairs of Safety Goggles -Pocket = 1 -Price = 4000 -BPPrice = 48 -Flags = Fling_80 -Description = An item to be held by a Pokémon. They protect the holder from weather-related damage and powder. -#------------------------------- -[EJECTBUTTON] -Name = Eject Button -NamePlural = Eject Buttons -Pocket = 1 -Price = 4000 -BPPrice = 32 -Flags = Fling_30 -Description = If the holder is hit by an attack, it will switch with another Pokémon in your party. -#------------------------------- -[REDCARD] -Name = Red Card -NamePlural = Red Cards -Pocket = 1 -Price = 4000 -BPPrice = 32 -Flags = Fling_10 -Description = A card with a mysterious power. When the holder is struck by a foe, the attacker is removed from battle. -#------------------------------- -[SHEDSHELL] -Name = Shed Shell -NamePlural = Shed Shells -Pocket = 1 -Price = 4000 -Flags = Fling_10 -Description = An item to be held by a Pokémon. This discarded carapace lets the holder switch out of battle without fail. -#------------------------------- -[SMOKEBALL] -Name = Smoke Ball -NamePlural = Smoke Balls -Pocket = 1 -Price = 4000 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It enables the holder to flee from any wild Pokémon without fail. -#------------------------------- -[LUCKYEGG] -Name = Lucky Egg -NamePlural = Lucky Eggs -Pocket = 1 -Price = 10000 -BPPrice = 77 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It is an egg filled with happiness that earns extra Exp. Points in battle. -#------------------------------- -[EXPSHARE] -Name = Exp. Share -NamePlural = Exp. Shares -Pocket = 1 -Price = 3000 -Flags = Fling_30 -Description = An item to be held by a Pokémon. The holder gets a share of a battle's Exp. Points without battling. -#------------------------------- -[AMULETCOIN] -Name = Amulet Coin -NamePlural = Amulet Coins -Pocket = 1 -Price = 10000 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It doubles a battle's prize money if the holding Pokémon joins in. -#------------------------------- -[SOOTHEBELL] -Name = Soothe Bell -NamePlural = Soothe Bells -Pocket = 1 -Price = 4000 -BPPrice = 48 -Flags = Fling_10 -Description = An item to be held by a Pokémon. The comforting chime of this bell calms the holder, making it friendly. -#------------------------------- -[CLEANSETAG] -Name = Cleanse Tag -NamePlural = Cleanse Tags -Pocket = 1 -Price = 5000 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It helps keep wild Pokémon away if the holder is the first one in the party. -#------------------------------- -[CHOICEBAND] -Name = Choice Band -NamePlural = Choice Bands -Pocket = 1 -Price = 4000 -BPPrice = 48 -Flags = Fling_10 -Description = An item to be held by a Pokémon. This headband ups Attack, but allows the use of only one move. -#------------------------------- -[CHOICESPECS] -Name = Choice Specs -NamePlural = Choice Specs -PortionName = pair of Choice Specs -PortionNamePlural = pairs of Choice Specs -Pocket = 1 -Price = 4000 -BPPrice = 48 -Flags = Fling_10 -Description = An item to be held by a Pokémon. These curious glasses boost Sp. Atk but allows the use of only one move. -#------------------------------- -[CHOICESCARF] -Name = Choice Scarf -NamePlural = Choice Scarves -Pocket = 1 -Price = 4000 -BPPrice = 48 -Flags = Fling_10 -Description = An item to be held by a Pokémon. This scarf boosts Speed but allows the use of only one move. -#------------------------------- -[HEATROCK] -Name = Heat Rock -NamePlural = Heat Rocks -Pocket = 1 -Price = 4000 -BPPrice = 48 -Flags = Fling_60 -Description = A Pokémon held item that extends the duration of the move Sunny Day used by the holder. -#------------------------------- -[DAMPROCK] -Name = Damp Rock -NamePlural = Damp Rocks -Pocket = 1 -Price = 4000 -BPPrice = 48 -Flags = Fling_60 -Description = A Pokémon held item that extends the duration of the move Rain Dance used by the holder. -#------------------------------- -[SMOOTHROCK] -Name = Smooth Rock -NamePlural = Smooth Rocks -Pocket = 1 -Price = 4000 -BPPrice = 48 -Flags = Fling_10 -Description = A Pokémon held item that extends the duration of the move Sandstorm used by the holder. -#------------------------------- -[ICYROCK] -Name = Icy Rock -NamePlural = Icy Rocks -Pocket = 1 -Price = 4000 -BPPrice = 48 -Flags = Fling_40 -Description = A Pokémon held item that extends the duration of the move Hail used by the holder. -#------------------------------- -[LIGHTCLAY] -Name = Light Clay -NamePlural = Light Clays -PortionName = lump of Light Clay -PortionNamePlural = lumps of Light Clay -Pocket = 1 -Price = 4000 -BPPrice = 48 -Flags = Fling_30 -Description = An item to be held by a Pokémon. Protective moves like Light Screen and Reflect will be effective longer. -#------------------------------- -[GRIPCLAW] -Name = Grip Claw -NamePlural = Grip Claws -Pocket = 1 -Price = 4000 -BPPrice = 48 -Flags = Fling_90 -Description = A Pokémon held item that extends the duration of multiturn attacks like Bind and Wrap. -#------------------------------- -[BINDINGBAND] -Name = Binding Band -NamePlural = Binding Bands -Pocket = 1 -Price = 4000 -BPPrice = 48 -Flags = Fling_30 -Description = A band that increases the power of binding moves when held. -#------------------------------- -[BIGROOT] -Name = Big Root -NamePlural = Big Roots -Pocket = 1 -Price = 4000 -BPPrice = 32 -Flags = Fling_10 -Description = A Pokémon held item that boosts the power of HP-stealing moves to let the holder recover more HP. -#------------------------------- -[BLACKSLUDGE] -Name = Black Sludge -NamePlural = Black Sludges -PortionName = blob of Black Sludge -PortionNamePlural = blobs of Black Sludge -Pocket = 1 -Price = 4000 -BPPrice = 48 -Flags = Fling_30 -Description = A held item that gradually restores the HP of Poison-type Pokémon. It inflicts damage on all other types. -#------------------------------- -[LEFTOVERS] -Name = Leftovers -NamePlural = Leftovers -PortionName = serving of Leftovers -PortionNamePlural = servings of Leftovers -Pocket = 1 -Price = 4000 -BPPrice = 48 -Flags = Fling_10 -Description = An item to be held by a Pokémon. The holder's HP is gradually restored during battle. -#------------------------------- -[SHELLBELL] -Name = Shell Bell -NamePlural = Shell Bells -Pocket = 1 -Price = 4000 -BPPrice = 48 -Flags = Fling_30 -Description = An item to be held by a Pokémon. The holder's HP is restored a little every time it inflicts damage. -#------------------------------- -[MENTALHERB] -Name = Mental Herb -NamePlural = Mental Herbs -Pocket = 1 -Price = 4000 -BPPrice = 32 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It snaps the holder out of infatuation. It can be used only once. -#------------------------------- -[WHITEHERB] -Name = White Herb -NamePlural = White Herbs -Pocket = 1 -Price = 4000 -BPPrice = 32 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It restores any lowered stat in battle. It can be used only once. -#------------------------------- -[POWERHERB] -Name = Power Herb -NamePlural = Power Herbs -Pocket = 1 -Price = 4000 -BPPrice = 32 -Flags = Fling_10 -Description = A single-use item to be held by a Pokémon. It allows the immediate use of a move that charges up first. -#------------------------------- -[ABSORBBULB] -Name = Absorb Bulb -NamePlural = Absorb Bulbs -Pocket = 1 -Price = 4000 -BPPrice = 32 -Flags = Fling_30 -Description = A consumable bulb. If the holder is hit by a Water-type move, its Sp. Atk will rise. -#------------------------------- -[CELLBATTERY] -Name = Cell Battery -NamePlural = Cell Batteries -Pocket = 1 -Price = 4000 -BPPrice = 32 -Flags = Fling_30 -Description = A consumable battery. If the holder is hit by an Electric-type move, its Attack will rise. -#------------------------------- -[LUMINOUSMOSS] -Name = Luminous Moss -NamePlural = Luminous Moss -PortionName = clump of Luminous Moss -PortionNamePlural = clumps of Luminous Moss -Pocket = 1 -Price = 4000 -BPPrice = 32 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It boosts Sp. Def if hit by a Water-type attack. It can only be used once. -#------------------------------- -[SNOWBALL] -Name = Snowball -NamePlural = Snowballs -Pocket = 1 -Price = 4000 -BPPrice = 32 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It boosts Attack if hit by an Ice-type attack. It can only be used once. -#------------------------------- -[WEAKNESSPOLICY] -Name = Weakness Policy -NamePlural = Weakness Policies -Pocket = 1 -Price = 1000 -BPPrice = 32 -Flags = Fling_80 -Description = An item to be held by a Pokémon. The holder's Attack and Sp. Atk sharply increase if hit by a move it's weak to. -#------------------------------- -[LIFEORB] -Name = Life Orb -NamePlural = Life Orbs -Pocket = 1 -Price = 4000 -BPPrice = 48 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It boosts the power of moves, but at the cost of some HP on each hit. -#------------------------------- -[EXPERTBELT] -Name = Expert Belt -NamePlural = Expert Belts -Pocket = 1 -Price = 4000 -BPPrice = 48 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It is a well-worn belt that slightly boosts the power of supereffective moves. -#------------------------------- -[METRONOME] -Name = Metronome -NamePlural = Metronomes -Pocket = 1 -Price = 4000 -BPPrice = 48 -Flags = Fling_30 -Description = A Pokémon held item that boosts a move used consecutively. Its effect is reset if another move is used. -#------------------------------- -[MUSCLEBAND] -Name = Muscle Band -NamePlural = Muscle Bands -Pocket = 1 -Price = 4000 -BPPrice = 48 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It is a headband that slightly boosts the power of physical moves. -#------------------------------- -[WISEGLASSES] -Name = Wise Glasses -NamePlural = Wise Glasses -PortionName = pair of Wise Glasses -PortionNamePlural = pairs of Wise Glasses -Pocket = 1 -Price = 4000 -BPPrice = 48 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It is a thick pair of glasses that slightly boosts the power of special moves. -#------------------------------- -[RAZORCLAW] -Name = Razor Claw -NamePlural = Razor Claws -Pocket = 1 -Price = 5000 -BPPrice = 48 -Flags = Fling_80 -Description = An item to be held by a Pokémon. It is a sharply hooked claw that ups the holder's critical-hit ratio. -#------------------------------- -[SCOPELENS] -Name = Scope Lens -NamePlural = Scope Lenses -Pocket = 1 -Price = 4000 -BPPrice = 48 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It is a lens that boosts the holder's critical-hit ratio. -#------------------------------- -[WIDELENS] -Name = Wide Lens -NamePlural = Wide Lenses -Pocket = 1 -Price = 4000 -BPPrice = 48 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It is a magnifying lens that slightly boosts the accuracy of moves. -#------------------------------- -[ZOOMLENS] -Name = Zoom Lens -NamePlural = Zoom Lenses -Pocket = 1 -Price = 4000 -BPPrice = 48 -Flags = Fling_10 -Description = An item to be held by a Pokémon. If the holder moves after its target, its accuracy will be boosted. -#------------------------------- -[KINGSROCK] -Name = King's Rock -NamePlural = King's Rocks -Pocket = 1 -Price = 5000 -BPPrice = 48 -Flags = Fling_30 -Description = An item to be held by a Pokémon. When the holder inflicts damage, the target may flinch. -#------------------------------- -[RAZORFANG] -Name = Razor Fang -NamePlural = Razor Fangs -Pocket = 1 -Price = 5000 -BPPrice = 48 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It may make foes and allies flinch when the holder inflicts damage. -#------------------------------- -[LAGGINGTAIL] -Name = Lagging Tail -NamePlural = Lagging Tails -Pocket = 1 -Price = 4000 -BPPrice = 48 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It is tremendously heavy and makes the holder move slower than usual. -#------------------------------- -[QUICKCLAW] -Name = Quick Claw -NamePlural = Quick Claws -Pocket = 1 -Price = 4000 -BPPrice = 48 -Flags = Fling_80 -Description = An item to be held by a Pokémon. A light, sharp claw that lets the bearer move first occasionally. -#------------------------------- -[FOCUSBAND] -Name = Focus Band -NamePlural = Focus Bands -Pocket = 1 -Price = 4000 -BPPrice = 48 -Flags = Fling_10 -Description = An item to be held by a Pokémon. The holder may endure a potential KO attack, leaving it with just 1 HP. -#------------------------------- -[FOCUSSASH] -Name = Focus Sash -NamePlural = Focus Sashes -Pocket = 1 -Price = 4000 -BPPrice = 48 -Flags = Fling_10 -Description = An item to be held by a Pokémon. If it has full HP, the holder will endure one potential KO attack, leaving 1 HP. -#------------------------------- -[FLAMEORB] -Name = Flame Orb -NamePlural = Flame Orbs -Pocket = 1 -Price = 4000 -BPPrice = 16 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It is a bizarre orb that inflicts a burn on the holder in battle. -#------------------------------- -[TOXICORB] -Name = Toxic Orb -NamePlural = Toxic Orbs -Pocket = 1 -Price = 4000 -BPPrice = 16 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It is a bizarre orb that badly poisons the holder in battle. -#------------------------------- -[STICKYBARB] -Name = Sticky Barb -NamePlural = Sticky Barbs -Pocket = 1 -Price = 4000 -BPPrice = 16 -Flags = Fling_80 -Description = A held item that damages the holder on every turn. It may latch on to Pokémon that touch the holder. -#------------------------------- -[IRONBALL] -Name = Iron Ball -NamePlural = Iron Balls -Pocket = 1 -Price = 4000 -BPPrice = 48 -Flags = Fling_130 -Description = A Pokémon held item that cuts Speed. It makes Flying-type and levitating holders susceptible to Ground moves. -#------------------------------- -[RINGTARGET] -Name = Ring Target -NamePlural = Ring Targets -Pocket = 1 -Price = 4000 -BPPrice = 32 -Flags = Fling_10 -Description = Moves that would otherwise have no effect will land on the Pokémon that holds it. -#------------------------------- -[MACHOBRACE] -Name = Macho Brace -NamePlural = Macho Braces -Pocket = 1 -Price = 3000 -BPPrice = 16 -Flags = Fling_60 -Description = An item to be held by a Pokémon. It is a stiff, heavy brace that promotes strong growth but lowers Speed. -#------------------------------- -[POWERWEIGHT] -Name = Power Weight -NamePlural = Power Weights -Pocket = 1 -Price = 3000 -BPPrice = 16 -Flags = Fling_70 -Description = A Pokémon held item that promotes HP gain on leveling, but reduces the Speed stat. -#------------------------------- -[POWERBRACER] -Name = Power Bracer -NamePlural = Power Bracers -Pocket = 1 -Price = 3000 -BPPrice = 16 -Flags = Fling_70 -Description = A Pokémon held item that promotes Attack gain on leveling, but reduces the Speed stat. -#------------------------------- -[POWERBELT] -Name = Power Belt -NamePlural = Power Belts -Pocket = 1 -Price = 3000 -BPPrice = 16 -Flags = Fling_70 -Description = A Pokémon held item that promotes Defense gain on leveling, but reduces the Speed stat. -#------------------------------- -[POWERLENS] -Name = Power Lens -NamePlural = Power Lenses -Pocket = 1 -Price = 3000 -BPPrice = 16 -Flags = Fling_70 -Description = A Pokémon held item that promotes Sp. Atk gain on leveling, but reduces the Speed stat. -#------------------------------- -[POWERBAND] -Name = Power Band -NamePlural = Power Bands -Pocket = 1 -Price = 3000 -BPPrice = 16 -Flags = Fling_70 -Description = A Pokémon held item that promotes Sp. Def gain on leveling, but reduces the Speed stat. -#------------------------------- -[POWERANKLET] -Name = Power Anklet -NamePlural = Power Anklets -Pocket = 1 -Price = 3000 -BPPrice = 16 -Flags = Fling_70 -Description = A Pokémon held item that promotes Speed gain on leveling, but reduces the Speed stat. -#------------------------------- -[LAXINCENSE] -Name = Lax Incense -NamePlural = Lax Incenses -PortionName = jar of Lax Incense -PortionNamePlural = jars of Lax Incense -Pocket = 1 -Price = 5000 -Flags = Fling_10 -Description = An item to be held by a Pokémon. The tricky aroma of this incense may make attacks miss the holder. -#------------------------------- -[FULLINCENSE] -Name = Full Incense -NamePlural = Full Incenses -PortionName = jar of Full Incense -PortionNamePlural = jars of Full Incense -Pocket = 1 -Price = 5000 -Flags = Fling_10 -Description = An item to be held by a Pokémon. This exotic-smelling incense makes the holder bloated and slow moving. -#------------------------------- -[LUCKINCENSE] -Name = Luck Incense -NamePlural = Luck Incenses -PortionName = jar of Luck Incense -PortionNamePlural = jars of Luck Incense -Pocket = 1 -Price = 11000 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It doubles a battle's prize money if the holding Pokémon joins in. -#------------------------------- -[PUREINCENSE] -Name = Pure Incense -NamePlural = Pure Incenses -PortionName = jar of Pure Incense -PortionNamePlural = jars of Pure Incense -Pocket = 1 -Price = 6000 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It helps keep wild Pokémon away if the holder is the first one in the party. -#------------------------------- -[SEAINCENSE] -Name = Sea Incense -NamePlural = Sea Incenses -PortionName = jar of Sea Incense -PortionNamePlural = jars of Sea Incense -Pocket = 1 -Price = 2000 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It has a curious aroma that boosts the power of Water-type moves. -#------------------------------- -[WAVEINCENSE] -Name = Wave Incense -NamePlural = Wave Incenses -PortionName = jar of Wave Incense -PortionNamePlural = jars of Wave Incense -Pocket = 1 -Price = 2000 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It has a curious aroma that boosts the power of Water-type moves. -#------------------------------- -[ROSEINCENSE] -Name = Rose Incense -NamePlural = Rose Incenses -PortionName = jar of Rose Incense -PortionNamePlural = jars of Rose Incense -Pocket = 1 -Price = 2000 -Flags = Fling_10 -Description = An item to be held by a Pokémon. This exotic-smelling incense boosts the power of Grass-type moves. -#------------------------------- -[ODDINCENSE] -Name = Odd Incense -NamePlural = Odd Incenses -PortionName = jar of Odd Incense -PortionNamePlural = jars of Odd Incense -Pocket = 1 -Price = 2000 -Flags = Fling_10 -Description = An item to be held by a Pokémon. This exotic-smelling incense boosts the power of Psychic-type moves. -#------------------------------- -[ROCKINCENSE] -Name = Rock Incense -NamePlural = Rock Incenses -PortionName = jar of Rock Incense -PortionNamePlural = jars of Rock Incense -Pocket = 1 -Price = 2000 -Flags = Fling_10 -Description = An item to be held by a Pokémon. This exotic-smelling incense boosts the power of Rock-type moves. -#------------------------------- -[CHARCOAL] -Name = Charcoal -NamePlural = Charcoals -PortionName = piece of Charcoal -PortionNamePlural = pieces of Charcoal -Pocket = 1 -Price = 1000 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It is a combustible fuel that boosts the power of Fire-type moves. -#------------------------------- -[MYSTICWATER] -Name = Mystic Water -NamePlural = Mystic Waters -Pocket = 1 -Price = 1000 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It is a teardrop-shaped gem that ups the power of Water-type moves. -#------------------------------- -[MAGNET] -Name = Magnet -NamePlural = Magnets -Pocket = 1 -Price = 1000 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It is a powerful magnet that boosts the power of Electric-type moves. -#------------------------------- -[MIRACLESEED] -Name = Miracle Seed -NamePlural = Miracle Seeds -Pocket = 1 -Price = 1000 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It is a seed imbued with life that ups the power of Grass-type moves. -#------------------------------- -[NEVERMELTICE] -Name = Never-Melt Ice -NamePlural = Never-Melt Ices -PortionName = piece of Never-Melt Ice -PortionNamePlural = pieces of Never-Melt Ice -Pocket = 1 -Price = 1000 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It is a piece of ice that repels heat and boosts Ice-type moves. -#------------------------------- -[BLACKBELT] -Name = Black Belt -NamePlural = Black Belts -Pocket = 1 -Price = 1000 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It is a belt that boosts determination and Fighting-type moves. -#------------------------------- -[POISONBARB] -Name = Poison Barb -NamePlural = Poison Barbs -Pocket = 1 -Price = 1000 -Flags = Fling_70 -Description = An item to be held by a Pokémon. It is a small, poisonous barb that ups the power of Poison-type moves. -#------------------------------- -[SOFTSAND] -Name = Soft Sand -NamePlural = Soft Sand -PortionName = bag of Soft Sand -PortionNamePlural = bags of Soft Sand -Pocket = 1 -Price = 1000 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It is a loose, silky sand that boosts the power of Ground-type moves. -#------------------------------- -[SHARPBEAK] -Name = Sharp Beak -NamePlural = Sharp Beaks -Pocket = 1 -Price = 1000 -Flags = Fling_50 -Description = An item to be held by a Pokémon. It is a long, sharp beak that boosts the power of Flying-type moves. -#------------------------------- -[TWISTEDSPOON] -Name = Twisted Spoon -NamePlural = Twisted Spoons -Pocket = 1 -Price = 1000 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It is a spoon imbued with telekinetic power that boosts Psychic-type moves. -#------------------------------- -[SILVERPOWDER] -Name = Silver Powder -NamePlural = Silver Powders -PortionName = pile of Silver Powder -PortionNamePlural = piles of Silver Powder -Pocket = 1 -Price = 1000 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It is a shiny, silver powder that ups the power of Bug-type moves. -#------------------------------- -[HARDSTONE] -Name = Hard Stone -NamePlural = Hard Stones -Pocket = 1 -Price = 1000 -Flags = Fling_100 -Description = An item to be held by a Pokémon. It is an unbreakable stone that ups the power of Rock-type moves. -#------------------------------- -[SPELLTAG] -Name = Spell Tag -NamePlural = Spell Tags -Pocket = 1 -Price = 1000 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It is a sinister, eerie tag that boosts the power of Ghost-type moves. -#------------------------------- -[DRAGONFANG] -Name = Dragon Fang -NamePlural = Dragon Fangs -Pocket = 1 -Price = 1000 -Flags = Fling_70 -Description = An item to be held by a Pokémon. It is a hard and sharp fang that ups the power of Dragon-type moves. -#------------------------------- -[BLACKGLASSES] -Name = Black Glasses -NamePlural = Black Glasses -PortionName = pair of Black Glasses -PortionNamePlural = pairs of Black Glasses -Pocket = 1 -Price = 1000 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It is a shady-looking pair of glasses that boosts Dark-type moves. -#------------------------------- -[METALCOAT] -Name = Metal Coat -NamePlural = Metal Coats -Pocket = 1 -Price = 2000 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It is a special metallic film that ups the power of Steel-type moves. -#------------------------------- -[SILKSCARF] -Name = Silk Scarf -NamePlural = Silk Scarves -Pocket = 1 -Price = 1000 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It is a sumptuous scarf that boosts the power of Normal-type moves. -#------------------------------- -[FLAMEPLATE] -Name = Flame Plate -NamePlural = Flame Plates -Pocket = 1 -Price = 1000 -Flags = Fling_90 -Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Fire-type moves. -#------------------------------- -[SPLASHPLATE] -Name = Splash Plate -NamePlural = Splash Plates -Pocket = 1 -Price = 1000 -Flags = Fling_90 -Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Water-type moves. -#------------------------------- -[ZAPPLATE] -Name = Zap Plate -NamePlural = Zap Plates -Pocket = 1 -Price = 1000 -Flags = Fling_90 -Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Electric-type moves. -#------------------------------- -[MEADOWPLATE] -Name = Meadow Plate -NamePlural = Meadow Plates -Pocket = 1 -Price = 1000 -Flags = Fling_90 -Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Grass-type moves. -#------------------------------- -[ICICLEPLATE] -Name = Icicle Plate -NamePlural = Icicle Plates -Pocket = 1 -Price = 1000 -Flags = Fling_90 -Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Ice-type moves. -#------------------------------- -[FISTPLATE] -Name = Fist Plate -NamePlural = Fist Plates -Pocket = 1 -Price = 1000 -Flags = Fling_90 -Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Fighting-type moves. -#------------------------------- -[TOXICPLATE] -Name = Toxic Plate -NamePlural = Toxic Plates -Pocket = 1 -Price = 1000 -Flags = Fling_90 -Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Poison-type moves. -#------------------------------- -[EARTHPLATE] -Name = Earth Plate -NamePlural = Earth Plates -Pocket = 1 -Price = 1000 -Flags = Fling_90 -Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Ground-type moves. -#------------------------------- -[SKYPLATE] -Name = Sky Plate -NamePlural = Sky Plates -Pocket = 1 -Price = 1000 -Flags = Fling_90 -Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Flying-type moves. -#------------------------------- -[MINDPLATE] -Name = Mind Plate -NamePlural = Mind Plates -Pocket = 1 -Price = 1000 -Flags = Fling_90 -Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Psychic-type moves. -#------------------------------- -[INSECTPLATE] -Name = Insect Plate -NamePlural = Insect Plates -Pocket = 1 -Price = 1000 -Flags = Fling_90 -Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Bug-type moves. -#------------------------------- -[STONEPLATE] -Name = Stone Plate -NamePlural = Stone Plates -Pocket = 1 -Price = 1000 -Flags = Fling_90 -Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Rock-type moves. -#------------------------------- -[SPOOKYPLATE] -Name = Spooky Plate -NamePlural = Spooky Plates -Pocket = 1 -Price = 1000 -Flags = Fling_90 -Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Ghost-type moves. -#------------------------------- -[DRACOPLATE] -Name = Draco Plate -NamePlural = Draco Plates -Pocket = 1 -Price = 1000 -Flags = Fling_90 -Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Dragon-type moves. -#------------------------------- -[DREADPLATE] -Name = Dread Plate -NamePlural = Dread Plates -Pocket = 1 -Price = 1000 -Flags = Fling_90 -Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Dark-type moves. -#------------------------------- -[IRONPLATE] -Name = Iron Plate -NamePlural = Iron Plates -Pocket = 1 -Price = 1000 -Flags = Fling_90 -Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Steel-type moves. -#------------------------------- -[PIXIEPLATE] -Name = Pixie Plate -NamePlural = Pixie Plates -Pocket = 1 -Price = 1000 -Flags = Fling_90 -Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Fairy-type moves. -#------------------------------- -[FIREGEM] -Name = Fire Gem -NamePlural = Fire Gems -Pocket = 1 -Price = 200 -Flags = TypeGem -Description = A gem with an essence of fire. When held, it strengthens the power of a Fire-type move only once. -#------------------------------- -[WATERGEM] -Name = Water Gem -NamePlural = Water Gems -Pocket = 1 -Price = 200 -Flags = TypeGem -Description = A gem with an essence of water. When held, it strengthens the power of a Water-type move only once. -#------------------------------- -[ELECTRICGEM] -Name = Electric Gem -NamePlural = Electric Gems -Pocket = 1 -Price = 200 -Flags = TypeGem -Description = A gem with an essence of electricity. When held, it strengthens the power of an Electric-type move only once. -#------------------------------- -[GRASSGEM] -Name = Grass Gem -NamePlural = Grass Gems -Pocket = 1 -Price = 200 -Flags = TypeGem -Description = A gem with an essence of nature. When held, it strengthens the power of a Grass-type move only once. -#------------------------------- -[ICEGEM] -Name = Ice Gem -NamePlural = Ice Gems -Pocket = 1 -Price = 200 -Flags = TypeGem -Description = A gem with an essence of ice. When held, it strengthens the power of an Ice-type move only once. -#------------------------------- -[FIGHTINGGEM] -Name = Fighting Gem -NamePlural = Fighting Gems -Pocket = 1 -Price = 200 -Flags = TypeGem -Description = A gem with an essence of combat. When held, it strengthens the power of a Fighting-type move only once. -#------------------------------- -[POISONGEM] -Name = Poison Gem -NamePlural = Poison Gems -Pocket = 1 -Price = 200 -Flags = TypeGem -Description = A gem with an essence of poison. When held, it strengthens the power of a Poison-type move only once. -#------------------------------- -[GROUNDGEM] -Name = Ground Gem -NamePlural = Ground Gems -Pocket = 1 -Price = 200 -Flags = TypeGem -Description = A gem with an essence of land. When held, it strengthens the power of a Ground-type move only once. -#------------------------------- -[FLYINGGEM] -Name = Flying Gem -NamePlural = Flying Gems -Pocket = 1 -Price = 200 -Flags = TypeGem -Description = A gem with an essence of air. When held, it strengthens the power of a Flying-type move only once. -#------------------------------- -[PSYCHICGEM] -Name = Psychic Gem -NamePlural = Psychic Gems -Pocket = 1 -Price = 200 -Flags = TypeGem -Description = A gem with an essence of the mind. When held, it strengthens the power of a Psychic-type move only once. -#------------------------------- -[BUGGEM] -Name = Bug Gem -NamePlural = Bug Gems -Pocket = 1 -Price = 200 -Flags = TypeGem -Description = A gem with an insect-like essence. When held, it strengthens the power of a Bug-type move only once. -#------------------------------- -[ROCKGEM] -Name = Rock Gem -NamePlural = Rock Gems -Pocket = 1 -Price = 200 -Flags = TypeGem -Description = A gem with an essence of rock. When held, it strengthens the power of a Rock-type move only once. -#------------------------------- -[GHOSTGEM] -Name = Ghost Gem -NamePlural = Ghost Gems -Pocket = 1 -Price = 200 -Flags = TypeGem -Description = A gem with a spectral essence. When held, it strengthens the power of a Ghost-type move only once. -#------------------------------- -[DRAGONGEM] -Name = Dragon Gem -NamePlural = Dragon Gems -Pocket = 1 -Price = 200 -Flags = TypeGem -Description = A gem with a draconic essence. When held, it strengthens the power of a Dragon-type move only once. -#------------------------------- -[DARKGEM] -Name = Dark Gem -NamePlural = Dark Gems -Pocket = 1 -Price = 200 -Flags = TypeGem -Description = A gem with an essence of darkness. When held, it strengthens the power of a Dark-type move only once. -#------------------------------- -[STEELGEM] -Name = Steel Gem -NamePlural = Steel Gems -Pocket = 1 -Price = 200 -Flags = TypeGem -Description = A gem with an essence of steel. When held, it strengthens the power of a Steel-type move only once. -#------------------------------- -[FAIRYGEM] -Name = Fairy Gem -NamePlural = Fairy Gems -Pocket = 1 -Price = 200 -Flags = TypeGem -Description = A gem with an essence of the fey. When held, it strengthens the power of a Fairy-type move only once. -#------------------------------- -[NORMALGEM] -Name = Normal Gem -NamePlural = Normal Gems -Pocket = 1 -Price = 200 -Flags = TypeGem -Description = A gem with an ordinary essence. When held, it strengthens the power of a Normal-type move only once. -#------------------------------- -[LIGHTBALL] -Name = Light Ball -NamePlural = Light Balls -Pocket = 1 -Price = 1000 -Flags = Fling_30 -Description = An item to be held by Pikachu. It is a puzzling orb that raises the Attack and Sp. Atk stat. -#------------------------------- -[LUCKYPUNCH] -Name = Lucky Punch -NamePlural = Lucky Punches -Pocket = 1 -Price = 1000 -BPPrice = 7 -Flags = Fling_40 -Description = An item to be held by Chansey. It is a pair of gloves that boosts Chansey's critical-hit ratio. -#------------------------------- -[METALPOWDER] -Name = Metal Powder -NamePlural = Metal Powders -PortionName = bag of Metal Powder -PortionNamePlural = bags of Metal Powder -Pocket = 1 -Price = 1000 -Flags = Fling_10 -Description = An item to be held by Ditto. Extremely fine yet hard, this odd powder boosts the Defense stat. -#------------------------------- -[QUICKPOWDER] -Name = Quick Powder -NamePlural = Quick Powders -PortionName = bag of Quick Powder -PortionNamePlural = bags of Quick Powder -Pocket = 1 -Price = 1000 -Flags = Fling_10 -Description = An item to be held by Ditto. Extremely fine yet hard, this odd powder boosts the Speed stat. -#------------------------------- -[THICKCLUB] -Name = Thick Club -NamePlural = Thick Clubs -Pocket = 1 -Price = 1000 -Flags = Fling_90 -Description = An item to be held by Cubone or Marowak. It is a hard bone of some sort that boosts the Attack stat. -#------------------------------- -[STICK] -Name = Stick -NamePlural = Sticks -Pocket = 1 -Price = 1000 -Flags = Fling_60 -Description = An item to be held by Farfetch'd. It is a very long and stiff stalk of leek that boosts the critical-hit ratio. -#------------------------------- -[SOULDEW] -Name = Soul Dew -NamePlural = Soul Dews -Pocket = 1 -Price = 0 -Flags = Fling_30 -Description = A wondrous orb to be held by either Latios or Latias. It raises the power of Psychic- and Dragon-type moves. -#------------------------------- -[DEEPSEATOOTH] -Name = Deep Sea Tooth -NamePlural = Deep Sea Teeth -Pocket = 1 -Price = 2000 -BPPrice = 32 -Flags = Fling_90 -Description = An item to be held by Clamperl. A fang that gleams a sharp silver, it raises the Sp. Atk stat. -#------------------------------- -[DEEPSEASCALE] -Name = Deep Sea Scale -NamePlural = Deep Sea Scales -Pocket = 1 -Price = 2000 -BPPrice = 32 -Flags = Fling_30 -Description = An item to be held by Clamperl. A scale that shines a faint pink, it raises the Sp. Def stat. -#------------------------------- -[ADAMANTORB] -Name = Adamant Orb -NamePlural = Adamant Orbs -Pocket = 1 -Price = 10000 -Flags = Fling_60 -Description = A brightly gleaming orb to be held by Dialga. It boosts the power of Dragon- and Steel-type moves. -#------------------------------- -[LUSTROUSORB] -Name = Lustrous Orb -NamePlural = Lustrous Orbs -Pocket = 1 -Price = 10000 -Flags = Fling_60 -Description = A beautifully glowing orb to be held by Palkia. It boosts the power of Dragon- and Water-type moves. -#------------------------------- -[GRISEOUSORB] -Name = Griseous Orb -NamePlural = Griseous Orbs -Pocket = 1 -Price = 10000 -Flags = Fling_60 -Description = A glowing orb to be held by Giratina. It boosts the power of Dragon- and Ghost-type moves. -#------------------------------- -[DOUSEDRIVE] -Name = Douse Drive -NamePlural = Douse Drives -Pocket = 1 -Price = 1000 -Flags = Fling_70 -Description = A cassette to be held by Genesect. It changes Techno Blast to a Water-type move. -#------------------------------- -[SHOCKDRIVE] -Name = Shock Drive -NamePlural = Shock Drives -Pocket = 1 -Price = 1000 -Flags = Fling_70 -Description = A cassette to be held by Genesect. It changes Techno Blast to an Electric-type move. -#------------------------------- -[BURNDRIVE] -Name = Burn Drive -NamePlural = Burn Drives -Pocket = 1 -Price = 1000 -Flags = Fling_70 -Description = A cassette to be held by Genesect. It changes Techno Blast to a Fire-type move. -#------------------------------- -[CHILLDRIVE] -Name = Chill Drive -NamePlural = Chill Drives -Pocket = 1 -Price = 1000 -Flags = Fling_70 -Description = A cassette to be held by Genesect. It changes Techno Blast to an Ice-type move. -#------------------------------- -[EVERSTONE] -Name = Everstone -NamePlural = Everstones -Pocket = 1 -Price = 3000 -BPPrice = 16 -Flags = Fling_30 -Description = An item to be held by a Pokémon. The Pokémon holding this peculiar stone is prevented from evolving. -#------------------------------- -[DRAGONSCALE] -Name = Dragon Scale -NamePlural = Dragon Scales -Pocket = 1 -Price = 2000 -BPPrice = 32 -Flags = Fling_30 -Description = A thick and tough scale. Dragon-type Pokémon may be holding this item when caught. -#------------------------------- -[UPGRADE] -Name = Up-Grade -NamePlural = Up-Grades -Pocket = 1 -Price = 2000 -BPPrice = 32 -Flags = Fling_30 -Description = A transparent device filled with all sorts of data. It was produced by Silph Co. -#------------------------------- -[DUBIOUSDISC] -Name = Dubious Disc -NamePlural = Dubious Discs -Pocket = 1 -Price = 2000 -BPPrice = 32 -Flags = Fling_50 -Description = A transparent device overflowing with dubious data. Its producer is unknown. -#------------------------------- -[PROTECTOR] -Name = Protector -NamePlural = Protectors -Pocket = 1 -Price = 2000 -BPPrice = 32 -Flags = Fling_80 -Description = A protective item of some sort. It is extremely stiff and heavy. It is loved by a certain Pokémon. -#------------------------------- -[ELECTIRIZER] -Name = Electirizer -NamePlural = Electirizers -Pocket = 1 -Price = 2000 -BPPrice = 32 -Flags = Fling_80 -Description = A box packed with a tremendous amount of electric energy. It is loved by a certain Pokémon. -#------------------------------- -[MAGMARIZER] -Name = Magmarizer -NamePlural = Magmarizers -Pocket = 1 -Price = 2000 -BPPrice = 32 -Flags = Fling_80 -Description = A box packed with a tremendous amount of magma energy. It is loved by a certain Pokémon. -#------------------------------- -[REAPERCLOTH] -Name = Reaper Cloth -NamePlural = Reaper Cloths -PortionName = scrap of Reaper Cloth -PortionNamePlural = scraps of Reaper Cloth -Pocket = 1 -Price = 2000 -BPPrice = 32 -Flags = Fling_10 -Description = A cloth imbued with horrifyingly strong spiritual energy. It is loved by a certain Pokémon. -#------------------------------- -[PRISMSCALE] -Name = Prism Scale -NamePlural = Prism Scales -Pocket = 1 -Price = 2000 -BPPrice = 32 -Flags = Fling_30 -Description = A mysterious scale that evolves certain Pokémon. It shines in rainbow colors. -#------------------------------- -[OVALSTONE] -Name = Oval Stone -NamePlural = Oval Stones -Pocket = 1 -Price = 2000 -BPPrice = 32 -Flags = Fling_80 -Description = A peculiar stone that makes certain species of Pokémon evolve. It is shaped like an egg. -#------------------------------- -[WHIPPEDDREAM] -Name = Whipped Dream -NamePlural = Whipped Dreams -PortionName = dollop of Whipped Dream -PortionNamePlural = dollops of Whipped Dream -Pocket = 1 -Price = 2000 -BPPrice = 32 -Flags = Fling_80 -Description = A soft and sweet treat made of fluffy, puffy and whirled cream. It's loved by a certain Pokémon. -#------------------------------- -[SACHET] -Name = Sachet -NamePlural = Sachets -Pocket = 1 -Price = 2000 -BPPrice = 32 -Flags = Fling_80 -Description = A sachet filled with slightly overwhelming fragrant perfumes. Yet it's loved by a certain Pokémon. -#------------------------------- -[REDSCARF] -Name = Red Scarf -NamePlural = Red Scarves -Pocket = 1 -Price = 100 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It boosts the Cool aspect of the holder in a Contest. -#------------------------------- -[BLUESCARF] -Name = Blue Scarf -NamePlural = Blue Scarves -Pocket = 1 -Price = 100 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It boosts the Beauty aspect of the holder in a Contest. -#------------------------------- -[PINKSCARF] -Name = Pink Scarf -NamePlural = Pink Scarves -Pocket = 1 -Price = 100 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It boosts the Cute aspect of the holder in a Contest. -#------------------------------- -[GREENSCARF] -Name = Green Scarf -NamePlural = Green Scarves -Pocket = 1 -Price = 100 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It boosts the Smart aspect of the holder in a Contest. -#------------------------------- -[YELLOWSCARF] -Name = Yellow Scarf -NamePlural = Yellow Scarves -Pocket = 1 -Price = 100 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It boosts the Tough aspect of the holder in a Contest. -#------------------------------- -[VENUSAURITE] -Name = Venusaurite -NamePlural = Venusaurites -Pocket = 1 -Price = 0 -BPPrice = 64 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Venusaur hold it, and it will be able to Mega Evolve. -#------------------------------- -[CHARIZARDITEX] -Name = Charizardite X -NamePlural = Charizardite Xs -Pocket = 1 -Price = 0 -BPPrice = 64 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Charizard hold it, and it will be able to Mega Evolve. -#------------------------------- -[CHARIZARDITEY] -Name = Charizardite Y -NamePlural = Charizardite Ys -Pocket = 1 -Price = 0 -BPPrice = 64 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Charizard hold it, and it will be able to Mega Evolve. -#------------------------------- -[BLASTOISINITE] -Name = Blastoisinite -NamePlural = Blastoisinites -Pocket = 1 -Price = 0 -BPPrice = 64 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Blastoise hold it, and it will be able to Mega Evolve. -#------------------------------- -[BEEDRILLITE] -Name = Beedrillite -NamePlural = Beedrillites -Pocket = 1 -Price = 0 -BPPrice = 64 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Beedrill hold it, and it will be able to Mega Evolve. -#------------------------------- -[PIDGEOTITE] -Name = Pidgeotite -NamePlural = Pidgeotites -Pocket = 1 -Price = 0 -BPPrice = 64 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Pidgeot hold it, and it will be able to Mega Evolve. -#------------------------------- -[ALAKAZITE] -Name = Alakazite -NamePlural = Alakazites -Pocket = 1 -Price = 0 -BPPrice = 64 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Alakazam hold it, and it will be able to Mega Evolve. -#------------------------------- -[SLOWBRONITE] -Name = Slowbronite -NamePlural = Slowbronites -Pocket = 1 -Price = 0 -BPPrice = 64 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Slowbro hold it, and it will be able to Mega Evolve. -#------------------------------- -[GENGARITE] -Name = Gengarite -NamePlural = Gengarites -Pocket = 1 -Price = 0 -BPPrice = 64 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Gengar hold it, and it will be able to Mega Evolve. -#------------------------------- -[KANGASKHANITE] -Name = Kangaskhanite -NamePlural = Kangaskhanites -Pocket = 1 -Price = 0 -BPPrice = 64 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Kangaskhan hold it, and it will be able to Mega Evolve. -#------------------------------- -[PINSIRITE] -Name = Pinsirite -NamePlural = Pinsirites -Pocket = 1 -Price = 0 -BPPrice = 64 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Pinsir hold it, and it will be able to Mega Evolve. -#------------------------------- -[GYARADOSITE] -Name = Gyaradosite -NamePlural = Gyaradosites -Pocket = 1 -Price = 0 -BPPrice = 64 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Gyarados hold it, and it will be able to Mega Evolve. -#------------------------------- -[AERODACTYLITE] -Name = Aerodactylite -NamePlural = Aerodactylites -Pocket = 1 -Price = 0 -BPPrice = 64 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Aerodactyl hold it, and it will be able to Mega Evolve. -#------------------------------- -[MEWTWONITEX] -Name = Mewtwonite X -NamePlural = Mewtwonite Xs -Pocket = 1 -Price = 0 -BPPrice = 64 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Mewtwo hold it, and it will be able to Mega Evolve. -#------------------------------- -[MEWTWONITEY] -Name = Mewtwonite Y -NamePlural = Mewtwonite Ys -Pocket = 1 -Price = 0 -BPPrice = 64 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Mewtwo hold it, and it will be able to Mega Evolve. -#------------------------------- -[AMPHAROSITE] -Name = Ampharosite -NamePlural = Ampharosites -Pocket = 1 -Price = 0 -BPPrice = 64 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Ampharos hold it, and it will be able to Mega Evolve. -#------------------------------- -[STEELIXITE] -Name = Steelixite -NamePlural = Steelixites -Pocket = 1 -Price = 0 -BPPrice = 64 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Steelix hold it, and it will be able to Mega Evolve. -#------------------------------- -[SCIZORITE] -Name = Scizorite -NamePlural = Scizorites -Pocket = 1 -Price = 0 -BPPrice = 64 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Scizor hold it, and it will be able to Mega Evolve. -#------------------------------- -[HERACRONITE] -Name = Heracronite -NamePlural = Heracronites -Pocket = 1 -Price = 0 -BPPrice = 64 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Heracross hold it, and it will be able to Mega Evolve. -#------------------------------- -[HOUNDOOMINITE] -Name = Houndoominite -NamePlural = Houndoominites -Pocket = 1 -Price = 0 -BPPrice = 64 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Houndoom hold it, and it will be able to Mega Evolve. -#------------------------------- -[TYRANITARITE] -Name = Tyranitarite -NamePlural = Tyranitarites -Pocket = 1 -Price = 0 -BPPrice = 64 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Tyranitar hold it, and it will be able to Mega Evolve. -#------------------------------- -[SCEPTILITE] -Name = Sceptilite -NamePlural = Sceptilites -Pocket = 1 -Price = 0 -BPPrice = 64 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Sceptile hold it, and it will be able to Mega Evolve. -#------------------------------- -[BLAZIKENITE] -Name = Blazikenite -NamePlural = Blazikenites -Pocket = 1 -Price = 0 -BPPrice = 64 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Blaziken hold it, and it will be able to Mega Evolve. -#------------------------------- -[SWAMPERTITE] -Name = Swampertite -NamePlural = Swampertites -Pocket = 1 -Price = 0 -BPPrice = 64 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Swampert hold it, and it will be able to Mega Evolve. -#------------------------------- -[GARDEVOIRITE] -Name = Gardevoirite -NamePlural = Gardevoirites -Pocket = 1 -Price = 0 -BPPrice = 64 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Gardevoir hold it, and it will be able to Mega Evolve. -#------------------------------- -[SABLENITE] -Name = Sablenite -NamePlural = Sablenites -Pocket = 1 -Price = 0 -BPPrice = 64 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Sableye hold it, and it will be able to Mega Evolve. -#------------------------------- -[MAWILITE] -Name = Mawilite -NamePlural = Mawilites -Pocket = 1 -Price = 0 -BPPrice = 64 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Mawile hold it, and it will be able to Mega Evolve. -#------------------------------- -[AGGRONITE] -Name = Aggronite -NamePlural = Aggronites -Pocket = 1 -Price = 0 -BPPrice = 64 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Aggron hold it, and it will be able to Mega Evolve. -#------------------------------- -[MEDICHAMITE] -Name = Medichamite -NamePlural = Medichamites -Pocket = 1 -Price = 0 -BPPrice = 64 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Medicham hold it, and it will be able to Mega Evolve. -#------------------------------- -[MANECTITE] -Name = Manectite -NamePlural = Manectites -Pocket = 1 -Price = 0 -BPPrice = 64 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Manectric hold it, and it will be able to Mega Evolve. -#------------------------------- -[SHARPEDONITE] -Name = Sharpedonite -NamePlural = Sharpedonites -Pocket = 1 -Price = 0 -BPPrice = 64 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Sharpedo hold it, and it will be able to Mega Evolve. -#------------------------------- -[CAMERUPTITE] -Name = Cameruptite -NamePlural = Cameruptites -Pocket = 1 -Price = 0 -BPPrice = 64 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Camerupt hold it, and it will be able to Mega Evolve. -#------------------------------- -[ALTARIANITE] -Name = Altarianite -NamePlural = Altarianites -Pocket = 1 -Price = 0 -BPPrice = 64 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Altaria hold it, and it will be able to Mega Evolve. -#------------------------------- -[BANETTITE] -Name = Banettite -NamePlural = Banettites -Pocket = 1 -Price = 0 -BPPrice = 64 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Banette hold it, and it will be able to Mega Evolve. -#------------------------------- -[ABSOLITE] -Name = Absolite -NamePlural = Absolites -Pocket = 1 -Price = 0 -BPPrice = 64 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Absol hold it, and it will be able to Mega Evolve. -#------------------------------- -[GLALITITE] -Name = Glalitite -NamePlural = Glalitites -Pocket = 1 -Price = 0 -BPPrice = 64 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Glalie hold it, and it will be able to Mega Evolve. -#------------------------------- -[SALAMENCITE] -Name = Salamencite -NamePlural = Salamencites -Pocket = 1 -Price = 0 -BPPrice = 64 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Salamence hold it, and it will be able to Mega Evolve. -#------------------------------- -[METAGROSSITE] -Name = Metagrossite -NamePlural = Metagrossites -Pocket = 1 -Price = 0 -BPPrice = 64 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Metagross hold it, and it will be able to Mega Evolve. -#------------------------------- -[LATIASITE] -Name = Latiasite -NamePlural = Latiasites -Pocket = 1 -Price = 0 -BPPrice = 64 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Latias hold it, and it will be able to Mega Evolve. -#------------------------------- -[LATIOSITE] -Name = Latiosite -NamePlural = Latiosites -Pocket = 1 -Price = 0 -BPPrice = 64 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Latios hold it, and it will be able to Mega Evolve. -#------------------------------- -[LOPUNNITE] -Name = Lopunnite -NamePlural = Lopunnites -Pocket = 1 -Price = 0 -BPPrice = 64 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Lopunny hold it, and it will be able to Mega Evolve. -#------------------------------- -[GARCHOMPITE] -Name = Garchompite -NamePlural = Garchompites -Pocket = 1 -Price = 0 -BPPrice = 64 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Garchomp hold it, and it will be able to Mega Evolve. -#------------------------------- -[LUCARIONITE] -Name = Lucarionite -NamePlural = Lucarionites -Pocket = 1 -Price = 0 -BPPrice = 64 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Lucario hold it, and it will be able to Mega Evolve. -#------------------------------- -[ABOMASITE] -Name = Abomasite -NamePlural = Abomasites -Pocket = 1 -Price = 0 -BPPrice = 64 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Abomasnow hold it, and it will be able to Mega Evolve. -#------------------------------- -[GALLADITE] -Name = Galladite -NamePlural = Galladites -Pocket = 1 -Price = 0 -BPPrice = 64 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Gallade hold it, and it will be able to Mega Evolve. -#------------------------------- -[AUDINITE] -Name = Audinite -NamePlural = Audinites -Pocket = 1 -Price = 0 -BPPrice = 64 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Audino hold it, and it will be able to Mega Evolve. -#------------------------------- -[DIANCITE] -Name = Diancite -NamePlural = Diancites -Pocket = 1 -Price = 0 -BPPrice = 64 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Diancie hold it, and it will be able to Mega Evolve. -#------------------------------- -[REDORB] -Name = Red Orb -NamePlural = Red Orbs -Pocket = 1 -Price = 0 -BPPrice = 64 -Description = A shiny red orb that is said to have a legend tied to it. It's known to be connected with the Hoenn region. -#------------------------------- -[BLUEORB] -Name = Blue Orb -NamePlural = Blue Orbs -Pocket = 1 -Price = 0 -BPPrice = 64 -Description = A shiny blue orb that is said to have a legend tied to it. It's known to be connected with the Hoenn region. +[GRASSMAIL] +Name = Grass Mail +NamePlural = Grass Mail +PortionName = piece of Grass Mail +PortionNamePlural = pieces of Grass Mail +Pocket = Items +Price = 50 +Flags = IconMail +Description = Stationery featuring a print of a refreshingly green field. Let a Pokémon hold it for delivery. +#------------------------------- +[FLAMEMAIL] +Name = Flame Mail +NamePlural = Flame Mail +PortionName = piece of Flame Mail +PortionNamePlural = pieces of Flame Mail +Pocket = Items +Price = 50 +Flags = IconMail +Description = Stationery featuring a print of flames in blazing red. Let a Pokémon hold it for delivery. +#------------------------------- +[BUBBLEMAIL] +Name = Bubble Mail +NamePlural = Bubble Mail +PortionName = piece of Bubble Mail +PortionNamePlural = pieces of Bubble Mail +Pocket = Items +Price = 50 +Flags = IconMail +Description = Stationery featuring a print of a blue world underwater. Let a Pokémon hold it for delivery. +#------------------------------- +[BLOOMMAIL] +Name = Bloom Mail +NamePlural = Bloom Mail +PortionName = piece of Bloom Mail +PortionNamePlural = pieces of Bloom Mail +Pocket = Items +Price = 50 +Flags = IconMail +Description = Stationery featuring a print of pretty floral patterns. Let a Pokémon hold it for delivery. +#------------------------------- +[TUNNELMAIL] +Name = Tunnel Mail +NamePlural = Tunnel Mail +PortionName = piece of Tunnel Mail +PortionNamePlural = pieces of Tunnel Mail +Pocket = Items +Price = 50 +Flags = IconMail +Description = Stationery featuring a print of a dimly lit coal mine. Let a Pokémon hold it for delivery. +#------------------------------- +[STEELMAIL] +Name = Steel Mail +NamePlural = Steel Mail +PortionName = piece of Steel Mail +PortionNamePlural = pieces of Steel Mail +Pocket = Items +Price = 50 +Flags = IconMail +Description = Stationery featuring a print of cool mechanical designs. Let a Pokémon hold it for delivery. +#------------------------------- +[HEARTMAIL] +Name = Heart Mail +NamePlural = Heart Mail +PortionName = piece of Heart Mail +PortionNamePlural = pieces of Heart Mail +Pocket = Items +Price = 50 +Flags = IconMail +Description = Stationery featuring a print of giant heart patterns. Let a Pokémon hold it for delivery. +#------------------------------- +[SNOWMAIL] +Name = Snow Mail +NamePlural = Snow Mail +PortionName = piece of Snow Mail +PortionNamePlural = pieces of Snow Mail +Pocket = Items +Price = 50 +Flags = IconMail +Description = Stationery featuring a print of a chilly, snow-covered world. Let a Pokémon hold it for delivery. +#------------------------------- +[SPACEMAIL] +Name = Space Mail +NamePlural = Space Mail +PortionName = piece of Space Mail +PortionNamePlural = pieces of Space Mail +Pocket = Items +Price = 50 +Flags = IconMail +Description = Stationery featuring a print depicting the huge expanse of space. Let a Pokémon hold it for delivery. +#------------------------------- +[AIRMAIL] +Name = Air Mail +NamePlural = Air Mail +PortionName = piece of Air Mail +PortionNamePlural = pieces of Air Mail +Pocket = Items +Price = 50 +Flags = IconMail +Description = Stationery featuring a print of colorful letter sets. Let a Pokémon hold it for delivery. +#------------------------------- +[MOSAICMAIL] +Name = Mosaic Mail +NamePlural = Mosaic Mail +PortionName = piece of Mosaic Mail +PortionNamePlural = pieces of Mosaic Mail +Pocket = Items +Price = 50 +Flags = IconMail +Description = Stationery featuring a print of a vivid rainbow pattern. Let a Pokémon hold it for delivery. +#------------------------------- +[BRICKMAIL] +Name = Brick Mail +NamePlural = Brick Mail +PortionName = piece of Brick Mail +PortionNamePlural = pieces of Brick Mail +Pocket = Items +Price = 50 +Flags = IconMail +Description = Stationery featuring a print of a tough-looking brick pattern. Let a Pokémon hold it for delivery. #------------------------------- [POTION] Name = Potion NamePlural = Potions -Pocket = 2 +Pocket = Medicine Price = 200 FieldUse = OnPokemon BattleUse = OnPokemon @@ -2442,7 +715,7 @@ Description = A spray-type medicine for wounds. It restores the HP of one Pokém [SUPERPOTION] Name = Super Potion NamePlural = Super Potions -Pocket = 2 +Pocket = Medicine Price = 700 FieldUse = OnPokemon BattleUse = OnPokemon @@ -2452,7 +725,7 @@ Description = A spray-type medicine for wounds. It restores the HP of one Pokém [HYPERPOTION] Name = Hyper Potion NamePlural = Hyper Potions -Pocket = 2 +Pocket = Medicine Price = 1500 FieldUse = OnPokemon BattleUse = OnPokemon @@ -2462,7 +735,7 @@ Description = A spray-type medicine for wounds. It restores the HP of one Pokém [MAXPOTION] Name = Max Potion NamePlural = Max Potions -Pocket = 2 +Pocket = Medicine Price = 2500 BPPrice = 2 FieldUse = OnPokemon @@ -2473,7 +746,7 @@ Description = A spray-type medicine for wounds. It completely restores the HP of [FULLRESTORE] Name = Full Restore NamePlural = Full Restores -Pocket = 2 +Pocket = Medicine Price = 3000 FieldUse = OnPokemon BattleUse = OnPokemon @@ -2485,7 +758,7 @@ Name = Sacred Ash NamePlural = Sacred Ashes PortionName = bag of Sacred Ash PortionNamePlural = bags of Sacred Ash -Pocket = 2 +Pocket = Medicine Price = 50000 FieldUse = Direct Flags = Fling_30 @@ -2494,7 +767,7 @@ Description = It revives all fainted Pokémon. In doing so, it also fully restor [AWAKENING] Name = Awakening NamePlural = Awakenings -Pocket = 2 +Pocket = Medicine Price = 100 FieldUse = OnPokemon BattleUse = OnPokemon @@ -2504,7 +777,7 @@ Description = A spray-type medicine. It awakens a Pokémon from the clutches of [ANTIDOTE] Name = Antidote NamePlural = Antidotes -Pocket = 2 +Pocket = Medicine Price = 200 FieldUse = OnPokemon BattleUse = OnPokemon @@ -2514,7 +787,7 @@ Description = A spray-type medicine. It lifts the effect of poison from one Pok [BURNHEAL] Name = Burn Heal NamePlural = Burn Heals -Pocket = 2 +Pocket = Medicine Price = 300 FieldUse = OnPokemon BattleUse = OnPokemon @@ -2524,7 +797,7 @@ Description = A spray-type medicine. It heals a single Pokémon that is sufferin [PARALYZEHEAL] Name = Paralyze Heal NamePlural = Paralyze Heals -Pocket = 2 +Pocket = Medicine Price = 300 FieldUse = OnPokemon BattleUse = OnPokemon @@ -2534,7 +807,7 @@ Description = A spray-type medicine. It eliminates paralysis from a single Poké [ICEHEAL] Name = Ice Heal NamePlural = Ice Heals -Pocket = 2 +Pocket = Medicine Price = 100 FieldUse = OnPokemon BattleUse = OnPokemon @@ -2544,7 +817,7 @@ Description = A spray-type medicine. It defrosts a Pokémon that has been frozen [FULLHEAL] Name = Full Heal NamePlural = Full Heals -Pocket = 2 +Pocket = Medicine Price = 400 FieldUse = OnPokemon BattleUse = OnPokemon @@ -2554,7 +827,7 @@ Description = A spray-type medicine. It heals all the status problems of a singl [RAGECANDYBAR] Name = Rage Candy Bar NamePlural = Rage Candy Bars -Pocket = 2 +Pocket = Medicine Price = 350 FieldUse = OnPokemon BattleUse = OnPokemon @@ -2564,7 +837,7 @@ Description = Mahogany Town's famous candy. It can be used once to heal all the [LAVACOOKIE] Name = Lava Cookie NamePlural = Lava Cookies -Pocket = 2 +Pocket = Medicine Price = 350 FieldUse = OnPokemon BattleUse = OnPokemon @@ -2574,7 +847,7 @@ Description = Lavaridge Town's local specialty. It heals all the status problems [OLDGATEAU] Name = Old Gateau NamePlural = Old Gateaux -Pocket = 2 +Pocket = Medicine Price = 350 FieldUse = OnPokemon BattleUse = OnPokemon @@ -2584,7 +857,7 @@ Description = Old Chateau's hidden specialty. It heals all the status problems o [CASTELIACONE] Name = Casteliacone NamePlural = Casteliacones -Pocket = 2 +Pocket = Medicine Price = 350 FieldUse = OnPokemon BattleUse = OnPokemon @@ -2594,7 +867,7 @@ Description = Castelia City's specialty, soft-serve ice cream. It heals all the [LUMIOSEGALETTE] Name = Lumiose Galette NamePlural = Lumiose Galettes -Pocket = 2 +Pocket = Medicine Price = 350 FieldUse = OnPokemon BattleUse = OnPokemon @@ -2604,7 +877,7 @@ Description = A popular treat in Lumiose City. It can be used once to heal all t [SHALOURSABLE] Name = Shalour Sable NamePlural = Shalour Sables -Pocket = 2 +Pocket = Medicine Price = 350 FieldUse = OnPokemon BattleUse = OnPokemon @@ -2614,7 +887,7 @@ Description = Shalour City's famous shortbread. It can be used once to heal all [REVIVE] Name = Revive NamePlural = Revives -Pocket = 2 +Pocket = Medicine Price = 2000 FieldUse = OnPokemon BattleUse = OnPokemon @@ -2624,7 +897,7 @@ Description = A medicine that revives a fainted Pokémon. It restores half the P [MAXREVIVE] Name = Max Revive NamePlural = Max Revives -Pocket = 2 +Pocket = Medicine Price = 4000 BPPrice = 32 FieldUse = OnPokemon @@ -2637,7 +910,7 @@ Name = Berry Juice NamePlural = Berry Juices PortionName = cup of Berry Juice PortionNamePlural = cups of Berry Juice -Pocket = 2 +Pocket = Medicine Price = 100 FieldUse = OnPokemon BattleUse = OnPokemon @@ -2647,7 +920,7 @@ Description = A 100% pure juice made of Berries. It restores the HP of one Poké [SWEETHEART] Name = Sweet Heart NamePlural = Sweet Hearts -Pocket = 2 +Pocket = Medicine Price = 3000 FieldUse = OnPokemon BattleUse = OnPokemon @@ -2659,7 +932,7 @@ Name = Fresh Water NamePlural = Fresh Waters PortionName = bottle of Fresh Water PortionNamePlural = bottles of Fresh Water -Pocket = 2 +Pocket = Medicine Price = 200 FieldUse = OnPokemon BattleUse = OnPokemon @@ -2671,7 +944,7 @@ Name = Soda Pop NamePlural = Soda Pops PortionName = bottle of Soda Pop PortionNamePlural = bottles of Soda Pop -Pocket = 2 +Pocket = Medicine Price = 300 FieldUse = OnPokemon BattleUse = OnPokemon @@ -2683,7 +956,7 @@ Name = Lemonade NamePlural = Lemonades PortionName = can of Lemonade PortionNamePlural = cans of Lemonade -Pocket = 2 +Pocket = Medicine Price = 350 FieldUse = OnPokemon BattleUse = OnPokemon @@ -2695,7 +968,7 @@ Name = Moomoo Milk NamePlural = Moomoo Milks PortionName = bottle of Moomoo Milk PortionNamePlural = bottles of Moomoo Milk -Pocket = 2 +Pocket = Medicine Price = 600 FieldUse = OnPokemon BattleUse = OnPokemon @@ -2707,7 +980,7 @@ Name = Energy Powder NamePlural = Energy Powders PortionName = dose of Energy Powder PortionNamePlural = doses of Energy Powder -Pocket = 2 +Pocket = Medicine Price = 500 FieldUse = OnPokemon BattleUse = OnPokemon @@ -2717,7 +990,7 @@ Description = A very bitter medicine powder. It restores the HP of one Pokémon [ENERGYROOT] Name = Energy Root NamePlural = Energy Roots -Pocket = 2 +Pocket = Medicine Price = 1200 FieldUse = OnPokemon BattleUse = OnPokemon @@ -2729,7 +1002,7 @@ Name = Heal Powder NamePlural = Heal Powders PortionName = dose of Heal Powder PortionNamePlural = doses of Heal Powder -Pocket = 2 +Pocket = Medicine Price = 300 FieldUse = OnPokemon BattleUse = OnPokemon @@ -2739,7 +1012,7 @@ Description = A very bitter medicine powder. It heals all the status problems of [REVIVALHERB] Name = Revival Herb NamePlural = Revival Herbs -Pocket = 2 +Pocket = Medicine Price = 2800 FieldUse = OnPokemon BattleUse = OnPokemon @@ -2749,7 +1022,7 @@ Description = A very bitter medicinal herb. It revives a fainted Pokémon, fully [ETHER] Name = Ether NamePlural = Ethers -Pocket = 2 +Pocket = Medicine Price = 1200 BPPrice = 4 FieldUse = OnPokemon @@ -2760,7 +1033,7 @@ Description = It restores the PP of a Pokémon's selected move by a maximum of 1 [MAXETHER] Name = Max Ether NamePlural = Max Ethers -Pocket = 2 +Pocket = Medicine Price = 2000 FieldUse = OnPokemon BattleUse = OnMove @@ -2770,7 +1043,7 @@ Description = It fully restores the PP of a single selected move that has been l [ELIXIR] Name = Elixir NamePlural = Elixirs -Pocket = 2 +Pocket = Medicine Price = 3000 FieldUse = OnPokemon BattleUse = OnPokemon @@ -2780,7 +1053,7 @@ Description = It restores the PP of all the moves learned by the targeted Pokém [MAXELIXIR] Name = Max Elixir NamePlural = Max Elixirs -Pocket = 2 +Pocket = Medicine Price = 4500 FieldUse = OnPokemon BattleUse = OnPokemon @@ -2792,7 +1065,7 @@ Name = PP Up NamePlural = PP Ups PortionName = bottle of PP Up PortionNamePlural = bottles of PP Up -Pocket = 2 +Pocket = Medicine Price = 10000 BPPrice = 48 FieldUse = OnPokemon @@ -2804,7 +1077,7 @@ Name = PP Max NamePlural = PP Maxes PortionName = bottle of PP Max PortionNamePlural = bottles of PP Max -Pocket = 2 +Pocket = Medicine Price = 10000 FieldUse = OnPokemon Flags = Fling_30 @@ -2815,7 +1088,7 @@ Name = HP Up NamePlural = HP Ups PortionName = bottle of HP Up PortionNamePlural = bottles of HP Up -Pocket = 2 +Pocket = Medicine Price = 10000 BPPrice = 2 FieldUse = OnPokemon @@ -2827,7 +1100,7 @@ Name = Protein NamePlural = Proteins PortionName = bottle of Protein PortionNamePlural = bottles of Protein -Pocket = 2 +Pocket = Medicine Price = 10000 BPPrice = 2 FieldUse = OnPokemon @@ -2839,7 +1112,7 @@ Name = Iron NamePlural = Irons PortionName = bottle of Iron PortionNamePlural = bottles of Iron -Pocket = 2 +Pocket = Medicine Price = 10000 BPPrice = 2 FieldUse = OnPokemon @@ -2851,7 +1124,7 @@ Name = Calcium NamePlural = Calciums PortionName = bottle of Calcium PortionNamePlural = bottles of Calcium -Pocket = 2 +Pocket = Medicine Price = 10000 BPPrice = 2 FieldUse = OnPokemon @@ -2863,7 +1136,7 @@ Name = Zinc NamePlural = Zincs PortionName = bottle of Zinc PortionNamePlural = bottles of Zinc -Pocket = 2 +Pocket = Medicine Price = 10000 BPPrice = 2 FieldUse = OnPokemon @@ -2875,7 +1148,7 @@ Name = Carbos NamePlural = Carbos PortionName = bottle of Carbos PortionNamePlural = bottles of Carbos -Pocket = 2 +Pocket = Medicine Price = 10000 BPPrice = 2 FieldUse = OnPokemon @@ -2885,7 +1158,7 @@ Description = A nutritious drink for Pokémon. It raises the base Speed stat of [HEALTHWING] Name = Health Wing NamePlural = Health Wings -Pocket = 2 +Pocket = Medicine Price = 300 FieldUse = OnPokemon Flags = Fling_20 @@ -2894,7 +1167,7 @@ Description = An item for use on a Pokémon. It slightly increases the base HP o [MUSCLEWING] Name = Muscle Wing NamePlural = Muscle Wings -Pocket = 2 +Pocket = Medicine Price = 300 FieldUse = OnPokemon Flags = Fling_20 @@ -2903,7 +1176,7 @@ Description = An item for use on a Pokémon. It slightly increases the base Atta [RESISTWING] Name = Resist Wing NamePlural = Resist Wings -Pocket = 2 +Pocket = Medicine Price = 300 FieldUse = OnPokemon Flags = Fling_20 @@ -2912,7 +1185,7 @@ Description = An item for use on a Pokémon. It slightly increases the base Defe [GENIUSWING] Name = Genius Wing NamePlural = Genius Wings -Pocket = 2 +Pocket = Medicine Price = 300 FieldUse = OnPokemon Flags = Fling_20 @@ -2921,7 +1194,7 @@ Description = An item for use on a Pokémon. It slightly increases the base Sp. [CLEVERWING] Name = Clever Wing NamePlural = Clever Wings -Pocket = 2 +Pocket = Medicine Price = 300 FieldUse = OnPokemon Flags = Fling_20 @@ -2930,7 +1203,7 @@ Description = An item for use on a Pokémon. It slightly increases the base Sp. [SWIFTWING] Name = Swift Wing NamePlural = Swift Wings -Pocket = 2 +Pocket = Medicine Price = 300 FieldUse = OnPokemon Flags = Fling_20 @@ -2939,7 +1212,7 @@ Description = An item for use on a Pokémon. It slightly increases the base Spee [ABILITYCAPSULE] Name = Ability Capsule NamePlural = Ability Capsule -Pocket = 2 +Pocket = Medicine Price = 10000 BPPrice = 200 FieldUse = OnPokemon @@ -2948,7 +1221,7 @@ Description = A capsule that allows a Pokémon with two Abilities to switch betw [RARECANDY] Name = Rare Candy NamePlural = Rare Candies -Pocket = 2 +Pocket = Medicine Price = 10000 BPPrice = 48 FieldUse = OnPokemon @@ -2958,7 +1231,7 @@ Description = A candy that is packed with energy. It raises the level of a singl [MASTERBALL] Name = Master Ball NamePlural = Master Balls -Pocket = 3 +Pocket = PokeBalls Price = 0 BattleUse = OnFoe Flags = PokeBall @@ -2967,7 +1240,7 @@ Description = The best Ball with the ultimate level of performance. It will catc [ULTRABALL] Name = Ultra Ball NamePlural = Ultra Balls -Pocket = 3 +Pocket = PokeBalls Price = 800 BattleUse = OnFoe Flags = PokeBall @@ -2976,7 +1249,7 @@ Description = An ultra-performance Ball that provides a higher Pokémon catch ra [GREATBALL] Name = Great Ball NamePlural = Great Balls -Pocket = 3 +Pocket = PokeBalls Price = 600 BattleUse = OnFoe Flags = PokeBall @@ -2985,7 +1258,7 @@ Description = A good, high-performance Ball that provides a higher Pokémon catc [POKEBALL] Name = Poké Ball NamePlural = Poké Balls -Pocket = 3 +Pocket = PokeBalls Price = 200 BattleUse = OnFoe Flags = PokeBall @@ -2994,7 +1267,7 @@ Description = A device for catching wild Pokémon. It is thrown like a ball at t [SAFARIBALL] Name = Safari Ball NamePlural = Safari Balls -Pocket = 3 +Pocket = PokeBalls Price = 0 BattleUse = OnFoe Flags = PokeBall @@ -3003,7 +1276,7 @@ Description = A special Poké Ball that is used only in the Safari Zone. It is d [SPORTBALL] Name = Sport Ball NamePlural = Sport Balls -Pocket = 3 +Pocket = PokeBalls Price = 300 BattleUse = OnFoe Flags = PokeBall @@ -3012,7 +1285,7 @@ Description = A special Poké Ball for the Bug-Catching Contest. [NETBALL] Name = Net Ball NamePlural = Net Balls -Pocket = 3 +Pocket = PokeBalls Price = 1000 BattleUse = OnFoe Flags = PokeBall @@ -3021,7 +1294,7 @@ Description = A somewhat different Poké Ball that works especially well on Wate [DIVEBALL] Name = Dive Ball NamePlural = Dive Balls -Pocket = 3 +Pocket = PokeBalls Price = 1000 BattleUse = OnFoe Flags = PokeBall @@ -3030,7 +1303,7 @@ Description = A somewhat different Poké Ball that works especially well on Pok [NESTBALL] Name = Nest Ball NamePlural = Nest Balls -Pocket = 3 +Pocket = PokeBalls Price = 1000 BattleUse = OnFoe Flags = PokeBall @@ -3039,7 +1312,7 @@ Description = A somewhat different Poké Ball that works especially well on weak [REPEATBALL] Name = Repeat Ball NamePlural = Repeat Balls -Pocket = 3 +Pocket = PokeBalls Price = 1000 BattleUse = OnFoe Flags = PokeBall @@ -3048,7 +1321,7 @@ Description = A somewhat different Poké Ball that works especially well on Pok [TIMERBALL] Name = Timer Ball NamePlural = Timer Balls -Pocket = 3 +Pocket = PokeBalls Price = 1000 BattleUse = OnFoe Flags = PokeBall @@ -3057,7 +1330,7 @@ Description = A somewhat different Ball that becomes progressively better the mo [LUXURYBALL] Name = Luxury Ball NamePlural = Luxury Balls -Pocket = 3 +Pocket = PokeBalls Price = 1000 BattleUse = OnFoe Flags = PokeBall @@ -3066,7 +1339,7 @@ Description = A comfortable Poké Ball that makes a caught wild Pokémon quickly [PREMIERBALL] Name = Premier Ball NamePlural = Premier Balls -Pocket = 3 +Pocket = PokeBalls Price = 20 BattleUse = OnFoe Flags = PokeBall @@ -3075,7 +1348,7 @@ Description = A somewhat rare Poké Ball that has been specially made to commemo [DUSKBALL] Name = Dusk Ball NamePlural = Dusk Balls -Pocket = 3 +Pocket = PokeBalls Price = 1000 BattleUse = OnFoe Flags = PokeBall @@ -3084,7 +1357,7 @@ Description = A somewhat different Poké Ball that makes it easier to catch wild [HEALBALL] Name = Heal Ball NamePlural = Heal Balls -Pocket = 3 +Pocket = PokeBalls Price = 300 BattleUse = OnFoe Flags = PokeBall @@ -3093,7 +1366,7 @@ Description = A remedial Poké Ball that restores the caught Pokémon's HP and e [QUICKBALL] Name = Quick Ball NamePlural = Quick Balls -Pocket = 3 +Pocket = PokeBalls Price = 1000 BattleUse = OnFoe Flags = PokeBall @@ -3102,7 +1375,7 @@ Description = A somewhat different Poké Ball that provides a better catch rate [CHERISHBALL] Name = Cherish Ball NamePlural = Cherish Balls -Pocket = 3 +Pocket = PokeBalls Price = 0 BattleUse = OnFoe Flags = PokeBall @@ -3111,7 +1384,7 @@ Description = A quite rare Poké Ball that has been specially crafted to commemo [FASTBALL] Name = Fast Ball NamePlural = Fast Balls -Pocket = 3 +Pocket = PokeBalls Price = 300 BattleUse = OnFoe Flags = PokeBall @@ -3120,7 +1393,7 @@ Description = A Poké Ball that makes it easier to catch fast Pokémon. [LEVELBALL] Name = Level Ball NamePlural = Level Balls -Pocket = 3 +Pocket = PokeBalls Price = 300 BattleUse = OnFoe Flags = PokeBall @@ -3129,7 +1402,7 @@ Description = A Poké Ball for catching Pokémon that are a lower level than you [LUREBALL] Name = Lure Ball NamePlural = Lure Balls -Pocket = 3 +Pocket = PokeBalls Price = 300 BattleUse = OnFoe Flags = PokeBall @@ -3138,7 +1411,7 @@ Description = A Poké Ball for catching Pokémon hooked by a Rod when fishing. [HEAVYBALL] Name = Heavy Ball NamePlural = Heavy Balls -Pocket = 3 +Pocket = PokeBalls Price = 300 BattleUse = OnFoe Flags = PokeBall @@ -3147,7 +1420,7 @@ Description = A Poké Ball for catching very heavy Pokémon. [LOVEBALL] Name = Love Ball NamePlural = Love Balls -Pocket = 3 +Pocket = PokeBalls Price = 300 BattleUse = OnFoe Flags = PokeBall @@ -3156,7 +1429,7 @@ Description = A Poké Ball for catching Pokémon that are the opposite gender of [FRIENDBALL] Name = Friend Ball NamePlural = Friend Balls -Pocket = 3 +Pocket = PokeBalls Price = 300 BattleUse = OnFoe Flags = PokeBall @@ -3165,7 +1438,7 @@ Description = A Poké Ball that makes caught Pokémon more friendly. [MOONBALL] Name = Moon Ball NamePlural = Moon Balls -Pocket = 3 +Pocket = PokeBalls Price = 300 BattleUse = OnFoe Flags = PokeBall @@ -3174,1070 +1447,16 @@ Description = A Poké Ball for catching Pokémon that evolve using the Moon Ston [DREAMBALL] Name = Dream Ball NamePlural = Dream Balls -Pocket = 3 +Pocket = PokeBalls Price = 0 BattleUse = OnFoe Flags = PokeBall Description = A somewhat different Poké Ball that makes it easier to catch wild Pokémon while they're asleep. #------------------------------- -[TM01] -Name = TM01 -NamePlural = TM01s -Pocket = 4 -Price = 10000 -BPPrice = 16 -FieldUse = TM -Move = HONECLAWS -Description = The user sharpens its claws to boost its Attack stat and accuracy. -#------------------------------- -[TM02] -Name = TM02 -NamePlural = TM02s -Pocket = 4 -Price = 10000 -BPPrice = 16 -FieldUse = TM -Move = DRAGONCLAW -Description = The user slashes the target with huge, sharp claws. -#------------------------------- -[TM03] -Name = TM03 -NamePlural = TM03s -Pocket = 4 -Price = 10000 -BPPrice = 16 -FieldUse = TM -Move = PSYSHOCK -Description = The user materializes an odd psychic wave to attack the target. This attack does physical damage. -#------------------------------- -[TM04] -Name = TM04 -NamePlural = TM04s -Pocket = 4 -Price = 10000 -BPPrice = 16 -FieldUse = TM -Move = CALMMIND -Description = The user quietly focuses its mind and calms its spirit to raise its Sp. Atk and Sp. Def stats. -#------------------------------- -[TM05] -Name = TM05 -NamePlural = TM05s -Pocket = 4 -Price = 10000 -BPPrice = 24 -FieldUse = TM -Move = ROAR -Description = The target is scared off and replaced by another Pokémon in its party. In the wild, the battle ends. -#------------------------------- -[TM06] -Name = TM06 -NamePlural = TM06s -Pocket = 4 -Price = 10000 -BPPrice = 16 -FieldUse = TM -Move = TOXIC -Description = A move that leaves the target badly poisoned. Its poison damage worsens every turn. -#------------------------------- -[TM07] -Name = TM07 -NamePlural = TM07s -Pocket = 4 -Price = 50000 -BPPrice = 16 -FieldUse = TM -Move = HAIL -Description = Summons a hailstorm that lasts for five turns. The hailstorm damages all types except Ice. -#------------------------------- -[TM08] -Name = TM08 -NamePlural = TM08s -Pocket = 4 -Price = 10000 -BPPrice = 16 -FieldUse = TM -Move = BULKUP -Description = The user tenses its muscles to bulk up its body, boosting both its Attack and Defense stats. -#------------------------------- -[TM09] -Name = TM09 -NamePlural = TM09s -Pocket = 4 -Price = 10000 -BPPrice = 16 -FieldUse = TM -Move = VENOSHOCK -Description = The user drenches the target in a special poisonous liquid. Its power is doubled if the target is poisoned. -#------------------------------- -[TM10] -Name = TM10 -NamePlural = TM10s -Pocket = 4 -Price = 10000 -BPPrice = 16 -FieldUse = TM -Move = HIDDENPOWER -Description = A unique attack that varies in type and intensity depending on the Pokémon using it. -#------------------------------- -[TM11] -Name = TM11 -NamePlural = TM11s -Pocket = 4 -Price = 50000 -BPPrice = 16 -FieldUse = TM -Move = SUNNYDAY -Description = The user intensifies the sun for five turns, powering up Fire-type moves. -#------------------------------- -[TM12] -Name = TM12 -NamePlural = TM12s -Pocket = 4 -Price = 10000 -BPPrice = 16 -FieldUse = TM -Move = TAUNT -Description = The target is taunted into a rage that allows it to use only attack moves for three turns. -#------------------------------- -[TM13] -Name = TM13 -NamePlural = TM13s -Pocket = 4 -Price = 10000 -BPPrice = 16 -FieldUse = TM -Move = ICEBEAM -Description = The target is struck with an icy-cold beam of energy. It may also freeze the target solid. -#------------------------------- -[TM14] -Name = TM14 -NamePlural = TM14s -Pocket = 4 -Price = 30000 -BPPrice = 16 -FieldUse = TM -Move = BLIZZARD -Description = A howling blizzard is summoned to strike the opposing team. It may also freeze them solid. -#------------------------------- -[TM15] -Name = TM15 -NamePlural = TM15s -Pocket = 4 -Price = 50000 -BPPrice = 16 -FieldUse = TM -Move = HYPERBEAM -Description = The target is attacked with a powerful beam. The user must rest on the next turn to regain its energy. -#------------------------------- -[TM16] -Name = TM16 -NamePlural = TM16s -Pocket = 4 -Price = 10000 -BPPrice = 16 -FieldUse = TM -Move = LIGHTSCREEN -Description = A wondrous wall of light is put up to suppress damage from special attacks for five turns. -#------------------------------- -[TM17] -Name = TM17 -NamePlural = TM17s -Pocket = 4 -Price = 10000 -BPPrice = 16 -FieldUse = TM -Move = PROTECT -Description = It enables the user to evade all attacks. Its chance of failing rises if it is used in succession. -#------------------------------- -[TM18] -Name = TM18 -NamePlural = TM18s -Pocket = 4 -Price = 50000 -BPPrice = 16 -FieldUse = TM -Move = RAINDANCE -Description = The user summons a heavy rain that falls for five turns, powering up Water-type moves. -#------------------------------- -[TM19] -Name = TM19 -NamePlural = TM19s -Pocket = 4 -Price = 10000 -BPPrice = 16 -FieldUse = TM -Move = ROOST -Description = The user lands and rests its body. It restores the user's HP by up to half of its max HP. -#------------------------------- -[TM20] -Name = TM20 -NamePlural = TM20s -Pocket = 4 -Price = 10000 -BPPrice = 16 -FieldUse = TM -Move = SAFEGUARD -Description = The user creates a protective field that prevents status problems for five turns. -#------------------------------- -[TM21] -Name = TM21 -NamePlural = TM21s -Pocket = 4 -Price = 10000 -BPPrice = 16 -FieldUse = TM -Move = FRUSTRATION -Description = A full-power attack that grows more powerful the less the user likes its Trainer. -#------------------------------- -[TM22] -Name = TM22 -NamePlural = TM22s -Pocket = 4 -Price = 10000 -BPPrice = 16 -FieldUse = TM -Move = SOLARBEAM -Description = A two-turn attack. The user gathers light, then blasts a bundled beam on the second turn. -#------------------------------- -[TM23] -Name = TM23 -NamePlural = TM23s -Pocket = 4 -Price = 10000 -BPPrice = 32 -FieldUse = TM -Move = SMACKDOWN -Description = The user throws a stone or similar projectile to attack a foe. A flying Pokémon will fall to the ground if hit. -#------------------------------- -[TM24] -Name = TM24 -NamePlural = TM24s -Pocket = 4 -Price = 10000 -BPPrice = 16 -FieldUse = TM -Move = THUNDERBOLT -Description = A strong electric blast is loosed at the target. It may also leave the target with paralysis. -#------------------------------- -[TM25] -Name = TM25 -NamePlural = TM25s -Pocket = 4 -Price = 30000 -BPPrice = 16 -FieldUse = TM -Move = THUNDER -Description = A wicked thunderbolt is dropped on the target to inflict damage. It may also leave the target with paralysis. -#------------------------------- -[TM26] -Name = TM26 -NamePlural = TM26s -Pocket = 4 -Price = 10000 -BPPrice = 16 -FieldUse = TM -Move = EARTHQUAKE -Description = The user sets off an earthquake that strikes every Pokémon around it. -#------------------------------- -[TM27] -Name = TM27 -NamePlural = TM27s -Pocket = 4 -Price = 10000 -BPPrice = 16 -FieldUse = TM -Move = RETURN -Description = A full-power attack that grows more powerful the more the user likes its Trainer. -#------------------------------- -[TM28] -Name = TM28 -NamePlural = TM28s -Pocket = 4 -Price = 2000 -BPPrice = 16 -FieldUse = TM -Move = DIG -Description = The user burrows, then attacks on the second turn. It can also be used to exit dungeons. -#------------------------------- -[TM29] -Name = TM29 -NamePlural = TM29s -Pocket = 4 -Price = 10000 -BPPrice = 16 -FieldUse = TM -Move = PSYCHIC -Description = The target is hit by a strong telekinetic force. It may also reduce the target's Sp. Def stat. -#------------------------------- -[TM30] -Name = TM30 -NamePlural = TM30s -Pocket = 4 -Price = 10000 -BPPrice = 16 -FieldUse = TM -Move = SHADOWBALL -Description = The user hurls a shadowy blob at the target. It may also lower the target's Sp. Def stat. -#------------------------------- -[TM31] -Name = TM31 -NamePlural = TM31s -Pocket = 4 -Price = 10000 -BPPrice = 16 -FieldUse = TM -Move = BRICKBREAK -Description = The user attacks with tough fists, etc. It can also break any barrier such as Light Screen and Reflect. -#------------------------------- -[TM32] -Name = TM32 -NamePlural = TM32s -Pocket = 4 -Price = 10000 -BPPrice = 16 -FieldUse = TM -Move = DOUBLETEAM -Description = By moving rapidly, the user makes illusory copies of itself to raise its evasiveness. -#------------------------------- -[TM33] -Name = TM33 -NamePlural = TM33s -Pocket = 4 -Price = 10000 -BPPrice = 16 -FieldUse = TM -Move = REFLECT -Description = A wondrous wall of light is put up to suppress damage from physical attacks for five turns. -#------------------------------- -[TM34] -Name = TM34 -NamePlural = TM34s -Pocket = 4 -Price = 10000 -BPPrice = 32 -FieldUse = TM -Move = SLUDGEWAVE -Description = It swamps the area around the user with a giant sludge wave. It may also poison those hit. -#------------------------------- -[TM35] -Name = TM35 -NamePlural = TM35s -Pocket = 4 -Price = 10000 -BPPrice = 16 -FieldUse = TM -Move = FLAMETHROWER -Description = The target is scorched with an intense blast of fire. It may also leave the target with a burn. -#------------------------------- -[TM36] -Name = TM36 -NamePlural = TM36s -Pocket = 4 -Price = 10000 -BPPrice = 16 -FieldUse = TM -Move = SLUDGEBOMB -Description = Unsanitary sludge is hurled at the target. It may also poison the target. -#------------------------------- -[TM37] -Name = TM37 -NamePlural = TM37s -Pocket = 4 -Price = 50000 -BPPrice = 16 -FieldUse = TM -Move = SANDSTORM -Description = A five-turn sandstorm is summoned to hurt all combatants except the Rock, Ground, and Steel types. -#------------------------------- -[TM38] -Name = TM38 -NamePlural = TM38s -Pocket = 4 -Price = 30000 -BPPrice = 16 -FieldUse = TM -Move = FIREBLAST -Description = The foe is attacked with an intense blast of all-consuming fire. It may also leave the target with a burn. -#------------------------------- -[TM39] -Name = TM39 -NamePlural = TM39s -Pocket = 4 -Price = 10000 -BPPrice = 16 -FieldUse = TM -Move = ROCKTOMB -Description = Boulders are hurled at the target. It also lowers the target's Speed by preventing its movement. -#------------------------------- -[TM40] -Name = TM40 -NamePlural = TM40s -Pocket = 4 -Price = 10000 -BPPrice = 16 -FieldUse = TM -Move = AERIALACE -Description = The user confounds the target with speed, then slashes. The attack lands without fail. -#------------------------------- -[TM41] -Name = TM41 -NamePlural = TM41s -Pocket = 4 -Price = 10000 -BPPrice = 16 -FieldUse = TM -Move = TORMENT -Description = The user torments and enrages the target, making it incapable of using the same move twice in a row. -#------------------------------- -[TM42] -Name = TM42 -NamePlural = TM42s -Pocket = 4 -Price = 10000 -BPPrice = 16 -FieldUse = TM -Move = FACADE -Description = An attack move that doubles its power if the user is poisoned, paralyzed, or has a burn. -#------------------------------- -[TM43] -Name = TM43 -NamePlural = TM43s -Pocket = 4 -Price = 10000 -BPPrice = 16 -FieldUse = TM -Move = FLAMECHARGE -Description = The user cloaks itself with flame and attacks. Building up more power, it raises the user's Speed stat. -#------------------------------- -[TM44] -Name = TM44 -NamePlural = TM44s -Pocket = 4 -Price = 1000 -BPPrice = 16 -FieldUse = TM -Move = REST -Description = The user goes to sleep for two turns. It fully restores the user's HP and heals any status problem. -#------------------------------- -[TM45] -Name = TM45 -NamePlural = TM45s -Pocket = 4 -Price = 10000 -BPPrice = 16 -FieldUse = TM -Move = ATTRACT -Description = If it is the opposite gender of the user, the target becomes infatuated and less likely to attack. -#------------------------------- -[TM46] -Name = TM46 -NamePlural = TM46s -Pocket = 4 -Price = 10000 -BPPrice = 16 -FieldUse = TM -Move = THIEF -Description = The user attacks and steals the target's held item simultaneously. It can't steal if the user holds an item. -#------------------------------- -[TM47] -Name = TM47 -NamePlural = TM47s -Pocket = 4 -Price = 10000 -BPPrice = 16 -FieldUse = TM -Move = LOWSWEEP -Description = The user attacks the target's legs swiftly, reducing the target's Speed stat. -#------------------------------- -[TM48] -Name = TM48 -NamePlural = TM48s -Pocket = 4 -Price = 10000 -BPPrice = 16 -FieldUse = TM -Move = ROUND -Description = The user attacks the target with a song. Others can join in the Round to increase the power of the attack. -#------------------------------- -[TM49] -Name = TM49 -NamePlural = TM49s -Pocket = 4 -Price = 10000 -BPPrice = 16 -FieldUse = TM -Move = ECHOEDVOICE -Description = The user attacks the target with an echoing voice. If this move is used every turn, it does greater damage. -#------------------------------- -[TM50] -Name = TM50 -NamePlural = TM50s -Pocket = 4 -Price = 80000 -BPPrice = 16 -FieldUse = TM -Move = OVERHEAT -Description = The user attacks the target at full power. The attack's recoil sharply reduces the user's Sp. Atk stat. -#------------------------------- -[TM51] -Name = TM51 -NamePlural = TM51s -Pocket = 4 -Price = 10000 -BPPrice = 32 -FieldUse = TM -Move = STEELWING -Description = The target is hit with wings of steel. This may also raise the user's Defense stat. -#------------------------------- -[TM52] -Name = TM52 -NamePlural = TM52s -Pocket = 4 -Price = 30000 -BPPrice = 16 -FieldUse = TM -Move = FOCUSBLAST -Description = The user heightens its mental focus and unleashes its power. It may also lower the target's Sp. Def. -#------------------------------- -[TM53] -Name = TM53 -NamePlural = TM53s -Pocket = 4 -Price = 10000 -BPPrice = 16 -FieldUse = TM -Move = ENERGYBALL -Description = The user draws power from nature and fires it at the target. It may also lower the target's Sp. Def. -#------------------------------- -[TM54] -Name = TM54 -NamePlural = TM54s -Pocket = 4 -Price = 10000 -BPPrice = 16 -FieldUse = TM -Move = FALSESWIPE -Description = A restrained attack that prevents the target from fainting. The target is left with at least 1 HP. -#------------------------------- -[TM55] -Name = TM55 -NamePlural = TM55s -Pocket = 4 -Price = 10000 -BPPrice = 16 -FieldUse = TM -Move = SCALD -Description = The user shoots boiling hot water at its target. It may also leave the target with a burn. -#------------------------------- -[TM56] -Name = TM56 -NamePlural = TM56s -Pocket = 4 -Price = 10000 -BPPrice = 16 -FieldUse = TM -Move = FLING -Description = The user flings its held item at the target as an attack. Its power and effects depend on the item. -#------------------------------- -[TM57] -Name = TM57 -NamePlural = TM57s -Pocket = 4 -Price = 10000 -BPPrice = 16 -FieldUse = TM -Move = CHARGEBEAM -Description = The user fires a concentrated bundle of electricity. It may also raise the user's Sp. Atk stat. -#------------------------------- -[TM58] -Name = TM58 -NamePlural = TM58s -Pocket = 4 -Price = 10000 -BPPrice = 16 -FieldUse = TM -Move = SKYDROP -Description = The user hurls the foe into the sky, then drops it on the next turn. The foe cannot attack while in the sky. -#------------------------------- -[TM59] -Name = TM59 -NamePlural = TM59s -Pocket = 4 -Price = 1500 -BPPrice = 16 -FieldUse = TM -Move = INCINERATE -Description = The user attacks the target with fire. If the target is holding a Berry, it becomes burnt up and unusable. -#------------------------------- -[TM60] -Name = TM60 -NamePlural = TM60s -Pocket = 4 -Price = 10000 -BPPrice = 24 -FieldUse = TM -Move = QUASH -Description = The user suppresses the target and makes its move go last. -#------------------------------- -[TM61] -Name = TM61 -NamePlural = TM61s -Pocket = 4 -Price = 10000 -BPPrice = 16 -FieldUse = TM -Move = WILLOWISP -Description = The user shoots a sinister, bluish-white flame at the target to inflict a burn. -#------------------------------- -[TM62] -Name = TM62 -NamePlural = TM62s -Pocket = 4 -Price = 10000 -BPPrice = 16 -FieldUse = TM -Move = ACROBATICS -Description = The user nimbly strikes the target. If the user is not holding an item, this attack inflicts massive damage. -#------------------------------- -[TM63] -Name = TM63 -NamePlural = TM63s -Pocket = 4 -Price = 10000 -BPPrice = 16 -FieldUse = TM -Move = EMBARGO -Description = It prevents the target from using its held item. Its Trainer is also prevented from using items on it. -#------------------------------- -[TM64] -Name = TM64 -NamePlural = TM64s -Pocket = 4 -Price = 10000 -BPPrice = 48 -FieldUse = TM -Move = EXPLOSION -Description = The user explodes to inflict damage on those around it. The user faints upon using this move. -#------------------------------- -[TM65] -Name = TM65 -NamePlural = TM65s -Pocket = 4 -Price = 10000 -BPPrice = 16 -FieldUse = TM -Move = SHADOWCLAW -Description = The user slashes with a sharp claw made from shadows. It has a high critical-hit ratio. -#------------------------------- -[TM66] -Name = TM66 -NamePlural = TM66s -Pocket = 4 -Price = 10000 -BPPrice = 16 -FieldUse = TM -Move = PAYBACK -Description = The user stores power, then attacks. If the user can use this attack after the foe, its power is doubled. -#------------------------------- -[TM67] -Name = TM67 -NamePlural = TM67s -Pocket = 4 -Price = 1000 -BPPrice = 48 -FieldUse = TM -Move = RETALIATE -Description = The user gets revenge for a fainted ally. If an ally fainted in the last turn, this move's power is increased. -#------------------------------- -[TM68] -Name = TM68 -NamePlural = TM68s -Pocket = 4 -Price = 50000 -BPPrice = 16 -FieldUse = TM -Move = GIGAIMPACT -Description = The user charges at the target using every bit of its power. The user must rest on the next turn. -#------------------------------- -[TM69] -Name = TM69 -NamePlural = TM69s -Pocket = 4 -Price = 10000 -BPPrice = 16 -FieldUse = TM -Move = ROCKPOLISH -Description = The user polishes its body to reduce drag. It sharply raises the Speed stat. -#------------------------------- -[TM70] -Name = TM70 -NamePlural = TM70s -Pocket = 4 -Price = 1000 -BPPrice = 16 -FieldUse = TM -Move = FLASH -Description = The user flashes a bright light that cuts the target's accuracy. It can also be used to illuminate caves. -#------------------------------- -[TM71] -Name = TM71 -NamePlural = TM71s -Pocket = 4 -Price = 30000 -BPPrice = 16 -FieldUse = TM -Move = STONEEDGE -Description = The user stabs the foe with sharpened stones from below. It has a high critical-hit ratio. -#------------------------------- -[TM72] -Name = TM72 -NamePlural = TM72s -Pocket = 4 -Price = 10000 -BPPrice = 48 -FieldUse = TM -Move = VOLTSWITCH -Description = After making its attack, the user rushes back to switch places with a party Pokémon in waiting. -#------------------------------- -[TM73] -Name = TM73 -NamePlural = TM73s -Pocket = 4 -Price = 5000 -BPPrice = 16 -FieldUse = TM -Move = THUNDERWAVE -Description = A weak electric charge is launched at the target. It causes paralysis if it hits. -#------------------------------- -[TM74] -Name = TM74 -NamePlural = TM74s -Pocket = 4 -Price = 10000 -BPPrice = 16 -FieldUse = TM -Move = GYROBALL -Description = The user tackles the target with a high-speed spin. The slower the user, the greater the damage. -#------------------------------- -[TM75] -Name = TM75 -NamePlural = TM75s -Pocket = 4 -Price = 10000 -BPPrice = 16 -FieldUse = TM -Move = SWORDSDANCE -Description = A frenetic dance to uplift the fighting spirit. It sharply raises the user's Attack stat. -#------------------------------- -[TM76] -Name = TM76 -NamePlural = TM76s -Pocket = 4 -Price = 2000 -BPPrice = 16 -FieldUse = TM -Move = STRUGGLEBUG -Description = Resisting, the user attacks the opposing Pokémon. The targets' Sp. Atk stat is reduced. -#------------------------------- -[TM77] -Name = TM77 -NamePlural = TM77s -Pocket = 4 -Price = 10000 -BPPrice = 16 -FieldUse = TM -Move = PSYCHUP -Description = The user hypnotizes itself into copying any stat change made by the target. -#------------------------------- -[TM78] -Name = TM78 -NamePlural = TM78s -Pocket = 4 -Price = 10000 -BPPrice = 16 -FieldUse = TM -Move = BULLDOZE -Description = The user stomps down on the ground and attacks everything in the area. The targets' Speed stat is reduced. -#------------------------------- -[TM79] -Name = TM79 -NamePlural = TM79s -Pocket = 4 -Price = 10000 -BPPrice = 16 -FieldUse = TM -Move = FROSTBREATH -Description = The user blows a cold breath on the target. This attack always results in a critical hit. -#------------------------------- -[TM80] -Name = TM80 -NamePlural = TM80s -Pocket = 4 -Price = 10000 -BPPrice = 16 -FieldUse = TM -Move = ROCKSLIDE -Description = Large boulders are hurled at the opposing team to inflict damage. They may also make the targets flinch. -#------------------------------- -[TM81] -Name = TM81 -NamePlural = TM81s -Pocket = 4 -Price = 10000 -BPPrice = 16 -FieldUse = TM -Move = XSCISSOR -Description = The user slashes at the target by crossing its scythes or claws as if they were a pair of scissors. -#------------------------------- -[TM82] -Name = TM82 -NamePlural = TM82s -Pocket = 4 -Price = 10000 -BPPrice = 16 -FieldUse = TM -Move = DRAGONTAIL -Description = The user knocks away the target and drags out another Pokémon in its party. In the wild, the battle ends. -#------------------------------- -[TM83] -Name = TM83 -NamePlural = TM83s -Pocket = 4 -Price = 10000 -BPPrice = 16 -FieldUse = TM -Move = INFESTATION -Description = The target is infested and attacked for four to five turns. The target can't flee during this time. -#------------------------------- -[TM84] -Name = TM84 -NamePlural = TM84s -Pocket = 4 -Price = 10000 -BPPrice = 16 -FieldUse = TM -Move = POISONJAB -Description = The target is stabbed with a tentacle or arm steeped in poison. It may also poison the target. -#------------------------------- -[TM85] -Name = TM85 -NamePlural = TM85s -Pocket = 4 -Price = 10000 -BPPrice = 48 -FieldUse = TM -Move = DREAMEATER -Description = The user eats the dreams of a sleeping target. It absorbs half the damage caused to heal the user's HP. -#------------------------------- -[TM86] -Name = TM86 -NamePlural = TM86s -Pocket = 4 -Price = 10000 -BPPrice = 16 -FieldUse = TM -Move = GRASSKNOT -Description = The user snares the target with grass and trips it. The heavier the target, the greater the damage. -#------------------------------- -[TM87] -Name = TM87 -NamePlural = TM87s -Pocket = 4 -Price = 10000 -BPPrice = 24 -FieldUse = TM -Move = SWAGGER -Description = The user enrages and confuses the target. However, it also sharply raises the target's Attack stat. -#------------------------------- -[TM88] -Name = TM88 -NamePlural = TM88s -Pocket = 4 -Price = 10000 -BPPrice = 16 -FieldUse = TM -Move = SLEEPTALK -Description = While it is asleep, the user randomly uses one of the moves it knows. -#------------------------------- -[TM89] -Name = TM89 -NamePlural = TM89s -Pocket = 4 -Price = 10000 -BPPrice = 16 -FieldUse = TM -Move = UTURN -Description = After making its attack, the user rushes back to switch places with a party Pokémon in waiting. -#------------------------------- -[TM90] -Name = TM90 -NamePlural = TM90s -Pocket = 4 -Price = 10000 -BPPrice = 16 -FieldUse = TM -Move = SUBSTITUTE -Description = The user makes a copy of itself using some of its HP. The copy serves as the user's decoy. -#------------------------------- -[TM91] -Name = TM91 -NamePlural = TM91s -Pocket = 4 -Price = 10000 -BPPrice = 16 -FieldUse = TM -Move = FLASHCANNON -Description = The user gathers all its light energy and releases it at once. It may also lower the target's Sp. Def stat. -#------------------------------- -[TM92] -Name = TM92 -NamePlural = TM92s -Pocket = 4 -Price = 10000 -BPPrice = 16 -FieldUse = TM -Move = TRICKROOM -Description = The user creates a bizarre space in which slower Pokémon get to move first for five turns. -#------------------------------- -[TM93] -Name = TM93 -NamePlural = TM93s -Pocket = 4 -Price = 50000 -BPPrice = 16 -FieldUse = TM -Move = WILDCHARGE -Description = The user shrouds itself in electricity and smashes into its target. It also damages the user a little. -#------------------------------- -[TM94] -Name = TM94 -NamePlural = TM94s -Pocket = 4 -Price = 2000 -BPPrice = 16 -FieldUse = TM -Move = SECRETPOWER -Description = The user attacks with a secret power. Its added effects vary depending on the user's environment. -#------------------------------- -[TM95] -Name = TM95 -NamePlural = TM95s -Pocket = 4 -Price = 10000 -BPPrice = 16 -FieldUse = TM -Move = SNARL -Description = The user yells as if it is ranting about something, making the target's Sp. Atk stat decrease. -#------------------------------- -[TM96] -Name = TM96 -NamePlural = TM96s -Pocket = 4 -Price = 10000 -BPPrice = 16 -FieldUse = TM -Move = NATUREPOWER -Description = This attack makes use of nature's power. Its effects vary depending on the user's environment. -#------------------------------- -[TM97] -Name = TM97 -NamePlural = TM97s -Pocket = 4 -Price = 10000 -BPPrice = 16 -FieldUse = TM -Move = DARKPULSE -Description = The user releases a horrible aura imbued with dark thoughts. This may also make the target flinch. -#------------------------------- -[TM98] -Name = TM98 -NamePlural = TM98s -Pocket = 4 -Price = 10000 -BPPrice = 16 -FieldUse = TM -Move = POWERUPPUNCH -Description = Striking opponents repeatedly makes the user's fists harder. Hitting a target raises the Attack stat. -#------------------------------- -[TM99] -Name = TM99 -NamePlural = TM99s -Pocket = 4 -Price = 10000 -BPPrice = 16 -FieldUse = TM -Move = DAZZLINGGLEAM -Description = The user damages opposing Pokémon by emitting a powerful flash. -#------------------------------- -[TM100] -Name = TM100 -NamePlural = TM100s -Pocket = 4 -Price = 5000 -BPPrice = 16 -FieldUse = TM -Move = CONFIDE -Description = The user tells the target a secret. The target loses concentration and its Sp. Atk stat is lowered. -#------------------------------- -[HM01] -Name = HM01 -NamePlural = HM01s -Pocket = 4 -Price = 0 -FieldUse = HM -Move = CUT -Description = The target is cut with a scythe or claw. It can also be used to cut down thin trees. -#------------------------------- -[HM02] -Name = HM02 -NamePlural = HM02s -Pocket = 4 -Price = 0 -FieldUse = HM -Move = FLY -Description = The user soars, then strikes on the second turn. It can also be used to fly to any familiar town. -#------------------------------- -[HM03] -Name = HM03 -NamePlural = HM03s -Pocket = 4 -Price = 0 -FieldUse = HM -Move = SURF -Description = It swamps the area around the user with a giant wave. It can also be used for crossing water. -#------------------------------- -[HM04] -Name = HM04 -NamePlural = HM04s -Pocket = 4 -Price = 0 -FieldUse = HM -Move = STRENGTH -Description = The target is slugged with a punch thrown at maximum power. This move can also be used to move boulders. -#------------------------------- -[HM05] -Name = HM05 -NamePlural = HM05s -Pocket = 4 -Price = 0 -FieldUse = HM -Move = WATERFALL -Description = The user charges the target at an awesome speed. It can also be used to climb a waterfall. -#------------------------------- -[HM06] -Name = HM06 -NamePlural = HM06s -Pocket = 4 -Price = 0 -FieldUse = HM -Move = DIVE -Description = The user dives on the first turn, and floats up and attacks on the second. It can be used to dive in the ocean. -#------------------------------- [CHERIBERRY] Name = Cheri Berry NamePlural = Cheri Berries -Pocket = 5 +Pocket = Berries Price = 20 FieldUse = OnPokemon BattleUse = OnPokemon @@ -4247,7 +1466,7 @@ Description = It may be used or held by a Pokémon to recover from paralysis. [CHESTOBERRY] Name = Chesto Berry NamePlural = Chesto Berries -Pocket = 5 +Pocket = Berries Price = 20 FieldUse = OnPokemon BattleUse = OnPokemon @@ -4257,7 +1476,7 @@ Description = It may be used or held by a Pokémon to recover from sleep. [PECHABERRY] Name = Pecha Berry NamePlural = Pecha Berries -Pocket = 5 +Pocket = Berries Price = 20 FieldUse = OnPokemon BattleUse = OnPokemon @@ -4267,7 +1486,7 @@ Description = It may be used or held by a Pokémon to recover from poison. [RAWSTBERRY] Name = Rawst Berry NamePlural = Rawst Berries -Pocket = 5 +Pocket = Berries Price = 20 FieldUse = OnPokemon BattleUse = OnPokemon @@ -4277,7 +1496,7 @@ Description = It may be used or held by a Pokémon to recover from a burn. [ASPEARBERRY] Name = Aspear Berry NamePlural = Aspear Berries -Pocket = 5 +Pocket = Berries Price = 20 FieldUse = OnPokemon BattleUse = OnPokemon @@ -4287,7 +1506,7 @@ Description = It may be used or held by a Pokémon to defrost it. [LEPPABERRY] Name = Leppa Berry NamePlural = Leppa Berries -Pocket = 5 +Pocket = Berries Price = 20 FieldUse = OnPokemon BattleUse = OnMove @@ -4297,7 +1516,7 @@ Description = It may be used or held by a Pokémon to restore a move's PP by 10. [ORANBERRY] Name = Oran Berry NamePlural = Oran Berries -Pocket = 5 +Pocket = Berries Price = 20 FieldUse = OnPokemon BattleUse = OnPokemon @@ -4307,7 +1526,7 @@ Description = It may be used or held by a Pokémon to heal the user by just 10 H [PERSIMBERRY] Name = Persim Berry NamePlural = Persim Berries -Pocket = 5 +Pocket = Berries Price = 20 BattleUse = OnBattler Flags = Berry,Fling_10,NaturalGift_GROUND_80 @@ -4316,7 +1535,7 @@ Description = It may be used or held by a Pokémon to recover from confusion. [LUMBERRY] Name = Lum Berry NamePlural = Lum Berries -Pocket = 5 +Pocket = Berries Price = 20 FieldUse = OnPokemon BattleUse = OnPokemon @@ -4326,7 +1545,7 @@ Description = It may be used or held by a Pokémon to recover from any status pr [SITRUSBERRY] Name = Sitrus Berry NamePlural = Sitrus Berries -Pocket = 5 +Pocket = Berries Price = 20 FieldUse = OnPokemon BattleUse = OnPokemon @@ -4336,7 +1555,7 @@ Description = It may be used or held by a Pokémon to heal the user's HP a littl [FIGYBERRY] Name = Figy Berry NamePlural = Figy Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_BUG_80 Description = If held by a Pokémon, it restores the user's HP in a pinch, but will cause confusion if it hates the taste. @@ -4344,7 +1563,7 @@ Description = If held by a Pokémon, it restores the user's HP in a pinch, but w [WIKIBERRY] Name = Wiki Berry NamePlural = Wiki Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_ROCK_80 Description = If held by a Pokémon, it restores the user's HP in a pinch, but will cause confusion if it hates the taste. @@ -4352,7 +1571,7 @@ Description = If held by a Pokémon, it restores the user's HP in a pinch, but w [MAGOBERRY] Name = Mago Berry NamePlural = Mago Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_GHOST_80 Description = If held by a Pokémon, it restores the user's HP in a pinch, but will cause confusion if it hates the taste. @@ -4360,7 +1579,7 @@ Description = If held by a Pokémon, it restores the user's HP in a pinch, but w [AGUAVBERRY] Name = Aguav Berry NamePlural = Aguav Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_DRAGON_80 Description = If held by a Pokémon, it restores the user's HP in a pinch, but will cause confusion if it hates the taste. @@ -4368,7 +1587,7 @@ Description = If held by a Pokémon, it restores the user's HP in a pinch, but w [IAPAPABERRY] Name = Iapapa Berry NamePlural = Iapapa Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_DARK_80 Description = If held by a Pokémon, it restores the user's HP in a pinch, but will cause confusion if it hates the taste. @@ -4376,7 +1595,7 @@ Description = If held by a Pokémon, it restores the user's HP in a pinch, but w [RAZZBERRY] Name = Razz Berry NamePlural = Razz Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_STEEL_80 Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry. @@ -4384,7 +1603,7 @@ Description = In the Sinnoh region, they like to make sweets known as Poffins wi [BLUKBERRY] Name = Bluk Berry NamePlural = Bluk Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_FIRE_90 Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry. @@ -4392,7 +1611,7 @@ Description = In the Sinnoh region, they like to make sweets known as Poffins wi [NANABBERRY] Name = Nanab Berry NamePlural = Nanab Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_WATER_90 Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry. @@ -4400,7 +1619,7 @@ Description = In the Sinnoh region, they like to make sweets known as Poffins wi [WEPEARBERRY] Name = Wepear Berry NamePlural = Wepear Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_ELECTRIC_90 Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry. @@ -4408,7 +1627,7 @@ Description = In the Sinnoh region, they like to make sweets known as Poffins wi [PINAPBERRY] Name = Pinap Berry NamePlural = Pinap Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_GRASS_90 Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry. @@ -4416,7 +1635,7 @@ Description = In the Sinnoh region, they like to make sweets known as Poffins wi [POMEGBERRY] Name = Pomeg Berry NamePlural = Pomeg Berries -Pocket = 5 +Pocket = Berries Price = 20 FieldUse = OnPokemon Flags = Berry,Fling_10,NaturalGift_ICE_90 @@ -4425,7 +1644,7 @@ Description = Using it on a Pokémon makes it more friendly, but it also lowers [KELPSYBERRY] Name = Kelpsy Berry NamePlural = Kelpsy Berries -Pocket = 5 +Pocket = Berries Price = 20 FieldUse = OnPokemon Flags = Berry,Fling_10,NaturalGift_FIGHTING_90 @@ -4434,7 +1653,7 @@ Description = Using it on a Pokémon makes it more friendly, but it also lowers [QUALOTBERRY] Name = Qualot Berry NamePlural = Qualot Berries -Pocket = 5 +Pocket = Berries Price = 20 FieldUse = OnPokemon Flags = Berry,Fling_10,NaturalGift_POISON_90 @@ -4443,7 +1662,7 @@ Description = Using it on a Pokémon makes it more friendly, but it also lowers [HONDEWBERRY] Name = Hondew Berry NamePlural = Hondew Berries -Pocket = 5 +Pocket = Berries Price = 20 FieldUse = OnPokemon Flags = Berry,Fling_10,NaturalGift_GROUND_90 @@ -4452,7 +1671,7 @@ Description = Using it on a Pokémon makes it more friendly, but it also lowers [GREPABERRY] Name = Grepa Berry NamePlural = Grepa Berries -Pocket = 5 +Pocket = Berries Price = 20 FieldUse = OnPokemon Flags = Berry,Fling_10,NaturalGift_FLYING_90 @@ -4461,7 +1680,7 @@ Description = Using it on a Pokémon makes it more friendly, but it also lowers [TAMATOBERRY] Name = Tamato Berry NamePlural = Tamato Berries -Pocket = 5 +Pocket = Berries Price = 20 FieldUse = OnPokemon Flags = Berry,Fling_10,NaturalGift_PSYCHIC_90 @@ -4470,7 +1689,7 @@ Description = Using it on a Pokémon makes it more friendly, but it also lowers [CORNNBERRY] Name = Cornn Berry NamePlural = Cornn Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_BUG_90 Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry. @@ -4478,7 +1697,7 @@ Description = In the Sinnoh region, they like to make sweets known as Poffins wi [MAGOSTBERRY] Name = Magost Berry NamePlural = Magost Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_ROCK_90 Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry. @@ -4486,7 +1705,7 @@ Description = In the Sinnoh region, they like to make sweets known as Poffins wi [RABUTABERRY] Name = Rabuta Berry NamePlural = Rabuta Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_GHOST_90 Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry. @@ -4494,7 +1713,7 @@ Description = In the Sinnoh region, they like to make sweets known as Poffins wi [NOMELBERRY] Name = Nomel Berry NamePlural = Nomel Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_DRAGON_90 Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry. @@ -4502,7 +1721,7 @@ Description = In the Sinnoh region, they like to make sweets known as Poffins wi [SPELONBERRY] Name = Spelon Berry NamePlural = Spelon Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_DARK_90 Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry. @@ -4510,7 +1729,7 @@ Description = In the Sinnoh region, they like to make sweets known as Poffins wi [PAMTREBERRY] Name = Pamtre Berry NamePlural = Pamtre Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_STEEL_90 Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry. @@ -4518,7 +1737,7 @@ Description = In the Sinnoh region, they like to make sweets known as Poffins wi [WATMELBERRY] Name = Watmel Berry NamePlural = Watmel Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_FIRE_100 Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry. @@ -4526,7 +1745,7 @@ Description = In the Sinnoh region, they like to make sweets known as Poffins wi [DURINBERRY] Name = Durin Berry NamePlural = Durin Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_WATER_100 Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry. @@ -4534,7 +1753,7 @@ Description = In the Sinnoh region, they like to make sweets known as Poffins wi [BELUEBERRY] Name = Belue Berry NamePlural = Belue Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_ELECTRIC_100 Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry. @@ -4542,7 +1761,7 @@ Description = In the Sinnoh region, they like to make sweets known as Poffins wi [OCCABERRY] Name = Occa Berry NamePlural = Occa Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_FIRE_80 Description = Weakens a supereffective Fire-type attack against the holding Pokémon. @@ -4550,7 +1769,7 @@ Description = Weakens a supereffective Fire-type attack against the holding Pok [PASSHOBERRY] Name = Passho Berry NamePlural = Passho Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_WATER_80 Description = Weakens a supereffective Water-type attack against the holding Pokémon. @@ -4558,7 +1777,7 @@ Description = Weakens a supereffective Water-type attack against the holding Pok [WACANBERRY] Name = Wacan Berry NamePlural = Wacan Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_ELECTRIC_80 Description = Weakens a supereffective Electric-type attack against the holding Pokémon. @@ -4566,7 +1785,7 @@ Description = Weakens a supereffective Electric-type attack against the holding [RINDOBERRY] Name = Rindo Berry NamePlural = Rindo Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_GRASS_80 Description = Weakens a supereffective Grass-type attack against the holding Pokémon. @@ -4574,7 +1793,7 @@ Description = Weakens a supereffective Grass-type attack against the holding Pok [YACHEBERRY] Name = Yache Berry NamePlural = Yache Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_ICE_80 Description = Weakens a supereffective Ice-type attack against the holding Pokémon. @@ -4582,7 +1801,7 @@ Description = Weakens a supereffective Ice-type attack against the holding Poké [CHOPLEBERRY] Name = Chople Berry NamePlural = Chople Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_FIGHTING_80 Description = Weakens a supereffective Fighting-type attack against the holding Pokémon. @@ -4590,7 +1809,7 @@ Description = Weakens a supereffective Fighting-type attack against the holding [KEBIABERRY] Name = Kebia Berry NamePlural = Kebia Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_POISON_80 Description = Weakens a supereffective Poison-type attack against the holding Pokémon. @@ -4598,7 +1817,7 @@ Description = Weakens a supereffective Poison-type attack against the holding Po [SHUCABERRY] Name = Shuca Berry NamePlural = Shuca Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_GROUND_80 Description = Weakens a supereffective Ground-type attack against the holding Pokémon. @@ -4606,7 +1825,7 @@ Description = Weakens a supereffective Ground-type attack against the holding Po [COBABERRY] Name = Coba Berry NamePlural = Coba Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_FLYING_80 Description = Weakens a supereffective Flying-type attack against the holding Pokémon. @@ -4614,7 +1833,7 @@ Description = Weakens a supereffective Flying-type attack against the holding Po [PAYAPABERRY] Name = Payapa Berry NamePlural = Payapa Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_PSYCHIC_80 Description = Weakens a supereffective Psychic-type attack against the holding Pokémon. @@ -4622,7 +1841,7 @@ Description = Weakens a supereffective Psychic-type attack against the holding P [TANGABERRY] Name = Tanga Berry NamePlural = Tanga Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_BUG_80 Description = Weakens a supereffective Bug-type attack against the holding Pokémon. @@ -4630,7 +1849,7 @@ Description = Weakens a supereffective Bug-type attack against the holding Poké [CHARTIBERRY] Name = Charti Berry NamePlural = Charti Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_ROCK_80 Description = Weakens a supereffective Rock-type attack against the holding Pokémon. @@ -4638,7 +1857,7 @@ Description = Weakens a supereffective Rock-type attack against the holding Pok [KASIBBERRY] Name = Kasib Berry NamePlural = Kasib Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_GHOST_80 Description = Weakens a supereffective Ghost-type attack against the holding Pokémon. @@ -4646,7 +1865,7 @@ Description = Weakens a supereffective Ghost-type attack against the holding Pok [HABANBERRY] Name = Haban Berry NamePlural = Haban Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_DRAGON_80 Description = Weakens a supereffective Dragon-type attack against the holding Pokémon. @@ -4654,7 +1873,7 @@ Description = Weakens a supereffective Dragon-type attack against the holding Po [COLBURBERRY] Name = Colbur Berry NamePlural = Colbur Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_DARK_80 Description = Weakens a supereffective Dark-type attack against the holding Pokémon. @@ -4662,7 +1881,7 @@ Description = Weakens a supereffective Dark-type attack against the holding Pok [BABIRIBERRY] Name = Babiri Berry NamePlural = Babiri Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_STEEL_80 Description = Weakens a supereffective Steel-type attack against the holding Pokémon. @@ -4670,7 +1889,7 @@ Description = Weakens a supereffective Steel-type attack against the holding Pok [ROSELIBERRY] Name = Roseli Berry NamePlural = Roseli Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_FAIRY_80 Description = If held by a Pokémon, this Berry will lessen the damage taken from one supereffective Fairy-type attack. @@ -4678,7 +1897,7 @@ Description = If held by a Pokémon, this Berry will lessen the damage taken fro [CHILANBERRY] Name = Chilan Berry NamePlural = Chilan Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_NORMAL_80 Description = Weakens a Normal-type attack against the Pokémon holding this berry. @@ -4686,7 +1905,7 @@ Description = Weakens a Normal-type attack against the Pokémon holding this ber [LIECHIBERRY] Name = Liechi Berry NamePlural = Liechi Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_GRASS_100 Description = If held by a Pokémon, it raises its Attack stat in a pinch. @@ -4694,7 +1913,7 @@ Description = If held by a Pokémon, it raises its Attack stat in a pinch. [GANLONBERRY] Name = Ganlon Berry NamePlural = Ganlon Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_ICE_100 Description = If held by a Pokémon, it raises its Defense stat in a pinch. @@ -4702,7 +1921,7 @@ Description = If held by a Pokémon, it raises its Defense stat in a pinch. [SALACBERRY] Name = Salac Berry NamePlural = Salac Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_FIGHTING_100 Description = If held by a Pokémon, it raises its Speed stat in a pinch. @@ -4710,7 +1929,7 @@ Description = If held by a Pokémon, it raises its Speed stat in a pinch. [PETAYABERRY] Name = Petaya Berry NamePlural = Petaya Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_POISON_100 Description = If held by a Pokémon, it raises its Sp. Atk stat in a pinch. @@ -4718,7 +1937,7 @@ Description = If held by a Pokémon, it raises its Sp. Atk stat in a pinch. [APICOTBERRY] Name = Apicot Berry NamePlural = Apicot Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_GROUND_100 Description = If held by a Pokémon, it raises its Sp. Def stat in a pinch. @@ -4726,7 +1945,7 @@ Description = If held by a Pokémon, it raises its Sp. Def stat in a pinch. [LANSATBERRY] Name = Lansat Berry NamePlural = Lansat Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_FLYING_100 Description = If held by a Pokémon, it raises its critical-hit ratio in a pinch. @@ -4734,7 +1953,7 @@ Description = If held by a Pokémon, it raises its critical-hit ratio in a pinch [STARFBERRY] Name = Starf Berry NamePlural = Starf Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_PSYCHIC_100 Description = If held by a Pokémon, it sharply raises one of its stats in a pinch. @@ -4742,7 +1961,7 @@ Description = If held by a Pokémon, it sharply raises one of its stats in a pin [ENIGMABERRY] Name = Enigma Berry NamePlural = Enigma Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_BUG_100 Description = If held by a Pokémon, it restores its HP if it is hit by any supereffective attack. @@ -4750,7 +1969,7 @@ Description = If held by a Pokémon, it restores its HP if it is hit by any supe [MICLEBERRY] Name = Micle Berry NamePlural = Micle Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_ROCK_100 Description = If held by a Pokémon, it raises the accuracy of a move just once in a pinch. @@ -4758,7 +1977,7 @@ Description = If held by a Pokémon, it raises the accuracy of a move just once [CUSTAPBERRY] Name = Custap Berry NamePlural = Custap Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_GHOST_100 Description = If held by a Pokémon, it gets to move first just once in a pinch. @@ -4766,7 +1985,7 @@ Description = If held by a Pokémon, it gets to move first just once in a pinch. [JABOCABERRY] Name = Jaboca Berry NamePlural = Jaboca Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_DRAGON_100 Description = If held by a Pokémon and a physical attack lands, the attacker also takes damage. @@ -4774,7 +1993,7 @@ Description = If held by a Pokémon and a physical attack lands, the attacker al [ROWAPBERRY] Name = Rowap Berry NamePlural = Rowap Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_DARK_100 Description = If held by a Pokémon and a special attack lands, the attacker also takes damage. @@ -4782,7 +2001,7 @@ Description = If held by a Pokémon and a special attack lands, the attacker als [KEEBERRY] Name = Kee Berry NamePlural = Kee Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_FAIRY_100 Description = If held by a Pokémon, this Berry will increase the holder's Defense if it's hit with a physical move. @@ -4790,135 +2009,1862 @@ Description = If held by a Pokémon, this Berry will increase the holder's Defen [MARANGABERRY] Name = Maranga Berry NamePlural = Maranga Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_DARK_100 Description = If held by a Pokémon, this Berry will increase the holder's Sp. Def if it's hit with a special move. #------------------------------- -[GRASSMAIL] -Name = Grass Mail -NamePlural = Grass Mail -PortionName = piece of Grass Mail -PortionNamePlural = pieces of Grass Mail -Pocket = 6 -Price = 50 -Flags = IconMail -Description = Stationery featuring a print of a refreshingly green field. Let a Pokémon hold it for delivery. +[AIRBALLOON] +Name = Air Balloon +NamePlural = Air Balloons +Pocket = HeldItems +Price = 4000 +BPPrice = 48 +Flags = Fling_10 +Description = An item to be held by a Pokémon. The holder will float in the air until hit. Once hit, this item will burst. #------------------------------- -[FLAMEMAIL] -Name = Flame Mail -NamePlural = Flame Mail -PortionName = piece of Flame Mail -PortionNamePlural = pieces of Flame Mail -Pocket = 6 -Price = 50 -Flags = IconMail -Description = Stationery featuring a print of flames in blazing red. Let a Pokémon hold it for delivery. +[BRIGHTPOWDER] +Name = Bright Powder +NamePlural = Bright Powders +PortionName = bag of Bright Powder +PortionNamePlural = bags of Bright Powder +Pocket = HeldItems +Price = 4000 +BPPrice = 48 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It casts a tricky glare that lowers the opponent's accuracy. #------------------------------- -[BUBBLEMAIL] -Name = Bubble Mail -NamePlural = Bubble Mail -PortionName = piece of Bubble Mail -PortionNamePlural = pieces of Bubble Mail -Pocket = 6 -Price = 50 -Flags = IconMail -Description = Stationery featuring a print of a blue world underwater. Let a Pokémon hold it for delivery. +[EVIOLITE] +Name = Eviolite +NamePlural = Eviolites +Pocket = HeldItems +Price = 4000 +BPPrice = 48 +Flags = Fling_40 +Description = A mysterious evolutionary lump. When held, it raises the Defense and Sp. Def if the holder can still evolve. #------------------------------- -[BLOOMMAIL] -Name = Bloom Mail -NamePlural = Bloom Mail -PortionName = piece of Bloom Mail -PortionNamePlural = pieces of Bloom Mail -Pocket = 6 -Price = 50 -Flags = IconMail -Description = Stationery featuring a print of pretty floral patterns. Let a Pokémon hold it for delivery. +[FLOATSTONE] +Name = Float Stone +NamePlural = Float Stones +Pocket = HeldItems +Price = 4000 +BPPrice = 48 +Flags = Fling_30 +Description = A very light stone. It reduces the weight of a Pokémon when held. #------------------------------- -[TUNNELMAIL] -Name = Tunnel Mail -NamePlural = Tunnel Mail -PortionName = piece of Tunnel Mail -PortionNamePlural = pieces of Tunnel Mail -Pocket = 6 -Price = 50 -Flags = IconMail -Description = Stationery featuring a print of a dimly lit coal mine. Let a Pokémon hold it for delivery. +[DESTINYKNOT] +Name = Destiny Knot +NamePlural = Destiny Knots +Pocket = HeldItems +Price = 4000 +BPPrice = 48 +Flags = Fling_10 +Description = A long, thin, bright-red string to be held by a Pokémon. If the holder becomes infatuated, so does the foe. #------------------------------- -[STEELMAIL] -Name = Steel Mail -NamePlural = Steel Mail -PortionName = piece of Steel Mail -PortionNamePlural = pieces of Steel Mail -Pocket = 6 -Price = 50 -Flags = IconMail -Description = Stationery featuring a print of cool mechanical designs. Let a Pokémon hold it for delivery. +[ROCKYHELMET] +Name = Rocky Helmet +NamePlural = Rocky Helmets +Pocket = HeldItems +Price = 4000 +BPPrice = 48 +Flags = Fling_60 +Description = If the holder of this item takes damage, the attacker will also be damaged upon contact. #------------------------------- -[HEARTMAIL] -Name = Heart Mail -NamePlural = Heart Mail -PortionName = piece of Heart Mail -PortionNamePlural = pieces of Heart Mail -Pocket = 6 -Price = 50 -Flags = IconMail -Description = Stationery featuring a print of giant heart patterns. Let a Pokémon hold it for delivery. +[ASSAULTVEST] +Name = Assault Vest +NamePlural = Assault Vests +Pocket = HeldItems +Price = 1000 +BPPrice = 48 +Flags = Fling_80 +Description = An item to be held by a Pokémon. This offensive vest raises Sp. Def but prevents the use of status moves. #------------------------------- -[SNOWMAIL] -Name = Snow Mail -NamePlural = Snow Mail -PortionName = piece of Snow Mail -PortionNamePlural = pieces of Snow Mail -Pocket = 6 -Price = 50 -Flags = IconMail -Description = Stationery featuring a print of a chilly, snow-covered world. Let a Pokémon hold it for delivery. +[SAFETYGOGGLES] +Name = Safety Goggles +NamePlural = Safety Goggles +PortionName = pair of Safety Goggles +PortionNamePlural = pairs of Safety Goggles +Pocket = HeldItems +Price = 4000 +BPPrice = 48 +Flags = Fling_80 +Description = An item to be held by a Pokémon. They protect the holder from weather-related damage and powder. #------------------------------- -[SPACEMAIL] -Name = Space Mail -NamePlural = Space Mail -PortionName = piece of Space Mail -PortionNamePlural = pieces of Space Mail -Pocket = 6 -Price = 50 -Flags = IconMail -Description = Stationery featuring a print depicting the huge expanse of space. Let a Pokémon hold it for delivery. +[EJECTBUTTON] +Name = Eject Button +NamePlural = Eject Buttons +Pocket = HeldItems +Price = 4000 +BPPrice = 32 +Flags = Fling_30 +Description = If the holder is hit by an attack, it will switch with another Pokémon in your party. #------------------------------- -[AIRMAIL] -Name = Air Mail -NamePlural = Air Mail -PortionName = piece of Air Mail -PortionNamePlural = pieces of Air Mail -Pocket = 6 -Price = 50 -Flags = IconMail -Description = Stationery featuring a print of colorful letter sets. Let a Pokémon hold it for delivery. +[REDCARD] +Name = Red Card +NamePlural = Red Cards +Pocket = HeldItems +Price = 4000 +BPPrice = 32 +Flags = Fling_10 +Description = A card with a mysterious power. When the holder is struck by a foe, the attacker is removed from battle. #------------------------------- -[MOSAICMAIL] -Name = Mosaic Mail -NamePlural = Mosaic Mail -PortionName = piece of Mosaic Mail -PortionNamePlural = pieces of Mosaic Mail -Pocket = 6 -Price = 50 -Flags = IconMail -Description = Stationery featuring a print of a vivid rainbow pattern. Let a Pokémon hold it for delivery. +[SHEDSHELL] +Name = Shed Shell +NamePlural = Shed Shells +Pocket = HeldItems +Price = 4000 +Flags = Fling_10 +Description = An item to be held by a Pokémon. This discarded carapace lets the holder switch out of battle without fail. #------------------------------- -[BRICKMAIL] -Name = Brick Mail -NamePlural = Brick Mail -PortionName = piece of Brick Mail -PortionNamePlural = pieces of Brick Mail -Pocket = 6 -Price = 50 -Flags = IconMail -Description = Stationery featuring a print of a tough-looking brick pattern. Let a Pokémon hold it for delivery. +[SMOKEBALL] +Name = Smoke Ball +NamePlural = Smoke Balls +Pocket = HeldItems +Price = 4000 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It enables the holder to flee from any wild Pokémon without fail. +#------------------------------- +[LUCKYEGG] +Name = Lucky Egg +NamePlural = Lucky Eggs +Pocket = HeldItems +Price = 10000 +BPPrice = 77 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It is an egg filled with happiness that earns extra Exp. Points in battle. +#------------------------------- +[EXPSHARE] +Name = Exp. Share +NamePlural = Exp. Shares +Pocket = HeldItems +Price = 3000 +Flags = Fling_30 +Description = An item to be held by a Pokémon. The holder gets a share of a battle's Exp. Points without battling. +#------------------------------- +[AMULETCOIN] +Name = Amulet Coin +NamePlural = Amulet Coins +Pocket = HeldItems +Price = 10000 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It doubles a battle's prize money if the holding Pokémon joins in. +#------------------------------- +[SOOTHEBELL] +Name = Soothe Bell +NamePlural = Soothe Bells +Pocket = HeldItems +Price = 4000 +BPPrice = 48 +Flags = Fling_10 +Description = An item to be held by a Pokémon. The comforting chime of this bell calms the holder, making it friendly. +#------------------------------- +[CLEANSETAG] +Name = Cleanse Tag +NamePlural = Cleanse Tags +Pocket = HeldItems +Price = 5000 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It helps keep wild Pokémon away if the holder is the first one in the party. +#------------------------------- +[CHOICEBAND] +Name = Choice Band +NamePlural = Choice Bands +Pocket = HeldItems +Price = 4000 +BPPrice = 48 +Flags = Fling_10 +Description = An item to be held by a Pokémon. This headband ups Attack, but allows the use of only one move. +#------------------------------- +[CHOICESPECS] +Name = Choice Specs +NamePlural = Choice Specs +PortionName = pair of Choice Specs +PortionNamePlural = pairs of Choice Specs +Pocket = HeldItems +Price = 4000 +BPPrice = 48 +Flags = Fling_10 +Description = An item to be held by a Pokémon. These curious glasses boost Sp. Atk but allows the use of only one move. +#------------------------------- +[CHOICESCARF] +Name = Choice Scarf +NamePlural = Choice Scarves +Pocket = HeldItems +Price = 4000 +BPPrice = 48 +Flags = Fling_10 +Description = An item to be held by a Pokémon. This scarf boosts Speed but allows the use of only one move. +#------------------------------- +[HEATROCK] +Name = Heat Rock +NamePlural = Heat Rocks +Pocket = HeldItems +Price = 4000 +BPPrice = 48 +Flags = Fling_60 +Description = A Pokémon held item that extends the duration of the move Sunny Day used by the holder. +#------------------------------- +[DAMPROCK] +Name = Damp Rock +NamePlural = Damp Rocks +Pocket = HeldItems +Price = 4000 +BPPrice = 48 +Flags = Fling_60 +Description = A Pokémon held item that extends the duration of the move Rain Dance used by the holder. +#------------------------------- +[SMOOTHROCK] +Name = Smooth Rock +NamePlural = Smooth Rocks +Pocket = HeldItems +Price = 4000 +BPPrice = 48 +Flags = Fling_10 +Description = A Pokémon held item that extends the duration of the move Sandstorm used by the holder. +#------------------------------- +[ICYROCK] +Name = Icy Rock +NamePlural = Icy Rocks +Pocket = HeldItems +Price = 4000 +BPPrice = 48 +Flags = Fling_40 +Description = A Pokémon held item that extends the duration of the move Hail used by the holder. +#------------------------------- +[LIGHTCLAY] +Name = Light Clay +NamePlural = Light Clays +PortionName = lump of Light Clay +PortionNamePlural = lumps of Light Clay +Pocket = HeldItems +Price = 4000 +BPPrice = 48 +Flags = Fling_30 +Description = An item to be held by a Pokémon. Protective moves like Light Screen and Reflect will be effective longer. +#------------------------------- +[GRIPCLAW] +Name = Grip Claw +NamePlural = Grip Claws +Pocket = HeldItems +Price = 4000 +BPPrice = 48 +Flags = Fling_90 +Description = A Pokémon held item that extends the duration of multiturn attacks like Bind and Wrap. +#------------------------------- +[BINDINGBAND] +Name = Binding Band +NamePlural = Binding Bands +Pocket = HeldItems +Price = 4000 +BPPrice = 48 +Flags = Fling_30 +Description = A band that increases the power of binding moves when held. +#------------------------------- +[BIGROOT] +Name = Big Root +NamePlural = Big Roots +Pocket = HeldItems +Price = 4000 +BPPrice = 32 +Flags = Fling_10 +Description = A Pokémon held item that boosts the power of HP-stealing moves to let the holder recover more HP. +#------------------------------- +[BLACKSLUDGE] +Name = Black Sludge +NamePlural = Black Sludges +PortionName = blob of Black Sludge +PortionNamePlural = blobs of Black Sludge +Pocket = HeldItems +Price = 4000 +BPPrice = 48 +Flags = Fling_30 +Description = A held item that gradually restores the HP of Poison-type Pokémon. It inflicts damage on all other types. +#------------------------------- +[LEFTOVERS] +Name = Leftovers +NamePlural = Leftovers +PortionName = serving of Leftovers +PortionNamePlural = servings of Leftovers +Pocket = HeldItems +Price = 4000 +BPPrice = 48 +Flags = Fling_10 +Description = An item to be held by a Pokémon. The holder's HP is gradually restored during battle. +#------------------------------- +[SHELLBELL] +Name = Shell Bell +NamePlural = Shell Bells +Pocket = HeldItems +Price = 4000 +BPPrice = 48 +Flags = Fling_30 +Description = An item to be held by a Pokémon. The holder's HP is restored a little every time it inflicts damage. +#------------------------------- +[MENTALHERB] +Name = Mental Herb +NamePlural = Mental Herbs +Pocket = HeldItems +Price = 4000 +BPPrice = 32 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It snaps the holder out of infatuation. It can be used only once. +#------------------------------- +[WHITEHERB] +Name = White Herb +NamePlural = White Herbs +Pocket = HeldItems +Price = 4000 +BPPrice = 32 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It restores any lowered stat in battle. It can be used only once. +#------------------------------- +[POWERHERB] +Name = Power Herb +NamePlural = Power Herbs +Pocket = HeldItems +Price = 4000 +BPPrice = 32 +Flags = Fling_10 +Description = A single-use item to be held by a Pokémon. It allows the immediate use of a move that charges up first. +#------------------------------- +[ABSORBBULB] +Name = Absorb Bulb +NamePlural = Absorb Bulbs +Pocket = HeldItems +Price = 4000 +BPPrice = 32 +Flags = Fling_30 +Description = A consumable bulb. If the holder is hit by a Water-type move, its Sp. Atk will rise. +#------------------------------- +[CELLBATTERY] +Name = Cell Battery +NamePlural = Cell Batteries +Pocket = HeldItems +Price = 4000 +BPPrice = 32 +Flags = Fling_30 +Description = A consumable battery. If the holder is hit by an Electric-type move, its Attack will rise. +#------------------------------- +[LUMINOUSMOSS] +Name = Luminous Moss +NamePlural = Luminous Moss +PortionName = clump of Luminous Moss +PortionNamePlural = clumps of Luminous Moss +Pocket = HeldItems +Price = 4000 +BPPrice = 32 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It boosts Sp. Def if hit by a Water-type attack. It can only be used once. +#------------------------------- +[SNOWBALL] +Name = Snowball +NamePlural = Snowballs +Pocket = HeldItems +Price = 4000 +BPPrice = 32 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It boosts Attack if hit by an Ice-type attack. It can only be used once. +#------------------------------- +[WEAKNESSPOLICY] +Name = Weakness Policy +NamePlural = Weakness Policies +Pocket = HeldItems +Price = 1000 +BPPrice = 32 +Flags = Fling_80 +Description = An item to be held by a Pokémon. The holder's Attack and Sp. Atk sharply increase if hit by a move it's weak to. +#------------------------------- +[LIFEORB] +Name = Life Orb +NamePlural = Life Orbs +Pocket = HeldItems +Price = 4000 +BPPrice = 48 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It boosts the power of moves, but at the cost of some HP on each hit. +#------------------------------- +[EXPERTBELT] +Name = Expert Belt +NamePlural = Expert Belts +Pocket = HeldItems +Price = 4000 +BPPrice = 48 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It is a well-worn belt that slightly boosts the power of supereffective moves. +#------------------------------- +[METRONOME] +Name = Metronome +NamePlural = Metronomes +Pocket = HeldItems +Price = 4000 +BPPrice = 48 +Flags = Fling_30 +Description = A Pokémon held item that boosts a move used consecutively. Its effect is reset if another move is used. +#------------------------------- +[MUSCLEBAND] +Name = Muscle Band +NamePlural = Muscle Bands +Pocket = HeldItems +Price = 4000 +BPPrice = 48 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It is a headband that slightly boosts the power of physical moves. +#------------------------------- +[WISEGLASSES] +Name = Wise Glasses +NamePlural = Wise Glasses +PortionName = pair of Wise Glasses +PortionNamePlural = pairs of Wise Glasses +Pocket = HeldItems +Price = 4000 +BPPrice = 48 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It is a thick pair of glasses that slightly boosts the power of special moves. +#------------------------------- +[RAZORCLAW] +Name = Razor Claw +NamePlural = Razor Claws +Pocket = HeldItems +Price = 5000 +BPPrice = 48 +Flags = Fling_80 +Description = An item to be held by a Pokémon. It is a sharply hooked claw that ups the holder's critical-hit ratio. +#------------------------------- +[SCOPELENS] +Name = Scope Lens +NamePlural = Scope Lenses +Pocket = HeldItems +Price = 4000 +BPPrice = 48 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It is a lens that boosts the holder's critical-hit ratio. +#------------------------------- +[WIDELENS] +Name = Wide Lens +NamePlural = Wide Lenses +Pocket = HeldItems +Price = 4000 +BPPrice = 48 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It is a magnifying lens that slightly boosts the accuracy of moves. +#------------------------------- +[ZOOMLENS] +Name = Zoom Lens +NamePlural = Zoom Lenses +Pocket = HeldItems +Price = 4000 +BPPrice = 48 +Flags = Fling_10 +Description = An item to be held by a Pokémon. If the holder moves after its target, its accuracy will be boosted. +#------------------------------- +[KINGSROCK] +Name = King's Rock +NamePlural = King's Rocks +Pocket = HeldItems +Price = 5000 +BPPrice = 48 +Flags = Fling_30 +Description = An item to be held by a Pokémon. When the holder inflicts damage, the target may flinch. +#------------------------------- +[RAZORFANG] +Name = Razor Fang +NamePlural = Razor Fangs +Pocket = HeldItems +Price = 5000 +BPPrice = 48 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It may make foes and allies flinch when the holder inflicts damage. +#------------------------------- +[LAGGINGTAIL] +Name = Lagging Tail +NamePlural = Lagging Tails +Pocket = HeldItems +Price = 4000 +BPPrice = 48 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It is tremendously heavy and makes the holder move slower than usual. +#------------------------------- +[QUICKCLAW] +Name = Quick Claw +NamePlural = Quick Claws +Pocket = HeldItems +Price = 4000 +BPPrice = 48 +Flags = Fling_80 +Description = An item to be held by a Pokémon. A light, sharp claw that lets the bearer move first occasionally. +#------------------------------- +[FOCUSBAND] +Name = Focus Band +NamePlural = Focus Bands +Pocket = HeldItems +Price = 4000 +BPPrice = 48 +Flags = Fling_10 +Description = An item to be held by a Pokémon. The holder may endure a potential KO attack, leaving it with just 1 HP. +#------------------------------- +[FOCUSSASH] +Name = Focus Sash +NamePlural = Focus Sashes +Pocket = HeldItems +Price = 4000 +BPPrice = 48 +Flags = Fling_10 +Description = An item to be held by a Pokémon. If it has full HP, the holder will endure one potential KO attack, leaving 1 HP. +#------------------------------- +[FLAMEORB] +Name = Flame Orb +NamePlural = Flame Orbs +Pocket = HeldItems +Price = 4000 +BPPrice = 16 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It is a bizarre orb that inflicts a burn on the holder in battle. +#------------------------------- +[TOXICORB] +Name = Toxic Orb +NamePlural = Toxic Orbs +Pocket = HeldItems +Price = 4000 +BPPrice = 16 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It is a bizarre orb that badly poisons the holder in battle. +#------------------------------- +[STICKYBARB] +Name = Sticky Barb +NamePlural = Sticky Barbs +Pocket = HeldItems +Price = 4000 +BPPrice = 16 +Flags = Fling_80 +Description = A held item that damages the holder on every turn. It may latch on to Pokémon that touch the holder. +#------------------------------- +[IRONBALL] +Name = Iron Ball +NamePlural = Iron Balls +Pocket = HeldItems +Price = 4000 +BPPrice = 48 +Flags = Fling_130 +Description = A Pokémon held item that cuts Speed. It makes Flying-type and levitating holders susceptible to Ground moves. +#------------------------------- +[RINGTARGET] +Name = Ring Target +NamePlural = Ring Targets +Pocket = HeldItems +Price = 4000 +BPPrice = 32 +Flags = Fling_10 +Description = Moves that would otherwise have no effect will land on the Pokémon that holds it. +#------------------------------- +[MACHOBRACE] +Name = Macho Brace +NamePlural = Macho Braces +Pocket = HeldItems +Price = 3000 +BPPrice = 16 +Flags = Fling_60 +Description = An item to be held by a Pokémon. It is a stiff, heavy brace that promotes strong growth but lowers Speed. +#------------------------------- +[POWERWEIGHT] +Name = Power Weight +NamePlural = Power Weights +Pocket = HeldItems +Price = 3000 +BPPrice = 16 +Flags = Fling_70 +Description = A Pokémon held item that promotes HP gain on leveling, but reduces the Speed stat. +#------------------------------- +[POWERBRACER] +Name = Power Bracer +NamePlural = Power Bracers +Pocket = HeldItems +Price = 3000 +BPPrice = 16 +Flags = Fling_70 +Description = A Pokémon held item that promotes Attack gain on leveling, but reduces the Speed stat. +#------------------------------- +[POWERBELT] +Name = Power Belt +NamePlural = Power Belts +Pocket = HeldItems +Price = 3000 +BPPrice = 16 +Flags = Fling_70 +Description = A Pokémon held item that promotes Defense gain on leveling, but reduces the Speed stat. +#------------------------------- +[POWERLENS] +Name = Power Lens +NamePlural = Power Lenses +Pocket = HeldItems +Price = 3000 +BPPrice = 16 +Flags = Fling_70 +Description = A Pokémon held item that promotes Sp. Atk gain on leveling, but reduces the Speed stat. +#------------------------------- +[POWERBAND] +Name = Power Band +NamePlural = Power Bands +Pocket = HeldItems +Price = 3000 +BPPrice = 16 +Flags = Fling_70 +Description = A Pokémon held item that promotes Sp. Def gain on leveling, but reduces the Speed stat. +#------------------------------- +[POWERANKLET] +Name = Power Anklet +NamePlural = Power Anklets +Pocket = HeldItems +Price = 3000 +BPPrice = 16 +Flags = Fling_70 +Description = A Pokémon held item that promotes Speed gain on leveling, but reduces the Speed stat. +#------------------------------- +[LAXINCENSE] +Name = Lax Incense +NamePlural = Lax Incenses +PortionName = jar of Lax Incense +PortionNamePlural = jars of Lax Incense +Pocket = HeldItems +Price = 5000 +Flags = Fling_10 +Description = An item to be held by a Pokémon. The tricky aroma of this incense may make attacks miss the holder. +#------------------------------- +[FULLINCENSE] +Name = Full Incense +NamePlural = Full Incenses +PortionName = jar of Full Incense +PortionNamePlural = jars of Full Incense +Pocket = HeldItems +Price = 5000 +Flags = Fling_10 +Description = An item to be held by a Pokémon. This exotic-smelling incense makes the holder bloated and slow moving. +#------------------------------- +[LUCKINCENSE] +Name = Luck Incense +NamePlural = Luck Incenses +PortionName = jar of Luck Incense +PortionNamePlural = jars of Luck Incense +Pocket = HeldItems +Price = 11000 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It doubles a battle's prize money if the holding Pokémon joins in. +#------------------------------- +[PUREINCENSE] +Name = Pure Incense +NamePlural = Pure Incenses +PortionName = jar of Pure Incense +PortionNamePlural = jars of Pure Incense +Pocket = HeldItems +Price = 6000 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It helps keep wild Pokémon away if the holder is the first one in the party. +#------------------------------- +[SEAINCENSE] +Name = Sea Incense +NamePlural = Sea Incenses +PortionName = jar of Sea Incense +PortionNamePlural = jars of Sea Incense +Pocket = HeldItems +Price = 2000 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It has a curious aroma that boosts the power of Water-type moves. +#------------------------------- +[WAVEINCENSE] +Name = Wave Incense +NamePlural = Wave Incenses +PortionName = jar of Wave Incense +PortionNamePlural = jars of Wave Incense +Pocket = HeldItems +Price = 2000 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It has a curious aroma that boosts the power of Water-type moves. +#------------------------------- +[ROSEINCENSE] +Name = Rose Incense +NamePlural = Rose Incenses +PortionName = jar of Rose Incense +PortionNamePlural = jars of Rose Incense +Pocket = HeldItems +Price = 2000 +Flags = Fling_10 +Description = An item to be held by a Pokémon. This exotic-smelling incense boosts the power of Grass-type moves. +#------------------------------- +[ODDINCENSE] +Name = Odd Incense +NamePlural = Odd Incenses +PortionName = jar of Odd Incense +PortionNamePlural = jars of Odd Incense +Pocket = HeldItems +Price = 2000 +Flags = Fling_10 +Description = An item to be held by a Pokémon. This exotic-smelling incense boosts the power of Psychic-type moves. +#------------------------------- +[ROCKINCENSE] +Name = Rock Incense +NamePlural = Rock Incenses +PortionName = jar of Rock Incense +PortionNamePlural = jars of Rock Incense +Pocket = HeldItems +Price = 2000 +Flags = Fling_10 +Description = An item to be held by a Pokémon. This exotic-smelling incense boosts the power of Rock-type moves. +#------------------------------- +[CHARCOAL] +Name = Charcoal +NamePlural = Charcoals +PortionName = piece of Charcoal +PortionNamePlural = pieces of Charcoal +Pocket = HeldItems +Price = 1000 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It is a combustible fuel that boosts the power of Fire-type moves. +#------------------------------- +[MYSTICWATER] +Name = Mystic Water +NamePlural = Mystic Waters +Pocket = HeldItems +Price = 1000 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It is a teardrop-shaped gem that ups the power of Water-type moves. +#------------------------------- +[MAGNET] +Name = Magnet +NamePlural = Magnets +Pocket = HeldItems +Price = 1000 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It is a powerful magnet that boosts the power of Electric-type moves. +#------------------------------- +[MIRACLESEED] +Name = Miracle Seed +NamePlural = Miracle Seeds +Pocket = HeldItems +Price = 1000 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It is a seed imbued with life that ups the power of Grass-type moves. +#------------------------------- +[NEVERMELTICE] +Name = Never-Melt Ice +NamePlural = Never-Melt Ices +PortionName = piece of Never-Melt Ice +PortionNamePlural = pieces of Never-Melt Ice +Pocket = HeldItems +Price = 1000 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It is a piece of ice that repels heat and boosts Ice-type moves. +#------------------------------- +[BLACKBELT] +Name = Black Belt +NamePlural = Black Belts +Pocket = HeldItems +Price = 1000 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It is a belt that boosts determination and Fighting-type moves. +#------------------------------- +[POISONBARB] +Name = Poison Barb +NamePlural = Poison Barbs +Pocket = HeldItems +Price = 1000 +Flags = Fling_70 +Description = An item to be held by a Pokémon. It is a small, poisonous barb that ups the power of Poison-type moves. +#------------------------------- +[SOFTSAND] +Name = Soft Sand +NamePlural = Soft Sand +PortionName = bag of Soft Sand +PortionNamePlural = bags of Soft Sand +Pocket = HeldItems +Price = 1000 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It is a loose, silky sand that boosts the power of Ground-type moves. +#------------------------------- +[SHARPBEAK] +Name = Sharp Beak +NamePlural = Sharp Beaks +Pocket = HeldItems +Price = 1000 +Flags = Fling_50 +Description = An item to be held by a Pokémon. It is a long, sharp beak that boosts the power of Flying-type moves. +#------------------------------- +[TWISTEDSPOON] +Name = Twisted Spoon +NamePlural = Twisted Spoons +Pocket = HeldItems +Price = 1000 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It is a spoon imbued with telekinetic power that boosts Psychic-type moves. +#------------------------------- +[SILVERPOWDER] +Name = Silver Powder +NamePlural = Silver Powders +PortionName = pile of Silver Powder +PortionNamePlural = piles of Silver Powder +Pocket = HeldItems +Price = 1000 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It is a shiny, silver powder that ups the power of Bug-type moves. +#------------------------------- +[HARDSTONE] +Name = Hard Stone +NamePlural = Hard Stones +Pocket = HeldItems +Price = 1000 +Flags = Fling_100 +Description = An item to be held by a Pokémon. It is an unbreakable stone that ups the power of Rock-type moves. +#------------------------------- +[SPELLTAG] +Name = Spell Tag +NamePlural = Spell Tags +Pocket = HeldItems +Price = 1000 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It is a sinister, eerie tag that boosts the power of Ghost-type moves. +#------------------------------- +[DRAGONFANG] +Name = Dragon Fang +NamePlural = Dragon Fangs +Pocket = HeldItems +Price = 1000 +Flags = Fling_70 +Description = An item to be held by a Pokémon. It is a hard and sharp fang that ups the power of Dragon-type moves. +#------------------------------- +[BLACKGLASSES] +Name = Black Glasses +NamePlural = Black Glasses +PortionName = pair of Black Glasses +PortionNamePlural = pairs of Black Glasses +Pocket = HeldItems +Price = 1000 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It is a shady-looking pair of glasses that boosts Dark-type moves. +#------------------------------- +[METALCOAT] +Name = Metal Coat +NamePlural = Metal Coats +Pocket = HeldItems +Price = 2000 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It is a special metallic film that ups the power of Steel-type moves. +#------------------------------- +[SILKSCARF] +Name = Silk Scarf +NamePlural = Silk Scarves +Pocket = HeldItems +Price = 1000 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It is a sumptuous scarf that boosts the power of Normal-type moves. +#------------------------------- +[FLAMEPLATE] +Name = Flame Plate +NamePlural = Flame Plates +Pocket = HeldItems +Price = 1000 +Flags = Fling_90 +Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Fire-type moves. +#------------------------------- +[SPLASHPLATE] +Name = Splash Plate +NamePlural = Splash Plates +Pocket = HeldItems +Price = 1000 +Flags = Fling_90 +Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Water-type moves. +#------------------------------- +[ZAPPLATE] +Name = Zap Plate +NamePlural = Zap Plates +Pocket = HeldItems +Price = 1000 +Flags = Fling_90 +Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Electric-type moves. +#------------------------------- +[MEADOWPLATE] +Name = Meadow Plate +NamePlural = Meadow Plates +Pocket = HeldItems +Price = 1000 +Flags = Fling_90 +Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Grass-type moves. +#------------------------------- +[ICICLEPLATE] +Name = Icicle Plate +NamePlural = Icicle Plates +Pocket = HeldItems +Price = 1000 +Flags = Fling_90 +Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Ice-type moves. +#------------------------------- +[FISTPLATE] +Name = Fist Plate +NamePlural = Fist Plates +Pocket = HeldItems +Price = 1000 +Flags = Fling_90 +Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Fighting-type moves. +#------------------------------- +[TOXICPLATE] +Name = Toxic Plate +NamePlural = Toxic Plates +Pocket = HeldItems +Price = 1000 +Flags = Fling_90 +Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Poison-type moves. +#------------------------------- +[EARTHPLATE] +Name = Earth Plate +NamePlural = Earth Plates +Pocket = HeldItems +Price = 1000 +Flags = Fling_90 +Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Ground-type moves. +#------------------------------- +[SKYPLATE] +Name = Sky Plate +NamePlural = Sky Plates +Pocket = HeldItems +Price = 1000 +Flags = Fling_90 +Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Flying-type moves. +#------------------------------- +[MINDPLATE] +Name = Mind Plate +NamePlural = Mind Plates +Pocket = HeldItems +Price = 1000 +Flags = Fling_90 +Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Psychic-type moves. +#------------------------------- +[INSECTPLATE] +Name = Insect Plate +NamePlural = Insect Plates +Pocket = HeldItems +Price = 1000 +Flags = Fling_90 +Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Bug-type moves. +#------------------------------- +[STONEPLATE] +Name = Stone Plate +NamePlural = Stone Plates +Pocket = HeldItems +Price = 1000 +Flags = Fling_90 +Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Rock-type moves. +#------------------------------- +[SPOOKYPLATE] +Name = Spooky Plate +NamePlural = Spooky Plates +Pocket = HeldItems +Price = 1000 +Flags = Fling_90 +Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Ghost-type moves. +#------------------------------- +[DRACOPLATE] +Name = Draco Plate +NamePlural = Draco Plates +Pocket = HeldItems +Price = 1000 +Flags = Fling_90 +Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Dragon-type moves. +#------------------------------- +[DREADPLATE] +Name = Dread Plate +NamePlural = Dread Plates +Pocket = HeldItems +Price = 1000 +Flags = Fling_90 +Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Dark-type moves. +#------------------------------- +[IRONPLATE] +Name = Iron Plate +NamePlural = Iron Plates +Pocket = HeldItems +Price = 1000 +Flags = Fling_90 +Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Steel-type moves. +#------------------------------- +[PIXIEPLATE] +Name = Pixie Plate +NamePlural = Pixie Plates +Pocket = HeldItems +Price = 1000 +Flags = Fling_90 +Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Fairy-type moves. +#------------------------------- +[FIREGEM] +Name = Fire Gem +NamePlural = Fire Gems +Pocket = HeldItems +Price = 200 +Flags = TypeGem +Description = A gem with an essence of fire. When held, it strengthens the power of a Fire-type move only once. +#------------------------------- +[WATERGEM] +Name = Water Gem +NamePlural = Water Gems +Pocket = HeldItems +Price = 200 +Flags = TypeGem +Description = A gem with an essence of water. When held, it strengthens the power of a Water-type move only once. +#------------------------------- +[ELECTRICGEM] +Name = Electric Gem +NamePlural = Electric Gems +Pocket = HeldItems +Price = 200 +Flags = TypeGem +Description = A gem with an essence of electricity. When held, it strengthens the power of an Electric-type move only once. +#------------------------------- +[GRASSGEM] +Name = Grass Gem +NamePlural = Grass Gems +Pocket = HeldItems +Price = 200 +Flags = TypeGem +Description = A gem with an essence of nature. When held, it strengthens the power of a Grass-type move only once. +#------------------------------- +[ICEGEM] +Name = Ice Gem +NamePlural = Ice Gems +Pocket = HeldItems +Price = 200 +Flags = TypeGem +Description = A gem with an essence of ice. When held, it strengthens the power of an Ice-type move only once. +#------------------------------- +[FIGHTINGGEM] +Name = Fighting Gem +NamePlural = Fighting Gems +Pocket = HeldItems +Price = 200 +Flags = TypeGem +Description = A gem with an essence of combat. When held, it strengthens the power of a Fighting-type move only once. +#------------------------------- +[POISONGEM] +Name = Poison Gem +NamePlural = Poison Gems +Pocket = HeldItems +Price = 200 +Flags = TypeGem +Description = A gem with an essence of poison. When held, it strengthens the power of a Poison-type move only once. +#------------------------------- +[GROUNDGEM] +Name = Ground Gem +NamePlural = Ground Gems +Pocket = HeldItems +Price = 200 +Flags = TypeGem +Description = A gem with an essence of land. When held, it strengthens the power of a Ground-type move only once. +#------------------------------- +[FLYINGGEM] +Name = Flying Gem +NamePlural = Flying Gems +Pocket = HeldItems +Price = 200 +Flags = TypeGem +Description = A gem with an essence of air. When held, it strengthens the power of a Flying-type move only once. +#------------------------------- +[PSYCHICGEM] +Name = Psychic Gem +NamePlural = Psychic Gems +Pocket = HeldItems +Price = 200 +Flags = TypeGem +Description = A gem with an essence of the mind. When held, it strengthens the power of a Psychic-type move only once. +#------------------------------- +[BUGGEM] +Name = Bug Gem +NamePlural = Bug Gems +Pocket = HeldItems +Price = 200 +Flags = TypeGem +Description = A gem with an insect-like essence. When held, it strengthens the power of a Bug-type move only once. +#------------------------------- +[ROCKGEM] +Name = Rock Gem +NamePlural = Rock Gems +Pocket = HeldItems +Price = 200 +Flags = TypeGem +Description = A gem with an essence of rock. When held, it strengthens the power of a Rock-type move only once. +#------------------------------- +[GHOSTGEM] +Name = Ghost Gem +NamePlural = Ghost Gems +Pocket = HeldItems +Price = 200 +Flags = TypeGem +Description = A gem with a spectral essence. When held, it strengthens the power of a Ghost-type move only once. +#------------------------------- +[DRAGONGEM] +Name = Dragon Gem +NamePlural = Dragon Gems +Pocket = HeldItems +Price = 200 +Flags = TypeGem +Description = A gem with a draconic essence. When held, it strengthens the power of a Dragon-type move only once. +#------------------------------- +[DARKGEM] +Name = Dark Gem +NamePlural = Dark Gems +Pocket = HeldItems +Price = 200 +Flags = TypeGem +Description = A gem with an essence of darkness. When held, it strengthens the power of a Dark-type move only once. +#------------------------------- +[STEELGEM] +Name = Steel Gem +NamePlural = Steel Gems +Pocket = HeldItems +Price = 200 +Flags = TypeGem +Description = A gem with an essence of steel. When held, it strengthens the power of a Steel-type move only once. +#------------------------------- +[FAIRYGEM] +Name = Fairy Gem +NamePlural = Fairy Gems +Pocket = HeldItems +Price = 200 +Flags = TypeGem +Description = A gem with an essence of the fey. When held, it strengthens the power of a Fairy-type move only once. +#------------------------------- +[NORMALGEM] +Name = Normal Gem +NamePlural = Normal Gems +Pocket = HeldItems +Price = 200 +Flags = TypeGem +Description = A gem with an ordinary essence. When held, it strengthens the power of a Normal-type move only once. +#------------------------------- +[LIGHTBALL] +Name = Light Ball +NamePlural = Light Balls +Pocket = HeldItems +Price = 1000 +Flags = Fling_30 +Description = An item to be held by Pikachu. It is a puzzling orb that raises the Attack and Sp. Atk stat. +#------------------------------- +[LUCKYPUNCH] +Name = Lucky Punch +NamePlural = Lucky Punches +Pocket = HeldItems +Price = 1000 +BPPrice = 7 +Flags = Fling_40 +Description = An item to be held by Chansey. It is a pair of gloves that boosts Chansey's critical-hit ratio. +#------------------------------- +[METALPOWDER] +Name = Metal Powder +NamePlural = Metal Powders +PortionName = bag of Metal Powder +PortionNamePlural = bags of Metal Powder +Pocket = HeldItems +Price = 1000 +Flags = Fling_10 +Description = An item to be held by Ditto. Extremely fine yet hard, this odd powder boosts the Defense stat. +#------------------------------- +[QUICKPOWDER] +Name = Quick Powder +NamePlural = Quick Powders +PortionName = bag of Quick Powder +PortionNamePlural = bags of Quick Powder +Pocket = HeldItems +Price = 1000 +Flags = Fling_10 +Description = An item to be held by Ditto. Extremely fine yet hard, this odd powder boosts the Speed stat. +#------------------------------- +[THICKCLUB] +Name = Thick Club +NamePlural = Thick Clubs +Pocket = HeldItems +Price = 1000 +Flags = Fling_90 +Description = An item to be held by Cubone or Marowak. It is a hard bone of some sort that boosts the Attack stat. +#------------------------------- +[STICK] +Name = Stick +NamePlural = Sticks +Pocket = HeldItems +Price = 1000 +Flags = Fling_60 +Description = An item to be held by Farfetch'd. It is a very long and stiff stalk of leek that boosts the critical-hit ratio. +#------------------------------- +[SOULDEW] +Name = Soul Dew +NamePlural = Soul Dews +Pocket = HeldItems +Price = 0 +Flags = Fling_30 +Description = A wondrous orb to be held by either Latios or Latias. It raises the power of Psychic- and Dragon-type moves. +#------------------------------- +[DEEPSEATOOTH] +Name = Deep Sea Tooth +NamePlural = Deep Sea Teeth +Pocket = HeldItems +Price = 2000 +BPPrice = 32 +Flags = Fling_90 +Description = An item to be held by Clamperl. A fang that gleams a sharp silver, it raises the Sp. Atk stat. +#------------------------------- +[DEEPSEASCALE] +Name = Deep Sea Scale +NamePlural = Deep Sea Scales +Pocket = HeldItems +Price = 2000 +BPPrice = 32 +Flags = Fling_30 +Description = An item to be held by Clamperl. A scale that shines a faint pink, it raises the Sp. Def stat. +#------------------------------- +[ADAMANTORB] +Name = Adamant Orb +NamePlural = Adamant Orbs +Pocket = HeldItems +Price = 10000 +Flags = Fling_60 +Description = A brightly gleaming orb to be held by Dialga. It boosts the power of Dragon- and Steel-type moves. +#------------------------------- +[LUSTROUSORB] +Name = Lustrous Orb +NamePlural = Lustrous Orbs +Pocket = HeldItems +Price = 10000 +Flags = Fling_60 +Description = A beautifully glowing orb to be held by Palkia. It boosts the power of Dragon- and Water-type moves. +#------------------------------- +[GRISEOUSORB] +Name = Griseous Orb +NamePlural = Griseous Orbs +Pocket = HeldItems +Price = 10000 +Flags = Fling_60 +Description = A glowing orb to be held by Giratina. It boosts the power of Dragon- and Ghost-type moves. +#------------------------------- +[DOUSEDRIVE] +Name = Douse Drive +NamePlural = Douse Drives +Pocket = HeldItems +Price = 1000 +Flags = Fling_70 +Description = A cassette to be held by Genesect. It changes Techno Blast to a Water-type move. +#------------------------------- +[SHOCKDRIVE] +Name = Shock Drive +NamePlural = Shock Drives +Pocket = HeldItems +Price = 1000 +Flags = Fling_70 +Description = A cassette to be held by Genesect. It changes Techno Blast to an Electric-type move. +#------------------------------- +[BURNDRIVE] +Name = Burn Drive +NamePlural = Burn Drives +Pocket = HeldItems +Price = 1000 +Flags = Fling_70 +Description = A cassette to be held by Genesect. It changes Techno Blast to a Fire-type move. +#------------------------------- +[CHILLDRIVE] +Name = Chill Drive +NamePlural = Chill Drives +Pocket = HeldItems +Price = 1000 +Flags = Fling_70 +Description = A cassette to be held by Genesect. It changes Techno Blast to an Ice-type move. +#------------------------------- +[EVERSTONE] +Name = Everstone +NamePlural = Everstones +Pocket = HeldItems +Price = 3000 +BPPrice = 16 +Flags = Fling_30 +Description = An item to be held by a Pokémon. The Pokémon holding this peculiar stone is prevented from evolving. +#------------------------------- +[DRAGONSCALE] +Name = Dragon Scale +NamePlural = Dragon Scales +Pocket = HeldItems +Price = 2000 +BPPrice = 32 +Flags = Fling_30 +Description = A thick and tough scale. Dragon-type Pokémon may be holding this item when caught. +#------------------------------- +[UPGRADE] +Name = Up-Grade +NamePlural = Up-Grades +Pocket = HeldItems +Price = 2000 +BPPrice = 32 +Flags = Fling_30 +Description = A transparent device filled with all sorts of data. It was produced by Silph Co. +#------------------------------- +[DUBIOUSDISC] +Name = Dubious Disc +NamePlural = Dubious Discs +Pocket = HeldItems +Price = 2000 +BPPrice = 32 +Flags = Fling_50 +Description = A transparent device overflowing with dubious data. Its producer is unknown. +#------------------------------- +[PROTECTOR] +Name = Protector +NamePlural = Protectors +Pocket = HeldItems +Price = 2000 +BPPrice = 32 +Flags = Fling_80 +Description = A protective item of some sort. It is extremely stiff and heavy. It is loved by a certain Pokémon. +#------------------------------- +[ELECTIRIZER] +Name = Electirizer +NamePlural = Electirizers +Pocket = HeldItems +Price = 2000 +BPPrice = 32 +Flags = Fling_80 +Description = A box packed with a tremendous amount of electric energy. It is loved by a certain Pokémon. +#------------------------------- +[MAGMARIZER] +Name = Magmarizer +NamePlural = Magmarizers +Pocket = HeldItems +Price = 2000 +BPPrice = 32 +Flags = Fling_80 +Description = A box packed with a tremendous amount of magma energy. It is loved by a certain Pokémon. +#------------------------------- +[REAPERCLOTH] +Name = Reaper Cloth +NamePlural = Reaper Cloths +PortionName = scrap of Reaper Cloth +PortionNamePlural = scraps of Reaper Cloth +Pocket = HeldItems +Price = 2000 +BPPrice = 32 +Flags = Fling_10 +Description = A cloth imbued with horrifyingly strong spiritual energy. It is loved by a certain Pokémon. +#------------------------------- +[PRISMSCALE] +Name = Prism Scale +NamePlural = Prism Scales +Pocket = HeldItems +Price = 2000 +BPPrice = 32 +Flags = Fling_30 +Description = A mysterious scale that evolves certain Pokémon. It shines in rainbow colors. +#------------------------------- +[OVALSTONE] +Name = Oval Stone +NamePlural = Oval Stones +Pocket = HeldItems +Price = 2000 +BPPrice = 32 +Flags = Fling_80 +Description = A peculiar stone that makes certain species of Pokémon evolve. It is shaped like an egg. +#------------------------------- +[WHIPPEDDREAM] +Name = Whipped Dream +NamePlural = Whipped Dreams +PortionName = dollop of Whipped Dream +PortionNamePlural = dollops of Whipped Dream +Pocket = HeldItems +Price = 2000 +BPPrice = 32 +Flags = Fling_80 +Description = A soft and sweet treat made of fluffy, puffy and whirled cream. It's loved by a certain Pokémon. +#------------------------------- +[SACHET] +Name = Sachet +NamePlural = Sachets +Pocket = HeldItems +Price = 2000 +BPPrice = 32 +Flags = Fling_80 +Description = A sachet filled with slightly overwhelming fragrant perfumes. Yet it's loved by a certain Pokémon. +#------------------------------- +[REDSCARF] +Name = Red Scarf +NamePlural = Red Scarves +Pocket = HeldItems +Price = 100 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It boosts the Cool aspect of the holder in a Contest. +#------------------------------- +[BLUESCARF] +Name = Blue Scarf +NamePlural = Blue Scarves +Pocket = HeldItems +Price = 100 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It boosts the Beauty aspect of the holder in a Contest. +#------------------------------- +[PINKSCARF] +Name = Pink Scarf +NamePlural = Pink Scarves +Pocket = HeldItems +Price = 100 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It boosts the Cute aspect of the holder in a Contest. +#------------------------------- +[GREENSCARF] +Name = Green Scarf +NamePlural = Green Scarves +Pocket = HeldItems +Price = 100 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It boosts the Smart aspect of the holder in a Contest. +#------------------------------- +[YELLOWSCARF] +Name = Yellow Scarf +NamePlural = Yellow Scarves +Pocket = HeldItems +Price = 100 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It boosts the Tough aspect of the holder in a Contest. +#------------------------------- +[VENUSAURITE] +Name = Venusaurite +NamePlural = Venusaurites +Pocket = HeldItems +Price = 0 +BPPrice = 64 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Venusaur hold it, and it will be able to Mega Evolve. +#------------------------------- +[CHARIZARDITEX] +Name = Charizardite X +NamePlural = Charizardite Xs +Pocket = HeldItems +Price = 0 +BPPrice = 64 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Charizard hold it, and it will be able to Mega Evolve. +#------------------------------- +[CHARIZARDITEY] +Name = Charizardite Y +NamePlural = Charizardite Ys +Pocket = HeldItems +Price = 0 +BPPrice = 64 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Charizard hold it, and it will be able to Mega Evolve. +#------------------------------- +[BLASTOISINITE] +Name = Blastoisinite +NamePlural = Blastoisinites +Pocket = HeldItems +Price = 0 +BPPrice = 64 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Blastoise hold it, and it will be able to Mega Evolve. +#------------------------------- +[BEEDRILLITE] +Name = Beedrillite +NamePlural = Beedrillites +Pocket = HeldItems +Price = 0 +BPPrice = 64 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Beedrill hold it, and it will be able to Mega Evolve. +#------------------------------- +[PIDGEOTITE] +Name = Pidgeotite +NamePlural = Pidgeotites +Pocket = HeldItems +Price = 0 +BPPrice = 64 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Pidgeot hold it, and it will be able to Mega Evolve. +#------------------------------- +[ALAKAZITE] +Name = Alakazite +NamePlural = Alakazites +Pocket = HeldItems +Price = 0 +BPPrice = 64 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Alakazam hold it, and it will be able to Mega Evolve. +#------------------------------- +[SLOWBRONITE] +Name = Slowbronite +NamePlural = Slowbronites +Pocket = HeldItems +Price = 0 +BPPrice = 64 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Slowbro hold it, and it will be able to Mega Evolve. +#------------------------------- +[GENGARITE] +Name = Gengarite +NamePlural = Gengarites +Pocket = HeldItems +Price = 0 +BPPrice = 64 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Gengar hold it, and it will be able to Mega Evolve. +#------------------------------- +[KANGASKHANITE] +Name = Kangaskhanite +NamePlural = Kangaskhanites +Pocket = HeldItems +Price = 0 +BPPrice = 64 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Kangaskhan hold it, and it will be able to Mega Evolve. +#------------------------------- +[PINSIRITE] +Name = Pinsirite +NamePlural = Pinsirites +Pocket = HeldItems +Price = 0 +BPPrice = 64 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Pinsir hold it, and it will be able to Mega Evolve. +#------------------------------- +[GYARADOSITE] +Name = Gyaradosite +NamePlural = Gyaradosites +Pocket = HeldItems +Price = 0 +BPPrice = 64 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Gyarados hold it, and it will be able to Mega Evolve. +#------------------------------- +[AERODACTYLITE] +Name = Aerodactylite +NamePlural = Aerodactylites +Pocket = HeldItems +Price = 0 +BPPrice = 64 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Aerodactyl hold it, and it will be able to Mega Evolve. +#------------------------------- +[MEWTWONITEX] +Name = Mewtwonite X +NamePlural = Mewtwonite Xs +Pocket = HeldItems +Price = 0 +BPPrice = 64 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Mewtwo hold it, and it will be able to Mega Evolve. +#------------------------------- +[MEWTWONITEY] +Name = Mewtwonite Y +NamePlural = Mewtwonite Ys +Pocket = HeldItems +Price = 0 +BPPrice = 64 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Mewtwo hold it, and it will be able to Mega Evolve. +#------------------------------- +[AMPHAROSITE] +Name = Ampharosite +NamePlural = Ampharosites +Pocket = HeldItems +Price = 0 +BPPrice = 64 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Ampharos hold it, and it will be able to Mega Evolve. +#------------------------------- +[STEELIXITE] +Name = Steelixite +NamePlural = Steelixites +Pocket = HeldItems +Price = 0 +BPPrice = 64 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Steelix hold it, and it will be able to Mega Evolve. +#------------------------------- +[SCIZORITE] +Name = Scizorite +NamePlural = Scizorites +Pocket = HeldItems +Price = 0 +BPPrice = 64 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Scizor hold it, and it will be able to Mega Evolve. +#------------------------------- +[HERACRONITE] +Name = Heracronite +NamePlural = Heracronites +Pocket = HeldItems +Price = 0 +BPPrice = 64 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Heracross hold it, and it will be able to Mega Evolve. +#------------------------------- +[HOUNDOOMINITE] +Name = Houndoominite +NamePlural = Houndoominites +Pocket = HeldItems +Price = 0 +BPPrice = 64 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Houndoom hold it, and it will be able to Mega Evolve. +#------------------------------- +[TYRANITARITE] +Name = Tyranitarite +NamePlural = Tyranitarites +Pocket = HeldItems +Price = 0 +BPPrice = 64 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Tyranitar hold it, and it will be able to Mega Evolve. +#------------------------------- +[SCEPTILITE] +Name = Sceptilite +NamePlural = Sceptilites +Pocket = HeldItems +Price = 0 +BPPrice = 64 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Sceptile hold it, and it will be able to Mega Evolve. +#------------------------------- +[BLAZIKENITE] +Name = Blazikenite +NamePlural = Blazikenites +Pocket = HeldItems +Price = 0 +BPPrice = 64 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Blaziken hold it, and it will be able to Mega Evolve. +#------------------------------- +[SWAMPERTITE] +Name = Swampertite +NamePlural = Swampertites +Pocket = HeldItems +Price = 0 +BPPrice = 64 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Swampert hold it, and it will be able to Mega Evolve. +#------------------------------- +[GARDEVOIRITE] +Name = Gardevoirite +NamePlural = Gardevoirites +Pocket = HeldItems +Price = 0 +BPPrice = 64 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Gardevoir hold it, and it will be able to Mega Evolve. +#------------------------------- +[SABLENITE] +Name = Sablenite +NamePlural = Sablenites +Pocket = HeldItems +Price = 0 +BPPrice = 64 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Sableye hold it, and it will be able to Mega Evolve. +#------------------------------- +[MAWILITE] +Name = Mawilite +NamePlural = Mawilites +Pocket = HeldItems +Price = 0 +BPPrice = 64 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Mawile hold it, and it will be able to Mega Evolve. +#------------------------------- +[AGGRONITE] +Name = Aggronite +NamePlural = Aggronites +Pocket = HeldItems +Price = 0 +BPPrice = 64 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Aggron hold it, and it will be able to Mega Evolve. +#------------------------------- +[MEDICHAMITE] +Name = Medichamite +NamePlural = Medichamites +Pocket = HeldItems +Price = 0 +BPPrice = 64 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Medicham hold it, and it will be able to Mega Evolve. +#------------------------------- +[MANECTITE] +Name = Manectite +NamePlural = Manectites +Pocket = HeldItems +Price = 0 +BPPrice = 64 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Manectric hold it, and it will be able to Mega Evolve. +#------------------------------- +[SHARPEDONITE] +Name = Sharpedonite +NamePlural = Sharpedonites +Pocket = HeldItems +Price = 0 +BPPrice = 64 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Sharpedo hold it, and it will be able to Mega Evolve. +#------------------------------- +[CAMERUPTITE] +Name = Cameruptite +NamePlural = Cameruptites +Pocket = HeldItems +Price = 0 +BPPrice = 64 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Camerupt hold it, and it will be able to Mega Evolve. +#------------------------------- +[ALTARIANITE] +Name = Altarianite +NamePlural = Altarianites +Pocket = HeldItems +Price = 0 +BPPrice = 64 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Altaria hold it, and it will be able to Mega Evolve. +#------------------------------- +[BANETTITE] +Name = Banettite +NamePlural = Banettites +Pocket = HeldItems +Price = 0 +BPPrice = 64 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Banette hold it, and it will be able to Mega Evolve. +#------------------------------- +[ABSOLITE] +Name = Absolite +NamePlural = Absolites +Pocket = HeldItems +Price = 0 +BPPrice = 64 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Absol hold it, and it will be able to Mega Evolve. +#------------------------------- +[GLALITITE] +Name = Glalitite +NamePlural = Glalitites +Pocket = HeldItems +Price = 0 +BPPrice = 64 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Glalie hold it, and it will be able to Mega Evolve. +#------------------------------- +[SALAMENCITE] +Name = Salamencite +NamePlural = Salamencites +Pocket = HeldItems +Price = 0 +BPPrice = 64 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Salamence hold it, and it will be able to Mega Evolve. +#------------------------------- +[METAGROSSITE] +Name = Metagrossite +NamePlural = Metagrossites +Pocket = HeldItems +Price = 0 +BPPrice = 64 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Metagross hold it, and it will be able to Mega Evolve. +#------------------------------- +[LATIASITE] +Name = Latiasite +NamePlural = Latiasites +Pocket = HeldItems +Price = 0 +BPPrice = 64 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Latias hold it, and it will be able to Mega Evolve. +#------------------------------- +[LATIOSITE] +Name = Latiosite +NamePlural = Latiosites +Pocket = HeldItems +Price = 0 +BPPrice = 64 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Latios hold it, and it will be able to Mega Evolve. +#------------------------------- +[LOPUNNITE] +Name = Lopunnite +NamePlural = Lopunnites +Pocket = HeldItems +Price = 0 +BPPrice = 64 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Lopunny hold it, and it will be able to Mega Evolve. +#------------------------------- +[GARCHOMPITE] +Name = Garchompite +NamePlural = Garchompites +Pocket = HeldItems +Price = 0 +BPPrice = 64 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Garchomp hold it, and it will be able to Mega Evolve. +#------------------------------- +[LUCARIONITE] +Name = Lucarionite +NamePlural = Lucarionites +Pocket = HeldItems +Price = 0 +BPPrice = 64 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Lucario hold it, and it will be able to Mega Evolve. +#------------------------------- +[ABOMASITE] +Name = Abomasite +NamePlural = Abomasites +Pocket = HeldItems +Price = 0 +BPPrice = 64 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Abomasnow hold it, and it will be able to Mega Evolve. +#------------------------------- +[GALLADITE] +Name = Galladite +NamePlural = Galladites +Pocket = HeldItems +Price = 0 +BPPrice = 64 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Gallade hold it, and it will be able to Mega Evolve. +#------------------------------- +[AUDINITE] +Name = Audinite +NamePlural = Audinites +Pocket = HeldItems +Price = 0 +BPPrice = 64 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Audino hold it, and it will be able to Mega Evolve. +#------------------------------- +[DIANCITE] +Name = Diancite +NamePlural = Diancites +Pocket = HeldItems +Price = 0 +BPPrice = 64 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Diancie hold it, and it will be able to Mega Evolve. +#------------------------------- +[REDORB] +Name = Red Orb +NamePlural = Red Orbs +Pocket = HeldItems +Price = 0 +BPPrice = 64 +Description = A shiny red orb that is said to have a legend tied to it. It's known to be connected with the Hoenn region. +#------------------------------- +[BLUEORB] +Name = Blue Orb +NamePlural = Blue Orbs +Pocket = HeldItems +Price = 0 +BPPrice = 64 +Description = A shiny blue orb that is said to have a legend tied to it. It's known to be connected with the Hoenn region. #------------------------------- [XATTACK] Name = X Attack NamePlural = X Attacks -Pocket = 7 +Pocket = BattleItems Price = 1000 BattleUse = OnBattler Flags = Fling_30 @@ -4927,7 +3873,7 @@ Description = An item that sharply boosts the Attack stat of a Pokémon while it [XATTACK2] Name = X Attack 2 NamePlural = X Attack 2s -Pocket = 7 +Pocket = BattleItems Price = 0 BattleUse = OnBattler Flags = Fling_30 @@ -4936,7 +3882,7 @@ Description = It sharply raises the Attack stat of a Pokémon in battle. It wear [XATTACK3] Name = X Attack 3 NamePlural = X Attack 3s -Pocket = 7 +Pocket = BattleItems Price = 0 BattleUse = OnBattler Flags = Fling_30 @@ -4945,7 +3891,7 @@ Description = It drastically raises the Attack stat of a Pokémon in battle. It [XATTACK6] Name = X Attack 6 NamePlural = X Attack 6s -Pocket = 7 +Pocket = BattleItems Price = 0 BattleUse = OnBattler Flags = Fling_30 @@ -4954,7 +3900,7 @@ Description = It raises the Attack stat of a Pokémon in battle immensely. It we [XDEFENSE] Name = X Defense NamePlural = X Defenses -Pocket = 7 +Pocket = BattleItems Price = 2000 BattleUse = OnBattler Flags = Fling_30 @@ -4963,7 +3909,7 @@ Description = An item that sharply boosts the Defense of a Pokémon while it rem [XDEFENSE2] Name = X Defense 2 NamePlural = X Defense 2s -Pocket = 7 +Pocket = BattleItems Price = 0 BattleUse = OnBattler Flags = Fling_30 @@ -4972,7 +3918,7 @@ Description = It sharply raises the Defense stat of a Pokémon in battle. It wea [XDEFENSE3] Name = X Defense 3 NamePlural = X Defense 3s -Pocket = 7 +Pocket = BattleItems Price = 0 BattleUse = OnBattler Flags = Fling_30 @@ -4981,7 +3927,7 @@ Description = It drastically raises the Defense stat of a Pokémon in battle. It [XDEFENSE6] Name = X Defense 6 NamePlural = X Defense 6s -Pocket = 7 +Pocket = BattleItems Price = 0 BattleUse = OnBattler Flags = Fling_30 @@ -4990,7 +3936,7 @@ Description = It raises the Defense stat of a Pokémon in battle immensely. It w [XSPATK] Name = X Sp. Atk NamePlural = X Sp. Atks -Pocket = 7 +Pocket = BattleItems Price = 1000 BattleUse = OnBattler Flags = Fling_30 @@ -4999,7 +3945,7 @@ Description = An item that sharply boosts the Sp. Atk stat of a Pokémon while i [XSPATK2] Name = X Sp. Atk 2 NamePlural = X Sp. Atk 2s -Pocket = 7 +Pocket = BattleItems Price = 0 BattleUse = OnBattler Flags = Fling_30 @@ -5008,7 +3954,7 @@ Description = It sharply raises the Sp. Atk stat of a Pokémon in battle. It wea [XSPATK3] Name = X Sp. Atk 3 NamePlural = X Sp. Atk 3s -Pocket = 7 +Pocket = BattleItems Price = 0 BattleUse = OnBattler Flags = Fling_30 @@ -5017,7 +3963,7 @@ Description = It drastically raises the Sp. Atk stat of a Pokémon in battle. It [XSPATK6] Name = X Sp. Atk 6 NamePlural = X Sp. Atk 6s -Pocket = 7 +Pocket = BattleItems Price = 0 BattleUse = OnBattler Flags = Fling_30 @@ -5026,7 +3972,7 @@ Description = It raises the Sp. Atk stat of a Pokémon in battle immensely. It w [XSPDEF] Name = X Sp. Def NamePlural = X Sp. Defs -Pocket = 7 +Pocket = BattleItems Price = 2000 BattleUse = OnBattler Flags = Fling_30 @@ -5035,7 +3981,7 @@ Description = An item that sharply boosts the Sp. Def stat of a Pokémon while i [XSPDEF2] Name = X Sp. Def 2 NamePlural = X Sp. Def 2s -Pocket = 7 +Pocket = BattleItems Price = 0 BattleUse = OnBattler Flags = Fling_30 @@ -5044,7 +3990,7 @@ Description = It sharply raises the Sp. Def stat of a Pokémon in battle. It wea [XSPDEF3] Name = X Sp. Def 3 NamePlural = X Sp. Def 3s -Pocket = 7 +Pocket = BattleItems Price = 0 BattleUse = OnBattler Flags = Fling_30 @@ -5053,7 +3999,7 @@ Description = It drastically raises the Sp. Def stat of a Pokémon in battle. It [XSPDEF6] Name = X Sp. Def 6 NamePlural = X Sp. Def 6s -Pocket = 7 +Pocket = BattleItems Price = 0 BattleUse = OnBattler Flags = Fling_30 @@ -5062,7 +4008,7 @@ Description = It raises the Sp. Def stat of a Pokémon in battle immensely. It w [XSPEED] Name = X Speed NamePlural = X Speeds -Pocket = 7 +Pocket = BattleItems Price = 1000 BattleUse = OnBattler Flags = Fling_30 @@ -5071,7 +4017,7 @@ Description = An item that sharply boosts the Speed stat of a Pokémon while it [XSPEED2] Name = X Speed 2 NamePlural = X Speed 2s -Pocket = 7 +Pocket = BattleItems Price = 0 BattleUse = OnBattler Flags = Fling_30 @@ -5080,7 +4026,7 @@ Description = It sharply raises the Speed stat of a Pokémon in battle. It wears [XSPEED3] Name = X Speed 3 NamePlural = X Speed 3s -Pocket = 7 +Pocket = BattleItems Price = 0 BattleUse = OnBattler Flags = Fling_30 @@ -5089,7 +4035,7 @@ Description = It drastically raises the Speed stat of a Pokémon in battle. It w [XSPEED6] Name = X Speed 6 NamePlural = X Speed 6s -Pocket = 7 +Pocket = BattleItems Price = 0 BattleUse = OnBattler Flags = Fling_30 @@ -5098,7 +4044,7 @@ Description = It raises the Speed stat of a Pokémon in battle immensely. It wea [XACCURACY] Name = X Accuracy NamePlural = X Accuracies -Pocket = 7 +Pocket = BattleItems Price = 1000 BattleUse = OnBattler Flags = Fling_30 @@ -5107,7 +4053,7 @@ Description = An item that sharply boosts the accuracy of a Pokémon while it re [XACCURACY2] Name = X Accuracy 2 NamePlural = X Accuracy 2s -Pocket = 7 +Pocket = BattleItems Price = 0 BattleUse = OnBattler Flags = Fling_30 @@ -5116,7 +4062,7 @@ Description = It sharply raises the accuracy of a Pokémon in battle. It wears o [XACCURACY3] Name = X Accuracy 3 NamePlural = X Accuracy 3s -Pocket = 7 +Pocket = BattleItems Price = 0 BattleUse = OnBattler Flags = Fling_30 @@ -5125,7 +4071,7 @@ Description = It drastically raises the accuracy of a Pokémon in battle. It wea [XACCURACY6] Name = X Accuracy 6 NamePlural = X Accuracy 6s -Pocket = 7 +Pocket = BattleItems Price = 0 BattleUse = OnBattler Flags = Fling_30 @@ -5134,7 +4080,7 @@ Description = It raises the accuracy of a Pokémon in battle immensely. It wears [DIREHIT] Name = Dire Hit NamePlural = Dire Hits -Pocket = 7 +Pocket = BattleItems Price = 1000 BattleUse = OnBattler Flags = Fling_30 @@ -5143,7 +4089,7 @@ Description = An item that raises the critical-hit ratio greatly. It wears off i [DIREHIT2] Name = Dire Hit 2 NamePlural = Dire Hit 2s -Pocket = 7 +Pocket = BattleItems Price = 0 BattleUse = OnBattler Flags = Fling_30 @@ -5152,7 +4098,7 @@ Description = It sharply raises the critical-hit ratio. It wears off if the Pok [DIREHIT3] Name = Dire Hit 3 NamePlural = Dire Hit 3s -Pocket = 7 +Pocket = BattleItems Price = 0 BattleUse = OnBattler Flags = Fling_30 @@ -5161,7 +4107,7 @@ Description = It greatly raises the critical-hit ratio. It wears off if the Pok [GUARDSPEC] Name = Guard Spec. NamePlural = Guard Specs. -Pocket = 7 +Pocket = BattleItems Price = 1500 BattleUse = Direct Flags = Fling_30 @@ -5170,7 +4116,7 @@ Description = An item that prevents stat reduction among the Trainer's party Pok [RESETURGE] Name = Reset Urge NamePlural = Reset Urges -Pocket = 7 +Pocket = BattleItems Price = 0 Flags = Fling_30 Description = When used, it restores any stat changes of an ally Pokémon. @@ -5178,7 +4124,7 @@ Description = When used, it restores any stat changes of an ally Pokémon. [ABILITYURGE] Name = Ability Urge NamePlural = Ability Urges -Pocket = 7 +Pocket = BattleItems Price = 0 Flags = Fling_30 Description = When used, it activates the Ability of an ally Pokémon. @@ -5186,7 +4132,7 @@ Description = When used, it activates the Ability of an ally Pokémon. [ITEMURGE] Name = Item Urge NamePlural = Item Urges -Pocket = 7 +Pocket = BattleItems Price = 0 Flags = Fling_30 Description = When used, it causes an ally Pokémon to use its held item. @@ -5194,7 +4140,7 @@ Description = When used, it causes an ally Pokémon to use its held item. [ITEMDROP] Name = Item Drop NamePlural = Item Drops -Pocket = 7 +Pocket = BattleItems Price = 0 Flags = Fling_30 Description = When used, it causes an ally Pokémon to drop a held item. @@ -5202,7 +4148,7 @@ Description = When used, it causes an ally Pokémon to drop a held item. [BLUEFLUTE] Name = Blue Flute NamePlural = Blue Flutes -Pocket = 7 +Pocket = BattleItems Price = 100 FieldUse = OnPokemon BattleUse = OnPokemon @@ -5213,7 +4159,7 @@ Description = A blue flute made from blown glass. Its melody awakens a single Po [YELLOWFLUTE] Name = Yellow Flute NamePlural = Yellow Flutes -Pocket = 7 +Pocket = BattleItems Price = 300 BattleUse = OnBattler Flags = Fling_30 @@ -5223,7 +4169,7 @@ Description = A yellow flute made from blown glass. Its melody snaps a single Po [REDFLUTE] Name = Red Flute NamePlural = Red Flutes -Pocket = 7 +Pocket = BattleItems Price = 200 BattleUse = OnBattler Flags = Fling_30 @@ -5233,7 +4179,7 @@ Description = A red flute made from blown glass. Its melody snaps a single Poké [POKEDOLL] Name = Poké Doll NamePlural = Poké Dolls -Pocket = 7 +Pocket = BattleItems Price = 100 BattleUse = Direct Flags = Fling_30 @@ -5242,7 +4188,7 @@ Description = A doll that attracts Pokémon. Use it to flee from any battle with [FLUFFYTAIL] Name = Fluffy Tail NamePlural = Fluffy Tails -Pocket = 7 +Pocket = BattleItems Price = 100 BattleUse = Direct Flags = Fling_30 @@ -5251,16 +4197,1070 @@ Description = An item that attracts Pokémon. Use it to flee from any battle wit [POKETOY] Name = Poké Toy NamePlural = Poké Toys -Pocket = 7 +Pocket = BattleItems Price = 100 BattleUse = Direct Flags = Fling_30 Description = An item that attracts Pokémon. Use it to flee from any battle with a wild Pokémon. #------------------------------- +[TM01] +Name = TM01 +NamePlural = TM01s +Pocket = Machines +Price = 10000 +BPPrice = 16 +FieldUse = TM +Move = HONECLAWS +Description = The user sharpens its claws to boost its Attack stat and accuracy. +#------------------------------- +[TM02] +Name = TM02 +NamePlural = TM02s +Pocket = Machines +Price = 10000 +BPPrice = 16 +FieldUse = TM +Move = DRAGONCLAW +Description = The user slashes the target with huge, sharp claws. +#------------------------------- +[TM03] +Name = TM03 +NamePlural = TM03s +Pocket = Machines +Price = 10000 +BPPrice = 16 +FieldUse = TM +Move = PSYSHOCK +Description = The user materializes an odd psychic wave to attack the target. This attack does physical damage. +#------------------------------- +[TM04] +Name = TM04 +NamePlural = TM04s +Pocket = Machines +Price = 10000 +BPPrice = 16 +FieldUse = TM +Move = CALMMIND +Description = The user quietly focuses its mind and calms its spirit to raise its Sp. Atk and Sp. Def stats. +#------------------------------- +[TM05] +Name = TM05 +NamePlural = TM05s +Pocket = Machines +Price = 10000 +BPPrice = 24 +FieldUse = TM +Move = ROAR +Description = The target is scared off and replaced by another Pokémon in its party. In the wild, the battle ends. +#------------------------------- +[TM06] +Name = TM06 +NamePlural = TM06s +Pocket = Machines +Price = 10000 +BPPrice = 16 +FieldUse = TM +Move = TOXIC +Description = A move that leaves the target badly poisoned. Its poison damage worsens every turn. +#------------------------------- +[TM07] +Name = TM07 +NamePlural = TM07s +Pocket = Machines +Price = 50000 +BPPrice = 16 +FieldUse = TM +Move = HAIL +Description = Summons a hailstorm that lasts for five turns. The hailstorm damages all types except Ice. +#------------------------------- +[TM08] +Name = TM08 +NamePlural = TM08s +Pocket = Machines +Price = 10000 +BPPrice = 16 +FieldUse = TM +Move = BULKUP +Description = The user tenses its muscles to bulk up its body, boosting both its Attack and Defense stats. +#------------------------------- +[TM09] +Name = TM09 +NamePlural = TM09s +Pocket = Machines +Price = 10000 +BPPrice = 16 +FieldUse = TM +Move = VENOSHOCK +Description = The user drenches the target in a special poisonous liquid. Its power is doubled if the target is poisoned. +#------------------------------- +[TM10] +Name = TM10 +NamePlural = TM10s +Pocket = Machines +Price = 10000 +BPPrice = 16 +FieldUse = TM +Move = HIDDENPOWER +Description = A unique attack that varies in type and intensity depending on the Pokémon using it. +#------------------------------- +[TM11] +Name = TM11 +NamePlural = TM11s +Pocket = Machines +Price = 50000 +BPPrice = 16 +FieldUse = TM +Move = SUNNYDAY +Description = The user intensifies the sun for five turns, powering up Fire-type moves. +#------------------------------- +[TM12] +Name = TM12 +NamePlural = TM12s +Pocket = Machines +Price = 10000 +BPPrice = 16 +FieldUse = TM +Move = TAUNT +Description = The target is taunted into a rage that allows it to use only attack moves for three turns. +#------------------------------- +[TM13] +Name = TM13 +NamePlural = TM13s +Pocket = Machines +Price = 10000 +BPPrice = 16 +FieldUse = TM +Move = ICEBEAM +Description = The target is struck with an icy-cold beam of energy. It may also freeze the target solid. +#------------------------------- +[TM14] +Name = TM14 +NamePlural = TM14s +Pocket = Machines +Price = 30000 +BPPrice = 16 +FieldUse = TM +Move = BLIZZARD +Description = A howling blizzard is summoned to strike the opposing team. It may also freeze them solid. +#------------------------------- +[TM15] +Name = TM15 +NamePlural = TM15s +Pocket = Machines +Price = 50000 +BPPrice = 16 +FieldUse = TM +Move = HYPERBEAM +Description = The target is attacked with a powerful beam. The user must rest on the next turn to regain its energy. +#------------------------------- +[TM16] +Name = TM16 +NamePlural = TM16s +Pocket = Machines +Price = 10000 +BPPrice = 16 +FieldUse = TM +Move = LIGHTSCREEN +Description = A wondrous wall of light is put up to suppress damage from special attacks for five turns. +#------------------------------- +[TM17] +Name = TM17 +NamePlural = TM17s +Pocket = Machines +Price = 10000 +BPPrice = 16 +FieldUse = TM +Move = PROTECT +Description = It enables the user to evade all attacks. Its chance of failing rises if it is used in succession. +#------------------------------- +[TM18] +Name = TM18 +NamePlural = TM18s +Pocket = Machines +Price = 50000 +BPPrice = 16 +FieldUse = TM +Move = RAINDANCE +Description = The user summons a heavy rain that falls for five turns, powering up Water-type moves. +#------------------------------- +[TM19] +Name = TM19 +NamePlural = TM19s +Pocket = Machines +Price = 10000 +BPPrice = 16 +FieldUse = TM +Move = ROOST +Description = The user lands and rests its body. It restores the user's HP by up to half of its max HP. +#------------------------------- +[TM20] +Name = TM20 +NamePlural = TM20s +Pocket = Machines +Price = 10000 +BPPrice = 16 +FieldUse = TM +Move = SAFEGUARD +Description = The user creates a protective field that prevents status problems for five turns. +#------------------------------- +[TM21] +Name = TM21 +NamePlural = TM21s +Pocket = Machines +Price = 10000 +BPPrice = 16 +FieldUse = TM +Move = FRUSTRATION +Description = A full-power attack that grows more powerful the less the user likes its Trainer. +#------------------------------- +[TM22] +Name = TM22 +NamePlural = TM22s +Pocket = Machines +Price = 10000 +BPPrice = 16 +FieldUse = TM +Move = SOLARBEAM +Description = A two-turn attack. The user gathers light, then blasts a bundled beam on the second turn. +#------------------------------- +[TM23] +Name = TM23 +NamePlural = TM23s +Pocket = Machines +Price = 10000 +BPPrice = 32 +FieldUse = TM +Move = SMACKDOWN +Description = The user throws a stone or similar projectile to attack a foe. A flying Pokémon will fall to the ground if hit. +#------------------------------- +[TM24] +Name = TM24 +NamePlural = TM24s +Pocket = Machines +Price = 10000 +BPPrice = 16 +FieldUse = TM +Move = THUNDERBOLT +Description = A strong electric blast is loosed at the target. It may also leave the target with paralysis. +#------------------------------- +[TM25] +Name = TM25 +NamePlural = TM25s +Pocket = Machines +Price = 30000 +BPPrice = 16 +FieldUse = TM +Move = THUNDER +Description = A wicked thunderbolt is dropped on the target to inflict damage. It may also leave the target with paralysis. +#------------------------------- +[TM26] +Name = TM26 +NamePlural = TM26s +Pocket = Machines +Price = 10000 +BPPrice = 16 +FieldUse = TM +Move = EARTHQUAKE +Description = The user sets off an earthquake that strikes every Pokémon around it. +#------------------------------- +[TM27] +Name = TM27 +NamePlural = TM27s +Pocket = Machines +Price = 10000 +BPPrice = 16 +FieldUse = TM +Move = RETURN +Description = A full-power attack that grows more powerful the more the user likes its Trainer. +#------------------------------- +[TM28] +Name = TM28 +NamePlural = TM28s +Pocket = Machines +Price = 2000 +BPPrice = 16 +FieldUse = TM +Move = DIG +Description = The user burrows, then attacks on the second turn. It can also be used to exit dungeons. +#------------------------------- +[TM29] +Name = TM29 +NamePlural = TM29s +Pocket = Machines +Price = 10000 +BPPrice = 16 +FieldUse = TM +Move = PSYCHIC +Description = The target is hit by a strong telekinetic force. It may also reduce the target's Sp. Def stat. +#------------------------------- +[TM30] +Name = TM30 +NamePlural = TM30s +Pocket = Machines +Price = 10000 +BPPrice = 16 +FieldUse = TM +Move = SHADOWBALL +Description = The user hurls a shadowy blob at the target. It may also lower the target's Sp. Def stat. +#------------------------------- +[TM31] +Name = TM31 +NamePlural = TM31s +Pocket = Machines +Price = 10000 +BPPrice = 16 +FieldUse = TM +Move = BRICKBREAK +Description = The user attacks with tough fists, etc. It can also break any barrier such as Light Screen and Reflect. +#------------------------------- +[TM32] +Name = TM32 +NamePlural = TM32s +Pocket = Machines +Price = 10000 +BPPrice = 16 +FieldUse = TM +Move = DOUBLETEAM +Description = By moving rapidly, the user makes illusory copies of itself to raise its evasiveness. +#------------------------------- +[TM33] +Name = TM33 +NamePlural = TM33s +Pocket = Machines +Price = 10000 +BPPrice = 16 +FieldUse = TM +Move = REFLECT +Description = A wondrous wall of light is put up to suppress damage from physical attacks for five turns. +#------------------------------- +[TM34] +Name = TM34 +NamePlural = TM34s +Pocket = Machines +Price = 10000 +BPPrice = 32 +FieldUse = TM +Move = SLUDGEWAVE +Description = It swamps the area around the user with a giant sludge wave. It may also poison those hit. +#------------------------------- +[TM35] +Name = TM35 +NamePlural = TM35s +Pocket = Machines +Price = 10000 +BPPrice = 16 +FieldUse = TM +Move = FLAMETHROWER +Description = The target is scorched with an intense blast of fire. It may also leave the target with a burn. +#------------------------------- +[TM36] +Name = TM36 +NamePlural = TM36s +Pocket = Machines +Price = 10000 +BPPrice = 16 +FieldUse = TM +Move = SLUDGEBOMB +Description = Unsanitary sludge is hurled at the target. It may also poison the target. +#------------------------------- +[TM37] +Name = TM37 +NamePlural = TM37s +Pocket = Machines +Price = 50000 +BPPrice = 16 +FieldUse = TM +Move = SANDSTORM +Description = A five-turn sandstorm is summoned to hurt all combatants except the Rock, Ground, and Steel types. +#------------------------------- +[TM38] +Name = TM38 +NamePlural = TM38s +Pocket = Machines +Price = 30000 +BPPrice = 16 +FieldUse = TM +Move = FIREBLAST +Description = The foe is attacked with an intense blast of all-consuming fire. It may also leave the target with a burn. +#------------------------------- +[TM39] +Name = TM39 +NamePlural = TM39s +Pocket = Machines +Price = 10000 +BPPrice = 16 +FieldUse = TM +Move = ROCKTOMB +Description = Boulders are hurled at the target. It also lowers the target's Speed by preventing its movement. +#------------------------------- +[TM40] +Name = TM40 +NamePlural = TM40s +Pocket = Machines +Price = 10000 +BPPrice = 16 +FieldUse = TM +Move = AERIALACE +Description = The user confounds the target with speed, then slashes. The attack lands without fail. +#------------------------------- +[TM41] +Name = TM41 +NamePlural = TM41s +Pocket = Machines +Price = 10000 +BPPrice = 16 +FieldUse = TM +Move = TORMENT +Description = The user torments and enrages the target, making it incapable of using the same move twice in a row. +#------------------------------- +[TM42] +Name = TM42 +NamePlural = TM42s +Pocket = Machines +Price = 10000 +BPPrice = 16 +FieldUse = TM +Move = FACADE +Description = An attack move that doubles its power if the user is poisoned, paralyzed, or has a burn. +#------------------------------- +[TM43] +Name = TM43 +NamePlural = TM43s +Pocket = Machines +Price = 10000 +BPPrice = 16 +FieldUse = TM +Move = FLAMECHARGE +Description = The user cloaks itself with flame and attacks. Building up more power, it raises the user's Speed stat. +#------------------------------- +[TM44] +Name = TM44 +NamePlural = TM44s +Pocket = Machines +Price = 1000 +BPPrice = 16 +FieldUse = TM +Move = REST +Description = The user goes to sleep for two turns. It fully restores the user's HP and heals any status problem. +#------------------------------- +[TM45] +Name = TM45 +NamePlural = TM45s +Pocket = Machines +Price = 10000 +BPPrice = 16 +FieldUse = TM +Move = ATTRACT +Description = If it is the opposite gender of the user, the target becomes infatuated and less likely to attack. +#------------------------------- +[TM46] +Name = TM46 +NamePlural = TM46s +Pocket = Machines +Price = 10000 +BPPrice = 16 +FieldUse = TM +Move = THIEF +Description = The user attacks and steals the target's held item simultaneously. It can't steal if the user holds an item. +#------------------------------- +[TM47] +Name = TM47 +NamePlural = TM47s +Pocket = Machines +Price = 10000 +BPPrice = 16 +FieldUse = TM +Move = LOWSWEEP +Description = The user attacks the target's legs swiftly, reducing the target's Speed stat. +#------------------------------- +[TM48] +Name = TM48 +NamePlural = TM48s +Pocket = Machines +Price = 10000 +BPPrice = 16 +FieldUse = TM +Move = ROUND +Description = The user attacks the target with a song. Others can join in the Round to increase the power of the attack. +#------------------------------- +[TM49] +Name = TM49 +NamePlural = TM49s +Pocket = Machines +Price = 10000 +BPPrice = 16 +FieldUse = TM +Move = ECHOEDVOICE +Description = The user attacks the target with an echoing voice. If this move is used every turn, it does greater damage. +#------------------------------- +[TM50] +Name = TM50 +NamePlural = TM50s +Pocket = Machines +Price = 80000 +BPPrice = 16 +FieldUse = TM +Move = OVERHEAT +Description = The user attacks the target at full power. The attack's recoil sharply reduces the user's Sp. Atk stat. +#------------------------------- +[TM51] +Name = TM51 +NamePlural = TM51s +Pocket = Machines +Price = 10000 +BPPrice = 32 +FieldUse = TM +Move = STEELWING +Description = The target is hit with wings of steel. This may also raise the user's Defense stat. +#------------------------------- +[TM52] +Name = TM52 +NamePlural = TM52s +Pocket = Machines +Price = 30000 +BPPrice = 16 +FieldUse = TM +Move = FOCUSBLAST +Description = The user heightens its mental focus and unleashes its power. It may also lower the target's Sp. Def. +#------------------------------- +[TM53] +Name = TM53 +NamePlural = TM53s +Pocket = Machines +Price = 10000 +BPPrice = 16 +FieldUse = TM +Move = ENERGYBALL +Description = The user draws power from nature and fires it at the target. It may also lower the target's Sp. Def. +#------------------------------- +[TM54] +Name = TM54 +NamePlural = TM54s +Pocket = Machines +Price = 10000 +BPPrice = 16 +FieldUse = TM +Move = FALSESWIPE +Description = A restrained attack that prevents the target from fainting. The target is left with at least 1 HP. +#------------------------------- +[TM55] +Name = TM55 +NamePlural = TM55s +Pocket = Machines +Price = 10000 +BPPrice = 16 +FieldUse = TM +Move = SCALD +Description = The user shoots boiling hot water at its target. It may also leave the target with a burn. +#------------------------------- +[TM56] +Name = TM56 +NamePlural = TM56s +Pocket = Machines +Price = 10000 +BPPrice = 16 +FieldUse = TM +Move = FLING +Description = The user flings its held item at the target as an attack. Its power and effects depend on the item. +#------------------------------- +[TM57] +Name = TM57 +NamePlural = TM57s +Pocket = Machines +Price = 10000 +BPPrice = 16 +FieldUse = TM +Move = CHARGEBEAM +Description = The user fires a concentrated bundle of electricity. It may also raise the user's Sp. Atk stat. +#------------------------------- +[TM58] +Name = TM58 +NamePlural = TM58s +Pocket = Machines +Price = 10000 +BPPrice = 16 +FieldUse = TM +Move = SKYDROP +Description = The user hurls the foe into the sky, then drops it on the next turn. The foe cannot attack while in the sky. +#------------------------------- +[TM59] +Name = TM59 +NamePlural = TM59s +Pocket = Machines +Price = 1500 +BPPrice = 16 +FieldUse = TM +Move = INCINERATE +Description = The user attacks the target with fire. If the target is holding a Berry, it becomes burnt up and unusable. +#------------------------------- +[TM60] +Name = TM60 +NamePlural = TM60s +Pocket = Machines +Price = 10000 +BPPrice = 24 +FieldUse = TM +Move = QUASH +Description = The user suppresses the target and makes its move go last. +#------------------------------- +[TM61] +Name = TM61 +NamePlural = TM61s +Pocket = Machines +Price = 10000 +BPPrice = 16 +FieldUse = TM +Move = WILLOWISP +Description = The user shoots a sinister, bluish-white flame at the target to inflict a burn. +#------------------------------- +[TM62] +Name = TM62 +NamePlural = TM62s +Pocket = Machines +Price = 10000 +BPPrice = 16 +FieldUse = TM +Move = ACROBATICS +Description = The user nimbly strikes the target. If the user is not holding an item, this attack inflicts massive damage. +#------------------------------- +[TM63] +Name = TM63 +NamePlural = TM63s +Pocket = Machines +Price = 10000 +BPPrice = 16 +FieldUse = TM +Move = EMBARGO +Description = It prevents the target from using its held item. Its Trainer is also prevented from using items on it. +#------------------------------- +[TM64] +Name = TM64 +NamePlural = TM64s +Pocket = Machines +Price = 10000 +BPPrice = 48 +FieldUse = TM +Move = EXPLOSION +Description = The user explodes to inflict damage on those around it. The user faints upon using this move. +#------------------------------- +[TM65] +Name = TM65 +NamePlural = TM65s +Pocket = Machines +Price = 10000 +BPPrice = 16 +FieldUse = TM +Move = SHADOWCLAW +Description = The user slashes with a sharp claw made from shadows. It has a high critical-hit ratio. +#------------------------------- +[TM66] +Name = TM66 +NamePlural = TM66s +Pocket = Machines +Price = 10000 +BPPrice = 16 +FieldUse = TM +Move = PAYBACK +Description = The user stores power, then attacks. If the user can use this attack after the foe, its power is doubled. +#------------------------------- +[TM67] +Name = TM67 +NamePlural = TM67s +Pocket = Machines +Price = 1000 +BPPrice = 48 +FieldUse = TM +Move = RETALIATE +Description = The user gets revenge for a fainted ally. If an ally fainted in the last turn, this move's power is increased. +#------------------------------- +[TM68] +Name = TM68 +NamePlural = TM68s +Pocket = Machines +Price = 50000 +BPPrice = 16 +FieldUse = TM +Move = GIGAIMPACT +Description = The user charges at the target using every bit of its power. The user must rest on the next turn. +#------------------------------- +[TM69] +Name = TM69 +NamePlural = TM69s +Pocket = Machines +Price = 10000 +BPPrice = 16 +FieldUse = TM +Move = ROCKPOLISH +Description = The user polishes its body to reduce drag. It sharply raises the Speed stat. +#------------------------------- +[TM70] +Name = TM70 +NamePlural = TM70s +Pocket = Machines +Price = 1000 +BPPrice = 16 +FieldUse = TM +Move = FLASH +Description = The user flashes a bright light that cuts the target's accuracy. It can also be used to illuminate caves. +#------------------------------- +[TM71] +Name = TM71 +NamePlural = TM71s +Pocket = Machines +Price = 30000 +BPPrice = 16 +FieldUse = TM +Move = STONEEDGE +Description = The user stabs the foe with sharpened stones from below. It has a high critical-hit ratio. +#------------------------------- +[TM72] +Name = TM72 +NamePlural = TM72s +Pocket = Machines +Price = 10000 +BPPrice = 48 +FieldUse = TM +Move = VOLTSWITCH +Description = After making its attack, the user rushes back to switch places with a party Pokémon in waiting. +#------------------------------- +[TM73] +Name = TM73 +NamePlural = TM73s +Pocket = Machines +Price = 5000 +BPPrice = 16 +FieldUse = TM +Move = THUNDERWAVE +Description = A weak electric charge is launched at the target. It causes paralysis if it hits. +#------------------------------- +[TM74] +Name = TM74 +NamePlural = TM74s +Pocket = Machines +Price = 10000 +BPPrice = 16 +FieldUse = TM +Move = GYROBALL +Description = The user tackles the target with a high-speed spin. The slower the user, the greater the damage. +#------------------------------- +[TM75] +Name = TM75 +NamePlural = TM75s +Pocket = Machines +Price = 10000 +BPPrice = 16 +FieldUse = TM +Move = SWORDSDANCE +Description = A frenetic dance to uplift the fighting spirit. It sharply raises the user's Attack stat. +#------------------------------- +[TM76] +Name = TM76 +NamePlural = TM76s +Pocket = Machines +Price = 2000 +BPPrice = 16 +FieldUse = TM +Move = STRUGGLEBUG +Description = Resisting, the user attacks the opposing Pokémon. The targets' Sp. Atk stat is reduced. +#------------------------------- +[TM77] +Name = TM77 +NamePlural = TM77s +Pocket = Machines +Price = 10000 +BPPrice = 16 +FieldUse = TM +Move = PSYCHUP +Description = The user hypnotizes itself into copying any stat change made by the target. +#------------------------------- +[TM78] +Name = TM78 +NamePlural = TM78s +Pocket = Machines +Price = 10000 +BPPrice = 16 +FieldUse = TM +Move = BULLDOZE +Description = The user stomps down on the ground and attacks everything in the area. The targets' Speed stat is reduced. +#------------------------------- +[TM79] +Name = TM79 +NamePlural = TM79s +Pocket = Machines +Price = 10000 +BPPrice = 16 +FieldUse = TM +Move = FROSTBREATH +Description = The user blows a cold breath on the target. This attack always results in a critical hit. +#------------------------------- +[TM80] +Name = TM80 +NamePlural = TM80s +Pocket = Machines +Price = 10000 +BPPrice = 16 +FieldUse = TM +Move = ROCKSLIDE +Description = Large boulders are hurled at the opposing team to inflict damage. They may also make the targets flinch. +#------------------------------- +[TM81] +Name = TM81 +NamePlural = TM81s +Pocket = Machines +Price = 10000 +BPPrice = 16 +FieldUse = TM +Move = XSCISSOR +Description = The user slashes at the target by crossing its scythes or claws as if they were a pair of scissors. +#------------------------------- +[TM82] +Name = TM82 +NamePlural = TM82s +Pocket = Machines +Price = 10000 +BPPrice = 16 +FieldUse = TM +Move = DRAGONTAIL +Description = The user knocks away the target and drags out another Pokémon in its party. In the wild, the battle ends. +#------------------------------- +[TM83] +Name = TM83 +NamePlural = TM83s +Pocket = Machines +Price = 10000 +BPPrice = 16 +FieldUse = TM +Move = INFESTATION +Description = The target is infested and attacked for four to five turns. The target can't flee during this time. +#------------------------------- +[TM84] +Name = TM84 +NamePlural = TM84s +Pocket = Machines +Price = 10000 +BPPrice = 16 +FieldUse = TM +Move = POISONJAB +Description = The target is stabbed with a tentacle or arm steeped in poison. It may also poison the target. +#------------------------------- +[TM85] +Name = TM85 +NamePlural = TM85s +Pocket = Machines +Price = 10000 +BPPrice = 48 +FieldUse = TM +Move = DREAMEATER +Description = The user eats the dreams of a sleeping target. It absorbs half the damage caused to heal the user's HP. +#------------------------------- +[TM86] +Name = TM86 +NamePlural = TM86s +Pocket = Machines +Price = 10000 +BPPrice = 16 +FieldUse = TM +Move = GRASSKNOT +Description = The user snares the target with grass and trips it. The heavier the target, the greater the damage. +#------------------------------- +[TM87] +Name = TM87 +NamePlural = TM87s +Pocket = Machines +Price = 10000 +BPPrice = 24 +FieldUse = TM +Move = SWAGGER +Description = The user enrages and confuses the target. However, it also sharply raises the target's Attack stat. +#------------------------------- +[TM88] +Name = TM88 +NamePlural = TM88s +Pocket = Machines +Price = 10000 +BPPrice = 16 +FieldUse = TM +Move = SLEEPTALK +Description = While it is asleep, the user randomly uses one of the moves it knows. +#------------------------------- +[TM89] +Name = TM89 +NamePlural = TM89s +Pocket = Machines +Price = 10000 +BPPrice = 16 +FieldUse = TM +Move = UTURN +Description = After making its attack, the user rushes back to switch places with a party Pokémon in waiting. +#------------------------------- +[TM90] +Name = TM90 +NamePlural = TM90s +Pocket = Machines +Price = 10000 +BPPrice = 16 +FieldUse = TM +Move = SUBSTITUTE +Description = The user makes a copy of itself using some of its HP. The copy serves as the user's decoy. +#------------------------------- +[TM91] +Name = TM91 +NamePlural = TM91s +Pocket = Machines +Price = 10000 +BPPrice = 16 +FieldUse = TM +Move = FLASHCANNON +Description = The user gathers all its light energy and releases it at once. It may also lower the target's Sp. Def stat. +#------------------------------- +[TM92] +Name = TM92 +NamePlural = TM92s +Pocket = Machines +Price = 10000 +BPPrice = 16 +FieldUse = TM +Move = TRICKROOM +Description = The user creates a bizarre space in which slower Pokémon get to move first for five turns. +#------------------------------- +[TM93] +Name = TM93 +NamePlural = TM93s +Pocket = Machines +Price = 50000 +BPPrice = 16 +FieldUse = TM +Move = WILDCHARGE +Description = The user shrouds itself in electricity and smashes into its target. It also damages the user a little. +#------------------------------- +[TM94] +Name = TM94 +NamePlural = TM94s +Pocket = Machines +Price = 2000 +BPPrice = 16 +FieldUse = TM +Move = SECRETPOWER +Description = The user attacks with a secret power. Its added effects vary depending on the user's environment. +#------------------------------- +[TM95] +Name = TM95 +NamePlural = TM95s +Pocket = Machines +Price = 10000 +BPPrice = 16 +FieldUse = TM +Move = SNARL +Description = The user yells as if it is ranting about something, making the target's Sp. Atk stat decrease. +#------------------------------- +[TM96] +Name = TM96 +NamePlural = TM96s +Pocket = Machines +Price = 10000 +BPPrice = 16 +FieldUse = TM +Move = NATUREPOWER +Description = This attack makes use of nature's power. Its effects vary depending on the user's environment. +#------------------------------- +[TM97] +Name = TM97 +NamePlural = TM97s +Pocket = Machines +Price = 10000 +BPPrice = 16 +FieldUse = TM +Move = DARKPULSE +Description = The user releases a horrible aura imbued with dark thoughts. This may also make the target flinch. +#------------------------------- +[TM98] +Name = TM98 +NamePlural = TM98s +Pocket = Machines +Price = 10000 +BPPrice = 16 +FieldUse = TM +Move = POWERUPPUNCH +Description = Striking opponents repeatedly makes the user's fists harder. Hitting a target raises the Attack stat. +#------------------------------- +[TM99] +Name = TM99 +NamePlural = TM99s +Pocket = Machines +Price = 10000 +BPPrice = 16 +FieldUse = TM +Move = DAZZLINGGLEAM +Description = The user damages opposing Pokémon by emitting a powerful flash. +#------------------------------- +[TM100] +Name = TM100 +NamePlural = TM100s +Pocket = Machines +Price = 5000 +BPPrice = 16 +FieldUse = TM +Move = CONFIDE +Description = The user tells the target a secret. The target loses concentration and its Sp. Atk stat is lowered. +#------------------------------- +[HM01] +Name = HM01 +NamePlural = HM01s +Pocket = Machines +Price = 0 +FieldUse = HM +Move = CUT +Description = The target is cut with a scythe or claw. It can also be used to cut down thin trees. +#------------------------------- +[HM02] +Name = HM02 +NamePlural = HM02s +Pocket = Machines +Price = 0 +FieldUse = HM +Move = FLY +Description = The user soars, then strikes on the second turn. It can also be used to fly to any familiar town. +#------------------------------- +[HM03] +Name = HM03 +NamePlural = HM03s +Pocket = Machines +Price = 0 +FieldUse = HM +Move = SURF +Description = It swamps the area around the user with a giant wave. It can also be used for crossing water. +#------------------------------- +[HM04] +Name = HM04 +NamePlural = HM04s +Pocket = Machines +Price = 0 +FieldUse = HM +Move = STRENGTH +Description = The target is slugged with a punch thrown at maximum power. This move can also be used to move boulders. +#------------------------------- +[HM05] +Name = HM05 +NamePlural = HM05s +Pocket = Machines +Price = 0 +FieldUse = HM +Move = WATERFALL +Description = The user charges the target at an awesome speed. It can also be used to climb a waterfall. +#------------------------------- +[HM06] +Name = HM06 +NamePlural = HM06s +Pocket = Machines +Price = 0 +FieldUse = HM +Move = DIVE +Description = The user dives on the first turn, and floats up and attacks on the second. It can be used to dive in the ocean. +#------------------------------- [BICYCLE] Name = Bicycle NamePlural = Bicycles -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = Direct Flags = KeyItem @@ -5269,7 +5269,7 @@ Description = A folding Bicycle that enables much faster movement than the Runni [OLDROD] Name = Old Rod NamePlural = Old Rods -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = Direct Flags = KeyItem @@ -5278,7 +5278,7 @@ Description = An old and beat-up fishing rod. Use it by any body of water to fis [GOODROD] Name = Good Rod NamePlural = Good Rods -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = Direct Flags = KeyItem @@ -5287,7 +5287,7 @@ Description = A new, good-quality fishing rod. Use it by any body of water to fi [SUPERROD] Name = Super Rod NamePlural = Super Rods -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = Direct Flags = KeyItem @@ -5296,7 +5296,7 @@ Description = An awesome, high-tech fishing rod. Use it by any body of water to [ITEMFINDER] Name = Itemfinder NamePlural = Itemfinders -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = Direct Flags = KeyItem @@ -5305,7 +5305,7 @@ Description = A device used for finding items. If there is a hidden item nearby [DOWSINGMACHINE] Name = Dowsing Machine NamePlural = Dowsing Machines -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = Direct Flags = KeyItem @@ -5314,7 +5314,7 @@ Description = It checks for unseen items in the area and makes noise and lights [POKERADAR] Name = Poké Radar NamePlural = Poké Radars -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = Direct Flags = KeyItem @@ -5323,7 +5323,7 @@ Description = A tool that can search out Pokémon that are hiding in grass. Its [TOWNMAP] Name = Town Map NamePlural = Town Maps -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = Direct Flags = KeyItem @@ -5332,7 +5332,7 @@ Description = A very convenient map that can be viewed anytime. It even shows yo [POKEFLUTE] Name = Poké Flute NamePlural = Poké Flutes -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = OnPokemon BattleUse = Direct @@ -5342,7 +5342,7 @@ Description = A flute that is said to instantly awaken any Pokémon. It has a lo [COINCASE] Name = Coin Case NamePlural = Coin Cases -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = Direct Flags = KeyItem @@ -5351,7 +5351,7 @@ Description = A case for holding coins obtained at the Game Corner. It holds up [SOOTSACK] Name = Soot Sack NamePlural = Soot Sacks -Pocket = 8 +Pocket = KeyItems Price = 0 Flags = KeyItem Description = A sack used to gather and hold volcanic ash. @@ -5359,7 +5359,7 @@ Description = A sack used to gather and hold volcanic ash. [SILPHSCOPE] Name = Silph Scope NamePlural = Silph Scopes -Pocket = 8 +Pocket = KeyItems Price = 0 Flags = KeyItem Description = A scope that makes unseeable Pokémon visible. It is made by Silph Co. @@ -5367,7 +5367,7 @@ Description = A scope that makes unseeable Pokémon visible. It is made by Silph [DEVONSCOPE] Name = Devon Scope NamePlural = Devon Scopes -Pocket = 8 +Pocket = KeyItems Price = 0 Flags = KeyItem Description = A device by Devon that signals any unseeable Pokémon. @@ -5375,7 +5375,7 @@ Description = A device by Devon that signals any unseeable Pokémon. [SQUIRTBOTTLE] Name = Squirt Bottle NamePlural = Squirt Bottles -Pocket = 8 +Pocket = KeyItems Price = 0 Flags = KeyItem Description = A watering can shaped like a Squirtle. It helps promote healthy growth of Berries planted in soft soil. @@ -5383,7 +5383,7 @@ Description = A watering can shaped like a Squirtle. It helps promote healthy gr [SPRAYDUCK] Name = Sprayduck NamePlural = Sprayducks -Pocket = 8 +Pocket = KeyItems Price = 0 Flags = KeyItem Description = A watering can shaped like a Psyduck. It helps promote healthy growth of Berries planted in soft soil. @@ -5391,7 +5391,7 @@ Description = A watering can shaped like a Psyduck. It helps promote healthy gro [WAILMERPAIL] Name = Wailmer Pail NamePlural = Wailmer Pails -Pocket = 8 +Pocket = KeyItems Price = 0 Flags = KeyItem Description = A nifty watering pail. Use it to promote strong growth in Berries planted in soft soil. @@ -5399,7 +5399,7 @@ Description = A nifty watering pail. Use it to promote strong growth in Berries [SPRINKLOTAD] Name = Sprinklotad NamePlural = Sprinklotads -Pocket = 8 +Pocket = KeyItems Price = 0 Flags = KeyItem Description = A watering can shaped like a Lotad. It helps promote the healthy growth of any Berries planted in soft soil. @@ -5407,7 +5407,7 @@ Description = A watering can shaped like a Lotad. It helps promote the healthy g [GRACIDEA] Name = Gracidea NamePlural = Gracideas -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = OnPokemon Flags = KeyItem @@ -5416,7 +5416,7 @@ Description = A flower sometimes bundled in bouquets to convey gratitude on spec [REVEALGLASS] Name = Reveal Glass NamePlural = Reveal Glasses -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = OnPokemon Flags = KeyItem @@ -5425,7 +5425,7 @@ Description = A glass that reveals the truth. It is a mysterious glass that retu [PRISONBOTTLE] Name = Prison Bottle NamePlural = Prison Bottles -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = OnPokemon Flags = KeyItem @@ -5434,7 +5434,7 @@ Description = A bottle believed to have been used to seal away the power of a ce [DNASPLICERS] Name = DNA Splicers NamePlural = DNA Splicers -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = OnPokemon Flags = KeyItem @@ -5443,7 +5443,7 @@ Description = A splicer that fuses Kyurem and a certain Pokémon. They are said [DNASPLICERSUSED] Name = DNA Splicers NamePlural = DNA Splicers -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = OnPokemon Flags = KeyItem @@ -5452,7 +5452,7 @@ Description = A splicer that separates Kyurem and a certain Pokémon when they h [OVALCHARM] Name = Oval Charm NamePlural = Oval Charms -Pocket = 8 +Pocket = KeyItems Price = 0 Flags = KeyItem Description = An oval charm said to increase the chance of Eggs being found at the Day Care. @@ -5460,7 +5460,7 @@ Description = An oval charm said to increase the chance of Eggs being found at t [SHINYCHARM] Name = Shiny Charm NamePlural = Shiny Charms -Pocket = 8 +Pocket = KeyItems Price = 0 Flags = KeyItem Description = A shiny charm said to increase the chance of finding a Shiny Pokémon. @@ -5468,7 +5468,7 @@ Description = A shiny charm said to increase the chance of finding a Shiny Poké [MEGARING] Name = Mega Ring NamePlural = Mega Rings -Pocket = 8 +Pocket = KeyItems Price = 0 Flags = KeyItem Description = This ring contains an untold power that somehow enables Pokémon carrying Mega Stones to Mega Evolve. @@ -5476,7 +5476,7 @@ Description = This ring contains an untold power that somehow enables Pokémon c [AURORATICKET] Name = Aurora Ticket NamePlural = Aurora Tickets -Pocket = 8 +Pocket = KeyItems Price = 0 Flags = KeyItem Description = A ticket required to board the ship to Berth Island. It glows beautifully. @@ -5484,7 +5484,7 @@ Description = A ticket required to board the ship to Berth Island. It glows beau [OLDSEAMAP] Name = Old Sea Map NamePlural = Old Sea Maps -Pocket = 8 +Pocket = KeyItems Price = 0 Flags = KeyItem Description = A faded sea chart that shows the way to a certain island. diff --git a/PBS/Gen 7 backup/items.txt b/PBS/Gen 7 backup/items.txt index 65fde77f2..8eaafebae 100644 --- a/PBS/Gen 7 backup/items.txt +++ b/PBS/Gen 7 backup/items.txt @@ -3,7 +3,7 @@ [REPEL] Name = Repel NamePlural = Repels -Pocket = 1 +Pocket = Items Price = 400 FieldUse = Direct Flags = Repel,Fling_30 @@ -12,7 +12,7 @@ Description = An item that prevents weak wild Pokémon from appearing for 100 st [SUPERREPEL] Name = Super Repel NamePlural = Super Repels -Pocket = 1 +Pocket = Items Price = 700 FieldUse = Direct Flags = Repel,Fling_30 @@ -21,7 +21,7 @@ Description = An item that prevents weak wild Pokémon from appearing for 200 st [MAXREPEL] Name = Max Repel NamePlural = Max Repels -Pocket = 1 +Pocket = Items Price = 900 FieldUse = Direct Flags = Repel,Fling_30 @@ -30,7 +30,7 @@ Description = An item that prevents weak wild Pokémon from appearing for 250 st [BLACKFLUTE] Name = Black Flute NamePlural = Black Flutes -Pocket = 1 +Pocket = Items Price = 400 FieldUse = Direct Flags = Fling_30 @@ -40,7 +40,7 @@ Description = A black flute made from blown glass. Its melody makes wild Pokémo [WHITEFLUTE] Name = White Flute NamePlural = White Flutes -Pocket = 1 +Pocket = Items Price = 500 FieldUse = Direct Flags = Fling_30 @@ -52,7 +52,7 @@ Name = Honey NamePlural = Honey PortionName = jar of Honey PortionNamePlural = jars of Honey -Pocket = 1 +Pocket = Items Price = 300 FieldUse = Direct Flags = Fling_30 @@ -61,7 +61,7 @@ Description = A sweet honey with an aroma that attracts wild Pokémon when used [ESCAPEROPE] Name = Escape Rope NamePlural = Escape Ropes -Pocket = 1 +Pocket = Items Price = 1000 FieldUse = Direct Flags = Fling_30 @@ -70,7 +70,7 @@ Description = A long, durable rope. Use it to escape instantly from a cave or a [REDSHARD] Name = Red Shard NamePlural = Red Shards -Pocket = 1 +Pocket = Items Price = 1000 Flags = Fling_30 Description = A small red shard. It appears to be from some sort of implement made long ago. @@ -78,7 +78,7 @@ Description = A small red shard. It appears to be from some sort of implement ma [YELLOWSHARD] Name = Yellow Shard NamePlural = Yellow Shards -Pocket = 1 +Pocket = Items Price = 1000 Flags = Fling_30 Description = A small yellow shard. It appears to be from some sort of implement made long ago. @@ -86,7 +86,7 @@ Description = A small yellow shard. It appears to be from some sort of implement [BLUESHARD] Name = Blue Shard NamePlural = Blue Shards -Pocket = 1 +Pocket = Items Price = 1000 Flags = Fling_30 Description = A small blue shard. It appears to be from some sort of implement made long ago. @@ -94,7 +94,7 @@ Description = A small blue shard. It appears to be from some sort of implement m [GREENSHARD] Name = Green Shard NamePlural = Green Shards -Pocket = 1 +Pocket = Items Price = 1000 Flags = Fling_30 Description = A small green shard. It appears to be from some sort of implement made long ago. @@ -102,7 +102,7 @@ Description = A small green shard. It appears to be from some sort of implement [FIRESTONE] Name = Fire Stone NamePlural = Fire Stones -Pocket = 1 +Pocket = Items Price = 3000 BPPrice = 16 FieldUse = OnPokemon @@ -112,7 +112,7 @@ Description = A peculiar stone that makes certain species of Pokémon evolve. It [THUNDERSTONE] Name = Thunder Stone NamePlural = Thunder Stones -Pocket = 1 +Pocket = Items Price = 3000 BPPrice = 16 FieldUse = OnPokemon @@ -122,7 +122,7 @@ Description = A peculiar stone that makes certain species of Pokémon evolve. It [WATERSTONE] Name = Water Stone NamePlural = Water Stones -Pocket = 1 +Pocket = Items Price = 3000 BPPrice = 16 FieldUse = OnPokemon @@ -132,7 +132,7 @@ Description = A peculiar stone that makes certain species of Pokémon evolve. It [LEAFSTONE] Name = Leaf Stone NamePlural = Leaf Stones -Pocket = 1 +Pocket = Items Price = 3000 BPPrice = 16 FieldUse = OnPokemon @@ -142,7 +142,7 @@ Description = A peculiar stone that makes certain species of Pokémon evolve. It [MOONSTONE] Name = Moon Stone NamePlural = Moon Stones -Pocket = 1 +Pocket = Items Price = 3000 BPPrice = 16 FieldUse = OnPokemon @@ -152,7 +152,7 @@ Description = A peculiar stone that makes certain species of Pokémon evolve. It [SUNSTONE] Name = Sun Stone NamePlural = Sun Stones -Pocket = 1 +Pocket = Items Price = 3000 BPPrice = 16 FieldUse = OnPokemon @@ -162,7 +162,7 @@ Description = A peculiar stone that makes certain species of Pokémon evolve. It [DUSKSTONE] Name = Dusk Stone NamePlural = Dusk Stones -Pocket = 1 +Pocket = Items Price = 3000 BPPrice = 16 FieldUse = OnPokemon @@ -172,7 +172,7 @@ Description = A peculiar stone that makes certain species of Pokémon evolve. It [DAWNSTONE] Name = Dawn Stone NamePlural = Dawn Stones -Pocket = 1 +Pocket = Items Price = 3000 BPPrice = 16 FieldUse = OnPokemon @@ -182,7 +182,7 @@ Description = A peculiar stone that makes certain species of Pokémon evolve. It [SHINYSTONE] Name = Shiny Stone NamePlural = Shiny Stones -Pocket = 1 +Pocket = Items Price = 3000 BPPrice = 16 FieldUse = OnPokemon @@ -192,7 +192,7 @@ Description = A peculiar stone that makes certain species of Pokémon evolve. It [ICESTONE] Name = Ice Stone NamePlural = Ice Stones -Pocket = 1 +Pocket = Items Price = 3000 BPPrice = 16 FieldUse = OnPokemon @@ -202,7 +202,7 @@ Description = A peculiar stone that makes certain species of Pokémon evolve. It [REDAPRICORN] Name = Red Apricorn NamePlural = Red Apricorns -Pocket = 1 +Pocket = Items Price = 20 Flags = Apricorn Description = A red Apricorn. It assails your nostrils. @@ -210,7 +210,7 @@ Description = A red Apricorn. It assails your nostrils. [YELLOWAPRICORN] Name = Yellow Apricorn NamePlural = Yellow Apricorns -Pocket = 1 +Pocket = Items Price = 20 Flags = Apricorn Description = A yellow Apricorn. It has an invigorating scent. @@ -218,7 +218,7 @@ Description = A yellow Apricorn. It has an invigorating scent. [BLUEAPRICORN] Name = Blue Apricorn NamePlural = Blue Apricorns -Pocket = 1 +Pocket = Items Price = 20 Flags = Apricorn Description = A blue Apricorn. It smells a bit like grass. @@ -226,7 +226,7 @@ Description = A blue Apricorn. It smells a bit like grass. [GREENAPRICORN] Name = Green Apricorn NamePlural = Green Apricorns -Pocket = 1 +Pocket = Items Price = 20 Flags = Apricorn Description = A green Apricorn. It has a mysterious, aromatic scent. @@ -234,7 +234,7 @@ Description = A green Apricorn. It has a mysterious, aromatic scent. [PINKAPRICORN] Name = Pink Apricorn NamePlural = Pink Apricorns -Pocket = 1 +Pocket = Items Price = 20 Flags = Apricorn Description = A pink Apricorn. It has a nice, sweet scent. @@ -242,7 +242,7 @@ Description = A pink Apricorn. It has a nice, sweet scent. [WHITEAPRICORN] Name = White Apricorn NamePlural = White Apricorns -Pocket = 1 +Pocket = Items Price = 20 Flags = Apricorn Description = A white Apricorn. It doesn't smell like anything. @@ -250,7 +250,7 @@ Description = A white Apricorn. It doesn't smell like anything. [BLACKAPRICORN] Name = Black Apricorn NamePlural = Black Apricorns -Pocket = 1 +Pocket = Items Price = 20 Flags = Apricorn Description = A black Apricorn. It has an indescribable scent. @@ -258,7 +258,7 @@ Description = A black Apricorn. It has an indescribable scent. [HELIXFOSSIL] Name = Helix Fossil NamePlural = Helix Fossils -Pocket = 1 +Pocket = Items Price = 7000 Flags = Fossil,Fling_100 Description = A fossil of an ancient Pokémon that lived in the sea. It appears to be part of a seashell. @@ -266,7 +266,7 @@ Description = A fossil of an ancient Pokémon that lived in the sea. It appears [DOMEFOSSIL] Name = Dome Fossil NamePlural = Dome Fossils -Pocket = 1 +Pocket = Items Price = 7000 Flags = Fossil,Fling_100 Description = A fossil of an ancient Pokémon that lived in the sea. It appears to be part of a shell. @@ -274,7 +274,7 @@ Description = A fossil of an ancient Pokémon that lived in the sea. It appears [OLDAMBER] Name = Old Amber NamePlural = Old Ambers -Pocket = 1 +Pocket = Items Price = 1000 Flags = Fossil,Fling_100 Description = A piece of amber that contains the genes of an ancient Pokémon. It is clear with a reddish tint. @@ -282,7 +282,7 @@ Description = A piece of amber that contains the genes of an ancient Pokémon. I [ROOTFOSSIL] Name = Root Fossil NamePlural = Root Fossils -Pocket = 1 +Pocket = Items Price = 7000 Flags = Fossil,Fling_100 Description = A fossil of an ancient Pokémon that lived in the sea. It appears to be part of a plant root. @@ -290,7 +290,7 @@ Description = A fossil of an ancient Pokémon that lived in the sea. It appears [CLAWFOSSIL] Name = Claw Fossil NamePlural = Claw Fossils -Pocket = 1 +Pocket = Items Price = 7000 Flags = Fossil,Fling_100 Description = A fossil of an ancient Pokémon that lived in the sea. It appears to be part of a claw. @@ -298,7 +298,7 @@ Description = A fossil of an ancient Pokémon that lived in the sea. It appears [SKULLFOSSIL] Name = Skull Fossil NamePlural = Skull Fossils -Pocket = 1 +Pocket = Items Price = 7000 Flags = Fossil,Fling_100 Description = A fossil from a prehistoric Pokémon that lived on the land. It appears to be part of a head. @@ -306,7 +306,7 @@ Description = A fossil from a prehistoric Pokémon that lived on the land. It ap [ARMORFOSSIL] Name = Armor Fossil NamePlural = Armor Fossils -Pocket = 1 +Pocket = Items Price = 7000 Flags = Fossil,Fling_100 Description = A fossil from a prehistoric Pokémon that lived on the land. It appears to be part of a collar. @@ -314,7 +314,7 @@ Description = A fossil from a prehistoric Pokémon that lived on the land. It ap [COVERFOSSIL] Name = Cover Fossil NamePlural = Cover Fossils -Pocket = 1 +Pocket = Items Price = 7000 Flags = Fossil,Fling_100 Description = A fossil of an ancient Pokémon that lived in the sea in ancient times. It appears to be part of its back. @@ -322,7 +322,7 @@ Description = A fossil of an ancient Pokémon that lived in the sea in ancient t [PLUMEFOSSIL] Name = Plume Fossil NamePlural = Plume Fossils -Pocket = 1 +Pocket = Items Price = 7000 Flags = Fossil,Fling_100 Description = A fossil of an ancient Pokémon that flew in the sky in ancient times. It appears to be part of its wing. @@ -330,7 +330,7 @@ Description = A fossil of an ancient Pokémon that flew in the sky in ancient ti [JAWFOSSIL] Name = Jaw Fossil NamePlural = Jaw Fossils -Pocket = 1 +Pocket = Items Price = 7000 Flags = Fossil,Fling_100 Description = A fossil from a prehistoric Pokémon that once lived on the land. It appears to be part of a large jaw. @@ -338,7 +338,7 @@ Description = A fossil from a prehistoric Pokémon that once lived on the land. [SAILFOSSIL] Name = Sail Fossil NamePlural = Sail Fossils -Pocket = 1 +Pocket = Items Price = 7000 Flags = Fossil,Fling_100 Description = A fossil from a prehistoric Pokémon that once lived on the land. It looks like the impression from a skin sail. @@ -346,7 +346,7 @@ Description = A fossil from a prehistoric Pokémon that once lived on the land. [PRETTYWING] Name = Pretty Wing NamePlural = Pretty Wings -Pocket = 1 +Pocket = Items Price = 1000 Flags = Fling_20 Description = Though this feather is beautiful, it's just a regular feather and has no effect on Pokémon. @@ -354,7 +354,7 @@ Description = Though this feather is beautiful, it's just a regular feather and [TINYMUSHROOM] Name = Tiny Mushroom NamePlural = Tiny Mushrooms -Pocket = 1 +Pocket = Items Price = 500 Flags = Fling_30 Description = A small and rare mushroom. It is sought after by collectors. @@ -362,7 +362,7 @@ Description = A small and rare mushroom. It is sought after by collectors. [BIGMUSHROOM] Name = Big Mushroom NamePlural = Big Mushrooms -Pocket = 1 +Pocket = Items Price = 5000 Flags = Fling_30 Description = A large and rare mushroom. It is sought after by collectors. @@ -370,7 +370,7 @@ Description = A large and rare mushroom. It is sought after by collectors. [BALMMUSHROOM] Name = Balm Mushroom NamePlural = Balm Mushrooms -Pocket = 1 +Pocket = Items Price = 15000 Flags = Fling_30 Description = A rare mushroom which gives off a nice fragrance. A maniac will buy it for a high price. @@ -378,7 +378,7 @@ Description = A rare mushroom which gives off a nice fragrance. A maniac will bu [PEARL] Name = Pearl NamePlural = Pearls -Pocket = 1 +Pocket = Items Price = 2000 Flags = Fling_30 Description = A somewhat-small pearl that sparkles in a pretty silver color. It can be sold cheaply to shops. @@ -386,7 +386,7 @@ Description = A somewhat-small pearl that sparkles in a pretty silver color. It [BIGPEARL] Name = Big Pearl NamePlural = Big Pearls -Pocket = 1 +Pocket = Items Price = 8000 Flags = Fling_30 Description = A quite-large pearl that sparkles in a pretty silver color. It can be sold at a high price to shops. @@ -394,7 +394,7 @@ Description = A quite-large pearl that sparkles in a pretty silver color. It can [PEARLSTRING] Name = Pearl String NamePlural = Pearl Strings -Pocket = 1 +Pocket = Items Price = 30000 Flags = Fling_30 Description = Very large pearls that sparkle in a pretty silver color. A maniac will buy them for a high price. @@ -404,7 +404,7 @@ Name = Stardust NamePlural = Stardusts PortionName = bag of Stardust PortionNamePlural = bags of Stardust -Pocket = 1 +Pocket = Items Price = 3000 Flags = Fling_30 Description = Lovely, red-colored sand with a loose, silky feel. It can be sold at a high price to shops. @@ -412,7 +412,7 @@ Description = Lovely, red-colored sand with a loose, silky feel. It can be sold [STARPIECE] Name = Star Piece NamePlural = Star Pieces -Pocket = 1 +Pocket = Items Price = 12000 Flags = Fling_30 Description = A shard of a pretty gem that sparkles in a red color. It can be sold at a high price to shops. @@ -420,7 +420,7 @@ Description = A shard of a pretty gem that sparkles in a red color. It can be so [COMETSHARD] Name = Comet Shard NamePlural = Comet Shards -Pocket = 1 +Pocket = Items Price = 60000 Flags = Fling_30 Description = A shard which fell to the ground when a comet approached. A maniac will buy it for a high price. @@ -428,7 +428,7 @@ Description = A shard which fell to the ground when a comet approached. A maniac [NUGGET] Name = Nugget NamePlural = Nuggets -Pocket = 1 +Pocket = Items Price = 10000 Flags = Fling_30 Description = A nugget of pure gold that gives off a lustrous gleam. It can be sold at a high price to shops. @@ -436,7 +436,7 @@ Description = A nugget of pure gold that gives off a lustrous gleam. It can be s [BIGNUGGET] Name = Big Nugget NamePlural = Big Nuggets -Pocket = 1 +Pocket = Items Price = 40000 Flags = Fling_30 Description = A big nugget of pure gold that gives off a lustrous gleam. A maniac will buy it for a high price. @@ -444,7 +444,7 @@ Description = A big nugget of pure gold that gives off a lustrous gleam. A mania [HEARTSCALE] Name = Heart Scale NamePlural = Heart Scales -Pocket = 1 +Pocket = Items Price = 100 Flags = Fling_30 Description = A pretty, heart-shaped scale that is extremely rare. It glows faintly in the colors of the rainbow. @@ -452,14 +452,14 @@ Description = A pretty, heart-shaped scale that is extremely rare. It glows fain [SLOWPOKETAIL] Name = Slowpoke Tail NamePlural = Slowpoke Tails -Pocket = 1 +Pocket = Items Price = 10000 Description = A very tasty tail of something. It can be sold at a high price to shops. #------------------------------- [RAREBONE] Name = Rare Bone NamePlural = Rare Bones -Pocket = 1 +Pocket = Items Price = 5000 Flags = Fling_100 Description = A bone that is extremely valuable for Pokémon archaeology. It can be sold for a high price to shops. @@ -469,7 +469,7 @@ Name = Relic Copper NamePlural = Relic Coppers PortionName = Relic Copper coin PortionNamePlural = Relic Copper coins -Pocket = 1 +Pocket = Items Price = 0 Flags = Fling_30 Description = A copper coin used in a civilization about 3,000 years ago. A maniac will buy it for a high price. @@ -479,7 +479,7 @@ Name = Relic Silver NamePlural = Relic Silvers PortionName = Relic Silver coin PortionNamePlural = Relic Silver coins -Pocket = 1 +Pocket = Items Price = 0 Flags = Fling_30 Description = A silver coin used in a civilization about 3,000 years ago. A maniac will buy it for a high price. @@ -489,7 +489,7 @@ Name = Relic Gold NamePlural = Relic Golds PortionName = Relic Gold coin PortionNamePlural = Relic Gold coins -Pocket = 1 +Pocket = Items Price = 0 Flags = Fling_30 Description = A gold coin used in a civilization about 3,000 years ago. A maniac will buy it for a high price. @@ -497,7 +497,7 @@ Description = A gold coin used in a civilization about 3,000 years ago. A maniac [RELICVASE] Name = Relic Vase NamePlural = Relic Vases -Pocket = 1 +Pocket = Items Price = 0 Flags = Fling_30 Description = A vase made in a civilization about 3,000 years ago. A maniac will buy it for a high price. @@ -505,7 +505,7 @@ Description = A vase made in a civilization about 3,000 years ago. A maniac will [RELICBAND] Name = Relic Band NamePlural = Relic Bands -Pocket = 1 +Pocket = Items Price = 0 Flags = Fling_30 Description = A bracelet made in a civilization about 3,000 years ago. A maniac will buy it for a high price. @@ -513,7 +513,7 @@ Description = A bracelet made in a civilization about 3,000 years ago. A maniac [RELICSTATUE] Name = Relic Statue NamePlural = Relic Statues -Pocket = 1 +Pocket = Items Price = 0 Flags = Fling_30 Description = A stone figure made in a civilization about 3,000 years ago. A maniac will buy it for a high price. @@ -521,7 +521,7 @@ Description = A stone figure made in a civilization about 3,000 years ago. A man [RELICCROWN] Name = Relic Crown NamePlural = Relic Crowns -Pocket = 1 +Pocket = Items Price = 0 Flags = Fling_30 Description = A crown made in a civilization about 3,000 years ago. A maniac will buy it for a high price. @@ -531,7 +531,7 @@ Name = Growth Mulch NamePlural = Growth Mulch PortionName = bag of Growth Mulch PortionNamePlural = bags of Growth Mulch -Pocket = 1 +Pocket = Items Price = 200 Flags = Mulch,Fling_30 Description = A fertilizer to be spread on soft soil in regions where Berries are grown. A maniac will buy it for a high price. @@ -541,7 +541,7 @@ Name = Damp Mulch NamePlural = Damp Mulch PortionName = bag of Damp Mulch PortionNamePlural = bags of Damp Mulch -Pocket = 1 +Pocket = Items Price = 200 Flags = Mulch,Fling_30 Description = A fertilizer to be spread on soft soil in regions where Berries are grown. A maniac will buy it for a high price. @@ -551,7 +551,7 @@ Name = Stable Mulch NamePlural = Stable Mulch PortionName = bag of Stable Mulch PortionNamePlural = bags of Stable Mulch -Pocket = 1 +Pocket = Items Price = 200 Flags = Mulch,Fling_30 Description = A fertilizer to be spread on soft soil in regions where Berries are grown. A maniac will buy it for a high price. @@ -561,7 +561,7 @@ Name = Gooey Mulch NamePlural = Gooey Mulch PortionName = bag of Gooey Mulch PortionNamePlural = bags of Gooey Mulch -Pocket = 1 +Pocket = Items Price = 200 Flags = Mulch,Fling_30 Description = A fertilizer to be spread on soft soil in regions where Berries are grown. A maniac will buy it for a high price. @@ -571,7 +571,7 @@ Name = Shoal Salt NamePlural = Shoal Salts PortionName = pile of Shoal Salt PortionNamePlural = piles of Shoal Salt -Pocket = 1 +Pocket = Items Price = 20 Flags = Fling_30 Description = Pure salt that can be discovered deep inside the Shoal Cave. A maniac will buy it for a high price. @@ -579,7 +579,7 @@ Description = Pure salt that can be discovered deep inside the Shoal Cave. A man [SHOALSHELL] Name = Shoal Shell NamePlural = Shoal Shells -Pocket = 1 +Pocket = Items Price = 20 Flags = Fling_30 Description = A pretty seashell that can be found deep inside the Shoal Cave. A maniac will buy it for a high price. @@ -587,7 +587,7 @@ Description = A pretty seashell that can be found deep inside the Shoal Cave. A [ODDKEYSTONE] Name = Odd Keystone NamePlural = Odd Keystones -Pocket = 1 +Pocket = Items Price = 2100 Flags = Fling_80 Description = A vital item that is needed to keep a stone tower from collapsing. Voices can be heard from it occasionally. @@ -597,7 +597,7 @@ Name = Red Nectar NamePlural = Red Nectars PortionName = jar of Red Nectar PortionNamePlural = jars of Red Nectar -Pocket = 1 +Pocket = Items Price = 300 FieldUse = OnPokemon Flags = Fling_10 @@ -608,7 +608,7 @@ Name = Yellow Nectar NamePlural = Yellow Nectars PortionName = jar of Yellow Nectar PortionNamePlural = jars of Yellow Nectar -Pocket = 1 +Pocket = Items Price = 300 FieldUse = OnPokemon Flags = Fling_10 @@ -619,7 +619,7 @@ Name = Pink Nectar NamePlural = Pink Nectars PortionName = jar of Pink Nectar PortionNamePlural = jars of Pink Nectar -Pocket = 1 +Pocket = Items Price = 300 FieldUse = OnPokemon Flags = Fling_10 @@ -630,2058 +630,136 @@ Name = Purple Nectar NamePlural = Purple Nectars PortionName = jar of Purple Nectar PortionNamePlural = jars of Purple Nectar -Pocket = 1 +Pocket = Items Price = 300 FieldUse = OnPokemon Flags = Fling_10 Description = A flower nectar obtained at Poni Meadow. It changes the form of certain species of Pokémon. #------------------------------- -[AIRBALLOON] -Name = Air Balloon -NamePlural = Air Balloons -Pocket = 1 -Price = 4000 -BPPrice = 32 -Flags = Fling_10 -Description = An item to be held by a Pokémon. The holder will float in the air until hit. Once hit, this item will burst. -#------------------------------- -[BRIGHTPOWDER] -Name = Bright Powder -NamePlural = Bright Powders -PortionName = bag of Bright Powder -PortionNamePlural = bags of Bright Powder -Pocket = 1 -Price = 4000 -BPPrice = 48 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It casts a tricky glare that lowers the opponent's accuracy. -#------------------------------- -[EVIOLITE] -Name = Eviolite -NamePlural = Eviolites -Pocket = 1 -Price = 4000 -BPPrice = 48 -Flags = Fling_40 -Description = A mysterious evolutionary lump. When held, it raises the Defense and Sp. Def if the holder can still evolve. -#------------------------------- -[FLOATSTONE] -Name = Float Stone -NamePlural = Float Stones -Pocket = 1 -Price = 4000 -BPPrice = 48 -Flags = Fling_30 -Description = A very light stone. It reduces the weight of a Pokémon when held. -#------------------------------- -[DESTINYKNOT] -Name = Destiny Knot -NamePlural = Destiny Knots -Pocket = 1 -Price = 4000 -BPPrice = 48 -Flags = Fling_10 -Description = A long, thin, bright-red string to be held by a Pokémon. If the holder becomes infatuated, so does the foe. -#------------------------------- -[ROCKYHELMET] -Name = Rocky Helmet -NamePlural = Rocky Helmets -Pocket = 1 -Price = 4000 -BPPrice = 48 -Flags = Fling_60 -Description = If the holder of this item takes damage, the attacker will also be damaged upon contact. -#------------------------------- -[ASSAULTVEST] -Name = Assault Vest -NamePlural = Assault Vests -Pocket = 1 -Price = 1000 -BPPrice = 48 -Flags = Fling_80 -Description = An item to be held by a Pokémon. This offensive vest raises Sp. Def but prevents the use of status moves. -#------------------------------- -[SAFETYGOGGLES] -Name = Safety Goggles -NamePlural = Safety Goggles -PortionName = pair of Safety Goggles -PortionNamePlural = pairs of Safety Goggles -Pocket = 1 -Price = 4000 -BPPrice = 48 -Flags = Fling_80 -Description = An item to be held by a Pokémon. They protect the holder from weather-related damage and powder. -#------------------------------- -[PROTECTIVEPADS] -Name = Protective Pads -NamePlural = Protective Pads -Pocket = 1 -Price = 4000 -BPPrice = 48 -Flags = Fling_30 -Description = An item to be held by a Pokémon. They protect the holder from effects caused by making contact. -#------------------------------- -[EJECTBUTTON] -Name = Eject Button -NamePlural = Eject Buttons -Pocket = 1 -Price = 4000 -BPPrice = 32 -Flags = Fling_30 -Description = If the holder is hit by an attack, it will switch with another Pokémon in your party. -#------------------------------- -[REDCARD] -Name = Red Card -NamePlural = Red Cards -Pocket = 1 -Price = 4000 -BPPrice = 32 -Flags = Fling_10 -Description = A card with a mysterious power. When the holder is struck by a foe, the attacker is removed from battle. -#------------------------------- -[SHEDSHELL] -Name = Shed Shell -NamePlural = Shed Shells -Pocket = 1 -Price = 4000 -Flags = Fling_10 -Description = An item to be held by a Pokémon. This discarded carapace lets the holder switch out of battle without fail. -#------------------------------- -[SMOKEBALL] -Name = Smoke Ball -NamePlural = Smoke Balls -Pocket = 1 -Price = 4000 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It enables the holder to flee from any wild Pokémon without fail. -#------------------------------- -[LUCKYEGG] -Name = Lucky Egg -NamePlural = Lucky Eggs -Pocket = 1 -Price = 10000 -BPPrice = 77 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It is an egg filled with happiness that earns extra Exp. Points in battle. -#------------------------------- -[EXPSHARE] -Name = Exp. Share -NamePlural = Exp. Shares -Pocket = 1 -Price = 3000 -Flags = Fling_30 -Description = An item to be held by a Pokémon. The holder gets a share of a battle's Exp. Points without battling. -#------------------------------- -[AMULETCOIN] -Name = Amulet Coin -NamePlural = Amulet Coins -Pocket = 1 -Price = 10000 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It doubles a battle's prize money if the holding Pokémon joins in. -#------------------------------- -[SOOTHEBELL] -Name = Soothe Bell -NamePlural = Soothe Bells -Pocket = 1 -Price = 4000 -BPPrice = 48 -Flags = Fling_10 -Description = An item to be held by a Pokémon. The comforting chime of this bell calms the holder, making it friendly. -#------------------------------- -[CLEANSETAG] -Name = Cleanse Tag -NamePlural = Cleanse Tags -Pocket = 1 -Price = 5000 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It helps keep wild Pokémon away if the holder is the first one in the party. -#------------------------------- -[CHOICEBAND] -Name = Choice Band -NamePlural = Choice Bands -Pocket = 1 -Price = 4000 -BPPrice = 48 -Flags = Fling_10 -Description = An item to be held by a Pokémon. This headband ups Attack, but allows the use of only one move. -#------------------------------- -[CHOICESPECS] -Name = Choice Specs -NamePlural = Choice Specs -PortionName = pair of Choice Specs -PortionNamePlural = pairs of Choice Specs -Pocket = 1 -Price = 4000 -BPPrice = 48 -Flags = Fling_10 -Description = An item to be held by a Pokémon. These curious glasses boost Sp. Atk but allows the use of only one move. -#------------------------------- -[CHOICESCARF] -Name = Choice Scarf -NamePlural = Choice Scarves -Pocket = 1 -Price = 4000 -BPPrice = 48 -Flags = Fling_10 -Description = An item to be held by a Pokémon. This scarf boosts Speed but allows the use of only one move. -#------------------------------- -[HEATROCK] -Name = Heat Rock -NamePlural = Heat Rocks -Pocket = 1 -Price = 4000 -BPPrice = 48 -Flags = Fling_60 -Description = A Pokémon held item that extends the duration of the move Sunny Day used by the holder. -#------------------------------- -[DAMPROCK] -Name = Damp Rock -NamePlural = Damp Rocks -Pocket = 1 -Price = 4000 -BPPrice = 48 -Flags = Fling_60 -Description = A Pokémon held item that extends the duration of the move Rain Dance used by the holder. -#------------------------------- -[SMOOTHROCK] -Name = Smooth Rock -NamePlural = Smooth Rocks -Pocket = 1 -Price = 4000 -BPPrice = 48 -Flags = Fling_10 -Description = A Pokémon held item that extends the duration of the move Sandstorm used by the holder. -#------------------------------- -[ICYROCK] -Name = Icy Rock -NamePlural = Icy Rocks -Pocket = 1 -Price = 4000 -BPPrice = 48 -Flags = Fling_40 -Description = A Pokémon held item that extends the duration of the move Hail used by the holder. -#------------------------------- -[TERRAINEXTENDER] -Name = Terrain Extender -NamePlural = Terrain Extenders -Pocket = 1 -Price = 4000 -BPPrice = 48 -Flags = Fling_60 -Description = An item to be held by a Pokémon. It extends the duration of the terrain caused by the holder. -#------------------------------- -[LIGHTCLAY] -Name = Light Clay -NamePlural = Light Clays -PortionName = lump of Light Clay -PortionNamePlural = lumps of Light Clay -Pocket = 1 -Price = 4000 -BPPrice = 48 -Flags = Fling_30 -Description = An item to be held by a Pokémon. Protective moves like Light Screen and Reflect will be effective longer. -#------------------------------- -[GRIPCLAW] -Name = Grip Claw -NamePlural = Grip Claws -Pocket = 1 -Price = 4000 -BPPrice = 48 -Flags = Fling_90 -Description = A Pokémon held item that extends the duration of multiturn attacks like Bind and Wrap. -#------------------------------- -[BINDINGBAND] -Name = Binding Band -NamePlural = Binding Bands -Pocket = 1 -Price = 4000 -BPPrice = 48 -Flags = Fling_30 -Description = A band that increases the power of binding moves when held. -#------------------------------- -[BIGROOT] -Name = Big Root -NamePlural = Big Roots -Pocket = 1 -Price = 4000 -BPPrice = 24 -Flags = Fling_10 -Description = A Pokémon held item that boosts the power of HP-stealing moves to let the holder recover more HP. -#------------------------------- -[BLACKSLUDGE] -Name = Black Sludge -NamePlural = Black Sludges -PortionName = blob of Black Sludge -PortionNamePlural = blobs of Black Sludge -Pocket = 1 -Price = 4000 -BPPrice = 48 -Flags = Fling_30 -Description = A held item that gradually restores the HP of Poison-type Pokémon. It inflicts damage on all other types. -#------------------------------- -[LEFTOVERS] -Name = Leftovers -NamePlural = Leftovers -PortionName = serving of Leftovers -PortionNamePlural = servings of Leftovers -Pocket = 1 -Price = 4000 -BPPrice = 48 -Flags = Fling_10 -Description = An item to be held by a Pokémon. The holder's HP is gradually restored during battle. -#------------------------------- -[SHELLBELL] -Name = Shell Bell -NamePlural = Shell Bells -Pocket = 1 -Price = 4000 -BPPrice = 48 -Flags = Fling_30 -Description = An item to be held by a Pokémon. The holder's HP is restored a little every time it inflicts damage. -#------------------------------- -[MENTALHERB] -Name = Mental Herb -NamePlural = Mental Herbs -Pocket = 1 -Price = 4000 -BPPrice = 24 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It snaps the holder out of infatuation. It can be used only once. -#------------------------------- -[WHITEHERB] -Name = White Herb -NamePlural = White Herbs -Pocket = 1 -Price = 4000 -BPPrice = 24 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It restores any lowered stat in battle. It can be used only once. -#------------------------------- -[POWERHERB] -Name = Power Herb -NamePlural = Power Herbs -Pocket = 1 -Price = 4000 -BPPrice = 24 -Flags = Fling_10 -Description = A single-use item to be held by a Pokémon. It allows the immediate use of a move that charges up first. -#------------------------------- -[ABSORBBULB] -Name = Absorb Bulb -NamePlural = Absorb Bulbs -Pocket = 1 -Price = 4000 -BPPrice = 24 -Flags = Fling_30 -Description = A consumable bulb. If the holder is hit by a Water-type move, its Sp. Atk will rise. -#------------------------------- -[CELLBATTERY] -Name = Cell Battery -NamePlural = Cell Batteries -Pocket = 1 -Price = 4000 -BPPrice = 24 -Flags = Fling_30 -Description = A consumable battery. If the holder is hit by an Electric-type move, its Attack will rise. -#------------------------------- -[LUMINOUSMOSS] -Name = Luminous Moss -NamePlural = Luminous Moss -PortionName = clump of Luminous Moss -PortionNamePlural = clumps of Luminous Moss -Pocket = 1 -Price = 4000 -BPPrice = 24 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It boosts Sp. Def if hit by a Water-type attack. It can only be used once. -#------------------------------- -[SNOWBALL] -Name = Snowball -NamePlural = Snowballs -Pocket = 1 -Price = 4000 -BPPrice = 24 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It boosts Attack if hit by an Ice-type attack. It can only be used once. -#------------------------------- -[WEAKNESSPOLICY] -Name = Weakness Policy -NamePlural = Weakness Policies -Pocket = 1 -Price = 1000 -BPPrice = 32 -Flags = Fling_80 -Description = An item to be held by a Pokémon. The holder's Attack and Sp. Atk sharply increase if hit by a move it's weak to. -#------------------------------- -[ADRENALINEORB] -Name = Adrenaline Orb -NamePlural = Adrenaline Orbs -Pocket = 1 -Price = 300 -BPPrice = 24 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It boosts Speed when intimidated. It can be used only once. -#------------------------------- -[ELECTRICSEED] -Name = Electric Seed -NamePlural = Electric Seeds -Pocket = 1 -Price = 4000 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It boosts Defense on Electric Terrain. It can only be used once. -#------------------------------- -[GRASSYSEED] -Name = Grassy Seed -NamePlural = Grassy Seeds -Pocket = 1 -Price = 4000 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It boosts Defense on Grassy Terrain. It can only be used once. -#------------------------------- -[MISTYSEED] -Name = Misty Seed -NamePlural = Misty Seeds -Pocket = 1 -Price = 4000 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It boosts Sp. Def on Misty Terrain. It can only be used once. -#------------------------------- -[PSYCHICSEED] -Name = Psychic Seed -NamePlural = Psychic Seeds -Pocket = 1 -Price = 4000 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It boosts Sp. Def on Psychic Terrain. It can only be used once. -#------------------------------- -[LIFEORB] -Name = Life Orb -NamePlural = Life Orbs -Pocket = 1 -Price = 4000 -BPPrice = 48 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It boosts the power of moves, but at the cost of some HP on each hit. -#------------------------------- -[EXPERTBELT] -Name = Expert Belt -NamePlural = Expert Belts -Pocket = 1 -Price = 4000 -BPPrice = 48 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It is a well-worn belt that slightly boosts the power of supereffective moves. -#------------------------------- -[METRONOME] -Name = Metronome -NamePlural = Metronomes -Pocket = 1 -Price = 4000 -BPPrice = 48 -Flags = Fling_30 -Description = A Pokémon held item that boosts a move used consecutively. Its effect is reset if another move is used. -#------------------------------- -[MUSCLEBAND] -Name = Muscle Band -NamePlural = Muscle Bands -Pocket = 1 -Price = 4000 -BPPrice = 48 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It is a headband that slightly boosts the power of physical moves. -#------------------------------- -[WISEGLASSES] -Name = Wise Glasses -NamePlural = Wise Glasses -PortionName = pair of Wise Glasses -PortionNamePlural = pairs of Wise Glasses -Pocket = 1 -Price = 4000 -BPPrice = 48 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It is a thick pair of glasses that slightly boosts the power of special moves. -#------------------------------- -[RAZORCLAW] -Name = Razor Claw -NamePlural = Razor Claws -Pocket = 1 -Price = 5000 -BPPrice = 32 -Flags = Fling_80 -Description = An item to be held by a Pokémon. It is a sharply hooked claw that ups the holder's critical-hit ratio. -#------------------------------- -[SCOPELENS] -Name = Scope Lens -NamePlural = Scope Lenses -Pocket = 1 -Price = 4000 -BPPrice = 48 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It is a lens that boosts the holder's critical-hit ratio. -#------------------------------- -[WIDELENS] -Name = Wide Lens -NamePlural = Wide Lenses -Pocket = 1 -Price = 4000 -BPPrice = 48 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It is a magnifying lens that slightly boosts the accuracy of moves. -#------------------------------- -[ZOOMLENS] -Name = Zoom Lens -NamePlural = Zoom Lenses -Pocket = 1 -Price = 4000 -BPPrice = 48 -Flags = Fling_10 -Description = An item to be held by a Pokémon. If the holder moves after its target, its accuracy will be boosted. -#------------------------------- -[KINGSROCK] -Name = King's Rock -NamePlural = King's Rocks -Pocket = 1 -Price = 5000 -BPPrice = 32 -Flags = Fling_30 -Description = An item to be held by a Pokémon. When the holder inflicts damage, the target may flinch. -#------------------------------- -[RAZORFANG] -Name = Razor Fang -NamePlural = Razor Fangs -Pocket = 1 -Price = 5000 -BPPrice = 32 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It may make foes and allies flinch when the holder inflicts damage. -#------------------------------- -[LAGGINGTAIL] -Name = Lagging Tail -NamePlural = Lagging Tails -Pocket = 1 -Price = 4000 -BPPrice = 48 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It is tremendously heavy and makes the holder move slower than usual. -#------------------------------- -[QUICKCLAW] -Name = Quick Claw -NamePlural = Quick Claws -Pocket = 1 -Price = 4000 -BPPrice = 48 -Flags = Fling_80 -Description = An item to be held by a Pokémon. A light, sharp claw that lets the bearer move first occasionally. -#------------------------------- -[FOCUSBAND] -Name = Focus Band -NamePlural = Focus Bands -Pocket = 1 -Price = 4000 -BPPrice = 32 -Flags = Fling_10 -Description = An item to be held by a Pokémon. The holder may endure a potential KO attack, leaving it with just 1 HP. -#------------------------------- -[FOCUSSASH] -Name = Focus Sash -NamePlural = Focus Sashes -Pocket = 1 -Price = 4000 -BPPrice = 32 -Flags = Fling_10 -Description = An item to be held by a Pokémon. If it has full HP, the holder will endure one potential KO attack, leaving 1 HP. -#------------------------------- -[FLAMEORB] -Name = Flame Orb -NamePlural = Flame Orbs -Pocket = 1 -Price = 4000 -BPPrice = 16 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It is a bizarre orb that inflicts a burn on the holder in battle. -#------------------------------- -[TOXICORB] -Name = Toxic Orb -NamePlural = Toxic Orbs -Pocket = 1 -Price = 4000 -BPPrice = 16 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It is a bizarre orb that badly poisons the holder in battle. -#------------------------------- -[STICKYBARB] -Name = Sticky Barb -NamePlural = Sticky Barbs -Pocket = 1 -Price = 4000 -BPPrice = 16 -Flags = Fling_80 -Description = A held item that damages the holder on every turn. It may latch on to Pokémon that touch the holder. -#------------------------------- -[IRONBALL] -Name = Iron Ball -NamePlural = Iron Balls -Pocket = 1 -Price = 4000 -BPPrice = 16 -Flags = Fling_130 -Description = A Pokémon held item that cuts Speed. It makes Flying-type and levitating holders susceptible to Ground moves. -#------------------------------- -[RINGTARGET] -Name = Ring Target -NamePlural = Ring Targets -Pocket = 1 -Price = 4000 -BPPrice = 16 -Flags = Fling_10 -Description = Moves that would otherwise have no effect will land on the Pokémon that holds it. -#------------------------------- -[MACHOBRACE] -Name = Macho Brace -NamePlural = Macho Braces -Pocket = 1 -Price = 3000 -BPPrice = 16 -Flags = Fling_60 -Description = An item to be held by a Pokémon. It is a stiff, heavy brace that promotes strong growth but lowers Speed. -#------------------------------- -[POWERWEIGHT] -Name = Power Weight -NamePlural = Power Weights -Pocket = 1 -Price = 3000 -BPPrice = 16 -Flags = Fling_70 -Description = A Pokémon held item that promotes HP gain on leveling, but reduces the Speed stat. -#------------------------------- -[POWERBRACER] -Name = Power Bracer -NamePlural = Power Bracers -Pocket = 1 -Price = 3000 -BPPrice = 16 -Flags = Fling_70 -Description = A Pokémon held item that promotes Attack gain on leveling, but reduces the Speed stat. -#------------------------------- -[POWERBELT] -Name = Power Belt -NamePlural = Power Belts -Pocket = 1 -Price = 3000 -BPPrice = 16 -Flags = Fling_70 -Description = A Pokémon held item that promotes Defense gain on leveling, but reduces the Speed stat. -#------------------------------- -[POWERLENS] -Name = Power Lens -NamePlural = Power Lenses -Pocket = 1 -Price = 3000 -BPPrice = 16 -Flags = Fling_70 -Description = A Pokémon held item that promotes Sp. Atk gain on leveling, but reduces the Speed stat. -#------------------------------- -[POWERBAND] -Name = Power Band -NamePlural = Power Bands -Pocket = 1 -Price = 3000 -BPPrice = 16 -Flags = Fling_70 -Description = A Pokémon held item that promotes Sp. Def gain on leveling, but reduces the Speed stat. -#------------------------------- -[POWERANKLET] -Name = Power Anklet -NamePlural = Power Anklets -Pocket = 1 -Price = 3000 -BPPrice = 16 -Flags = Fling_70 -Description = A Pokémon held item that promotes Speed gain on leveling, but reduces the Speed stat. -#------------------------------- -[LAXINCENSE] -Name = Lax Incense -NamePlural = Lax Incenses -PortionName = jar of Lax Incense -PortionNamePlural = jars of Lax Incense -Pocket = 1 -Price = 5000 -Flags = Fling_10 -Description = An item to be held by a Pokémon. The tricky aroma of this incense may make attacks miss the holder. -#------------------------------- -[FULLINCENSE] -Name = Full Incense -NamePlural = Full Incenses -PortionName = jar of Full Incense -PortionNamePlural = jars of Full Incense -Pocket = 1 -Price = 5000 -Flags = Fling_10 -Description = An item to be held by a Pokémon. This exotic-smelling incense makes the holder bloated and slow moving. -#------------------------------- -[LUCKINCENSE] -Name = Luck Incense -NamePlural = Luck Incenses -PortionName = jar of Luck Incense -PortionNamePlural = jars of Luck Incense -Pocket = 1 -Price = 11000 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It doubles a battle's prize money if the holding Pokémon joins in. -#------------------------------- -[PUREINCENSE] -Name = Pure Incense -NamePlural = Pure Incenses -PortionName = jar of Pure Incense -PortionNamePlural = jars of Pure Incense -Pocket = 1 -Price = 6000 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It helps keep wild Pokémon away if the holder is the first one in the party. -#------------------------------- -[SEAINCENSE] -Name = Sea Incense -NamePlural = Sea Incenses -PortionName = jar of Sea Incense -PortionNamePlural = jars of Sea Incense -Pocket = 1 -Price = 2000 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It has a curious aroma that boosts the power of Water-type moves. -#------------------------------- -[WAVEINCENSE] -Name = Wave Incense -NamePlural = Wave Incenses -PortionName = jar of Wave Incense -PortionNamePlural = jars of Wave Incense -Pocket = 1 -Price = 2000 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It has a curious aroma that boosts the power of Water-type moves. -#------------------------------- -[ROSEINCENSE] -Name = Rose Incense -NamePlural = Rose Incenses -PortionName = jar of Rose Incense -PortionNamePlural = jars of Rose Incense -Pocket = 1 -Price = 2000 -Flags = Fling_10 -Description = An item to be held by a Pokémon. This exotic-smelling incense boosts the power of Grass-type moves. -#------------------------------- -[ODDINCENSE] -Name = Odd Incense -NamePlural = Odd Incenses -PortionName = jar of Odd Incense -PortionNamePlural = jars of Odd Incense -Pocket = 1 -Price = 2000 -Flags = Fling_10 -Description = An item to be held by a Pokémon. This exotic-smelling incense boosts the power of Psychic-type moves. -#------------------------------- -[ROCKINCENSE] -Name = Rock Incense -NamePlural = Rock Incenses -PortionName = jar of Rock Incense -PortionNamePlural = jars of Rock Incense -Pocket = 1 -Price = 2000 -Flags = Fling_10 -Description = An item to be held by a Pokémon. This exotic-smelling incense boosts the power of Rock-type moves. -#------------------------------- -[CHARCOAL] -Name = Charcoal -NamePlural = Charcoals -PortionName = piece of Charcoal -PortionNamePlural = pieces of Charcoal -Pocket = 1 -Price = 1000 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It is a combustible fuel that boosts the power of Fire-type moves. -#------------------------------- -[MYSTICWATER] -Name = Mystic Water -NamePlural = Mystic Waters -Pocket = 1 -Price = 1000 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It is a teardrop-shaped gem that ups the power of Water-type moves. -#------------------------------- -[MAGNET] -Name = Magnet -NamePlural = Magnets -Pocket = 1 -Price = 1000 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It is a powerful magnet that boosts the power of Electric-type moves. -#------------------------------- -[MIRACLESEED] -Name = Miracle Seed -NamePlural = Miracle Seeds -Pocket = 1 -Price = 1000 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It is a seed imbued with life that ups the power of Grass-type moves. -#------------------------------- -[NEVERMELTICE] -Name = Never-Melt Ice -NamePlural = Never-Melt Ices -PortionName = piece of Never-Melt Ice -PortionNamePlural = pieces of Never-Melt Ice -Pocket = 1 -Price = 1000 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It is a piece of ice that repels heat and boosts Ice-type moves. -#------------------------------- -[BLACKBELT] -Name = Black Belt -NamePlural = Black Belts -Pocket = 1 -Price = 1000 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It is a belt that boosts determination and Fighting-type moves. -#------------------------------- -[POISONBARB] -Name = Poison Barb -NamePlural = Poison Barbs -Pocket = 1 -Price = 1000 -Flags = Fling_70 -Description = An item to be held by a Pokémon. It is a small, poisonous barb that ups the power of Poison-type moves. -#------------------------------- -[SOFTSAND] -Name = Soft Sand -NamePlural = Soft Sand -PortionName = bag of Soft Sand -PortionNamePlural = bags of Soft Sand -Pocket = 1 -Price = 1000 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It is a loose, silky sand that boosts the power of Ground-type moves. -#------------------------------- -[SHARPBEAK] -Name = Sharp Beak -NamePlural = Sharp Beaks -Pocket = 1 -Price = 1000 -Flags = Fling_50 -Description = An item to be held by a Pokémon. It is a long, sharp beak that boosts the power of Flying-type moves. -#------------------------------- -[TWISTEDSPOON] -Name = Twisted Spoon -NamePlural = Twisted Spoons -Pocket = 1 -Price = 1000 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It is a spoon imbued with telekinetic power that boosts Psychic-type moves. -#------------------------------- -[SILVERPOWDER] -Name = Silver Powder -NamePlural = Silver Powders -PortionName = pile of Silver Powder -PortionNamePlural = piles of Silver Powder -Pocket = 1 -Price = 1000 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It is a shiny, silver powder that ups the power of Bug-type moves. -#------------------------------- -[HARDSTONE] -Name = Hard Stone -NamePlural = Hard Stones -Pocket = 1 -Price = 1000 -Flags = Fling_100 -Description = An item to be held by a Pokémon. It is an unbreakable stone that ups the power of Rock-type moves. -#------------------------------- -[SPELLTAG] -Name = Spell Tag -NamePlural = Spell Tags -Pocket = 1 -Price = 1000 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It is a sinister, eerie tag that boosts the power of Ghost-type moves. -#------------------------------- -[DRAGONFANG] -Name = Dragon Fang -NamePlural = Dragon Fangs -Pocket = 1 -Price = 1000 -Flags = Fling_70 -Description = An item to be held by a Pokémon. It is a hard and sharp fang that ups the power of Dragon-type moves. -#------------------------------- -[BLACKGLASSES] -Name = Black Glasses -NamePlural = Black Glasses -PortionName = pair of Black Glasses -PortionNamePlural = pairs of Black Glasses -Pocket = 1 -Price = 1000 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It is a shady-looking pair of glasses that boosts Dark-type moves. -#------------------------------- -[METALCOAT] -Name = Metal Coat -NamePlural = Metal Coats -Pocket = 1 -Price = 2000 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It is a special metallic film that ups the power of Steel-type moves. -#------------------------------- -[SILKSCARF] -Name = Silk Scarf -NamePlural = Silk Scarves -Pocket = 1 -Price = 1000 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It is a sumptuous scarf that boosts the power of Normal-type moves. -#------------------------------- -[FLAMEPLATE] -Name = Flame Plate -NamePlural = Flame Plates -Pocket = 1 -Price = 1000 -Flags = Fling_90 -Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Fire-type moves. -#------------------------------- -[SPLASHPLATE] -Name = Splash Plate -NamePlural = Splash Plates -Pocket = 1 -Price = 1000 -Flags = Fling_90 -Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Water-type moves. -#------------------------------- -[ZAPPLATE] -Name = Zap Plate -NamePlural = Zap Plates -Pocket = 1 -Price = 1000 -Flags = Fling_90 -Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Electric-type moves. -#------------------------------- -[MEADOWPLATE] -Name = Meadow Plate -NamePlural = Meadow Plates -Pocket = 1 -Price = 1000 -Flags = Fling_90 -Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Grass-type moves. -#------------------------------- -[ICICLEPLATE] -Name = Icicle Plate -NamePlural = Icicle Plates -Pocket = 1 -Price = 1000 -Flags = Fling_90 -Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Ice-type moves. -#------------------------------- -[FISTPLATE] -Name = Fist Plate -NamePlural = Fist Plates -Pocket = 1 -Price = 1000 -Flags = Fling_90 -Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Fighting-type moves. -#------------------------------- -[TOXICPLATE] -Name = Toxic Plate -NamePlural = Toxic Plates -Pocket = 1 -Price = 1000 -Flags = Fling_90 -Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Poison-type moves. -#------------------------------- -[EARTHPLATE] -Name = Earth Plate -NamePlural = Earth Plates -Pocket = 1 -Price = 1000 -Flags = Fling_90 -Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Ground-type moves. -#------------------------------- -[SKYPLATE] -Name = Sky Plate -NamePlural = Sky Plates -Pocket = 1 -Price = 1000 -Flags = Fling_90 -Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Flying-type moves. -#------------------------------- -[MINDPLATE] -Name = Mind Plate -NamePlural = Mind Plates -Pocket = 1 -Price = 1000 -Flags = Fling_90 -Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Psychic-type moves. -#------------------------------- -[INSECTPLATE] -Name = Insect Plate -NamePlural = Insect Plates -Pocket = 1 -Price = 1000 -Flags = Fling_90 -Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Bug-type moves. -#------------------------------- -[STONEPLATE] -Name = Stone Plate -NamePlural = Stone Plates -Pocket = 1 -Price = 1000 -Flags = Fling_90 -Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Rock-type moves. -#------------------------------- -[SPOOKYPLATE] -Name = Spooky Plate -NamePlural = Spooky Plates -Pocket = 1 -Price = 1000 -Flags = Fling_90 -Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Ghost-type moves. -#------------------------------- -[DRACOPLATE] -Name = Draco Plate -NamePlural = Draco Plates -Pocket = 1 -Price = 1000 -Flags = Fling_90 -Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Dragon-type moves. -#------------------------------- -[DREADPLATE] -Name = Dread Plate -NamePlural = Dread Plates -Pocket = 1 -Price = 1000 -Flags = Fling_90 -Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Dark-type moves. -#------------------------------- -[IRONPLATE] -Name = Iron Plate -NamePlural = Iron Plates -Pocket = 1 -Price = 1000 -Flags = Fling_90 -Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Steel-type moves. -#------------------------------- -[PIXIEPLATE] -Name = Pixie Plate -NamePlural = Pixie Plates -Pocket = 1 -Price = 1000 -Flags = Fling_90 -Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Fairy-type moves. -#------------------------------- -[FIREGEM] -Name = Fire Gem -NamePlural = Fire Gems -Pocket = 1 -Price = 200 -Flags = TypeGem -Description = A gem with an essence of fire. When held, it strengthens the power of a Fire-type move only once. -#------------------------------- -[WATERGEM] -Name = Water Gem -NamePlural = Water Gems -Pocket = 1 -Price = 200 -Flags = TypeGem -Description = A gem with an essence of water. When held, it strengthens the power of a Water-type move only once. -#------------------------------- -[ELECTRICGEM] -Name = Electric Gem -NamePlural = Electric Gems -Pocket = 1 -Price = 200 -Flags = TypeGem -Description = A gem with an essence of electricity. When held, it strengthens the power of an Electric-type move only once. -#------------------------------- -[GRASSGEM] -Name = Grass Gem -NamePlural = Grass Gems -Pocket = 1 -Price = 200 -Flags = TypeGem -Description = A gem with an essence of nature. When held, it strengthens the power of a Grass-type move only once. -#------------------------------- -[ICEGEM] -Name = Ice Gem -NamePlural = Ice Gems -Pocket = 1 -Price = 200 -Flags = TypeGem -Description = A gem with an essence of ice. When held, it strengthens the power of an Ice-type move only once. -#------------------------------- -[FIGHTINGGEM] -Name = Fighting Gem -NamePlural = Fighting Gems -Pocket = 1 -Price = 200 -Flags = TypeGem -Description = A gem with an essence of combat. When held, it strengthens the power of a Fighting-type move only once. -#------------------------------- -[POISONGEM] -Name = Poison Gem -NamePlural = Poison Gems -Pocket = 1 -Price = 200 -Flags = TypeGem -Description = A gem with an essence of poison. When held, it strengthens the power of a Poison-type move only once. -#------------------------------- -[GROUNDGEM] -Name = Ground Gem -NamePlural = Ground Gems -Pocket = 1 -Price = 200 -Flags = TypeGem -Description = A gem with an essence of land. When held, it strengthens the power of a Ground-type move only once. -#------------------------------- -[FLYINGGEM] -Name = Flying Gem -NamePlural = Flying Gems -Pocket = 1 -Price = 200 -Flags = TypeGem -Description = A gem with an essence of air. When held, it strengthens the power of a Flying-type move only once. -#------------------------------- -[PSYCHICGEM] -Name = Psychic Gem -NamePlural = Psychic Gems -Pocket = 1 -Price = 200 -Flags = TypeGem -Description = A gem with an essence of the mind. When held, it strengthens the power of a Psychic-type move only once. -#------------------------------- -[BUGGEM] -Name = Bug Gem -NamePlural = Bug Gems -Pocket = 1 -Price = 200 -Flags = TypeGem -Description = A gem with an insect-like essence. When held, it strengthens the power of a Bug-type move only once. -#------------------------------- -[ROCKGEM] -Name = Rock Gem -NamePlural = Rock Gems -Pocket = 1 -Price = 200 -Flags = TypeGem -Description = A gem with an essence of rock. When held, it strengthens the power of a Rock-type move only once. -#------------------------------- -[GHOSTGEM] -Name = Ghost Gem -NamePlural = Ghost Gems -Pocket = 1 -Price = 200 -Flags = TypeGem -Description = A gem with a spectral essence. When held, it strengthens the power of a Ghost-type move only once. -#------------------------------- -[DRAGONGEM] -Name = Dragon Gem -NamePlural = Dragon Gems -Pocket = 1 -Price = 200 -Flags = TypeGem -Description = A gem with a draconic essence. When held, it strengthens the power of a Dragon-type move only once. -#------------------------------- -[DARKGEM] -Name = Dark Gem -NamePlural = Dark Gems -Pocket = 1 -Price = 200 -Flags = TypeGem -Description = A gem with an essence of darkness. When held, it strengthens the power of a Dark-type move only once. -#------------------------------- -[STEELGEM] -Name = Steel Gem -NamePlural = Steel Gems -Pocket = 1 -Price = 200 -Flags = TypeGem -Description = A gem with an essence of steel. When held, it strengthens the power of a Steel-type move only once. -#------------------------------- -[FAIRYGEM] -Name = Fairy Gem -NamePlural = Fairy Gems -Pocket = 1 -Price = 200 -Flags = TypeGem -Description = A gem with an essence of the fey. When held, it strengthens the power of a Fairy-type move only once. -#------------------------------- -[NORMALGEM] -Name = Normal Gem -NamePlural = Normal Gems -Pocket = 1 -Price = 200 -Flags = TypeGem -Description = A gem with an ordinary essence. When held, it strengthens the power of a Normal-type move only once. -#------------------------------- -[LIGHTBALL] -Name = Light Ball -NamePlural = Light Balls -Pocket = 1 -Price = 1000 -Flags = Fling_30 -Description = An item to be held by Pikachu. It is a puzzling orb that raises the Attack and Sp. Atk stat. -#------------------------------- -[LUCKYPUNCH] -Name = Lucky Punch -NamePlural = Lucky Punches -Pocket = 1 -Price = 1000 -BPPrice = 7 -Flags = Fling_40 -Description = An item to be held by Chansey. It is a pair of gloves that boosts Chansey's critical-hit ratio. -#------------------------------- -[METALPOWDER] -Name = Metal Powder -NamePlural = Metal Powders -PortionName = bag of Metal Powder -PortionNamePlural = bags of Metal Powder -Pocket = 1 -Price = 1000 -Flags = Fling_10 -Description = An item to be held by Ditto. Extremely fine yet hard, this odd powder boosts the Defense stat. -#------------------------------- -[QUICKPOWDER] -Name = Quick Powder -NamePlural = Quick Powders -PortionName = bag of Quick Powder -PortionNamePlural = bags of Quick Powder -Pocket = 1 -Price = 1000 -Flags = Fling_10 -Description = An item to be held by Ditto. Extremely fine yet hard, this odd powder boosts the Speed stat. -#------------------------------- -[THICKCLUB] -Name = Thick Club -NamePlural = Thick Clubs -Pocket = 1 -Price = 1000 -Flags = Fling_90 -Description = An item to be held by Cubone or Marowak. It is a hard bone of some sort that boosts the Attack stat. -#------------------------------- -[STICK] -Name = Stick -NamePlural = Sticks -Pocket = 1 -Price = 1000 -Flags = Fling_60 -Description = An item to be held by Farfetch'd. It is a very long and stiff stalk of leek that boosts the critical-hit ratio. -#------------------------------- -[SOULDEW] -Name = Soul Dew -NamePlural = Soul Dews -Pocket = 1 -Price = 0 -Flags = Fling_30 -Description = A wondrous orb to be held by either Latios or Latias. It raises the power of Psychic- and Dragon-type moves. -#------------------------------- -[DEEPSEATOOTH] -Name = Deep Sea Tooth -NamePlural = Deep Sea Teeth -Pocket = 1 -Price = 2000 -BPPrice = 32 -Flags = Fling_90 -Description = An item to be held by Clamperl. A fang that gleams a sharp silver, it raises the Sp. Atk stat. -#------------------------------- -[DEEPSEASCALE] -Name = Deep Sea Scale -NamePlural = Deep Sea Scales -Pocket = 1 -Price = 2000 -BPPrice = 32 -Flags = Fling_30 -Description = An item to be held by Clamperl. A scale that shines a faint pink, it raises the Sp. Def stat. -#------------------------------- -[ADAMANTORB] -Name = Adamant Orb -NamePlural = Adamant Orbs -Pocket = 1 -Price = 10000 -Flags = Fling_60 -Description = A brightly gleaming orb to be held by Dialga. It boosts the power of Dragon- and Steel-type moves. -#------------------------------- -[LUSTROUSORB] -Name = Lustrous Orb -NamePlural = Lustrous Orbs -Pocket = 1 -Price = 10000 -Flags = Fling_60 -Description = A beautifully glowing orb to be held by Palkia. It boosts the power of Dragon- and Water-type moves. -#------------------------------- -[GRISEOUSORB] -Name = Griseous Orb -NamePlural = Griseous Orbs -Pocket = 1 -Price = 10000 -Flags = Fling_60 -Description = A glowing orb to be held by Giratina. It boosts the power of Dragon- and Ghost-type moves. -#------------------------------- -[DOUSEDRIVE] -Name = Douse Drive -NamePlural = Douse Drives -Pocket = 1 -Price = 1000 -Flags = Fling_70 -Description = A cassette to be held by Genesect. It changes Techno Blast to a Water-type move. -#------------------------------- -[SHOCKDRIVE] -Name = Shock Drive -NamePlural = Shock Drives -Pocket = 1 -Price = 1000 -Flags = Fling_70 -Description = A cassette to be held by Genesect. It changes Techno Blast to an Electric-type move. -#------------------------------- -[BURNDRIVE] -Name = Burn Drive -NamePlural = Burn Drives -Pocket = 1 -Price = 1000 -Flags = Fling_70 -Description = A cassette to be held by Genesect. It changes Techno Blast to a Fire-type move. -#------------------------------- -[CHILLDRIVE] -Name = Chill Drive -NamePlural = Chill Drives -Pocket = 1 -Price = 1000 -Flags = Fling_70 -Description = A cassette to be held by Genesect. It changes Techno Blast to an Ice-type move. -#------------------------------- -[FIREMEMORY] -Name = Fire Memory -NamePlural = Fire Memories -Pocket = 1 -Price = 1000 -Flags = Fling_50 -Description = A memory disc containing Fire-type data. It changes the holder's type if held by a certain Pokémon. -#------------------------------- -[WATERMEMORY] -Name = Water Memory -NamePlural = Water Memories -Pocket = 1 -Price = 1000 -Flags = Fling_50 -Description = A memory disc containing Water-type data. It changes the holder's type if held by a certain Pokémon. -#------------------------------- -[ELECTRICMEMORY] -Name = Electric Memory -NamePlural = Electric Memories -Pocket = 1 -Price = 1000 -Flags = Fling_50 -Description = A memory disc containing Electric-type data. It changes the holder's type if held by a certain Pokémon. -#------------------------------- -[GRASSMEMORY] -Name = Grass Memory -NamePlural = Grass Memories -Pocket = 1 -Price = 1000 -Flags = Fling_50 -Description = A memory disc containing Grass-type data. It changes the holder's type if held by a certain Pokémon. -#------------------------------- -[ICEMEMORY] -Name = Ice Memory -NamePlural = Ice Memories -Pocket = 1 -Price = 1000 -Flags = Fling_50 -Description = A memory disc containing Ice-type data. It changes the holder's type if held by a certain Pokémon. -#------------------------------- -[FIGHTINGMEMORY] -Name = Fighting Memory -NamePlural = Fighting Memories -Pocket = 1 -Price = 1000 -Flags = Fling_50 -Description = A memory disc containing Fighting-type data. It changes the holder's type if held by a certain Pokémon. -#------------------------------- -[POISONMEMORY] -Name = Poison Memory -NamePlural = Poison Memories -Pocket = 1 -Price = 1000 -Flags = Fling_50 -Description = A memory disc containing Poison-type data. It changes the holder's type if held by a certain Pokémon. -#------------------------------- -[GROUNDMEMORY] -Name = Ground Memory -NamePlural = Ground Memories -Pocket = 1 -Price = 1000 -Flags = Fling_50 -Description = A memory disc containing Ground-type data. It changes the holder's type if held by a certain Pokémon. -#------------------------------- -[FLYINGMEMORY] -Name = Flying Memory -NamePlural = Flying Memories -Pocket = 1 -Price = 1000 -Flags = Fling_50 -Description = A memory disc containing Flying-type data. It changes the holder's type if held by a certain Pokémon. -#------------------------------- -[PSYCHICMEMORY] -Name = Psychic Memory -NamePlural = Psychic Memories -Pocket = 1 -Price = 1000 -Flags = Fling_50 -Description = A memory disc containing Psychic-type data. It changes the holder's type if held by a certain Pokémon. -#------------------------------- -[BUGMEMORY] -Name = Bug Memory -NamePlural = Bug Memories -Pocket = 1 -Price = 1000 -Flags = Fling_50 -Description = A memory disc containing Bug-type data. It changes the holder's type if held by a certain Pokémon. -#------------------------------- -[ROCKMEMORY] -Name = Rock Memory -NamePlural = Rock Memories -Pocket = 1 -Price = 1000 -Flags = Fling_50 -Description = A memory disc containing Rock-type data. It changes the holder's type if held by a certain Pokémon. -#------------------------------- -[GHOSTMEMORY] -Name = Ghost Memory -NamePlural = Ghost Memories -Pocket = 1 -Price = 1000 -Flags = Fling_50 -Description = A memory disc containing Ghost-type data. It changes the holder's type if held by a certain Pokémon. -#------------------------------- -[DRAGONMEMORY] -Name = Dragon Memory -NamePlural = Dragon Memories -Pocket = 1 -Price = 1000 -Flags = Fling_50 -Description = A memory disc containing Dragon-type data. It changes the holder's type if held by a certain Pokémon. -#------------------------------- -[DARKMEMORY] -Name = Dark Memory -NamePlural = Dark Memories -Pocket = 1 -Price = 1000 -Flags = Fling_50 -Description = A memory disc containing Dark-type data. It changes the holder's type if held by a certain Pokémon. -#------------------------------- -[STEELMEMORY] -Name = Steel Memory -NamePlural = Steel Memories -Pocket = 1 -Price = 1000 -Flags = Fling_50 -Description = A memory disc containing Steel-type data. It changes the holder's type if held by a certain Pokémon. -#------------------------------- -[FAIRYMEMORY] -Name = Fairy Memory -NamePlural = Fairy Memories -Pocket = 1 -Price = 1000 -Flags = Fling_50 -Description = A memory disc containing Fairy-type data. It changes the holder's type if held by a certain Pokémon. -#------------------------------- -[EVERSTONE] -Name = Everstone -NamePlural = Everstones -Pocket = 1 -Price = 3000 -BPPrice = 16 -Flags = Fling_30 -Description = An item to be held by a Pokémon. The Pokémon holding this peculiar stone is prevented from evolving. -#------------------------------- -[DRAGONSCALE] -Name = Dragon Scale -NamePlural = Dragon Scales -Pocket = 1 -Price = 2000 -BPPrice = 32 -Flags = Fling_30 -Description = A thick and tough scale. Dragon-type Pokémon may be holding this item when caught. -#------------------------------- -[UPGRADE] -Name = Upgrade -NamePlural = Upgrades -Pocket = 1 -Price = 2000 -BPPrice = 32 -Flags = Fling_30 -Description = A transparent device filled with all sorts of data. It was produced by Silph Co. -#------------------------------- -[DUBIOUSDISC] -Name = Dubious Disc -NamePlural = Dubious Discs -Pocket = 1 -Price = 2000 -BPPrice = 32 -Flags = Fling_50 -Description = A transparent device overflowing with dubious data. Its producer is unknown. -#------------------------------- -[PROTECTOR] -Name = Protector -NamePlural = Protectors -Pocket = 1 -Price = 2000 -BPPrice = 32 -Flags = Fling_80 -Description = A protective item of some sort. It is extremely stiff and heavy. It is loved by a certain Pokémon. -#------------------------------- -[ELECTIRIZER] -Name = Electirizer -NamePlural = Electirizers -Pocket = 1 -Price = 2000 -BPPrice = 32 -Flags = Fling_80 -Description = A box packed with a tremendous amount of electric energy. It is loved by a certain Pokémon. -#------------------------------- -[MAGMARIZER] -Name = Magmarizer -NamePlural = Magmarizers -Pocket = 1 -Price = 2000 -BPPrice = 32 -Flags = Fling_80 -Description = A box packed with a tremendous amount of magma energy. It is loved by a certain Pokémon. -#------------------------------- -[REAPERCLOTH] -Name = Reaper Cloth -NamePlural = Reaper Cloths -PortionName = scrap of Reaper Cloth -PortionNamePlural = scraps of Reaper Cloth -Pocket = 1 -Price = 2000 -BPPrice = 32 -Flags = Fling_10 -Description = A cloth imbued with horrifyingly strong spiritual energy. It is loved by a certain Pokémon. -#------------------------------- -[PRISMSCALE] -Name = Prism Scale -NamePlural = Prism Scales -Pocket = 1 -Price = 2000 -BPPrice = 32 -Flags = Fling_30 -Description = A mysterious scale that evolves certain Pokémon. It shines in rainbow colors. -#------------------------------- -[OVALSTONE] -Name = Oval Stone -NamePlural = Oval Stones -Pocket = 1 -Price = 2000 -BPPrice = 32 -Flags = Fling_80 -Description = A peculiar stone that makes certain species of Pokémon evolve. It is shaped like an egg. -#------------------------------- -[WHIPPEDDREAM] -Name = Whipped Dream -NamePlural = Whipped Dreams -PortionName = dollop of Whipped Dream -PortionNamePlural = dollops of Whipped Dream -Pocket = 1 -Price = 2000 -BPPrice = 32 -Flags = Fling_80 -Description = A soft and sweet treat made of fluffy, puffy and whirled cream. It's loved by a certain Pokémon. -#------------------------------- -[SACHET] -Name = Sachet -NamePlural = Sachets -Pocket = 1 -Price = 2000 -BPPrice = 32 -Flags = Fling_80 -Description = A sachet filled with slightly overwhelming fragrant perfumes. Yet it's loved by a certain Pokémon. -#------------------------------- -[REDSCARF] -Name = Red Scarf -NamePlural = Red Scarves -Pocket = 1 -Price = 100 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It boosts the Cool aspect of the holder in a Contest. -#------------------------------- -[BLUESCARF] -Name = Blue Scarf -NamePlural = Blue Scarves -Pocket = 1 -Price = 100 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It boosts the Beauty aspect of the holder in a Contest. -#------------------------------- -[PINKSCARF] -Name = Pink Scarf -NamePlural = Pink Scarves -Pocket = 1 -Price = 100 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It boosts the Cute aspect of the holder in a Contest. -#------------------------------- -[GREENSCARF] -Name = Green Scarf -NamePlural = Green Scarves -Pocket = 1 -Price = 100 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It boosts the Smart aspect of the holder in a Contest. -#------------------------------- -[YELLOWSCARF] -Name = Yellow Scarf -NamePlural = Yellow Scarves -Pocket = 1 -Price = 100 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It boosts the Tough aspect of the holder in a Contest. -#------------------------------- -[VENUSAURITE] -Name = Venusaurite -NamePlural = Venusaurites -Pocket = 1 -Price = 0 -BPPrice = 64 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Venusaur hold it, and it will be able to Mega Evolve. -#------------------------------- -[CHARIZARDITEX] -Name = Charizardite X -NamePlural = Charizardite Xs -Pocket = 1 -Price = 0 -BPPrice = 64 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Charizard hold it, and it will be able to Mega Evolve. -#------------------------------- -[CHARIZARDITEY] -Name = Charizardite Y -NamePlural = Charizardite Ys -Pocket = 1 -Price = 0 -BPPrice = 64 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Charizard hold it, and it will be able to Mega Evolve. -#------------------------------- -[BLASTOISINITE] -Name = Blastoisinite -NamePlural = Blastoisinites -Pocket = 1 -Price = 0 -BPPrice = 64 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Blastoise hold it, and it will be able to Mega Evolve. -#------------------------------- -[BEEDRILLITE] -Name = Beedrillite -NamePlural = Beedrillites -Pocket = 1 -Price = 0 -BPPrice = 64 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Beedrill hold it, and it will be able to Mega Evolve. -#------------------------------- -[PIDGEOTITE] -Name = Pidgeotite -NamePlural = Pidgeotites -Pocket = 1 -Price = 0 -BPPrice = 64 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Pidgeot hold it, and it will be able to Mega Evolve. -#------------------------------- -[ALAKAZITE] -Name = Alakazite -NamePlural = Alakazites -Pocket = 1 -Price = 0 -BPPrice = 64 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Alakazam hold it, and it will be able to Mega Evolve. -#------------------------------- -[SLOWBRONITE] -Name = Slowbronite -NamePlural = Slowbronites -Pocket = 1 -Price = 0 -BPPrice = 64 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Slowbro hold it, and it will be able to Mega Evolve. -#------------------------------- -[GENGARITE] -Name = Gengarite -NamePlural = Gengarites -Pocket = 1 -Price = 0 -BPPrice = 64 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Gengar hold it, and it will be able to Mega Evolve. -#------------------------------- -[KANGASKHANITE] -Name = Kangaskhanite -NamePlural = Kangaskhanites -Pocket = 1 -Price = 0 -BPPrice = 64 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Kangaskhan hold it, and it will be able to Mega Evolve. -#------------------------------- -[PINSIRITE] -Name = Pinsirite -NamePlural = Pinsirites -Pocket = 1 -Price = 0 -BPPrice = 64 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Pinsir hold it, and it will be able to Mega Evolve. -#------------------------------- -[GYARADOSITE] -Name = Gyaradosite -NamePlural = Gyaradosites -Pocket = 1 -Price = 0 -BPPrice = 64 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Gyarados hold it, and it will be able to Mega Evolve. -#------------------------------- -[AERODACTYLITE] -Name = Aerodactylite -NamePlural = Aerodactylites -Pocket = 1 -Price = 0 -BPPrice = 64 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Aerodactyl hold it, and it will be able to Mega Evolve. -#------------------------------- -[MEWTWONITEX] -Name = Mewtwonite X -NamePlural = Mewtwonite Xs -Pocket = 1 -Price = 0 -BPPrice = 64 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Mewtwo hold it, and it will be able to Mega Evolve. -#------------------------------- -[MEWTWONITEY] -Name = Mewtwonite Y -NamePlural = Mewtwonite Ys -Pocket = 1 -Price = 0 -BPPrice = 64 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Mewtwo hold it, and it will be able to Mega Evolve. -#------------------------------- -[AMPHAROSITE] -Name = Ampharosite -NamePlural = Ampharosites -Pocket = 1 -Price = 0 -BPPrice = 64 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Ampharos hold it, and it will be able to Mega Evolve. -#------------------------------- -[STEELIXITE] -Name = Steelixite -NamePlural = Steelixites -Pocket = 1 -Price = 0 -BPPrice = 64 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Steelix hold it, and it will be able to Mega Evolve. -#------------------------------- -[SCIZORITE] -Name = Scizorite -NamePlural = Scizorites -Pocket = 1 -Price = 0 -BPPrice = 64 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Scizor hold it, and it will be able to Mega Evolve. -#------------------------------- -[HERACRONITE] -Name = Heracronite -NamePlural = Heracronites -Pocket = 1 -Price = 0 -BPPrice = 64 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Heracross hold it, and it will be able to Mega Evolve. -#------------------------------- -[HOUNDOOMINITE] -Name = Houndoominite -NamePlural = Houndoominites -Pocket = 1 -Price = 0 -BPPrice = 64 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Houndoom hold it, and it will be able to Mega Evolve. -#------------------------------- -[TYRANITARITE] -Name = Tyranitarite -NamePlural = Tyranitarites -Pocket = 1 -Price = 0 -BPPrice = 64 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Tyranitar hold it, and it will be able to Mega Evolve. -#------------------------------- -[SCEPTILITE] -Name = Sceptilite -NamePlural = Sceptilites -Pocket = 1 -Price = 0 -BPPrice = 64 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Sceptile hold it, and it will be able to Mega Evolve. -#------------------------------- -[BLAZIKENITE] -Name = Blazikenite -NamePlural = Blazikenites -Pocket = 1 -Price = 0 -BPPrice = 64 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Blaziken hold it, and it will be able to Mega Evolve. -#------------------------------- -[SWAMPERTITE] -Name = Swampertite -NamePlural = Swampertites -Pocket = 1 -Price = 0 -BPPrice = 64 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Swampert hold it, and it will be able to Mega Evolve. -#------------------------------- -[GARDEVOIRITE] -Name = Gardevoirite -NamePlural = Gardevoirites -Pocket = 1 -Price = 0 -BPPrice = 64 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Gardevoir hold it, and it will be able to Mega Evolve. -#------------------------------- -[SABLENITE] -Name = Sablenite -NamePlural = Sablenites -Pocket = 1 -Price = 0 -BPPrice = 64 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Sableye hold it, and it will be able to Mega Evolve. -#------------------------------- -[MAWILITE] -Name = Mawilite -NamePlural = Mawilites -Pocket = 1 -Price = 0 -BPPrice = 64 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Mawile hold it, and it will be able to Mega Evolve. -#------------------------------- -[AGGRONITE] -Name = Aggronite -NamePlural = Aggronites -Pocket = 1 -Price = 0 -BPPrice = 64 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Aggron hold it, and it will be able to Mega Evolve. -#------------------------------- -[MEDICHAMITE] -Name = Medichamite -NamePlural = Medichamites -Pocket = 1 -Price = 0 -BPPrice = 64 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Medicham hold it, and it will be able to Mega Evolve. -#------------------------------- -[MANECTITE] -Name = Manectite -NamePlural = Manectites -Pocket = 1 -Price = 0 -BPPrice = 64 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Manectric hold it, and it will be able to Mega Evolve. -#------------------------------- -[SHARPEDONITE] -Name = Sharpedonite -NamePlural = Sharpedonites -Pocket = 1 -Price = 0 -BPPrice = 64 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Sharpedo hold it, and it will be able to Mega Evolve. -#------------------------------- -[CAMERUPTITE] -Name = Cameruptite -NamePlural = Cameruptites -Pocket = 1 -Price = 0 -BPPrice = 64 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Camerupt hold it, and it will be able to Mega Evolve. -#------------------------------- -[ALTARIANITE] -Name = Altarianite -NamePlural = Altarianites -Pocket = 1 -Price = 0 -BPPrice = 64 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Altaria hold it, and it will be able to Mega Evolve. -#------------------------------- -[BANETTITE] -Name = Banettite -NamePlural = Banettites -Pocket = 1 -Price = 0 -BPPrice = 64 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Banette hold it, and it will be able to Mega Evolve. -#------------------------------- -[ABSOLITE] -Name = Absolite -NamePlural = Absolites -Pocket = 1 -Price = 0 -BPPrice = 64 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Absol hold it, and it will be able to Mega Evolve. -#------------------------------- -[GLALITITE] -Name = Glalitite -NamePlural = Glalitites -Pocket = 1 -Price = 0 -BPPrice = 64 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Glalie hold it, and it will be able to Mega Evolve. -#------------------------------- -[SALAMENCITE] -Name = Salamencite -NamePlural = Salamencites -Pocket = 1 -Price = 0 -BPPrice = 64 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Salamence hold it, and it will be able to Mega Evolve. -#------------------------------- -[METAGROSSITE] -Name = Metagrossite -NamePlural = Metagrossites -Pocket = 1 -Price = 0 -BPPrice = 64 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Metagross hold it, and it will be able to Mega Evolve. -#------------------------------- -[LATIASITE] -Name = Latiasite -NamePlural = Latiasites -Pocket = 1 -Price = 0 -BPPrice = 64 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Latias hold it, and it will be able to Mega Evolve. -#------------------------------- -[LATIOSITE] -Name = Latiosite -NamePlural = Latiosites -Pocket = 1 -Price = 0 -BPPrice = 64 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Latios hold it, and it will be able to Mega Evolve. -#------------------------------- -[LOPUNNITE] -Name = Lopunnite -NamePlural = Lopunnites -Pocket = 1 -Price = 0 -BPPrice = 64 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Lopunny hold it, and it will be able to Mega Evolve. -#------------------------------- -[GARCHOMPITE] -Name = Garchompite -NamePlural = Garchompites -Pocket = 1 -Price = 0 -BPPrice = 64 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Garchomp hold it, and it will be able to Mega Evolve. -#------------------------------- -[LUCARIONITE] -Name = Lucarionite -NamePlural = Lucarionites -Pocket = 1 -Price = 0 -BPPrice = 64 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Lucario hold it, and it will be able to Mega Evolve. -#------------------------------- -[ABOMASITE] -Name = Abomasite -NamePlural = Abomasites -Pocket = 1 -Price = 0 -BPPrice = 64 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Abomasnow hold it, and it will be able to Mega Evolve. -#------------------------------- -[GALLADITE] -Name = Galladite -NamePlural = Galladites -Pocket = 1 -Price = 0 -BPPrice = 64 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Gallade hold it, and it will be able to Mega Evolve. -#------------------------------- -[AUDINITE] -Name = Audinite -NamePlural = Audinites -Pocket = 1 -Price = 0 -BPPrice = 64 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Audino hold it, and it will be able to Mega Evolve. -#------------------------------- -[DIANCITE] -Name = Diancite -NamePlural = Diancites -Pocket = 1 -Price = 0 -BPPrice = 64 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Diancie hold it, and it will be able to Mega Evolve. -#------------------------------- -[REDORB] -Name = Red Orb -NamePlural = Red Orbs -Pocket = 1 -Price = 0 -BPPrice = 64 -Description = A shiny red orb that is said to have a legend tied to it. It's known to be connected with the Hoenn region. -#------------------------------- -[BLUEORB] -Name = Blue Orb -NamePlural = Blue Orbs -Pocket = 1 -Price = 0 -BPPrice = 64 -Description = A shiny blue orb that is said to have a legend tied to it. It's known to be connected with the Hoenn region. +[GRASSMAIL] +Name = Grass Mail +NamePlural = Grass Mail +PortionName = piece of Grass Mail +PortionNamePlural = pieces of Grass Mail +Pocket = Items +Price = 50 +Flags = IconMail +Description = Stationery featuring a print of a refreshingly green field. Let a Pokémon hold it for delivery. +#------------------------------- +[FLAMEMAIL] +Name = Flame Mail +NamePlural = Flame Mail +PortionName = piece of Flame Mail +PortionNamePlural = pieces of Flame Mail +Pocket = Items +Price = 50 +Flags = IconMail +Description = Stationery featuring a print of flames in blazing red. Let a Pokémon hold it for delivery. +#------------------------------- +[BUBBLEMAIL] +Name = Bubble Mail +NamePlural = Bubble Mail +PortionName = piece of Bubble Mail +PortionNamePlural = pieces of Bubble Mail +Pocket = Items +Price = 50 +Flags = IconMail +Description = Stationery featuring a print of a blue world underwater. Let a Pokémon hold it for delivery. +#------------------------------- +[BLOOMMAIL] +Name = Bloom Mail +NamePlural = Bloom Mail +PortionName = piece of Bloom Mail +PortionNamePlural = pieces of Bloom Mail +Pocket = Items +Price = 50 +Flags = IconMail +Description = Stationery featuring a print of pretty floral patterns. Let a Pokémon hold it for delivery. +#------------------------------- +[TUNNELMAIL] +Name = Tunnel Mail +NamePlural = Tunnel Mail +PortionName = piece of Tunnel Mail +PortionNamePlural = pieces of Tunnel Mail +Pocket = Items +Price = 50 +Flags = IconMail +Description = Stationery featuring a print of a dimly lit coal mine. Let a Pokémon hold it for delivery. +#------------------------------- +[STEELMAIL] +Name = Steel Mail +NamePlural = Steel Mail +PortionName = piece of Steel Mail +PortionNamePlural = pieces of Steel Mail +Pocket = Items +Price = 50 +Flags = IconMail +Description = Stationery featuring a print of cool mechanical designs. Let a Pokémon hold it for delivery. +#------------------------------- +[HEARTMAIL] +Name = Heart Mail +NamePlural = Heart Mail +PortionName = piece of Heart Mail +PortionNamePlural = pieces of Heart Mail +Pocket = Items +Price = 50 +Flags = IconMail +Description = Stationery featuring a print of giant heart patterns. Let a Pokémon hold it for delivery. +#------------------------------- +[SNOWMAIL] +Name = Snow Mail +NamePlural = Snow Mail +PortionName = piece of Snow Mail +PortionNamePlural = pieces of Snow Mail +Pocket = Items +Price = 50 +Flags = IconMail +Description = Stationery featuring a print of a chilly, snow-covered world. Let a Pokémon hold it for delivery. +#------------------------------- +[SPACEMAIL] +Name = Space Mail +NamePlural = Space Mail +PortionName = piece of Space Mail +PortionNamePlural = pieces of Space Mail +Pocket = Items +Price = 50 +Flags = IconMail +Description = Stationery featuring a print depicting the huge expanse of space. Let a Pokémon hold it for delivery. +#------------------------------- +[AIRMAIL] +Name = Air Mail +NamePlural = Air Mail +PortionName = piece of Air Mail +PortionNamePlural = pieces of Air Mail +Pocket = Items +Price = 50 +Flags = IconMail +Description = Stationery featuring a print of colorful letter sets. Let a Pokémon hold it for delivery. +#------------------------------- +[MOSAICMAIL] +Name = Mosaic Mail +NamePlural = Mosaic Mail +PortionName = piece of Mosaic Mail +PortionNamePlural = pieces of Mosaic Mail +Pocket = Items +Price = 50 +Flags = IconMail +Description = Stationery featuring a print of a vivid rainbow pattern. Let a Pokémon hold it for delivery. +#------------------------------- +[BRICKMAIL] +Name = Brick Mail +NamePlural = Brick Mail +PortionName = piece of Brick Mail +PortionNamePlural = pieces of Brick Mail +Pocket = Items +Price = 50 +Flags = IconMail +Description = Stationery featuring a print of a tough-looking brick pattern. Let a Pokémon hold it for delivery. #------------------------------- [POTION] Name = Potion NamePlural = Potions -Pocket = 2 +Pocket = Medicine Price = 200 FieldUse = OnPokemon BattleUse = OnPokemon @@ -2691,7 +769,7 @@ Description = A spray-type medicine for wounds. It restores the HP of one Pokém [SUPERPOTION] Name = Super Potion NamePlural = Super Potions -Pocket = 2 +Pocket = Medicine Price = 700 FieldUse = OnPokemon BattleUse = OnPokemon @@ -2701,7 +779,7 @@ Description = A spray-type medicine for wounds. It restores the HP of one Pokém [HYPERPOTION] Name = Hyper Potion NamePlural = Hyper Potions -Pocket = 2 +Pocket = Medicine Price = 1500 FieldUse = OnPokemon BattleUse = OnPokemon @@ -2711,7 +789,7 @@ Description = A spray-type medicine for wounds. It restores the HP of one Pokém [MAXPOTION] Name = Max Potion NamePlural = Max Potions -Pocket = 2 +Pocket = Medicine Price = 2500 FieldUse = OnPokemon BattleUse = OnPokemon @@ -2721,7 +799,7 @@ Description = A spray-type medicine for wounds. It completely restores the HP of [FULLRESTORE] Name = Full Restore NamePlural = Full Restores -Pocket = 2 +Pocket = Medicine Price = 3000 FieldUse = OnPokemon BattleUse = OnPokemon @@ -2733,7 +811,7 @@ Name = Sacred Ash NamePlural = Sacred Ashes PortionName = bag of Sacred Ash PortionNamePlural = bags of Sacred Ash -Pocket = 2 +Pocket = Medicine Price = 50000 FieldUse = Direct Flags = Fling_30 @@ -2742,7 +820,7 @@ Description = It revives all fainted Pokémon. In doing so, it also fully restor [AWAKENING] Name = Awakening NamePlural = Awakenings -Pocket = 2 +Pocket = Medicine Price = 100 FieldUse = OnPokemon BattleUse = OnPokemon @@ -2752,7 +830,7 @@ Description = A spray-type medicine. It awakens a Pokémon from the clutches of [ANTIDOTE] Name = Antidote NamePlural = Antidotes -Pocket = 2 +Pocket = Medicine Price = 200 FieldUse = OnPokemon BattleUse = OnPokemon @@ -2762,7 +840,7 @@ Description = A spray-type medicine. It lifts the effect of poison from one Pok [BURNHEAL] Name = Burn Heal NamePlural = Burn Heals -Pocket = 2 +Pocket = Medicine Price = 300 FieldUse = OnPokemon BattleUse = OnPokemon @@ -2772,7 +850,7 @@ Description = A spray-type medicine. It heals a single Pokémon that is sufferin [PARALYZEHEAL] Name = Paralyze Heal NamePlural = Paralyze Heals -Pocket = 2 +Pocket = Medicine Price = 300 FieldUse = OnPokemon BattleUse = OnPokemon @@ -2782,7 +860,7 @@ Description = A spray-type medicine. It eliminates paralysis from a single Poké [ICEHEAL] Name = Ice Heal NamePlural = Ice Heals -Pocket = 2 +Pocket = Medicine Price = 100 FieldUse = OnPokemon BattleUse = OnPokemon @@ -2792,7 +870,7 @@ Description = A spray-type medicine. It defrosts a Pokémon that has been frozen [FULLHEAL] Name = Full Heal NamePlural = Full Heals -Pocket = 2 +Pocket = Medicine Price = 400 FieldUse = OnPokemon BattleUse = OnPokemon @@ -2802,7 +880,7 @@ Description = A spray-type medicine. It heals all the status problems of a singl [RAGECANDYBAR] Name = Rage Candy Bar NamePlural = Rage Candy Bars -Pocket = 2 +Pocket = Medicine Price = 350 FieldUse = OnPokemon BattleUse = OnPokemon @@ -2812,7 +890,7 @@ Description = Mahogany Town's famous candy. It can be used once to heal all the [LAVACOOKIE] Name = Lava Cookie NamePlural = Lava Cookies -Pocket = 2 +Pocket = Medicine Price = 350 FieldUse = OnPokemon BattleUse = OnPokemon @@ -2822,7 +900,7 @@ Description = Lavaridge Town's local specialty. It heals all the status problems [OLDGATEAU] Name = Old Gateau NamePlural = Old Gateaux -Pocket = 2 +Pocket = Medicine Price = 350 FieldUse = OnPokemon BattleUse = OnPokemon @@ -2832,7 +910,7 @@ Description = Old Chateau's hidden specialty. It heals all the status problems o [CASTELIACONE] Name = Casteliacone NamePlural = Casteliacones -Pocket = 2 +Pocket = Medicine Price = 350 FieldUse = OnPokemon BattleUse = OnPokemon @@ -2842,7 +920,7 @@ Description = Castelia City's specialty, soft-serve ice cream. It heals all the [LUMIOSEGALETTE] Name = Lumiose Galette NamePlural = Lumiose Galettes -Pocket = 2 +Pocket = Medicine Price = 350 FieldUse = OnPokemon BattleUse = OnPokemon @@ -2852,7 +930,7 @@ Description = A popular treat in Lumiose City. It can be used once to heal all t [SHALOURSABLE] Name = Shalour Sable NamePlural = Shalour Sables -Pocket = 2 +Pocket = Medicine Price = 350 FieldUse = OnPokemon BattleUse = OnPokemon @@ -2862,7 +940,7 @@ Description = Shalour City's famous shortbread. It can be used once to heal all [BIGMALASADA] Name = Big Malasada NamePlural = Big Malasadas -Pocket = 2 +Pocket = Medicine Price = 350 FieldUse = OnPokemon BattleUse = OnPokemon @@ -2872,7 +950,7 @@ Description = The Alola region's specialty--fried bread. It can be used once to [REVIVE] Name = Revive NamePlural = Revives -Pocket = 2 +Pocket = Medicine Price = 2000 FieldUse = OnPokemon BattleUse = OnPokemon @@ -2882,7 +960,7 @@ Description = A medicine that revives a fainted Pokémon. It restores half the P [MAXREVIVE] Name = Max Revive NamePlural = Max Revives -Pocket = 2 +Pocket = Medicine Price = 4000 BPPrice = 24 FieldUse = OnPokemon @@ -2895,7 +973,7 @@ Name = Berry Juice NamePlural = Berry Juices PortionName = cup of Berry Juice PortionNamePlural = cups of Berry Juice -Pocket = 2 +Pocket = Medicine Price = 100 FieldUse = OnPokemon BattleUse = OnPokemon @@ -2905,7 +983,7 @@ Description = A 100% pure juice made of Berries. It restores the HP of one Poké [SWEETHEART] Name = Sweet Heart NamePlural = Sweet Hearts -Pocket = 2 +Pocket = Medicine Price = 3000 FieldUse = OnPokemon BattleUse = OnPokemon @@ -2917,7 +995,7 @@ Name = Fresh Water NamePlural = Fresh Waters PortionName = bottle of Fresh Water PortionNamePlural = bottles of Fresh Water -Pocket = 2 +Pocket = Medicine Price = 200 FieldUse = OnPokemon BattleUse = OnPokemon @@ -2929,7 +1007,7 @@ Name = Soda Pop NamePlural = Soda Pops PortionName = bottle of Soda Pop PortionNamePlural = bottles of Soda Pop -Pocket = 2 +Pocket = Medicine Price = 300 FieldUse = OnPokemon BattleUse = OnPokemon @@ -2941,7 +1019,7 @@ Name = Lemonade NamePlural = Lemonades PortionName = can of Lemonade PortionNamePlural = cans of Lemonade -Pocket = 2 +Pocket = Medicine Price = 350 FieldUse = OnPokemon BattleUse = OnPokemon @@ -2953,7 +1031,7 @@ Name = Moomoo Milk NamePlural = Moomoo Milks PortionName = bottle of Moomoo Milk PortionNamePlural = bottles of Moomoo Milk -Pocket = 2 +Pocket = Medicine Price = 600 FieldUse = OnPokemon BattleUse = OnPokemon @@ -2965,7 +1043,7 @@ Name = Energy Powder NamePlural = Energy Powders PortionName = dose of Energy Powder PortionNamePlural = doses of Energy Powder -Pocket = 2 +Pocket = Medicine Price = 500 FieldUse = OnPokemon BattleUse = OnPokemon @@ -2975,7 +1053,7 @@ Description = A very bitter medicine powder. It restores the HP of one Pokémon [ENERGYROOT] Name = Energy Root NamePlural = Energy Roots -Pocket = 2 +Pocket = Medicine Price = 1200 FieldUse = OnPokemon BattleUse = OnPokemon @@ -2987,7 +1065,7 @@ Name = Heal Powder NamePlural = Heal Powders PortionName = dose of Heal Powder PortionNamePlural = doses of Heal Powder -Pocket = 2 +Pocket = Medicine Price = 300 FieldUse = OnPokemon BattleUse = OnPokemon @@ -2997,7 +1075,7 @@ Description = A very bitter medicine powder. It heals all the status problems of [REVIVALHERB] Name = Revival Herb NamePlural = Revival Herbs -Pocket = 2 +Pocket = Medicine Price = 2800 FieldUse = OnPokemon BattleUse = OnPokemon @@ -3007,7 +1085,7 @@ Description = A very bitter medicinal herb. It revives a fainted Pokémon, fully [ETHER] Name = Ether NamePlural = Ethers -Pocket = 2 +Pocket = Medicine Price = 1200 BPPrice = 4 FieldUse = OnPokemon @@ -3018,7 +1096,7 @@ Description = It restores the PP of a Pokémon's selected move by a maximum of 1 [MAXETHER] Name = Max Ether NamePlural = Max Ethers -Pocket = 2 +Pocket = Medicine Price = 2000 FieldUse = OnPokemon BattleUse = OnMove @@ -3028,7 +1106,7 @@ Description = It fully restores the PP of a single selected move that has been l [ELIXIR] Name = Elixir NamePlural = Elixirs -Pocket = 2 +Pocket = Medicine Price = 3000 FieldUse = OnPokemon BattleUse = OnPokemon @@ -3038,7 +1116,7 @@ Description = It restores the PP of all the moves learned by the targeted Pokém [MAXELIXIR] Name = Max Elixir NamePlural = Max Elixirs -Pocket = 2 +Pocket = Medicine Price = 4500 FieldUse = OnPokemon BattleUse = OnPokemon @@ -3050,7 +1128,7 @@ Name = PP Up NamePlural = PP Ups PortionName = bottle of PP Up PortionNamePlural = bottles of PP Up -Pocket = 2 +Pocket = Medicine Price = 10000 BPPrice = 48 FieldUse = OnPokemon @@ -3062,7 +1140,7 @@ Name = PP Max NamePlural = PP Maxes PortionName = bottle of PP Max PortionNamePlural = bottles of PP Max -Pocket = 2 +Pocket = Medicine Price = 10000 FieldUse = OnPokemon Flags = Fling_30 @@ -3073,7 +1151,7 @@ Name = HP Up NamePlural = HP Ups PortionName = bottle of HP Up PortionNamePlural = bottles of HP Up -Pocket = 2 +Pocket = Medicine Price = 10000 BPPrice = 2 FieldUse = OnPokemon @@ -3085,7 +1163,7 @@ Name = Protein NamePlural = Proteins PortionName = bottle of Protein PortionNamePlural = bottles of Protein -Pocket = 2 +Pocket = Medicine Price = 10000 BPPrice = 2 FieldUse = OnPokemon @@ -3097,7 +1175,7 @@ Name = Iron NamePlural = Irons PortionName = bottle of Iron PortionNamePlural = bottles of Iron -Pocket = 2 +Pocket = Medicine Price = 10000 BPPrice = 2 FieldUse = OnPokemon @@ -3109,7 +1187,7 @@ Name = Calcium NamePlural = Calciums PortionName = bottle of Calcium PortionNamePlural = bottles of Calcium -Pocket = 2 +Pocket = Medicine Price = 10000 BPPrice = 2 FieldUse = OnPokemon @@ -3121,7 +1199,7 @@ Name = Zinc NamePlural = Zincs PortionName = bottle of Zinc PortionNamePlural = bottles of Zinc -Pocket = 2 +Pocket = Medicine Price = 10000 BPPrice = 2 FieldUse = OnPokemon @@ -3133,7 +1211,7 @@ Name = Carbos NamePlural = Carbos PortionName = bottle of Carbos PortionNamePlural = bottles of Carbos -Pocket = 2 +Pocket = Medicine Price = 10000 BPPrice = 2 FieldUse = OnPokemon @@ -3143,7 +1221,7 @@ Description = A nutritious drink for Pokémon. It raises the base Speed stat of [HEALTHWING] Name = Health Wing NamePlural = Health Wings -Pocket = 2 +Pocket = Medicine Price = 300 FieldUse = OnPokemon Flags = Fling_20 @@ -3152,7 +1230,7 @@ Description = An item for use on a Pokémon. It slightly increases the base HP o [MUSCLEWING] Name = Muscle Wing NamePlural = Muscle Wings -Pocket = 2 +Pocket = Medicine Price = 300 FieldUse = OnPokemon Flags = Fling_20 @@ -3161,7 +1239,7 @@ Description = An item for use on a Pokémon. It slightly increases the base Atta [RESISTWING] Name = Resist Wing NamePlural = Resist Wings -Pocket = 2 +Pocket = Medicine Price = 300 FieldUse = OnPokemon Flags = Fling_20 @@ -3170,7 +1248,7 @@ Description = An item for use on a Pokémon. It slightly increases the base Defe [GENIUSWING] Name = Genius Wing NamePlural = Genius Wings -Pocket = 2 +Pocket = Medicine Price = 300 FieldUse = OnPokemon Flags = Fling_20 @@ -3179,7 +1257,7 @@ Description = An item for use on a Pokémon. It slightly increases the base Sp. [CLEVERWING] Name = Clever Wing NamePlural = Clever Wings -Pocket = 2 +Pocket = Medicine Price = 300 FieldUse = OnPokemon Flags = Fling_20 @@ -3188,7 +1266,7 @@ Description = An item for use on a Pokémon. It slightly increases the base Sp. [SWIFTWING] Name = Swift Wing NamePlural = Swift Wings -Pocket = 2 +Pocket = Medicine Price = 300 FieldUse = OnPokemon Flags = Fling_20 @@ -3197,7 +1275,7 @@ Description = An item for use on a Pokémon. It slightly increases the base Spee [ABILITYCAPSULE] Name = Ability Capsule NamePlural = Ability Capsule -Pocket = 2 +Pocket = Medicine Price = 10000 BPPrice = 100 FieldUse = OnPokemon @@ -3206,7 +1284,7 @@ Description = A capsule that allows a Pokémon with two Abilities to switch betw [RARECANDY] Name = Rare Candy NamePlural = Rare Candies -Pocket = 2 +Pocket = Medicine Price = 10000 BPPrice = 48 FieldUse = OnPokemon @@ -3216,7 +1294,7 @@ Description = A candy that is packed with energy. It raises the level of a singl [MASTERBALL] Name = Master Ball NamePlural = Master Balls -Pocket = 3 +Pocket = PokeBalls Price = 0 BattleUse = OnFoe Flags = PokeBall @@ -3225,7 +1303,7 @@ Description = The best Ball with the ultimate level of performance. It will catc [ULTRABALL] Name = Ultra Ball NamePlural = Ultra Balls -Pocket = 3 +Pocket = PokeBalls Price = 800 BattleUse = OnFoe Flags = PokeBall @@ -3234,7 +1312,7 @@ Description = An ultra-performance Ball that provides a higher Pokémon catch ra [GREATBALL] Name = Great Ball NamePlural = Great Balls -Pocket = 3 +Pocket = PokeBalls Price = 600 BattleUse = OnFoe Flags = PokeBall @@ -3243,7 +1321,7 @@ Description = A good, high-performance Ball that provides a higher Pokémon catc [POKEBALL] Name = Poké Ball NamePlural = Poké Balls -Pocket = 3 +Pocket = PokeBalls Price = 200 BattleUse = OnFoe Flags = PokeBall @@ -3252,7 +1330,7 @@ Description = A device for catching wild Pokémon. It is thrown like a ball at t [SAFARIBALL] Name = Safari Ball NamePlural = Safari Balls -Pocket = 3 +Pocket = PokeBalls Price = 0 BattleUse = OnFoe Flags = PokeBall @@ -3261,7 +1339,7 @@ Description = A special Poké Ball that is used only in the Safari Zone. It is d [SPORTBALL] Name = Sport Ball NamePlural = Sport Balls -Pocket = 3 +Pocket = PokeBalls Price = 300 BattleUse = OnFoe Flags = PokeBall @@ -3270,7 +1348,7 @@ Description = A special Poké Ball for the Bug-Catching Contest. [NETBALL] Name = Net Ball NamePlural = Net Balls -Pocket = 3 +Pocket = PokeBalls Price = 1000 BattleUse = OnFoe Flags = PokeBall @@ -3279,7 +1357,7 @@ Description = A somewhat different Poké Ball that works especially well on Wate [DIVEBALL] Name = Dive Ball NamePlural = Dive Balls -Pocket = 3 +Pocket = PokeBalls Price = 1000 BattleUse = OnFoe Flags = PokeBall @@ -3288,7 +1366,7 @@ Description = A somewhat different Poké Ball that works especially well on Pok [NESTBALL] Name = Nest Ball NamePlural = Nest Balls -Pocket = 3 +Pocket = PokeBalls Price = 1000 BattleUse = OnFoe Flags = PokeBall @@ -3297,7 +1375,7 @@ Description = A somewhat different Poké Ball that works especially well on weak [REPEATBALL] Name = Repeat Ball NamePlural = Repeat Balls -Pocket = 3 +Pocket = PokeBalls Price = 1000 BattleUse = OnFoe Flags = PokeBall @@ -3306,7 +1384,7 @@ Description = A somewhat different Poké Ball that works especially well on Pok [TIMERBALL] Name = Timer Ball NamePlural = Timer Balls -Pocket = 3 +Pocket = PokeBalls Price = 1000 BattleUse = OnFoe Flags = PokeBall @@ -3315,7 +1393,7 @@ Description = A somewhat different Ball that becomes progressively better the mo [LUXURYBALL] Name = Luxury Ball NamePlural = Luxury Balls -Pocket = 3 +Pocket = PokeBalls Price = 1000 BattleUse = OnFoe Flags = PokeBall @@ -3324,7 +1402,7 @@ Description = A comfortable Poké Ball that makes a caught wild Pokémon quickly [PREMIERBALL] Name = Premier Ball NamePlural = Premier Balls -Pocket = 3 +Pocket = PokeBalls Price = 20 BattleUse = OnFoe Flags = PokeBall @@ -3333,7 +1411,7 @@ Description = A somewhat rare Poké Ball that has been specially made to commemo [DUSKBALL] Name = Dusk Ball NamePlural = Dusk Balls -Pocket = 3 +Pocket = PokeBalls Price = 1000 BattleUse = OnFoe Flags = PokeBall @@ -3342,7 +1420,7 @@ Description = A somewhat different Poké Ball that makes it easier to catch wild [HEALBALL] Name = Heal Ball NamePlural = Heal Balls -Pocket = 3 +Pocket = PokeBalls Price = 300 BattleUse = OnFoe Flags = PokeBall @@ -3351,7 +1429,7 @@ Description = A remedial Poké Ball that restores the caught Pokémon's HP and e [QUICKBALL] Name = Quick Ball NamePlural = Quick Balls -Pocket = 3 +Pocket = PokeBalls Price = 1000 BattleUse = OnFoe Flags = PokeBall @@ -3360,7 +1438,7 @@ Description = A somewhat different Poké Ball that provides a better catch rate [CHERISHBALL] Name = Cherish Ball NamePlural = Cherish Balls -Pocket = 3 +Pocket = PokeBalls Price = 0 BattleUse = OnFoe Flags = PokeBall @@ -3369,7 +1447,7 @@ Description = A quite rare Poké Ball that has been specially crafted to commemo [FASTBALL] Name = Fast Ball NamePlural = Fast Balls -Pocket = 3 +Pocket = PokeBalls Price = 300 BattleUse = OnFoe Flags = PokeBall @@ -3378,7 +1456,7 @@ Description = A Poké Ball that makes it easier to catch fast Pokémon. [LEVELBALL] Name = Level Ball NamePlural = Level Balls -Pocket = 3 +Pocket = PokeBalls Price = 300 BattleUse = OnFoe Flags = PokeBall @@ -3387,7 +1465,7 @@ Description = A Poké Ball for catching Pokémon that are a lower level than you [LUREBALL] Name = Lure Ball NamePlural = Lure Balls -Pocket = 3 +Pocket = PokeBalls Price = 300 BattleUse = OnFoe Flags = PokeBall @@ -3396,7 +1474,7 @@ Description = A Poké Ball for catching Pokémon hooked by a Rod when fishing. [HEAVYBALL] Name = Heavy Ball NamePlural = Heavy Balls -Pocket = 3 +Pocket = PokeBalls Price = 300 BattleUse = OnFoe Flags = PokeBall @@ -3405,7 +1483,7 @@ Description = A Poké Ball for catching very heavy Pokémon. [LOVEBALL] Name = Love Ball NamePlural = Love Balls -Pocket = 3 +Pocket = PokeBalls Price = 300 BattleUse = OnFoe Flags = PokeBall @@ -3414,7 +1492,7 @@ Description = A Poké Ball for catching Pokémon that are the opposite gender of [FRIENDBALL] Name = Friend Ball NamePlural = Friend Balls -Pocket = 3 +Pocket = PokeBalls Price = 300 BattleUse = OnFoe Flags = PokeBall @@ -3423,7 +1501,7 @@ Description = A Poké Ball that makes caught Pokémon more friendly. [MOONBALL] Name = Moon Ball NamePlural = Moon Balls -Pocket = 3 +Pocket = PokeBalls Price = 300 BattleUse = OnFoe Flags = PokeBall @@ -3432,7 +1510,7 @@ Description = A Poké Ball for catching Pokémon that evolve using the Moon Ston [DREAMBALL] Name = Dream Ball NamePlural = Dream Balls -Pocket = 3 +Pocket = PokeBalls Price = 0 BattleUse = OnFoe Flags = PokeBall @@ -3441,12 +1519,2957 @@ Description = A somewhat different Poké Ball that makes it easier to catch wild [BEASTBALL] Name = Beast Ball NamePlural = Beast Balls -Pocket = 3 +Pocket = PokeBalls Price = 1000 BattleUse = OnFoe Flags = PokeBall Description = A special Poké Ball designed to catch Ultra Beasts. It has a low success rate for catching others. #------------------------------- +[CHERIBERRY] +Name = Cheri Berry +NamePlural = Cheri Berries +Pocket = Berries +Price = 20 +FieldUse = OnPokemon +BattleUse = OnPokemon +Flags = Berry,Fling_10,NaturalGift_FIRE_80 +Description = It may be used or held by a Pokémon to recover from paralysis. +#------------------------------- +[CHESTOBERRY] +Name = Chesto Berry +NamePlural = Chesto Berries +Pocket = Berries +Price = 20 +FieldUse = OnPokemon +BattleUse = OnPokemon +Flags = Berry,Fling_10,NaturalGift_WATER_80 +Description = It may be used or held by a Pokémon to recover from sleep. +#------------------------------- +[PECHABERRY] +Name = Pecha Berry +NamePlural = Pecha Berries +Pocket = Berries +Price = 20 +FieldUse = OnPokemon +BattleUse = OnPokemon +Flags = Berry,Fling_10,NaturalGift_ELECTRIC_80 +Description = It may be used or held by a Pokémon to recover from poison. +#------------------------------- +[RAWSTBERRY] +Name = Rawst Berry +NamePlural = Rawst Berries +Pocket = Berries +Price = 20 +FieldUse = OnPokemon +BattleUse = OnPokemon +Flags = Berry,Fling_10,NaturalGift_GRASS_80 +Description = It may be used or held by a Pokémon to recover from a burn. +#------------------------------- +[ASPEARBERRY] +Name = Aspear Berry +NamePlural = Aspear Berries +Pocket = Berries +Price = 20 +FieldUse = OnPokemon +BattleUse = OnPokemon +Flags = Berry,Fling_10,NaturalGift_ICE_80 +Description = It may be used or held by a Pokémon to defrost it. +#------------------------------- +[LEPPABERRY] +Name = Leppa Berry +NamePlural = Leppa Berries +Pocket = Berries +Price = 20 +FieldUse = OnPokemon +BattleUse = OnMove +Flags = Berry,Fling_10,NaturalGift_FIGHTING_80 +Description = It may be used or held by a Pokémon to restore a move's PP by 10. +#------------------------------- +[ORANBERRY] +Name = Oran Berry +NamePlural = Oran Berries +Pocket = Berries +Price = 20 +FieldUse = OnPokemon +BattleUse = OnPokemon +Flags = Berry,Fling_10,NaturalGift_POISON_80 +Description = It may be used or held by a Pokémon to heal the user by just 10 HP. +#------------------------------- +[PERSIMBERRY] +Name = Persim Berry +NamePlural = Persim Berries +Pocket = Berries +Price = 20 +BattleUse = OnBattler +Flags = Berry,Fling_10,NaturalGift_GROUND_80 +Description = It may be used or held by a Pokémon to recover from confusion. +#------------------------------- +[LUMBERRY] +Name = Lum Berry +NamePlural = Lum Berries +Pocket = Berries +Price = 20 +FieldUse = OnPokemon +BattleUse = OnPokemon +Flags = Berry,Fling_10,NaturalGift_FLYING_80 +Description = It may be used or held by a Pokémon to recover from any status problem. +#------------------------------- +[SITRUSBERRY] +Name = Sitrus Berry +NamePlural = Sitrus Berries +Pocket = Berries +Price = 20 +FieldUse = OnPokemon +BattleUse = OnPokemon +Flags = Berry,Fling_10,NaturalGift_PSYCHIC_80 +Description = It may be used or held by a Pokémon to heal the user's HP a little. +#------------------------------- +[FIGYBERRY] +Name = Figy Berry +NamePlural = Figy Berries +Pocket = Berries +Price = 20 +Flags = Berry,Fling_10,NaturalGift_BUG_80 +Description = If held by a Pokémon, it restores the user's HP in a pinch, but will cause confusion if it hates the taste. +#------------------------------- +[WIKIBERRY] +Name = Wiki Berry +NamePlural = Wiki Berries +Pocket = Berries +Price = 20 +Flags = Berry,Fling_10,NaturalGift_ROCK_80 +Description = If held by a Pokémon, it restores the user's HP in a pinch, but will cause confusion if it hates the taste. +#------------------------------- +[MAGOBERRY] +Name = Mago Berry +NamePlural = Mago Berries +Pocket = Berries +Price = 20 +Flags = Berry,Fling_10,NaturalGift_GHOST_80 +Description = If held by a Pokémon, it restores the user's HP in a pinch, but will cause confusion if it hates the taste. +#------------------------------- +[AGUAVBERRY] +Name = Aguav Berry +NamePlural = Aguav Berries +Pocket = Berries +Price = 20 +Flags = Berry,Fling_10,NaturalGift_DRAGON_80 +Description = If held by a Pokémon, it restores the user's HP in a pinch, but will cause confusion if it hates the taste. +#------------------------------- +[IAPAPABERRY] +Name = Iapapa Berry +NamePlural = Iapapa Berries +Pocket = Berries +Price = 20 +Flags = Berry,Fling_10,NaturalGift_DARK_80 +Description = If held by a Pokémon, it restores the user's HP in a pinch, but will cause confusion if it hates the taste. +#------------------------------- +[RAZZBERRY] +Name = Razz Berry +NamePlural = Razz Berries +Pocket = Berries +Price = 20 +Flags = Berry,Fling_10,NaturalGift_STEEL_80 +Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry. +#------------------------------- +[BLUKBERRY] +Name = Bluk Berry +NamePlural = Bluk Berries +Pocket = Berries +Price = 20 +Flags = Berry,Fling_10,NaturalGift_FIRE_90 +Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry. +#------------------------------- +[NANABBERRY] +Name = Nanab Berry +NamePlural = Nanab Berries +Pocket = Berries +Price = 20 +Flags = Berry,Fling_10,NaturalGift_WATER_90 +Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry. +#------------------------------- +[WEPEARBERRY] +Name = Wepear Berry +NamePlural = Wepear Berries +Pocket = Berries +Price = 20 +Flags = Berry,Fling_10,NaturalGift_ELECTRIC_90 +Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry. +#------------------------------- +[PINAPBERRY] +Name = Pinap Berry +NamePlural = Pinap Berries +Pocket = Berries +Price = 20 +Flags = Berry,Fling_10,NaturalGift_GRASS_90 +Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry. +#------------------------------- +[POMEGBERRY] +Name = Pomeg Berry +NamePlural = Pomeg Berries +Pocket = Berries +Price = 20 +FieldUse = OnPokemon +Flags = Berry,Fling_10,NaturalGift_ICE_90 +Description = Using it on a Pokémon makes it more friendly, but it also lowers its base HP. +#------------------------------- +[KELPSYBERRY] +Name = Kelpsy Berry +NamePlural = Kelpsy Berries +Pocket = Berries +Price = 20 +FieldUse = OnPokemon +Flags = Berry,Fling_10,NaturalGift_FIGHTING_90 +Description = Using it on a Pokémon makes it more friendly, but it also lowers its base Attack stat. +#------------------------------- +[QUALOTBERRY] +Name = Qualot Berry +NamePlural = Qualot Berries +Pocket = Berries +Price = 20 +FieldUse = OnPokemon +Flags = Berry,Fling_10,NaturalGift_POISON_90 +Description = Using it on a Pokémon makes it more friendly, but it also lowers its base Defense stat. +#------------------------------- +[HONDEWBERRY] +Name = Hondew Berry +NamePlural = Hondew Berries +Pocket = Berries +Price = 20 +FieldUse = OnPokemon +Flags = Berry,Fling_10,NaturalGift_GROUND_90 +Description = Using it on a Pokémon makes it more friendly, but it also lowers its base Sp. Atk stat. +#------------------------------- +[GREPABERRY] +Name = Grepa Berry +NamePlural = Grepa Berries +Pocket = Berries +Price = 20 +FieldUse = OnPokemon +Flags = Berry,Fling_10,NaturalGift_FLYING_90 +Description = Using it on a Pokémon makes it more friendly, but it also lowers its base Sp. Def stat. +#------------------------------- +[TAMATOBERRY] +Name = Tamato Berry +NamePlural = Tamato Berries +Pocket = Berries +Price = 20 +FieldUse = OnPokemon +Flags = Berry,Fling_10,NaturalGift_PSYCHIC_90 +Description = Using it on a Pokémon makes it more friendly, but it also lowers its base Speed stat. +#------------------------------- +[CORNNBERRY] +Name = Cornn Berry +NamePlural = Cornn Berries +Pocket = Berries +Price = 20 +Flags = Berry,Fling_10,NaturalGift_BUG_90 +Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry. +#------------------------------- +[MAGOSTBERRY] +Name = Magost Berry +NamePlural = Magost Berries +Pocket = Berries +Price = 20 +Flags = Berry,Fling_10,NaturalGift_ROCK_90 +Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry. +#------------------------------- +[RABUTABERRY] +Name = Rabuta Berry +NamePlural = Rabuta Berries +Pocket = Berries +Price = 20 +Flags = Berry,Fling_10,NaturalGift_GHOST_90 +Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry. +#------------------------------- +[NOMELBERRY] +Name = Nomel Berry +NamePlural = Nomel Berries +Pocket = Berries +Price = 20 +Flags = Berry,Fling_10,NaturalGift_DRAGON_90 +Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry. +#------------------------------- +[SPELONBERRY] +Name = Spelon Berry +NamePlural = Spelon Berries +Pocket = Berries +Price = 20 +Flags = Berry,Fling_10,NaturalGift_DARK_90 +Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry. +#------------------------------- +[PAMTREBERRY] +Name = Pamtre Berry +NamePlural = Pamtre Berries +Pocket = Berries +Price = 20 +Flags = Berry,Fling_10,NaturalGift_STEEL_90 +Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry. +#------------------------------- +[WATMELBERRY] +Name = Watmel Berry +NamePlural = Watmel Berries +Pocket = Berries +Price = 20 +Flags = Berry,Fling_10,NaturalGift_FIRE_100 +Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry. +#------------------------------- +[DURINBERRY] +Name = Durin Berry +NamePlural = Durin Berries +Pocket = Berries +Price = 20 +Flags = Berry,Fling_10,NaturalGift_WATER_100 +Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry. +#------------------------------- +[BELUEBERRY] +Name = Belue Berry +NamePlural = Belue Berries +Pocket = Berries +Price = 20 +Flags = Berry,Fling_10,NaturalGift_ELECTRIC_100 +Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry. +#------------------------------- +[OCCABERRY] +Name = Occa Berry +NamePlural = Occa Berries +Pocket = Berries +Price = 20 +Flags = Berry,Fling_10,NaturalGift_FIRE_80 +Description = Weakens a supereffective Fire-type attack against the holding Pokémon. +#------------------------------- +[PASSHOBERRY] +Name = Passho Berry +NamePlural = Passho Berries +Pocket = Berries +Price = 20 +Flags = Berry,Fling_10,NaturalGift_WATER_80 +Description = Weakens a supereffective Water-type attack against the holding Pokémon. +#------------------------------- +[WACANBERRY] +Name = Wacan Berry +NamePlural = Wacan Berries +Pocket = Berries +Price = 20 +Flags = Berry,Fling_10,NaturalGift_ELECTRIC_80 +Description = Weakens a supereffective Electric-type attack against the holding Pokémon. +#------------------------------- +[RINDOBERRY] +Name = Rindo Berry +NamePlural = Rindo Berries +Pocket = Berries +Price = 20 +Flags = Berry,Fling_10,NaturalGift_GRASS_80 +Description = Weakens a supereffective Grass-type attack against the holding Pokémon. +#------------------------------- +[YACHEBERRY] +Name = Yache Berry +NamePlural = Yache Berries +Pocket = Berries +Price = 20 +Flags = Berry,Fling_10,NaturalGift_ICE_80 +Description = Weakens a supereffective Ice-type attack against the holding Pokémon. +#------------------------------- +[CHOPLEBERRY] +Name = Chople Berry +NamePlural = Chople Berries +Pocket = Berries +Price = 20 +Flags = Berry,Fling_10,NaturalGift_FIGHTING_80 +Description = Weakens a supereffective Fighting-type attack against the holding Pokémon. +#------------------------------- +[KEBIABERRY] +Name = Kebia Berry +NamePlural = Kebia Berries +Pocket = Berries +Price = 20 +Flags = Berry,Fling_10,NaturalGift_POISON_80 +Description = Weakens a supereffective Poison-type attack against the holding Pokémon. +#------------------------------- +[SHUCABERRY] +Name = Shuca Berry +NamePlural = Shuca Berries +Pocket = Berries +Price = 20 +Flags = Berry,Fling_10,NaturalGift_GROUND_80 +Description = Weakens a supereffective Ground-type attack against the holding Pokémon. +#------------------------------- +[COBABERRY] +Name = Coba Berry +NamePlural = Coba Berries +Pocket = Berries +Price = 20 +Flags = Berry,Fling_10,NaturalGift_FLYING_80 +Description = Weakens a supereffective Flying-type attack against the holding Pokémon. +#------------------------------- +[PAYAPABERRY] +Name = Payapa Berry +NamePlural = Payapa Berries +Pocket = Berries +Price = 20 +Flags = Berry,Fling_10,NaturalGift_PSYCHIC_80 +Description = Weakens a supereffective Psychic-type attack against the holding Pokémon. +#------------------------------- +[TANGABERRY] +Name = Tanga Berry +NamePlural = Tanga Berries +Pocket = Berries +Price = 20 +Flags = Berry,Fling_10,NaturalGift_BUG_80 +Description = Weakens a supereffective Bug-type attack against the holding Pokémon. +#------------------------------- +[CHARTIBERRY] +Name = Charti Berry +NamePlural = Charti Berries +Pocket = Berries +Price = 20 +Flags = Berry,Fling_10,NaturalGift_ROCK_80 +Description = Weakens a supereffective Rock-type attack against the holding Pokémon. +#------------------------------- +[KASIBBERRY] +Name = Kasib Berry +NamePlural = Kasib Berries +Pocket = Berries +Price = 20 +Flags = Berry,Fling_10,NaturalGift_GHOST_80 +Description = Weakens a supereffective Ghost-type attack against the holding Pokémon. +#------------------------------- +[HABANBERRY] +Name = Haban Berry +NamePlural = Haban Berries +Pocket = Berries +Price = 20 +Flags = Berry,Fling_10,NaturalGift_DRAGON_80 +Description = Weakens a supereffective Dragon-type attack against the holding Pokémon. +#------------------------------- +[COLBURBERRY] +Name = Colbur Berry +NamePlural = Colbur Berries +Pocket = Berries +Price = 20 +Flags = Berry,Fling_10,NaturalGift_DARK_80 +Description = Weakens a supereffective Dark-type attack against the holding Pokémon. +#------------------------------- +[BABIRIBERRY] +Name = Babiri Berry +NamePlural = Babiri Berries +Pocket = Berries +Price = 20 +Flags = Berry,Fling_10,NaturalGift_STEEL_80 +Description = Weakens a supereffective Steel-type attack against the holding Pokémon. +#------------------------------- +[ROSELIBERRY] +Name = Roseli Berry +NamePlural = Roseli Berries +Pocket = Berries +Price = 20 +Flags = Berry,Fling_10,NaturalGift_FAIRY_80 +Description = If held by a Pokémon, this Berry will lessen the damage taken from one supereffective Fairy-type attack. +#------------------------------- +[CHILANBERRY] +Name = Chilan Berry +NamePlural = Chilan Berries +Pocket = Berries +Price = 20 +Flags = Berry,Fling_10,NaturalGift_NORMAL_80 +Description = Weakens a Normal-type attack against the Pokémon holding this berry. +#------------------------------- +[LIECHIBERRY] +Name = Liechi Berry +NamePlural = Liechi Berries +Pocket = Berries +Price = 20 +Flags = Berry,Fling_10,NaturalGift_GRASS_100 +Description = If held by a Pokémon, it raises its Attack stat in a pinch. +#------------------------------- +[GANLONBERRY] +Name = Ganlon Berry +NamePlural = Ganlon Berries +Pocket = Berries +Price = 20 +Flags = Berry,Fling_10,NaturalGift_ICE_100 +Description = If held by a Pokémon, it raises its Defense stat in a pinch. +#------------------------------- +[SALACBERRY] +Name = Salac Berry +NamePlural = Salac Berries +Pocket = Berries +Price = 20 +Flags = Berry,Fling_10,NaturalGift_FIGHTING_100 +Description = If held by a Pokémon, it raises its Speed stat in a pinch. +#------------------------------- +[PETAYABERRY] +Name = Petaya Berry +NamePlural = Petaya Berries +Pocket = Berries +Price = 20 +Flags = Berry,Fling_10,NaturalGift_POISON_100 +Description = If held by a Pokémon, it raises its Sp. Atk stat in a pinch. +#------------------------------- +[APICOTBERRY] +Name = Apicot Berry +NamePlural = Apicot Berries +Pocket = Berries +Price = 20 +Flags = Berry,Fling_10,NaturalGift_GROUND_100 +Description = If held by a Pokémon, it raises its Sp. Def stat in a pinch. +#------------------------------- +[LANSATBERRY] +Name = Lansat Berry +NamePlural = Lansat Berries +Pocket = Berries +Price = 20 +Flags = Berry,Fling_10,NaturalGift_FLYING_100 +Description = If held by a Pokémon, it raises its critical-hit ratio in a pinch. +#------------------------------- +[STARFBERRY] +Name = Starf Berry +NamePlural = Starf Berries +Pocket = Berries +Price = 20 +Flags = Berry,Fling_10,NaturalGift_PSYCHIC_100 +Description = If held by a Pokémon, it sharply raises one of its stats in a pinch. +#------------------------------- +[ENIGMABERRY] +Name = Enigma Berry +NamePlural = Enigma Berries +Pocket = Berries +Price = 20 +Flags = Berry,Fling_10,NaturalGift_BUG_100 +Description = If held by a Pokémon, it restores its HP if it is hit by any supereffective attack. +#------------------------------- +[MICLEBERRY] +Name = Micle Berry +NamePlural = Micle Berries +Pocket = Berries +Price = 20 +Flags = Berry,Fling_10,NaturalGift_ROCK_100 +Description = If held by a Pokémon, it raises the accuracy of a move just once in a pinch. +#------------------------------- +[CUSTAPBERRY] +Name = Custap Berry +NamePlural = Custap Berries +Pocket = Berries +Price = 20 +Flags = Berry,Fling_10,NaturalGift_GHOST_100 +Description = If held by a Pokémon, it gets to move first just once in a pinch. +#------------------------------- +[JABOCABERRY] +Name = Jaboca Berry +NamePlural = Jaboca Berries +Pocket = Berries +Price = 20 +Flags = Berry,Fling_10,NaturalGift_DRAGON_100 +Description = If held by a Pokémon and a physical attack lands, the attacker also takes damage. +#------------------------------- +[ROWAPBERRY] +Name = Rowap Berry +NamePlural = Rowap Berries +Pocket = Berries +Price = 20 +Flags = Berry,Fling_10,NaturalGift_DARK_100 +Description = If held by a Pokémon and a special attack lands, the attacker also takes damage. +#------------------------------- +[KEEBERRY] +Name = Kee Berry +NamePlural = Kee Berries +Pocket = Berries +Price = 20 +Flags = Berry,Fling_10,NaturalGift_FAIRY_100 +Description = If held by a Pokémon, this Berry will increase the holder's Defense if it's hit with a physical move. +#------------------------------- +[MARANGABERRY] +Name = Maranga Berry +NamePlural = Maranga Berries +Pocket = Berries +Price = 20 +Flags = Berry,Fling_10,NaturalGift_DARK_100 +Description = If held by a Pokémon, this Berry will increase the holder's Sp. Def if it's hit with a special move. +#------------------------------- +[AIRBALLOON] +Name = Air Balloon +NamePlural = Air Balloons +Pocket = HeldItems +Price = 4000 +BPPrice = 32 +Flags = Fling_10 +Description = An item to be held by a Pokémon. The holder will float in the air until hit. Once hit, this item will burst. +#------------------------------- +[BRIGHTPOWDER] +Name = Bright Powder +NamePlural = Bright Powders +PortionName = bag of Bright Powder +PortionNamePlural = bags of Bright Powder +Pocket = HeldItems +Price = 4000 +BPPrice = 48 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It casts a tricky glare that lowers the opponent's accuracy. +#------------------------------- +[EVIOLITE] +Name = Eviolite +NamePlural = Eviolites +Pocket = HeldItems +Price = 4000 +BPPrice = 48 +Flags = Fling_40 +Description = A mysterious evolutionary lump. When held, it raises the Defense and Sp. Def if the holder can still evolve. +#------------------------------- +[FLOATSTONE] +Name = Float Stone +NamePlural = Float Stones +Pocket = HeldItems +Price = 4000 +BPPrice = 48 +Flags = Fling_30 +Description = A very light stone. It reduces the weight of a Pokémon when held. +#------------------------------- +[DESTINYKNOT] +Name = Destiny Knot +NamePlural = Destiny Knots +Pocket = HeldItems +Price = 4000 +BPPrice = 48 +Flags = Fling_10 +Description = A long, thin, bright-red string to be held by a Pokémon. If the holder becomes infatuated, so does the foe. +#------------------------------- +[ROCKYHELMET] +Name = Rocky Helmet +NamePlural = Rocky Helmets +Pocket = HeldItems +Price = 4000 +BPPrice = 48 +Flags = Fling_60 +Description = If the holder of this item takes damage, the attacker will also be damaged upon contact. +#------------------------------- +[ASSAULTVEST] +Name = Assault Vest +NamePlural = Assault Vests +Pocket = HeldItems +Price = 1000 +BPPrice = 48 +Flags = Fling_80 +Description = An item to be held by a Pokémon. This offensive vest raises Sp. Def but prevents the use of status moves. +#------------------------------- +[SAFETYGOGGLES] +Name = Safety Goggles +NamePlural = Safety Goggles +PortionName = pair of Safety Goggles +PortionNamePlural = pairs of Safety Goggles +Pocket = HeldItems +Price = 4000 +BPPrice = 48 +Flags = Fling_80 +Description = An item to be held by a Pokémon. They protect the holder from weather-related damage and powder. +#------------------------------- +[PROTECTIVEPADS] +Name = Protective Pads +NamePlural = Protective Pads +Pocket = HeldItems +Price = 4000 +BPPrice = 48 +Flags = Fling_30 +Description = An item to be held by a Pokémon. They protect the holder from effects caused by making contact. +#------------------------------- +[EJECTBUTTON] +Name = Eject Button +NamePlural = Eject Buttons +Pocket = HeldItems +Price = 4000 +BPPrice = 32 +Flags = Fling_30 +Description = If the holder is hit by an attack, it will switch with another Pokémon in your party. +#------------------------------- +[REDCARD] +Name = Red Card +NamePlural = Red Cards +Pocket = HeldItems +Price = 4000 +BPPrice = 32 +Flags = Fling_10 +Description = A card with a mysterious power. When the holder is struck by a foe, the attacker is removed from battle. +#------------------------------- +[SHEDSHELL] +Name = Shed Shell +NamePlural = Shed Shells +Pocket = HeldItems +Price = 4000 +Flags = Fling_10 +Description = An item to be held by a Pokémon. This discarded carapace lets the holder switch out of battle without fail. +#------------------------------- +[SMOKEBALL] +Name = Smoke Ball +NamePlural = Smoke Balls +Pocket = HeldItems +Price = 4000 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It enables the holder to flee from any wild Pokémon without fail. +#------------------------------- +[LUCKYEGG] +Name = Lucky Egg +NamePlural = Lucky Eggs +Pocket = HeldItems +Price = 10000 +BPPrice = 77 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It is an egg filled with happiness that earns extra Exp. Points in battle. +#------------------------------- +[EXPSHARE] +Name = Exp. Share +NamePlural = Exp. Shares +Pocket = HeldItems +Price = 3000 +Flags = Fling_30 +Description = An item to be held by a Pokémon. The holder gets a share of a battle's Exp. Points without battling. +#------------------------------- +[AMULETCOIN] +Name = Amulet Coin +NamePlural = Amulet Coins +Pocket = HeldItems +Price = 10000 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It doubles a battle's prize money if the holding Pokémon joins in. +#------------------------------- +[SOOTHEBELL] +Name = Soothe Bell +NamePlural = Soothe Bells +Pocket = HeldItems +Price = 4000 +BPPrice = 48 +Flags = Fling_10 +Description = An item to be held by a Pokémon. The comforting chime of this bell calms the holder, making it friendly. +#------------------------------- +[CLEANSETAG] +Name = Cleanse Tag +NamePlural = Cleanse Tags +Pocket = HeldItems +Price = 5000 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It helps keep wild Pokémon away if the holder is the first one in the party. +#------------------------------- +[CHOICEBAND] +Name = Choice Band +NamePlural = Choice Bands +Pocket = HeldItems +Price = 4000 +BPPrice = 48 +Flags = Fling_10 +Description = An item to be held by a Pokémon. This headband ups Attack, but allows the use of only one move. +#------------------------------- +[CHOICESPECS] +Name = Choice Specs +NamePlural = Choice Specs +PortionName = pair of Choice Specs +PortionNamePlural = pairs of Choice Specs +Pocket = HeldItems +Price = 4000 +BPPrice = 48 +Flags = Fling_10 +Description = An item to be held by a Pokémon. These curious glasses boost Sp. Atk but allows the use of only one move. +#------------------------------- +[CHOICESCARF] +Name = Choice Scarf +NamePlural = Choice Scarves +Pocket = HeldItems +Price = 4000 +BPPrice = 48 +Flags = Fling_10 +Description = An item to be held by a Pokémon. This scarf boosts Speed but allows the use of only one move. +#------------------------------- +[HEATROCK] +Name = Heat Rock +NamePlural = Heat Rocks +Pocket = HeldItems +Price = 4000 +BPPrice = 48 +Flags = Fling_60 +Description = A Pokémon held item that extends the duration of the move Sunny Day used by the holder. +#------------------------------- +[DAMPROCK] +Name = Damp Rock +NamePlural = Damp Rocks +Pocket = HeldItems +Price = 4000 +BPPrice = 48 +Flags = Fling_60 +Description = A Pokémon held item that extends the duration of the move Rain Dance used by the holder. +#------------------------------- +[SMOOTHROCK] +Name = Smooth Rock +NamePlural = Smooth Rocks +Pocket = HeldItems +Price = 4000 +BPPrice = 48 +Flags = Fling_10 +Description = A Pokémon held item that extends the duration of the move Sandstorm used by the holder. +#------------------------------- +[ICYROCK] +Name = Icy Rock +NamePlural = Icy Rocks +Pocket = HeldItems +Price = 4000 +BPPrice = 48 +Flags = Fling_40 +Description = A Pokémon held item that extends the duration of the move Hail used by the holder. +#------------------------------- +[TERRAINEXTENDER] +Name = Terrain Extender +NamePlural = Terrain Extenders +Pocket = HeldItems +Price = 4000 +BPPrice = 48 +Flags = Fling_60 +Description = An item to be held by a Pokémon. It extends the duration of the terrain caused by the holder. +#------------------------------- +[LIGHTCLAY] +Name = Light Clay +NamePlural = Light Clays +PortionName = lump of Light Clay +PortionNamePlural = lumps of Light Clay +Pocket = HeldItems +Price = 4000 +BPPrice = 48 +Flags = Fling_30 +Description = An item to be held by a Pokémon. Protective moves like Light Screen and Reflect will be effective longer. +#------------------------------- +[GRIPCLAW] +Name = Grip Claw +NamePlural = Grip Claws +Pocket = HeldItems +Price = 4000 +BPPrice = 48 +Flags = Fling_90 +Description = A Pokémon held item that extends the duration of multiturn attacks like Bind and Wrap. +#------------------------------- +[BINDINGBAND] +Name = Binding Band +NamePlural = Binding Bands +Pocket = HeldItems +Price = 4000 +BPPrice = 48 +Flags = Fling_30 +Description = A band that increases the power of binding moves when held. +#------------------------------- +[BIGROOT] +Name = Big Root +NamePlural = Big Roots +Pocket = HeldItems +Price = 4000 +BPPrice = 24 +Flags = Fling_10 +Description = A Pokémon held item that boosts the power of HP-stealing moves to let the holder recover more HP. +#------------------------------- +[BLACKSLUDGE] +Name = Black Sludge +NamePlural = Black Sludges +PortionName = blob of Black Sludge +PortionNamePlural = blobs of Black Sludge +Pocket = HeldItems +Price = 4000 +BPPrice = 48 +Flags = Fling_30 +Description = A held item that gradually restores the HP of Poison-type Pokémon. It inflicts damage on all other types. +#------------------------------- +[LEFTOVERS] +Name = Leftovers +NamePlural = Leftovers +PortionName = serving of Leftovers +PortionNamePlural = servings of Leftovers +Pocket = HeldItems +Price = 4000 +BPPrice = 48 +Flags = Fling_10 +Description = An item to be held by a Pokémon. The holder's HP is gradually restored during battle. +#------------------------------- +[SHELLBELL] +Name = Shell Bell +NamePlural = Shell Bells +Pocket = HeldItems +Price = 4000 +BPPrice = 48 +Flags = Fling_30 +Description = An item to be held by a Pokémon. The holder's HP is restored a little every time it inflicts damage. +#------------------------------- +[MENTALHERB] +Name = Mental Herb +NamePlural = Mental Herbs +Pocket = HeldItems +Price = 4000 +BPPrice = 24 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It snaps the holder out of infatuation. It can be used only once. +#------------------------------- +[WHITEHERB] +Name = White Herb +NamePlural = White Herbs +Pocket = HeldItems +Price = 4000 +BPPrice = 24 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It restores any lowered stat in battle. It can be used only once. +#------------------------------- +[POWERHERB] +Name = Power Herb +NamePlural = Power Herbs +Pocket = HeldItems +Price = 4000 +BPPrice = 24 +Flags = Fling_10 +Description = A single-use item to be held by a Pokémon. It allows the immediate use of a move that charges up first. +#------------------------------- +[ABSORBBULB] +Name = Absorb Bulb +NamePlural = Absorb Bulbs +Pocket = HeldItems +Price = 4000 +BPPrice = 24 +Flags = Fling_30 +Description = A consumable bulb. If the holder is hit by a Water-type move, its Sp. Atk will rise. +#------------------------------- +[CELLBATTERY] +Name = Cell Battery +NamePlural = Cell Batteries +Pocket = HeldItems +Price = 4000 +BPPrice = 24 +Flags = Fling_30 +Description = A consumable battery. If the holder is hit by an Electric-type move, its Attack will rise. +#------------------------------- +[LUMINOUSMOSS] +Name = Luminous Moss +NamePlural = Luminous Moss +PortionName = clump of Luminous Moss +PortionNamePlural = clumps of Luminous Moss +Pocket = HeldItems +Price = 4000 +BPPrice = 24 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It boosts Sp. Def if hit by a Water-type attack. It can only be used once. +#------------------------------- +[SNOWBALL] +Name = Snowball +NamePlural = Snowballs +Pocket = HeldItems +Price = 4000 +BPPrice = 24 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It boosts Attack if hit by an Ice-type attack. It can only be used once. +#------------------------------- +[WEAKNESSPOLICY] +Name = Weakness Policy +NamePlural = Weakness Policies +Pocket = HeldItems +Price = 1000 +BPPrice = 32 +Flags = Fling_80 +Description = An item to be held by a Pokémon. The holder's Attack and Sp. Atk sharply increase if hit by a move it's weak to. +#------------------------------- +[ADRENALINEORB] +Name = Adrenaline Orb +NamePlural = Adrenaline Orbs +Pocket = HeldItems +Price = 300 +BPPrice = 24 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It boosts Speed when intimidated. It can be used only once. +#------------------------------- +[ELECTRICSEED] +Name = Electric Seed +NamePlural = Electric Seeds +Pocket = HeldItems +Price = 4000 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It boosts Defense on Electric Terrain. It can only be used once. +#------------------------------- +[GRASSYSEED] +Name = Grassy Seed +NamePlural = Grassy Seeds +Pocket = HeldItems +Price = 4000 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It boosts Defense on Grassy Terrain. It can only be used once. +#------------------------------- +[MISTYSEED] +Name = Misty Seed +NamePlural = Misty Seeds +Pocket = HeldItems +Price = 4000 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It boosts Sp. Def on Misty Terrain. It can only be used once. +#------------------------------- +[PSYCHICSEED] +Name = Psychic Seed +NamePlural = Psychic Seeds +Pocket = HeldItems +Price = 4000 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It boosts Sp. Def on Psychic Terrain. It can only be used once. +#------------------------------- +[LIFEORB] +Name = Life Orb +NamePlural = Life Orbs +Pocket = HeldItems +Price = 4000 +BPPrice = 48 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It boosts the power of moves, but at the cost of some HP on each hit. +#------------------------------- +[EXPERTBELT] +Name = Expert Belt +NamePlural = Expert Belts +Pocket = HeldItems +Price = 4000 +BPPrice = 48 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It is a well-worn belt that slightly boosts the power of supereffective moves. +#------------------------------- +[METRONOME] +Name = Metronome +NamePlural = Metronomes +Pocket = HeldItems +Price = 4000 +BPPrice = 48 +Flags = Fling_30 +Description = A Pokémon held item that boosts a move used consecutively. Its effect is reset if another move is used. +#------------------------------- +[MUSCLEBAND] +Name = Muscle Band +NamePlural = Muscle Bands +Pocket = HeldItems +Price = 4000 +BPPrice = 48 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It is a headband that slightly boosts the power of physical moves. +#------------------------------- +[WISEGLASSES] +Name = Wise Glasses +NamePlural = Wise Glasses +PortionName = pair of Wise Glasses +PortionNamePlural = pairs of Wise Glasses +Pocket = HeldItems +Price = 4000 +BPPrice = 48 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It is a thick pair of glasses that slightly boosts the power of special moves. +#------------------------------- +[RAZORCLAW] +Name = Razor Claw +NamePlural = Razor Claws +Pocket = HeldItems +Price = 5000 +BPPrice = 32 +Flags = Fling_80 +Description = An item to be held by a Pokémon. It is a sharply hooked claw that ups the holder's critical-hit ratio. +#------------------------------- +[SCOPELENS] +Name = Scope Lens +NamePlural = Scope Lenses +Pocket = HeldItems +Price = 4000 +BPPrice = 48 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It is a lens that boosts the holder's critical-hit ratio. +#------------------------------- +[WIDELENS] +Name = Wide Lens +NamePlural = Wide Lenses +Pocket = HeldItems +Price = 4000 +BPPrice = 48 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It is a magnifying lens that slightly boosts the accuracy of moves. +#------------------------------- +[ZOOMLENS] +Name = Zoom Lens +NamePlural = Zoom Lenses +Pocket = HeldItems +Price = 4000 +BPPrice = 48 +Flags = Fling_10 +Description = An item to be held by a Pokémon. If the holder moves after its target, its accuracy will be boosted. +#------------------------------- +[KINGSROCK] +Name = King's Rock +NamePlural = King's Rocks +Pocket = HeldItems +Price = 5000 +BPPrice = 32 +Flags = Fling_30 +Description = An item to be held by a Pokémon. When the holder inflicts damage, the target may flinch. +#------------------------------- +[RAZORFANG] +Name = Razor Fang +NamePlural = Razor Fangs +Pocket = HeldItems +Price = 5000 +BPPrice = 32 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It may make foes and allies flinch when the holder inflicts damage. +#------------------------------- +[LAGGINGTAIL] +Name = Lagging Tail +NamePlural = Lagging Tails +Pocket = HeldItems +Price = 4000 +BPPrice = 48 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It is tremendously heavy and makes the holder move slower than usual. +#------------------------------- +[QUICKCLAW] +Name = Quick Claw +NamePlural = Quick Claws +Pocket = HeldItems +Price = 4000 +BPPrice = 48 +Flags = Fling_80 +Description = An item to be held by a Pokémon. A light, sharp claw that lets the bearer move first occasionally. +#------------------------------- +[FOCUSBAND] +Name = Focus Band +NamePlural = Focus Bands +Pocket = HeldItems +Price = 4000 +BPPrice = 32 +Flags = Fling_10 +Description = An item to be held by a Pokémon. The holder may endure a potential KO attack, leaving it with just 1 HP. +#------------------------------- +[FOCUSSASH] +Name = Focus Sash +NamePlural = Focus Sashes +Pocket = HeldItems +Price = 4000 +BPPrice = 32 +Flags = Fling_10 +Description = An item to be held by a Pokémon. If it has full HP, the holder will endure one potential KO attack, leaving 1 HP. +#------------------------------- +[FLAMEORB] +Name = Flame Orb +NamePlural = Flame Orbs +Pocket = HeldItems +Price = 4000 +BPPrice = 16 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It is a bizarre orb that inflicts a burn on the holder in battle. +#------------------------------- +[TOXICORB] +Name = Toxic Orb +NamePlural = Toxic Orbs +Pocket = HeldItems +Price = 4000 +BPPrice = 16 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It is a bizarre orb that badly poisons the holder in battle. +#------------------------------- +[STICKYBARB] +Name = Sticky Barb +NamePlural = Sticky Barbs +Pocket = HeldItems +Price = 4000 +BPPrice = 16 +Flags = Fling_80 +Description = A held item that damages the holder on every turn. It may latch on to Pokémon that touch the holder. +#------------------------------- +[IRONBALL] +Name = Iron Ball +NamePlural = Iron Balls +Pocket = HeldItems +Price = 4000 +BPPrice = 16 +Flags = Fling_130 +Description = A Pokémon held item that cuts Speed. It makes Flying-type and levitating holders susceptible to Ground moves. +#------------------------------- +[RINGTARGET] +Name = Ring Target +NamePlural = Ring Targets +Pocket = HeldItems +Price = 4000 +BPPrice = 16 +Flags = Fling_10 +Description = Moves that would otherwise have no effect will land on the Pokémon that holds it. +#------------------------------- +[MACHOBRACE] +Name = Macho Brace +NamePlural = Macho Braces +Pocket = HeldItems +Price = 3000 +BPPrice = 16 +Flags = Fling_60 +Description = An item to be held by a Pokémon. It is a stiff, heavy brace that promotes strong growth but lowers Speed. +#------------------------------- +[POWERWEIGHT] +Name = Power Weight +NamePlural = Power Weights +Pocket = HeldItems +Price = 3000 +BPPrice = 16 +Flags = Fling_70 +Description = A Pokémon held item that promotes HP gain on leveling, but reduces the Speed stat. +#------------------------------- +[POWERBRACER] +Name = Power Bracer +NamePlural = Power Bracers +Pocket = HeldItems +Price = 3000 +BPPrice = 16 +Flags = Fling_70 +Description = A Pokémon held item that promotes Attack gain on leveling, but reduces the Speed stat. +#------------------------------- +[POWERBELT] +Name = Power Belt +NamePlural = Power Belts +Pocket = HeldItems +Price = 3000 +BPPrice = 16 +Flags = Fling_70 +Description = A Pokémon held item that promotes Defense gain on leveling, but reduces the Speed stat. +#------------------------------- +[POWERLENS] +Name = Power Lens +NamePlural = Power Lenses +Pocket = HeldItems +Price = 3000 +BPPrice = 16 +Flags = Fling_70 +Description = A Pokémon held item that promotes Sp. Atk gain on leveling, but reduces the Speed stat. +#------------------------------- +[POWERBAND] +Name = Power Band +NamePlural = Power Bands +Pocket = HeldItems +Price = 3000 +BPPrice = 16 +Flags = Fling_70 +Description = A Pokémon held item that promotes Sp. Def gain on leveling, but reduces the Speed stat. +#------------------------------- +[POWERANKLET] +Name = Power Anklet +NamePlural = Power Anklets +Pocket = HeldItems +Price = 3000 +BPPrice = 16 +Flags = Fling_70 +Description = A Pokémon held item that promotes Speed gain on leveling, but reduces the Speed stat. +#------------------------------- +[LAXINCENSE] +Name = Lax Incense +NamePlural = Lax Incenses +PortionName = jar of Lax Incense +PortionNamePlural = jars of Lax Incense +Pocket = HeldItems +Price = 5000 +Flags = Fling_10 +Description = An item to be held by a Pokémon. The tricky aroma of this incense may make attacks miss the holder. +#------------------------------- +[FULLINCENSE] +Name = Full Incense +NamePlural = Full Incenses +PortionName = jar of Full Incense +PortionNamePlural = jars of Full Incense +Pocket = HeldItems +Price = 5000 +Flags = Fling_10 +Description = An item to be held by a Pokémon. This exotic-smelling incense makes the holder bloated and slow moving. +#------------------------------- +[LUCKINCENSE] +Name = Luck Incense +NamePlural = Luck Incenses +PortionName = jar of Luck Incense +PortionNamePlural = jars of Luck Incense +Pocket = HeldItems +Price = 11000 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It doubles a battle's prize money if the holding Pokémon joins in. +#------------------------------- +[PUREINCENSE] +Name = Pure Incense +NamePlural = Pure Incenses +PortionName = jar of Pure Incense +PortionNamePlural = jars of Pure Incense +Pocket = HeldItems +Price = 6000 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It helps keep wild Pokémon away if the holder is the first one in the party. +#------------------------------- +[SEAINCENSE] +Name = Sea Incense +NamePlural = Sea Incenses +PortionName = jar of Sea Incense +PortionNamePlural = jars of Sea Incense +Pocket = HeldItems +Price = 2000 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It has a curious aroma that boosts the power of Water-type moves. +#------------------------------- +[WAVEINCENSE] +Name = Wave Incense +NamePlural = Wave Incenses +PortionName = jar of Wave Incense +PortionNamePlural = jars of Wave Incense +Pocket = HeldItems +Price = 2000 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It has a curious aroma that boosts the power of Water-type moves. +#------------------------------- +[ROSEINCENSE] +Name = Rose Incense +NamePlural = Rose Incenses +PortionName = jar of Rose Incense +PortionNamePlural = jars of Rose Incense +Pocket = HeldItems +Price = 2000 +Flags = Fling_10 +Description = An item to be held by a Pokémon. This exotic-smelling incense boosts the power of Grass-type moves. +#------------------------------- +[ODDINCENSE] +Name = Odd Incense +NamePlural = Odd Incenses +PortionName = jar of Odd Incense +PortionNamePlural = jars of Odd Incense +Pocket = HeldItems +Price = 2000 +Flags = Fling_10 +Description = An item to be held by a Pokémon. This exotic-smelling incense boosts the power of Psychic-type moves. +#------------------------------- +[ROCKINCENSE] +Name = Rock Incense +NamePlural = Rock Incenses +PortionName = jar of Rock Incense +PortionNamePlural = jars of Rock Incense +Pocket = HeldItems +Price = 2000 +Flags = Fling_10 +Description = An item to be held by a Pokémon. This exotic-smelling incense boosts the power of Rock-type moves. +#------------------------------- +[CHARCOAL] +Name = Charcoal +NamePlural = Charcoals +PortionName = piece of Charcoal +PortionNamePlural = pieces of Charcoal +Pocket = HeldItems +Price = 1000 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It is a combustible fuel that boosts the power of Fire-type moves. +#------------------------------- +[MYSTICWATER] +Name = Mystic Water +NamePlural = Mystic Waters +Pocket = HeldItems +Price = 1000 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It is a teardrop-shaped gem that ups the power of Water-type moves. +#------------------------------- +[MAGNET] +Name = Magnet +NamePlural = Magnets +Pocket = HeldItems +Price = 1000 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It is a powerful magnet that boosts the power of Electric-type moves. +#------------------------------- +[MIRACLESEED] +Name = Miracle Seed +NamePlural = Miracle Seeds +Pocket = HeldItems +Price = 1000 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It is a seed imbued with life that ups the power of Grass-type moves. +#------------------------------- +[NEVERMELTICE] +Name = Never-Melt Ice +NamePlural = Never-Melt Ices +PortionName = piece of Never-Melt Ice +PortionNamePlural = pieces of Never-Melt Ice +Pocket = HeldItems +Price = 1000 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It is a piece of ice that repels heat and boosts Ice-type moves. +#------------------------------- +[BLACKBELT] +Name = Black Belt +NamePlural = Black Belts +Pocket = HeldItems +Price = 1000 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It is a belt that boosts determination and Fighting-type moves. +#------------------------------- +[POISONBARB] +Name = Poison Barb +NamePlural = Poison Barbs +Pocket = HeldItems +Price = 1000 +Flags = Fling_70 +Description = An item to be held by a Pokémon. It is a small, poisonous barb that ups the power of Poison-type moves. +#------------------------------- +[SOFTSAND] +Name = Soft Sand +NamePlural = Soft Sand +PortionName = bag of Soft Sand +PortionNamePlural = bags of Soft Sand +Pocket = HeldItems +Price = 1000 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It is a loose, silky sand that boosts the power of Ground-type moves. +#------------------------------- +[SHARPBEAK] +Name = Sharp Beak +NamePlural = Sharp Beaks +Pocket = HeldItems +Price = 1000 +Flags = Fling_50 +Description = An item to be held by a Pokémon. It is a long, sharp beak that boosts the power of Flying-type moves. +#------------------------------- +[TWISTEDSPOON] +Name = Twisted Spoon +NamePlural = Twisted Spoons +Pocket = HeldItems +Price = 1000 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It is a spoon imbued with telekinetic power that boosts Psychic-type moves. +#------------------------------- +[SILVERPOWDER] +Name = Silver Powder +NamePlural = Silver Powders +PortionName = pile of Silver Powder +PortionNamePlural = piles of Silver Powder +Pocket = HeldItems +Price = 1000 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It is a shiny, silver powder that ups the power of Bug-type moves. +#------------------------------- +[HARDSTONE] +Name = Hard Stone +NamePlural = Hard Stones +Pocket = HeldItems +Price = 1000 +Flags = Fling_100 +Description = An item to be held by a Pokémon. It is an unbreakable stone that ups the power of Rock-type moves. +#------------------------------- +[SPELLTAG] +Name = Spell Tag +NamePlural = Spell Tags +Pocket = HeldItems +Price = 1000 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It is a sinister, eerie tag that boosts the power of Ghost-type moves. +#------------------------------- +[DRAGONFANG] +Name = Dragon Fang +NamePlural = Dragon Fangs +Pocket = HeldItems +Price = 1000 +Flags = Fling_70 +Description = An item to be held by a Pokémon. It is a hard and sharp fang that ups the power of Dragon-type moves. +#------------------------------- +[BLACKGLASSES] +Name = Black Glasses +NamePlural = Black Glasses +PortionName = pair of Black Glasses +PortionNamePlural = pairs of Black Glasses +Pocket = HeldItems +Price = 1000 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It is a shady-looking pair of glasses that boosts Dark-type moves. +#------------------------------- +[METALCOAT] +Name = Metal Coat +NamePlural = Metal Coats +Pocket = HeldItems +Price = 2000 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It is a special metallic film that ups the power of Steel-type moves. +#------------------------------- +[SILKSCARF] +Name = Silk Scarf +NamePlural = Silk Scarves +Pocket = HeldItems +Price = 1000 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It is a sumptuous scarf that boosts the power of Normal-type moves. +#------------------------------- +[FLAMEPLATE] +Name = Flame Plate +NamePlural = Flame Plates +Pocket = HeldItems +Price = 1000 +Flags = Fling_90 +Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Fire-type moves. +#------------------------------- +[SPLASHPLATE] +Name = Splash Plate +NamePlural = Splash Plates +Pocket = HeldItems +Price = 1000 +Flags = Fling_90 +Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Water-type moves. +#------------------------------- +[ZAPPLATE] +Name = Zap Plate +NamePlural = Zap Plates +Pocket = HeldItems +Price = 1000 +Flags = Fling_90 +Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Electric-type moves. +#------------------------------- +[MEADOWPLATE] +Name = Meadow Plate +NamePlural = Meadow Plates +Pocket = HeldItems +Price = 1000 +Flags = Fling_90 +Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Grass-type moves. +#------------------------------- +[ICICLEPLATE] +Name = Icicle Plate +NamePlural = Icicle Plates +Pocket = HeldItems +Price = 1000 +Flags = Fling_90 +Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Ice-type moves. +#------------------------------- +[FISTPLATE] +Name = Fist Plate +NamePlural = Fist Plates +Pocket = HeldItems +Price = 1000 +Flags = Fling_90 +Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Fighting-type moves. +#------------------------------- +[TOXICPLATE] +Name = Toxic Plate +NamePlural = Toxic Plates +Pocket = HeldItems +Price = 1000 +Flags = Fling_90 +Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Poison-type moves. +#------------------------------- +[EARTHPLATE] +Name = Earth Plate +NamePlural = Earth Plates +Pocket = HeldItems +Price = 1000 +Flags = Fling_90 +Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Ground-type moves. +#------------------------------- +[SKYPLATE] +Name = Sky Plate +NamePlural = Sky Plates +Pocket = HeldItems +Price = 1000 +Flags = Fling_90 +Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Flying-type moves. +#------------------------------- +[MINDPLATE] +Name = Mind Plate +NamePlural = Mind Plates +Pocket = HeldItems +Price = 1000 +Flags = Fling_90 +Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Psychic-type moves. +#------------------------------- +[INSECTPLATE] +Name = Insect Plate +NamePlural = Insect Plates +Pocket = HeldItems +Price = 1000 +Flags = Fling_90 +Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Bug-type moves. +#------------------------------- +[STONEPLATE] +Name = Stone Plate +NamePlural = Stone Plates +Pocket = HeldItems +Price = 1000 +Flags = Fling_90 +Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Rock-type moves. +#------------------------------- +[SPOOKYPLATE] +Name = Spooky Plate +NamePlural = Spooky Plates +Pocket = HeldItems +Price = 1000 +Flags = Fling_90 +Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Ghost-type moves. +#------------------------------- +[DRACOPLATE] +Name = Draco Plate +NamePlural = Draco Plates +Pocket = HeldItems +Price = 1000 +Flags = Fling_90 +Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Dragon-type moves. +#------------------------------- +[DREADPLATE] +Name = Dread Plate +NamePlural = Dread Plates +Pocket = HeldItems +Price = 1000 +Flags = Fling_90 +Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Dark-type moves. +#------------------------------- +[IRONPLATE] +Name = Iron Plate +NamePlural = Iron Plates +Pocket = HeldItems +Price = 1000 +Flags = Fling_90 +Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Steel-type moves. +#------------------------------- +[PIXIEPLATE] +Name = Pixie Plate +NamePlural = Pixie Plates +Pocket = HeldItems +Price = 1000 +Flags = Fling_90 +Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Fairy-type moves. +#------------------------------- +[FIREGEM] +Name = Fire Gem +NamePlural = Fire Gems +Pocket = HeldItems +Price = 200 +Flags = TypeGem +Description = A gem with an essence of fire. When held, it strengthens the power of a Fire-type move only once. +#------------------------------- +[WATERGEM] +Name = Water Gem +NamePlural = Water Gems +Pocket = HeldItems +Price = 200 +Flags = TypeGem +Description = A gem with an essence of water. When held, it strengthens the power of a Water-type move only once. +#------------------------------- +[ELECTRICGEM] +Name = Electric Gem +NamePlural = Electric Gems +Pocket = HeldItems +Price = 200 +Flags = TypeGem +Description = A gem with an essence of electricity. When held, it strengthens the power of an Electric-type move only once. +#------------------------------- +[GRASSGEM] +Name = Grass Gem +NamePlural = Grass Gems +Pocket = HeldItems +Price = 200 +Flags = TypeGem +Description = A gem with an essence of nature. When held, it strengthens the power of a Grass-type move only once. +#------------------------------- +[ICEGEM] +Name = Ice Gem +NamePlural = Ice Gems +Pocket = HeldItems +Price = 200 +Flags = TypeGem +Description = A gem with an essence of ice. When held, it strengthens the power of an Ice-type move only once. +#------------------------------- +[FIGHTINGGEM] +Name = Fighting Gem +NamePlural = Fighting Gems +Pocket = HeldItems +Price = 200 +Flags = TypeGem +Description = A gem with an essence of combat. When held, it strengthens the power of a Fighting-type move only once. +#------------------------------- +[POISONGEM] +Name = Poison Gem +NamePlural = Poison Gems +Pocket = HeldItems +Price = 200 +Flags = TypeGem +Description = A gem with an essence of poison. When held, it strengthens the power of a Poison-type move only once. +#------------------------------- +[GROUNDGEM] +Name = Ground Gem +NamePlural = Ground Gems +Pocket = HeldItems +Price = 200 +Flags = TypeGem +Description = A gem with an essence of land. When held, it strengthens the power of a Ground-type move only once. +#------------------------------- +[FLYINGGEM] +Name = Flying Gem +NamePlural = Flying Gems +Pocket = HeldItems +Price = 200 +Flags = TypeGem +Description = A gem with an essence of air. When held, it strengthens the power of a Flying-type move only once. +#------------------------------- +[PSYCHICGEM] +Name = Psychic Gem +NamePlural = Psychic Gems +Pocket = HeldItems +Price = 200 +Flags = TypeGem +Description = A gem with an essence of the mind. When held, it strengthens the power of a Psychic-type move only once. +#------------------------------- +[BUGGEM] +Name = Bug Gem +NamePlural = Bug Gems +Pocket = HeldItems +Price = 200 +Flags = TypeGem +Description = A gem with an insect-like essence. When held, it strengthens the power of a Bug-type move only once. +#------------------------------- +[ROCKGEM] +Name = Rock Gem +NamePlural = Rock Gems +Pocket = HeldItems +Price = 200 +Flags = TypeGem +Description = A gem with an essence of rock. When held, it strengthens the power of a Rock-type move only once. +#------------------------------- +[GHOSTGEM] +Name = Ghost Gem +NamePlural = Ghost Gems +Pocket = HeldItems +Price = 200 +Flags = TypeGem +Description = A gem with a spectral essence. When held, it strengthens the power of a Ghost-type move only once. +#------------------------------- +[DRAGONGEM] +Name = Dragon Gem +NamePlural = Dragon Gems +Pocket = HeldItems +Price = 200 +Flags = TypeGem +Description = A gem with a draconic essence. When held, it strengthens the power of a Dragon-type move only once. +#------------------------------- +[DARKGEM] +Name = Dark Gem +NamePlural = Dark Gems +Pocket = HeldItems +Price = 200 +Flags = TypeGem +Description = A gem with an essence of darkness. When held, it strengthens the power of a Dark-type move only once. +#------------------------------- +[STEELGEM] +Name = Steel Gem +NamePlural = Steel Gems +Pocket = HeldItems +Price = 200 +Flags = TypeGem +Description = A gem with an essence of steel. When held, it strengthens the power of a Steel-type move only once. +#------------------------------- +[FAIRYGEM] +Name = Fairy Gem +NamePlural = Fairy Gems +Pocket = HeldItems +Price = 200 +Flags = TypeGem +Description = A gem with an essence of the fey. When held, it strengthens the power of a Fairy-type move only once. +#------------------------------- +[NORMALGEM] +Name = Normal Gem +NamePlural = Normal Gems +Pocket = HeldItems +Price = 200 +Flags = TypeGem +Description = A gem with an ordinary essence. When held, it strengthens the power of a Normal-type move only once. +#------------------------------- +[LIGHTBALL] +Name = Light Ball +NamePlural = Light Balls +Pocket = HeldItems +Price = 1000 +Flags = Fling_30 +Description = An item to be held by Pikachu. It is a puzzling orb that raises the Attack and Sp. Atk stat. +#------------------------------- +[LUCKYPUNCH] +Name = Lucky Punch +NamePlural = Lucky Punches +Pocket = HeldItems +Price = 1000 +BPPrice = 7 +Flags = Fling_40 +Description = An item to be held by Chansey. It is a pair of gloves that boosts Chansey's critical-hit ratio. +#------------------------------- +[METALPOWDER] +Name = Metal Powder +NamePlural = Metal Powders +PortionName = bag of Metal Powder +PortionNamePlural = bags of Metal Powder +Pocket = HeldItems +Price = 1000 +Flags = Fling_10 +Description = An item to be held by Ditto. Extremely fine yet hard, this odd powder boosts the Defense stat. +#------------------------------- +[QUICKPOWDER] +Name = Quick Powder +NamePlural = Quick Powders +PortionName = bag of Quick Powder +PortionNamePlural = bags of Quick Powder +Pocket = HeldItems +Price = 1000 +Flags = Fling_10 +Description = An item to be held by Ditto. Extremely fine yet hard, this odd powder boosts the Speed stat. +#------------------------------- +[THICKCLUB] +Name = Thick Club +NamePlural = Thick Clubs +Pocket = HeldItems +Price = 1000 +Flags = Fling_90 +Description = An item to be held by Cubone or Marowak. It is a hard bone of some sort that boosts the Attack stat. +#------------------------------- +[STICK] +Name = Stick +NamePlural = Sticks +Pocket = HeldItems +Price = 1000 +Flags = Fling_60 +Description = An item to be held by Farfetch'd. It is a very long and stiff stalk of leek that boosts the critical-hit ratio. +#------------------------------- +[SOULDEW] +Name = Soul Dew +NamePlural = Soul Dews +Pocket = HeldItems +Price = 0 +Flags = Fling_30 +Description = A wondrous orb to be held by either Latios or Latias. It raises the power of Psychic- and Dragon-type moves. +#------------------------------- +[DEEPSEATOOTH] +Name = Deep Sea Tooth +NamePlural = Deep Sea Teeth +Pocket = HeldItems +Price = 2000 +BPPrice = 32 +Flags = Fling_90 +Description = An item to be held by Clamperl. A fang that gleams a sharp silver, it raises the Sp. Atk stat. +#------------------------------- +[DEEPSEASCALE] +Name = Deep Sea Scale +NamePlural = Deep Sea Scales +Pocket = HeldItems +Price = 2000 +BPPrice = 32 +Flags = Fling_30 +Description = An item to be held by Clamperl. A scale that shines a faint pink, it raises the Sp. Def stat. +#------------------------------- +[ADAMANTORB] +Name = Adamant Orb +NamePlural = Adamant Orbs +Pocket = HeldItems +Price = 10000 +Flags = Fling_60 +Description = A brightly gleaming orb to be held by Dialga. It boosts the power of Dragon- and Steel-type moves. +#------------------------------- +[LUSTROUSORB] +Name = Lustrous Orb +NamePlural = Lustrous Orbs +Pocket = HeldItems +Price = 10000 +Flags = Fling_60 +Description = A beautifully glowing orb to be held by Palkia. It boosts the power of Dragon- and Water-type moves. +#------------------------------- +[GRISEOUSORB] +Name = Griseous Orb +NamePlural = Griseous Orbs +Pocket = HeldItems +Price = 10000 +Flags = Fling_60 +Description = A glowing orb to be held by Giratina. It boosts the power of Dragon- and Ghost-type moves. +#------------------------------- +[DOUSEDRIVE] +Name = Douse Drive +NamePlural = Douse Drives +Pocket = HeldItems +Price = 1000 +Flags = Fling_70 +Description = A cassette to be held by Genesect. It changes Techno Blast to a Water-type move. +#------------------------------- +[SHOCKDRIVE] +Name = Shock Drive +NamePlural = Shock Drives +Pocket = HeldItems +Price = 1000 +Flags = Fling_70 +Description = A cassette to be held by Genesect. It changes Techno Blast to an Electric-type move. +#------------------------------- +[BURNDRIVE] +Name = Burn Drive +NamePlural = Burn Drives +Pocket = HeldItems +Price = 1000 +Flags = Fling_70 +Description = A cassette to be held by Genesect. It changes Techno Blast to a Fire-type move. +#------------------------------- +[CHILLDRIVE] +Name = Chill Drive +NamePlural = Chill Drives +Pocket = HeldItems +Price = 1000 +Flags = Fling_70 +Description = A cassette to be held by Genesect. It changes Techno Blast to an Ice-type move. +#------------------------------- +[FIREMEMORY] +Name = Fire Memory +NamePlural = Fire Memories +Pocket = HeldItems +Price = 1000 +Flags = Fling_50 +Description = A memory disc containing Fire-type data. It changes the holder's type if held by a certain Pokémon. +#------------------------------- +[WATERMEMORY] +Name = Water Memory +NamePlural = Water Memories +Pocket = HeldItems +Price = 1000 +Flags = Fling_50 +Description = A memory disc containing Water-type data. It changes the holder's type if held by a certain Pokémon. +#------------------------------- +[ELECTRICMEMORY] +Name = Electric Memory +NamePlural = Electric Memories +Pocket = HeldItems +Price = 1000 +Flags = Fling_50 +Description = A memory disc containing Electric-type data. It changes the holder's type if held by a certain Pokémon. +#------------------------------- +[GRASSMEMORY] +Name = Grass Memory +NamePlural = Grass Memories +Pocket = HeldItems +Price = 1000 +Flags = Fling_50 +Description = A memory disc containing Grass-type data. It changes the holder's type if held by a certain Pokémon. +#------------------------------- +[ICEMEMORY] +Name = Ice Memory +NamePlural = Ice Memories +Pocket = HeldItems +Price = 1000 +Flags = Fling_50 +Description = A memory disc containing Ice-type data. It changes the holder's type if held by a certain Pokémon. +#------------------------------- +[FIGHTINGMEMORY] +Name = Fighting Memory +NamePlural = Fighting Memories +Pocket = HeldItems +Price = 1000 +Flags = Fling_50 +Description = A memory disc containing Fighting-type data. It changes the holder's type if held by a certain Pokémon. +#------------------------------- +[POISONMEMORY] +Name = Poison Memory +NamePlural = Poison Memories +Pocket = HeldItems +Price = 1000 +Flags = Fling_50 +Description = A memory disc containing Poison-type data. It changes the holder's type if held by a certain Pokémon. +#------------------------------- +[GROUNDMEMORY] +Name = Ground Memory +NamePlural = Ground Memories +Pocket = HeldItems +Price = 1000 +Flags = Fling_50 +Description = A memory disc containing Ground-type data. It changes the holder's type if held by a certain Pokémon. +#------------------------------- +[FLYINGMEMORY] +Name = Flying Memory +NamePlural = Flying Memories +Pocket = HeldItems +Price = 1000 +Flags = Fling_50 +Description = A memory disc containing Flying-type data. It changes the holder's type if held by a certain Pokémon. +#------------------------------- +[PSYCHICMEMORY] +Name = Psychic Memory +NamePlural = Psychic Memories +Pocket = HeldItems +Price = 1000 +Flags = Fling_50 +Description = A memory disc containing Psychic-type data. It changes the holder's type if held by a certain Pokémon. +#------------------------------- +[BUGMEMORY] +Name = Bug Memory +NamePlural = Bug Memories +Pocket = HeldItems +Price = 1000 +Flags = Fling_50 +Description = A memory disc containing Bug-type data. It changes the holder's type if held by a certain Pokémon. +#------------------------------- +[ROCKMEMORY] +Name = Rock Memory +NamePlural = Rock Memories +Pocket = HeldItems +Price = 1000 +Flags = Fling_50 +Description = A memory disc containing Rock-type data. It changes the holder's type if held by a certain Pokémon. +#------------------------------- +[GHOSTMEMORY] +Name = Ghost Memory +NamePlural = Ghost Memories +Pocket = HeldItems +Price = 1000 +Flags = Fling_50 +Description = A memory disc containing Ghost-type data. It changes the holder's type if held by a certain Pokémon. +#------------------------------- +[DRAGONMEMORY] +Name = Dragon Memory +NamePlural = Dragon Memories +Pocket = HeldItems +Price = 1000 +Flags = Fling_50 +Description = A memory disc containing Dragon-type data. It changes the holder's type if held by a certain Pokémon. +#------------------------------- +[DARKMEMORY] +Name = Dark Memory +NamePlural = Dark Memories +Pocket = HeldItems +Price = 1000 +Flags = Fling_50 +Description = A memory disc containing Dark-type data. It changes the holder's type if held by a certain Pokémon. +#------------------------------- +[STEELMEMORY] +Name = Steel Memory +NamePlural = Steel Memories +Pocket = HeldItems +Price = 1000 +Flags = Fling_50 +Description = A memory disc containing Steel-type data. It changes the holder's type if held by a certain Pokémon. +#------------------------------- +[FAIRYMEMORY] +Name = Fairy Memory +NamePlural = Fairy Memories +Pocket = HeldItems +Price = 1000 +Flags = Fling_50 +Description = A memory disc containing Fairy-type data. It changes the holder's type if held by a certain Pokémon. +#------------------------------- +[EVERSTONE] +Name = Everstone +NamePlural = Everstones +Pocket = HeldItems +Price = 3000 +BPPrice = 16 +Flags = Fling_30 +Description = An item to be held by a Pokémon. The Pokémon holding this peculiar stone is prevented from evolving. +#------------------------------- +[DRAGONSCALE] +Name = Dragon Scale +NamePlural = Dragon Scales +Pocket = HeldItems +Price = 2000 +BPPrice = 32 +Flags = Fling_30 +Description = A thick and tough scale. Dragon-type Pokémon may be holding this item when caught. +#------------------------------- +[UPGRADE] +Name = Upgrade +NamePlural = Upgrades +Pocket = HeldItems +Price = 2000 +BPPrice = 32 +Flags = Fling_30 +Description = A transparent device filled with all sorts of data. It was produced by Silph Co. +#------------------------------- +[DUBIOUSDISC] +Name = Dubious Disc +NamePlural = Dubious Discs +Pocket = HeldItems +Price = 2000 +BPPrice = 32 +Flags = Fling_50 +Description = A transparent device overflowing with dubious data. Its producer is unknown. +#------------------------------- +[PROTECTOR] +Name = Protector +NamePlural = Protectors +Pocket = HeldItems +Price = 2000 +BPPrice = 32 +Flags = Fling_80 +Description = A protective item of some sort. It is extremely stiff and heavy. It is loved by a certain Pokémon. +#------------------------------- +[ELECTIRIZER] +Name = Electirizer +NamePlural = Electirizers +Pocket = HeldItems +Price = 2000 +BPPrice = 32 +Flags = Fling_80 +Description = A box packed with a tremendous amount of electric energy. It is loved by a certain Pokémon. +#------------------------------- +[MAGMARIZER] +Name = Magmarizer +NamePlural = Magmarizers +Pocket = HeldItems +Price = 2000 +BPPrice = 32 +Flags = Fling_80 +Description = A box packed with a tremendous amount of magma energy. It is loved by a certain Pokémon. +#------------------------------- +[REAPERCLOTH] +Name = Reaper Cloth +NamePlural = Reaper Cloths +PortionName = scrap of Reaper Cloth +PortionNamePlural = scraps of Reaper Cloth +Pocket = HeldItems +Price = 2000 +BPPrice = 32 +Flags = Fling_10 +Description = A cloth imbued with horrifyingly strong spiritual energy. It is loved by a certain Pokémon. +#------------------------------- +[PRISMSCALE] +Name = Prism Scale +NamePlural = Prism Scales +Pocket = HeldItems +Price = 2000 +BPPrice = 32 +Flags = Fling_30 +Description = A mysterious scale that evolves certain Pokémon. It shines in rainbow colors. +#------------------------------- +[OVALSTONE] +Name = Oval Stone +NamePlural = Oval Stones +Pocket = HeldItems +Price = 2000 +BPPrice = 32 +Flags = Fling_80 +Description = A peculiar stone that makes certain species of Pokémon evolve. It is shaped like an egg. +#------------------------------- +[WHIPPEDDREAM] +Name = Whipped Dream +NamePlural = Whipped Dreams +PortionName = dollop of Whipped Dream +PortionNamePlural = dollops of Whipped Dream +Pocket = HeldItems +Price = 2000 +BPPrice = 32 +Flags = Fling_80 +Description = A soft and sweet treat made of fluffy, puffy and whirled cream. It's loved by a certain Pokémon. +#------------------------------- +[SACHET] +Name = Sachet +NamePlural = Sachets +Pocket = HeldItems +Price = 2000 +BPPrice = 32 +Flags = Fling_80 +Description = A sachet filled with slightly overwhelming fragrant perfumes. Yet it's loved by a certain Pokémon. +#------------------------------- +[REDSCARF] +Name = Red Scarf +NamePlural = Red Scarves +Pocket = HeldItems +Price = 100 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It boosts the Cool aspect of the holder in a Contest. +#------------------------------- +[BLUESCARF] +Name = Blue Scarf +NamePlural = Blue Scarves +Pocket = HeldItems +Price = 100 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It boosts the Beauty aspect of the holder in a Contest. +#------------------------------- +[PINKSCARF] +Name = Pink Scarf +NamePlural = Pink Scarves +Pocket = HeldItems +Price = 100 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It boosts the Cute aspect of the holder in a Contest. +#------------------------------- +[GREENSCARF] +Name = Green Scarf +NamePlural = Green Scarves +Pocket = HeldItems +Price = 100 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It boosts the Smart aspect of the holder in a Contest. +#------------------------------- +[YELLOWSCARF] +Name = Yellow Scarf +NamePlural = Yellow Scarves +Pocket = HeldItems +Price = 100 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It boosts the Tough aspect of the holder in a Contest. +#------------------------------- +[VENUSAURITE] +Name = Venusaurite +NamePlural = Venusaurites +Pocket = HeldItems +Price = 0 +BPPrice = 64 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Venusaur hold it, and it will be able to Mega Evolve. +#------------------------------- +[CHARIZARDITEX] +Name = Charizardite X +NamePlural = Charizardite Xs +Pocket = HeldItems +Price = 0 +BPPrice = 64 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Charizard hold it, and it will be able to Mega Evolve. +#------------------------------- +[CHARIZARDITEY] +Name = Charizardite Y +NamePlural = Charizardite Ys +Pocket = HeldItems +Price = 0 +BPPrice = 64 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Charizard hold it, and it will be able to Mega Evolve. +#------------------------------- +[BLASTOISINITE] +Name = Blastoisinite +NamePlural = Blastoisinites +Pocket = HeldItems +Price = 0 +BPPrice = 64 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Blastoise hold it, and it will be able to Mega Evolve. +#------------------------------- +[BEEDRILLITE] +Name = Beedrillite +NamePlural = Beedrillites +Pocket = HeldItems +Price = 0 +BPPrice = 64 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Beedrill hold it, and it will be able to Mega Evolve. +#------------------------------- +[PIDGEOTITE] +Name = Pidgeotite +NamePlural = Pidgeotites +Pocket = HeldItems +Price = 0 +BPPrice = 64 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Pidgeot hold it, and it will be able to Mega Evolve. +#------------------------------- +[ALAKAZITE] +Name = Alakazite +NamePlural = Alakazites +Pocket = HeldItems +Price = 0 +BPPrice = 64 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Alakazam hold it, and it will be able to Mega Evolve. +#------------------------------- +[SLOWBRONITE] +Name = Slowbronite +NamePlural = Slowbronites +Pocket = HeldItems +Price = 0 +BPPrice = 64 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Slowbro hold it, and it will be able to Mega Evolve. +#------------------------------- +[GENGARITE] +Name = Gengarite +NamePlural = Gengarites +Pocket = HeldItems +Price = 0 +BPPrice = 64 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Gengar hold it, and it will be able to Mega Evolve. +#------------------------------- +[KANGASKHANITE] +Name = Kangaskhanite +NamePlural = Kangaskhanites +Pocket = HeldItems +Price = 0 +BPPrice = 64 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Kangaskhan hold it, and it will be able to Mega Evolve. +#------------------------------- +[PINSIRITE] +Name = Pinsirite +NamePlural = Pinsirites +Pocket = HeldItems +Price = 0 +BPPrice = 64 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Pinsir hold it, and it will be able to Mega Evolve. +#------------------------------- +[GYARADOSITE] +Name = Gyaradosite +NamePlural = Gyaradosites +Pocket = HeldItems +Price = 0 +BPPrice = 64 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Gyarados hold it, and it will be able to Mega Evolve. +#------------------------------- +[AERODACTYLITE] +Name = Aerodactylite +NamePlural = Aerodactylites +Pocket = HeldItems +Price = 0 +BPPrice = 64 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Aerodactyl hold it, and it will be able to Mega Evolve. +#------------------------------- +[MEWTWONITEX] +Name = Mewtwonite X +NamePlural = Mewtwonite Xs +Pocket = HeldItems +Price = 0 +BPPrice = 64 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Mewtwo hold it, and it will be able to Mega Evolve. +#------------------------------- +[MEWTWONITEY] +Name = Mewtwonite Y +NamePlural = Mewtwonite Ys +Pocket = HeldItems +Price = 0 +BPPrice = 64 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Mewtwo hold it, and it will be able to Mega Evolve. +#------------------------------- +[AMPHAROSITE] +Name = Ampharosite +NamePlural = Ampharosites +Pocket = HeldItems +Price = 0 +BPPrice = 64 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Ampharos hold it, and it will be able to Mega Evolve. +#------------------------------- +[STEELIXITE] +Name = Steelixite +NamePlural = Steelixites +Pocket = HeldItems +Price = 0 +BPPrice = 64 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Steelix hold it, and it will be able to Mega Evolve. +#------------------------------- +[SCIZORITE] +Name = Scizorite +NamePlural = Scizorites +Pocket = HeldItems +Price = 0 +BPPrice = 64 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Scizor hold it, and it will be able to Mega Evolve. +#------------------------------- +[HERACRONITE] +Name = Heracronite +NamePlural = Heracronites +Pocket = HeldItems +Price = 0 +BPPrice = 64 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Heracross hold it, and it will be able to Mega Evolve. +#------------------------------- +[HOUNDOOMINITE] +Name = Houndoominite +NamePlural = Houndoominites +Pocket = HeldItems +Price = 0 +BPPrice = 64 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Houndoom hold it, and it will be able to Mega Evolve. +#------------------------------- +[TYRANITARITE] +Name = Tyranitarite +NamePlural = Tyranitarites +Pocket = HeldItems +Price = 0 +BPPrice = 64 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Tyranitar hold it, and it will be able to Mega Evolve. +#------------------------------- +[SCEPTILITE] +Name = Sceptilite +NamePlural = Sceptilites +Pocket = HeldItems +Price = 0 +BPPrice = 64 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Sceptile hold it, and it will be able to Mega Evolve. +#------------------------------- +[BLAZIKENITE] +Name = Blazikenite +NamePlural = Blazikenites +Pocket = HeldItems +Price = 0 +BPPrice = 64 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Blaziken hold it, and it will be able to Mega Evolve. +#------------------------------- +[SWAMPERTITE] +Name = Swampertite +NamePlural = Swampertites +Pocket = HeldItems +Price = 0 +BPPrice = 64 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Swampert hold it, and it will be able to Mega Evolve. +#------------------------------- +[GARDEVOIRITE] +Name = Gardevoirite +NamePlural = Gardevoirites +Pocket = HeldItems +Price = 0 +BPPrice = 64 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Gardevoir hold it, and it will be able to Mega Evolve. +#------------------------------- +[SABLENITE] +Name = Sablenite +NamePlural = Sablenites +Pocket = HeldItems +Price = 0 +BPPrice = 64 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Sableye hold it, and it will be able to Mega Evolve. +#------------------------------- +[MAWILITE] +Name = Mawilite +NamePlural = Mawilites +Pocket = HeldItems +Price = 0 +BPPrice = 64 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Mawile hold it, and it will be able to Mega Evolve. +#------------------------------- +[AGGRONITE] +Name = Aggronite +NamePlural = Aggronites +Pocket = HeldItems +Price = 0 +BPPrice = 64 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Aggron hold it, and it will be able to Mega Evolve. +#------------------------------- +[MEDICHAMITE] +Name = Medichamite +NamePlural = Medichamites +Pocket = HeldItems +Price = 0 +BPPrice = 64 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Medicham hold it, and it will be able to Mega Evolve. +#------------------------------- +[MANECTITE] +Name = Manectite +NamePlural = Manectites +Pocket = HeldItems +Price = 0 +BPPrice = 64 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Manectric hold it, and it will be able to Mega Evolve. +#------------------------------- +[SHARPEDONITE] +Name = Sharpedonite +NamePlural = Sharpedonites +Pocket = HeldItems +Price = 0 +BPPrice = 64 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Sharpedo hold it, and it will be able to Mega Evolve. +#------------------------------- +[CAMERUPTITE] +Name = Cameruptite +NamePlural = Cameruptites +Pocket = HeldItems +Price = 0 +BPPrice = 64 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Camerupt hold it, and it will be able to Mega Evolve. +#------------------------------- +[ALTARIANITE] +Name = Altarianite +NamePlural = Altarianites +Pocket = HeldItems +Price = 0 +BPPrice = 64 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Altaria hold it, and it will be able to Mega Evolve. +#------------------------------- +[BANETTITE] +Name = Banettite +NamePlural = Banettites +Pocket = HeldItems +Price = 0 +BPPrice = 64 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Banette hold it, and it will be able to Mega Evolve. +#------------------------------- +[ABSOLITE] +Name = Absolite +NamePlural = Absolites +Pocket = HeldItems +Price = 0 +BPPrice = 64 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Absol hold it, and it will be able to Mega Evolve. +#------------------------------- +[GLALITITE] +Name = Glalitite +NamePlural = Glalitites +Pocket = HeldItems +Price = 0 +BPPrice = 64 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Glalie hold it, and it will be able to Mega Evolve. +#------------------------------- +[SALAMENCITE] +Name = Salamencite +NamePlural = Salamencites +Pocket = HeldItems +Price = 0 +BPPrice = 64 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Salamence hold it, and it will be able to Mega Evolve. +#------------------------------- +[METAGROSSITE] +Name = Metagrossite +NamePlural = Metagrossites +Pocket = HeldItems +Price = 0 +BPPrice = 64 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Metagross hold it, and it will be able to Mega Evolve. +#------------------------------- +[LATIASITE] +Name = Latiasite +NamePlural = Latiasites +Pocket = HeldItems +Price = 0 +BPPrice = 64 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Latias hold it, and it will be able to Mega Evolve. +#------------------------------- +[LATIOSITE] +Name = Latiosite +NamePlural = Latiosites +Pocket = HeldItems +Price = 0 +BPPrice = 64 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Latios hold it, and it will be able to Mega Evolve. +#------------------------------- +[LOPUNNITE] +Name = Lopunnite +NamePlural = Lopunnites +Pocket = HeldItems +Price = 0 +BPPrice = 64 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Lopunny hold it, and it will be able to Mega Evolve. +#------------------------------- +[GARCHOMPITE] +Name = Garchompite +NamePlural = Garchompites +Pocket = HeldItems +Price = 0 +BPPrice = 64 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Garchomp hold it, and it will be able to Mega Evolve. +#------------------------------- +[LUCARIONITE] +Name = Lucarionite +NamePlural = Lucarionites +Pocket = HeldItems +Price = 0 +BPPrice = 64 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Lucario hold it, and it will be able to Mega Evolve. +#------------------------------- +[ABOMASITE] +Name = Abomasite +NamePlural = Abomasites +Pocket = HeldItems +Price = 0 +BPPrice = 64 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Abomasnow hold it, and it will be able to Mega Evolve. +#------------------------------- +[GALLADITE] +Name = Galladite +NamePlural = Galladites +Pocket = HeldItems +Price = 0 +BPPrice = 64 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Gallade hold it, and it will be able to Mega Evolve. +#------------------------------- +[AUDINITE] +Name = Audinite +NamePlural = Audinites +Pocket = HeldItems +Price = 0 +BPPrice = 64 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Audino hold it, and it will be able to Mega Evolve. +#------------------------------- +[DIANCITE] +Name = Diancite +NamePlural = Diancites +Pocket = HeldItems +Price = 0 +BPPrice = 64 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Diancie hold it, and it will be able to Mega Evolve. +#------------------------------- +[REDORB] +Name = Red Orb +NamePlural = Red Orbs +Pocket = HeldItems +Price = 0 +BPPrice = 64 +Description = A shiny red orb that is said to have a legend tied to it. It's known to be connected with the Hoenn region. +#------------------------------- +[BLUEORB] +Name = Blue Orb +NamePlural = Blue Orbs +Pocket = HeldItems +Price = 0 +BPPrice = 64 +Description = A shiny blue orb that is said to have a legend tied to it. It's known to be connected with the Hoenn region. +#------------------------------- +[XATTACK] +Name = X Attack +NamePlural = X Attacks +Pocket = BattleItems +Price = 1000 +BattleUse = OnBattler +Flags = Fling_30 +Description = An item that sharply boosts the Attack stat of a Pokémon while it remains in battle. +#------------------------------- +[XATTACK2] +Name = X Attack 2 +NamePlural = X Attack 2s +Pocket = BattleItems +Price = 0 +BattleUse = OnBattler +Flags = Fling_30 +Description = It sharply raises the Attack stat of a Pokémon in battle. It wears off if the Pokémon is withdrawn. +#------------------------------- +[XATTACK3] +Name = X Attack 3 +NamePlural = X Attack 3s +Pocket = BattleItems +Price = 0 +BattleUse = OnBattler +Flags = Fling_30 +Description = It drastically raises the Attack stat of a Pokémon in battle. It wears off if the Pokémon is withdrawn. +#------------------------------- +[XATTACK6] +Name = X Attack 6 +NamePlural = X Attack 6s +Pocket = BattleItems +Price = 0 +BattleUse = OnBattler +Flags = Fling_30 +Description = It raises the Attack stat of a Pokémon in battle immensely. It wears off if the Pokémon is withdrawn. +#------------------------------- +[XDEFENSE] +Name = X Defense +NamePlural = X Defenses +Pocket = BattleItems +Price = 2000 +BattleUse = OnBattler +Flags = Fling_30 +Description = An item that sharply boosts the Defense of a Pokémon while it remains in battle. +#------------------------------- +[XDEFENSE2] +Name = X Defense 2 +NamePlural = X Defense 2s +Pocket = BattleItems +Price = 0 +BattleUse = OnBattler +Flags = Fling_30 +Description = It sharply raises the Defense stat of a Pokémon in battle. It wears off if the Pokémon is withdrawn. +#------------------------------- +[XDEFENSE3] +Name = X Defense 3 +NamePlural = X Defense 3s +Pocket = BattleItems +Price = 0 +BattleUse = OnBattler +Flags = Fling_30 +Description = It drastically raises the Defense stat of a Pokémon in battle. It wears off if the Pokémon is withdrawn. +#------------------------------- +[XDEFENSE6] +Name = X Defense 6 +NamePlural = X Defense 6s +Pocket = BattleItems +Price = 0 +BattleUse = OnBattler +Flags = Fling_30 +Description = It raises the Defense stat of a Pokémon in battle immensely. It wears off if the Pokémon is withdrawn. +#------------------------------- +[XSPATK] +Name = X Sp. Atk +NamePlural = X Sp. Atks +Pocket = BattleItems +Price = 1000 +BattleUse = OnBattler +Flags = Fling_30 +Description = An item that sharply boosts the Sp. Atk stat of a Pokémon while it remains in battle. +#------------------------------- +[XSPATK2] +Name = X Sp. Atk 2 +NamePlural = X Sp. Atk 2s +Pocket = BattleItems +Price = 0 +BattleUse = OnBattler +Flags = Fling_30 +Description = It sharply raises the Sp. Atk stat of a Pokémon in battle. It wears off if the Pokémon is withdrawn. +#------------------------------- +[XSPATK3] +Name = X Sp. Atk 3 +NamePlural = X Sp. Atk 3s +Pocket = BattleItems +Price = 0 +BattleUse = OnBattler +Flags = Fling_30 +Description = It drastically raises the Sp. Atk stat of a Pokémon in battle. It wears off if the Pokémon is withdrawn. +#------------------------------- +[XSPATK6] +Name = X Sp. Atk 6 +NamePlural = X Sp. Atk 6s +Pocket = BattleItems +Price = 0 +BattleUse = OnBattler +Flags = Fling_30 +Description = It raises the Sp. Atk stat of a Pokémon in battle immensely. It wears off if the Pokémon is withdrawn. +#------------------------------- +[XSPDEF] +Name = X Sp. Def +NamePlural = X Sp. Defs +Pocket = BattleItems +Price = 2000 +BattleUse = OnBattler +Flags = Fling_30 +Description = An item that sharply boosts the Sp. Def stat of a Pokémon while it remains in battle. +#------------------------------- +[XSPDEF2] +Name = X Sp. Def 2 +NamePlural = X Sp. Def 2s +Pocket = BattleItems +Price = 0 +BattleUse = OnBattler +Flags = Fling_30 +Description = It sharply raises the Sp. Def stat of a Pokémon in battle. It wears off if the Pokémon is withdrawn. +#------------------------------- +[XSPDEF3] +Name = X Sp. Def 3 +NamePlural = X Sp. Def 3s +Pocket = BattleItems +Price = 0 +BattleUse = OnBattler +Flags = Fling_30 +Description = It drastically raises the Sp. Def stat of a Pokémon in battle. It wears off if the Pokémon is withdrawn. +#------------------------------- +[XSPDEF6] +Name = X Sp. Def 6 +NamePlural = X Sp. Def 6s +Pocket = BattleItems +Price = 0 +BattleUse = OnBattler +Flags = Fling_30 +Description = It raises the Sp. Def stat of a Pokémon in battle immensely. It wears off if the Pokémon is withdrawn. +#------------------------------- +[XSPEED] +Name = X Speed +NamePlural = X Speeds +Pocket = BattleItems +Price = 1000 +BattleUse = OnBattler +Flags = Fling_30 +Description = An item that sharply boosts the Speed stat of a Pokémon while it remains in battle. +#------------------------------- +[XSPEED2] +Name = X Speed 2 +NamePlural = X Speed 2s +Pocket = BattleItems +Price = 0 +BattleUse = OnBattler +Flags = Fling_30 +Description = It sharply raises the Speed stat of a Pokémon in battle. It wears off if the Pokémon is withdrawn. +#------------------------------- +[XSPEED3] +Name = X Speed 3 +NamePlural = X Speed 3s +Pocket = BattleItems +Price = 0 +BattleUse = OnBattler +Flags = Fling_30 +Description = It drastically raises the Speed stat of a Pokémon in battle. It wears off if the Pokémon is withdrawn. +#------------------------------- +[XSPEED6] +Name = X Speed 6 +NamePlural = X Speed 6s +Pocket = BattleItems +Price = 0 +BattleUse = OnBattler +Flags = Fling_30 +Description = It raises the Speed stat of a Pokémon in battle immensely. It wears off if the Pokémon is withdrawn. +#------------------------------- +[XACCURACY] +Name = X Accuracy +NamePlural = X Accuracies +Pocket = BattleItems +Price = 1000 +BattleUse = OnBattler +Flags = Fling_30 +Description = An item that sharply boosts the accuracy of a Pokémon while it remains in battle. +#------------------------------- +[XACCURACY2] +Name = X Accuracy 2 +NamePlural = X Accuracy 2s +Pocket = BattleItems +Price = 0 +BattleUse = OnBattler +Flags = Fling_30 +Description = It sharply raises the accuracy of a Pokémon in battle. It wears off if the Pokémon is withdrawn. +#------------------------------- +[XACCURACY3] +Name = X Accuracy 3 +NamePlural = X Accuracy 3s +Pocket = BattleItems +Price = 0 +BattleUse = OnBattler +Flags = Fling_30 +Description = It drastically raises the accuracy of a Pokémon in battle. It wears off if the Pokémon is withdrawn. +#------------------------------- +[XACCURACY6] +Name = X Accuracy 6 +NamePlural = X Accuracy 6s +Pocket = BattleItems +Price = 0 +BattleUse = OnBattler +Flags = Fling_30 +Description = It raises the accuracy of a Pokémon in battle immensely. It wears off if the Pokémon is withdrawn. +#------------------------------- +[DIREHIT] +Name = Dire Hit +NamePlural = Dire Hits +Pocket = BattleItems +Price = 1000 +BattleUse = OnBattler +Flags = Fling_30 +Description = An item that raises the critical-hit ratio greatly. It wears off if the Pokémon is withdrawn. +#------------------------------- +[DIREHIT2] +Name = Dire Hit 2 +NamePlural = Dire Hit 2s +Pocket = BattleItems +Price = 0 +BattleUse = OnBattler +Flags = Fling_30 +Description = It sharply raises the critical-hit ratio. It wears off if the Pokémon is withdrawn. +#------------------------------- +[DIREHIT3] +Name = Dire Hit 3 +NamePlural = Dire Hit 3s +Pocket = BattleItems +Price = 0 +BattleUse = OnBattler +Flags = Fling_30 +Description = It greatly raises the critical-hit ratio. It wears off if the Pokémon is withdrawn. +#------------------------------- +[GUARDSPEC] +Name = Guard Spec. +NamePlural = Guard Specs. +Pocket = BattleItems +Price = 1500 +BattleUse = Direct +Flags = Fling_30 +Description = An item that prevents stat reduction among the Trainer's party Pokémon for five turns after use. +#------------------------------- +[RESETURGE] +Name = Reset Urge +NamePlural = Reset Urges +Pocket = BattleItems +Price = 0 +Flags = Fling_30 +Description = When used, it restores any stat changes of an ally Pokémon. +#------------------------------- +[ABILITYURGE] +Name = Ability Urge +NamePlural = Ability Urges +Pocket = BattleItems +Price = 0 +Flags = Fling_30 +Description = When used, it activates the Ability of an ally Pokémon. +#------------------------------- +[ITEMURGE] +Name = Item Urge +NamePlural = Item Urges +Pocket = BattleItems +Price = 0 +Flags = Fling_30 +Description = When used, it causes an ally Pokémon to use its held item. +#------------------------------- +[ITEMDROP] +Name = Item Drop +NamePlural = Item Drops +Pocket = BattleItems +Price = 0 +Flags = Fling_30 +Description = When used, it causes an ally Pokémon to drop a held item. +#------------------------------- +[BLUEFLUTE] +Name = Blue Flute +NamePlural = Blue Flutes +Pocket = BattleItems +Price = 100 +FieldUse = OnPokemon +BattleUse = OnPokemon +Flags = Fling_30 +Consumable = false +Description = A blue flute made from blown glass. Its melody awakens a single Pokémon from sleep. +#------------------------------- +[YELLOWFLUTE] +Name = Yellow Flute +NamePlural = Yellow Flutes +Pocket = BattleItems +Price = 300 +BattleUse = OnBattler +Flags = Fling_30 +Consumable = false +Description = A yellow flute made from blown glass. Its melody snaps a single Pokémon out of confusion. +#------------------------------- +[REDFLUTE] +Name = Red Flute +NamePlural = Red Flutes +Pocket = BattleItems +Price = 200 +BattleUse = OnBattler +Flags = Fling_30 +Consumable = false +Description = A red flute made from blown glass. Its melody snaps a single Pokémon out of infatuation. +#------------------------------- +[POKEDOLL] +Name = Poké Doll +NamePlural = Poké Dolls +Pocket = BattleItems +Price = 100 +BattleUse = Direct +Flags = Fling_30 +Description = A doll that attracts Pokémon. Use it to flee from any battle with a wild Pokémon. +#------------------------------- +[FLUFFYTAIL] +Name = Fluffy Tail +NamePlural = Fluffy Tails +Pocket = BattleItems +Price = 100 +BattleUse = Direct +Flags = Fling_30 +Description = An item that attracts Pokémon. Use it to flee from any battle with a wild Pokémon. +#------------------------------- +[POKETOY] +Name = Poké Toy +NamePlural = Poké Toys +Pocket = BattleItems +Price = 100 +BattleUse = Direct +Flags = Fling_30 +Description = An item that attracts Pokémon. Use it to flee from any battle with a wild Pokémon. +#------------------------------- [TM01] Name = TM01 NamePlural = TM01s @@ -4401,1033 +5424,10 @@ FieldUse = HM Move = DIVE Description = The user dives on the first turn, and floats up and attacks on the second. It can be used to dive in the ocean. #------------------------------- -[CHERIBERRY] -Name = Cheri Berry -NamePlural = Cheri Berries -Pocket = 5 -Price = 20 -FieldUse = OnPokemon -BattleUse = OnPokemon -Flags = Berry,Fling_10,NaturalGift_FIRE_80 -Description = It may be used or held by a Pokémon to recover from paralysis. -#------------------------------- -[CHESTOBERRY] -Name = Chesto Berry -NamePlural = Chesto Berries -Pocket = 5 -Price = 20 -FieldUse = OnPokemon -BattleUse = OnPokemon -Flags = Berry,Fling_10,NaturalGift_WATER_80 -Description = It may be used or held by a Pokémon to recover from sleep. -#------------------------------- -[PECHABERRY] -Name = Pecha Berry -NamePlural = Pecha Berries -Pocket = 5 -Price = 20 -FieldUse = OnPokemon -BattleUse = OnPokemon -Flags = Berry,Fling_10,NaturalGift_ELECTRIC_80 -Description = It may be used or held by a Pokémon to recover from poison. -#------------------------------- -[RAWSTBERRY] -Name = Rawst Berry -NamePlural = Rawst Berries -Pocket = 5 -Price = 20 -FieldUse = OnPokemon -BattleUse = OnPokemon -Flags = Berry,Fling_10,NaturalGift_GRASS_80 -Description = It may be used or held by a Pokémon to recover from a burn. -#------------------------------- -[ASPEARBERRY] -Name = Aspear Berry -NamePlural = Aspear Berries -Pocket = 5 -Price = 20 -FieldUse = OnPokemon -BattleUse = OnPokemon -Flags = Berry,Fling_10,NaturalGift_ICE_80 -Description = It may be used or held by a Pokémon to defrost it. -#------------------------------- -[LEPPABERRY] -Name = Leppa Berry -NamePlural = Leppa Berries -Pocket = 5 -Price = 20 -FieldUse = OnPokemon -BattleUse = OnMove -Flags = Berry,Fling_10,NaturalGift_FIGHTING_80 -Description = It may be used or held by a Pokémon to restore a move's PP by 10. -#------------------------------- -[ORANBERRY] -Name = Oran Berry -NamePlural = Oran Berries -Pocket = 5 -Price = 20 -FieldUse = OnPokemon -BattleUse = OnPokemon -Flags = Berry,Fling_10,NaturalGift_POISON_80 -Description = It may be used or held by a Pokémon to heal the user by just 10 HP. -#------------------------------- -[PERSIMBERRY] -Name = Persim Berry -NamePlural = Persim Berries -Pocket = 5 -Price = 20 -BattleUse = OnBattler -Flags = Berry,Fling_10,NaturalGift_GROUND_80 -Description = It may be used or held by a Pokémon to recover from confusion. -#------------------------------- -[LUMBERRY] -Name = Lum Berry -NamePlural = Lum Berries -Pocket = 5 -Price = 20 -FieldUse = OnPokemon -BattleUse = OnPokemon -Flags = Berry,Fling_10,NaturalGift_FLYING_80 -Description = It may be used or held by a Pokémon to recover from any status problem. -#------------------------------- -[SITRUSBERRY] -Name = Sitrus Berry -NamePlural = Sitrus Berries -Pocket = 5 -Price = 20 -FieldUse = OnPokemon -BattleUse = OnPokemon -Flags = Berry,Fling_10,NaturalGift_PSYCHIC_80 -Description = It may be used or held by a Pokémon to heal the user's HP a little. -#------------------------------- -[FIGYBERRY] -Name = Figy Berry -NamePlural = Figy Berries -Pocket = 5 -Price = 20 -Flags = Berry,Fling_10,NaturalGift_BUG_80 -Description = If held by a Pokémon, it restores the user's HP in a pinch, but will cause confusion if it hates the taste. -#------------------------------- -[WIKIBERRY] -Name = Wiki Berry -NamePlural = Wiki Berries -Pocket = 5 -Price = 20 -Flags = Berry,Fling_10,NaturalGift_ROCK_80 -Description = If held by a Pokémon, it restores the user's HP in a pinch, but will cause confusion if it hates the taste. -#------------------------------- -[MAGOBERRY] -Name = Mago Berry -NamePlural = Mago Berries -Pocket = 5 -Price = 20 -Flags = Berry,Fling_10,NaturalGift_GHOST_80 -Description = If held by a Pokémon, it restores the user's HP in a pinch, but will cause confusion if it hates the taste. -#------------------------------- -[AGUAVBERRY] -Name = Aguav Berry -NamePlural = Aguav Berries -Pocket = 5 -Price = 20 -Flags = Berry,Fling_10,NaturalGift_DRAGON_80 -Description = If held by a Pokémon, it restores the user's HP in a pinch, but will cause confusion if it hates the taste. -#------------------------------- -[IAPAPABERRY] -Name = Iapapa Berry -NamePlural = Iapapa Berries -Pocket = 5 -Price = 20 -Flags = Berry,Fling_10,NaturalGift_DARK_80 -Description = If held by a Pokémon, it restores the user's HP in a pinch, but will cause confusion if it hates the taste. -#------------------------------- -[RAZZBERRY] -Name = Razz Berry -NamePlural = Razz Berries -Pocket = 5 -Price = 20 -Flags = Berry,Fling_10,NaturalGift_STEEL_80 -Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry. -#------------------------------- -[BLUKBERRY] -Name = Bluk Berry -NamePlural = Bluk Berries -Pocket = 5 -Price = 20 -Flags = Berry,Fling_10,NaturalGift_FIRE_90 -Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry. -#------------------------------- -[NANABBERRY] -Name = Nanab Berry -NamePlural = Nanab Berries -Pocket = 5 -Price = 20 -Flags = Berry,Fling_10,NaturalGift_WATER_90 -Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry. -#------------------------------- -[WEPEARBERRY] -Name = Wepear Berry -NamePlural = Wepear Berries -Pocket = 5 -Price = 20 -Flags = Berry,Fling_10,NaturalGift_ELECTRIC_90 -Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry. -#------------------------------- -[PINAPBERRY] -Name = Pinap Berry -NamePlural = Pinap Berries -Pocket = 5 -Price = 20 -Flags = Berry,Fling_10,NaturalGift_GRASS_90 -Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry. -#------------------------------- -[POMEGBERRY] -Name = Pomeg Berry -NamePlural = Pomeg Berries -Pocket = 5 -Price = 20 -FieldUse = OnPokemon -Flags = Berry,Fling_10,NaturalGift_ICE_90 -Description = Using it on a Pokémon makes it more friendly, but it also lowers its base HP. -#------------------------------- -[KELPSYBERRY] -Name = Kelpsy Berry -NamePlural = Kelpsy Berries -Pocket = 5 -Price = 20 -FieldUse = OnPokemon -Flags = Berry,Fling_10,NaturalGift_FIGHTING_90 -Description = Using it on a Pokémon makes it more friendly, but it also lowers its base Attack stat. -#------------------------------- -[QUALOTBERRY] -Name = Qualot Berry -NamePlural = Qualot Berries -Pocket = 5 -Price = 20 -FieldUse = OnPokemon -Flags = Berry,Fling_10,NaturalGift_POISON_90 -Description = Using it on a Pokémon makes it more friendly, but it also lowers its base Defense stat. -#------------------------------- -[HONDEWBERRY] -Name = Hondew Berry -NamePlural = Hondew Berries -Pocket = 5 -Price = 20 -FieldUse = OnPokemon -Flags = Berry,Fling_10,NaturalGift_GROUND_90 -Description = Using it on a Pokémon makes it more friendly, but it also lowers its base Sp. Atk stat. -#------------------------------- -[GREPABERRY] -Name = Grepa Berry -NamePlural = Grepa Berries -Pocket = 5 -Price = 20 -FieldUse = OnPokemon -Flags = Berry,Fling_10,NaturalGift_FLYING_90 -Description = Using it on a Pokémon makes it more friendly, but it also lowers its base Sp. Def stat. -#------------------------------- -[TAMATOBERRY] -Name = Tamato Berry -NamePlural = Tamato Berries -Pocket = 5 -Price = 20 -FieldUse = OnPokemon -Flags = Berry,Fling_10,NaturalGift_PSYCHIC_90 -Description = Using it on a Pokémon makes it more friendly, but it also lowers its base Speed stat. -#------------------------------- -[CORNNBERRY] -Name = Cornn Berry -NamePlural = Cornn Berries -Pocket = 5 -Price = 20 -Flags = Berry,Fling_10,NaturalGift_BUG_90 -Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry. -#------------------------------- -[MAGOSTBERRY] -Name = Magost Berry -NamePlural = Magost Berries -Pocket = 5 -Price = 20 -Flags = Berry,Fling_10,NaturalGift_ROCK_90 -Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry. -#------------------------------- -[RABUTABERRY] -Name = Rabuta Berry -NamePlural = Rabuta Berries -Pocket = 5 -Price = 20 -Flags = Berry,Fling_10,NaturalGift_GHOST_90 -Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry. -#------------------------------- -[NOMELBERRY] -Name = Nomel Berry -NamePlural = Nomel Berries -Pocket = 5 -Price = 20 -Flags = Berry,Fling_10,NaturalGift_DRAGON_90 -Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry. -#------------------------------- -[SPELONBERRY] -Name = Spelon Berry -NamePlural = Spelon Berries -Pocket = 5 -Price = 20 -Flags = Berry,Fling_10,NaturalGift_DARK_90 -Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry. -#------------------------------- -[PAMTREBERRY] -Name = Pamtre Berry -NamePlural = Pamtre Berries -Pocket = 5 -Price = 20 -Flags = Berry,Fling_10,NaturalGift_STEEL_90 -Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry. -#------------------------------- -[WATMELBERRY] -Name = Watmel Berry -NamePlural = Watmel Berries -Pocket = 5 -Price = 20 -Flags = Berry,Fling_10,NaturalGift_FIRE_100 -Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry. -#------------------------------- -[DURINBERRY] -Name = Durin Berry -NamePlural = Durin Berries -Pocket = 5 -Price = 20 -Flags = Berry,Fling_10,NaturalGift_WATER_100 -Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry. -#------------------------------- -[BELUEBERRY] -Name = Belue Berry -NamePlural = Belue Berries -Pocket = 5 -Price = 20 -Flags = Berry,Fling_10,NaturalGift_ELECTRIC_100 -Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry. -#------------------------------- -[OCCABERRY] -Name = Occa Berry -NamePlural = Occa Berries -Pocket = 5 -Price = 20 -Flags = Berry,Fling_10,NaturalGift_FIRE_80 -Description = Weakens a supereffective Fire-type attack against the holding Pokémon. -#------------------------------- -[PASSHOBERRY] -Name = Passho Berry -NamePlural = Passho Berries -Pocket = 5 -Price = 20 -Flags = Berry,Fling_10,NaturalGift_WATER_80 -Description = Weakens a supereffective Water-type attack against the holding Pokémon. -#------------------------------- -[WACANBERRY] -Name = Wacan Berry -NamePlural = Wacan Berries -Pocket = 5 -Price = 20 -Flags = Berry,Fling_10,NaturalGift_ELECTRIC_80 -Description = Weakens a supereffective Electric-type attack against the holding Pokémon. -#------------------------------- -[RINDOBERRY] -Name = Rindo Berry -NamePlural = Rindo Berries -Pocket = 5 -Price = 20 -Flags = Berry,Fling_10,NaturalGift_GRASS_80 -Description = Weakens a supereffective Grass-type attack against the holding Pokémon. -#------------------------------- -[YACHEBERRY] -Name = Yache Berry -NamePlural = Yache Berries -Pocket = 5 -Price = 20 -Flags = Berry,Fling_10,NaturalGift_ICE_80 -Description = Weakens a supereffective Ice-type attack against the holding Pokémon. -#------------------------------- -[CHOPLEBERRY] -Name = Chople Berry -NamePlural = Chople Berries -Pocket = 5 -Price = 20 -Flags = Berry,Fling_10,NaturalGift_FIGHTING_80 -Description = Weakens a supereffective Fighting-type attack against the holding Pokémon. -#------------------------------- -[KEBIABERRY] -Name = Kebia Berry -NamePlural = Kebia Berries -Pocket = 5 -Price = 20 -Flags = Berry,Fling_10,NaturalGift_POISON_80 -Description = Weakens a supereffective Poison-type attack against the holding Pokémon. -#------------------------------- -[SHUCABERRY] -Name = Shuca Berry -NamePlural = Shuca Berries -Pocket = 5 -Price = 20 -Flags = Berry,Fling_10,NaturalGift_GROUND_80 -Description = Weakens a supereffective Ground-type attack against the holding Pokémon. -#------------------------------- -[COBABERRY] -Name = Coba Berry -NamePlural = Coba Berries -Pocket = 5 -Price = 20 -Flags = Berry,Fling_10,NaturalGift_FLYING_80 -Description = Weakens a supereffective Flying-type attack against the holding Pokémon. -#------------------------------- -[PAYAPABERRY] -Name = Payapa Berry -NamePlural = Payapa Berries -Pocket = 5 -Price = 20 -Flags = Berry,Fling_10,NaturalGift_PSYCHIC_80 -Description = Weakens a supereffective Psychic-type attack against the holding Pokémon. -#------------------------------- -[TANGABERRY] -Name = Tanga Berry -NamePlural = Tanga Berries -Pocket = 5 -Price = 20 -Flags = Berry,Fling_10,NaturalGift_BUG_80 -Description = Weakens a supereffective Bug-type attack against the holding Pokémon. -#------------------------------- -[CHARTIBERRY] -Name = Charti Berry -NamePlural = Charti Berries -Pocket = 5 -Price = 20 -Flags = Berry,Fling_10,NaturalGift_ROCK_80 -Description = Weakens a supereffective Rock-type attack against the holding Pokémon. -#------------------------------- -[KASIBBERRY] -Name = Kasib Berry -NamePlural = Kasib Berries -Pocket = 5 -Price = 20 -Flags = Berry,Fling_10,NaturalGift_GHOST_80 -Description = Weakens a supereffective Ghost-type attack against the holding Pokémon. -#------------------------------- -[HABANBERRY] -Name = Haban Berry -NamePlural = Haban Berries -Pocket = 5 -Price = 20 -Flags = Berry,Fling_10,NaturalGift_DRAGON_80 -Description = Weakens a supereffective Dragon-type attack against the holding Pokémon. -#------------------------------- -[COLBURBERRY] -Name = Colbur Berry -NamePlural = Colbur Berries -Pocket = 5 -Price = 20 -Flags = Berry,Fling_10,NaturalGift_DARK_80 -Description = Weakens a supereffective Dark-type attack against the holding Pokémon. -#------------------------------- -[BABIRIBERRY] -Name = Babiri Berry -NamePlural = Babiri Berries -Pocket = 5 -Price = 20 -Flags = Berry,Fling_10,NaturalGift_STEEL_80 -Description = Weakens a supereffective Steel-type attack against the holding Pokémon. -#------------------------------- -[ROSELIBERRY] -Name = Roseli Berry -NamePlural = Roseli Berries -Pocket = 5 -Price = 20 -Flags = Berry,Fling_10,NaturalGift_FAIRY_80 -Description = If held by a Pokémon, this Berry will lessen the damage taken from one supereffective Fairy-type attack. -#------------------------------- -[CHILANBERRY] -Name = Chilan Berry -NamePlural = Chilan Berries -Pocket = 5 -Price = 20 -Flags = Berry,Fling_10,NaturalGift_NORMAL_80 -Description = Weakens a Normal-type attack against the Pokémon holding this berry. -#------------------------------- -[LIECHIBERRY] -Name = Liechi Berry -NamePlural = Liechi Berries -Pocket = 5 -Price = 20 -Flags = Berry,Fling_10,NaturalGift_GRASS_100 -Description = If held by a Pokémon, it raises its Attack stat in a pinch. -#------------------------------- -[GANLONBERRY] -Name = Ganlon Berry -NamePlural = Ganlon Berries -Pocket = 5 -Price = 20 -Flags = Berry,Fling_10,NaturalGift_ICE_100 -Description = If held by a Pokémon, it raises its Defense stat in a pinch. -#------------------------------- -[SALACBERRY] -Name = Salac Berry -NamePlural = Salac Berries -Pocket = 5 -Price = 20 -Flags = Berry,Fling_10,NaturalGift_FIGHTING_100 -Description = If held by a Pokémon, it raises its Speed stat in a pinch. -#------------------------------- -[PETAYABERRY] -Name = Petaya Berry -NamePlural = Petaya Berries -Pocket = 5 -Price = 20 -Flags = Berry,Fling_10,NaturalGift_POISON_100 -Description = If held by a Pokémon, it raises its Sp. Atk stat in a pinch. -#------------------------------- -[APICOTBERRY] -Name = Apicot Berry -NamePlural = Apicot Berries -Pocket = 5 -Price = 20 -Flags = Berry,Fling_10,NaturalGift_GROUND_100 -Description = If held by a Pokémon, it raises its Sp. Def stat in a pinch. -#------------------------------- -[LANSATBERRY] -Name = Lansat Berry -NamePlural = Lansat Berries -Pocket = 5 -Price = 20 -Flags = Berry,Fling_10,NaturalGift_FLYING_100 -Description = If held by a Pokémon, it raises its critical-hit ratio in a pinch. -#------------------------------- -[STARFBERRY] -Name = Starf Berry -NamePlural = Starf Berries -Pocket = 5 -Price = 20 -Flags = Berry,Fling_10,NaturalGift_PSYCHIC_100 -Description = If held by a Pokémon, it sharply raises one of its stats in a pinch. -#------------------------------- -[ENIGMABERRY] -Name = Enigma Berry -NamePlural = Enigma Berries -Pocket = 5 -Price = 20 -Flags = Berry,Fling_10,NaturalGift_BUG_100 -Description = If held by a Pokémon, it restores its HP if it is hit by any supereffective attack. -#------------------------------- -[MICLEBERRY] -Name = Micle Berry -NamePlural = Micle Berries -Pocket = 5 -Price = 20 -Flags = Berry,Fling_10,NaturalGift_ROCK_100 -Description = If held by a Pokémon, it raises the accuracy of a move just once in a pinch. -#------------------------------- -[CUSTAPBERRY] -Name = Custap Berry -NamePlural = Custap Berries -Pocket = 5 -Price = 20 -Flags = Berry,Fling_10,NaturalGift_GHOST_100 -Description = If held by a Pokémon, it gets to move first just once in a pinch. -#------------------------------- -[JABOCABERRY] -Name = Jaboca Berry -NamePlural = Jaboca Berries -Pocket = 5 -Price = 20 -Flags = Berry,Fling_10,NaturalGift_DRAGON_100 -Description = If held by a Pokémon and a physical attack lands, the attacker also takes damage. -#------------------------------- -[ROWAPBERRY] -Name = Rowap Berry -NamePlural = Rowap Berries -Pocket = 5 -Price = 20 -Flags = Berry,Fling_10,NaturalGift_DARK_100 -Description = If held by a Pokémon and a special attack lands, the attacker also takes damage. -#------------------------------- -[KEEBERRY] -Name = Kee Berry -NamePlural = Kee Berries -Pocket = 5 -Price = 20 -Flags = Berry,Fling_10,NaturalGift_FAIRY_100 -Description = If held by a Pokémon, this Berry will increase the holder's Defense if it's hit with a physical move. -#------------------------------- -[MARANGABERRY] -Name = Maranga Berry -NamePlural = Maranga Berries -Pocket = 5 -Price = 20 -Flags = Berry,Fling_10,NaturalGift_DARK_100 -Description = If held by a Pokémon, this Berry will increase the holder's Sp. Def if it's hit with a special move. -#------------------------------- -[GRASSMAIL] -Name = Grass Mail -NamePlural = Grass Mail -PortionName = piece of Grass Mail -PortionNamePlural = pieces of Grass Mail -Pocket = 6 -Price = 50 -Flags = IconMail -Description = Stationery featuring a print of a refreshingly green field. Let a Pokémon hold it for delivery. -#------------------------------- -[FLAMEMAIL] -Name = Flame Mail -NamePlural = Flame Mail -PortionName = piece of Flame Mail -PortionNamePlural = pieces of Flame Mail -Pocket = 6 -Price = 50 -Flags = IconMail -Description = Stationery featuring a print of flames in blazing red. Let a Pokémon hold it for delivery. -#------------------------------- -[BUBBLEMAIL] -Name = Bubble Mail -NamePlural = Bubble Mail -PortionName = piece of Bubble Mail -PortionNamePlural = pieces of Bubble Mail -Pocket = 6 -Price = 50 -Flags = IconMail -Description = Stationery featuring a print of a blue world underwater. Let a Pokémon hold it for delivery. -#------------------------------- -[BLOOMMAIL] -Name = Bloom Mail -NamePlural = Bloom Mail -PortionName = piece of Bloom Mail -PortionNamePlural = pieces of Bloom Mail -Pocket = 6 -Price = 50 -Flags = IconMail -Description = Stationery featuring a print of pretty floral patterns. Let a Pokémon hold it for delivery. -#------------------------------- -[TUNNELMAIL] -Name = Tunnel Mail -NamePlural = Tunnel Mail -PortionName = piece of Tunnel Mail -PortionNamePlural = pieces of Tunnel Mail -Pocket = 6 -Price = 50 -Flags = IconMail -Description = Stationery featuring a print of a dimly lit coal mine. Let a Pokémon hold it for delivery. -#------------------------------- -[STEELMAIL] -Name = Steel Mail -NamePlural = Steel Mail -PortionName = piece of Steel Mail -PortionNamePlural = pieces of Steel Mail -Pocket = 6 -Price = 50 -Flags = IconMail -Description = Stationery featuring a print of cool mechanical designs. Let a Pokémon hold it for delivery. -#------------------------------- -[HEARTMAIL] -Name = Heart Mail -NamePlural = Heart Mail -PortionName = piece of Heart Mail -PortionNamePlural = pieces of Heart Mail -Pocket = 6 -Price = 50 -Flags = IconMail -Description = Stationery featuring a print of giant heart patterns. Let a Pokémon hold it for delivery. -#------------------------------- -[SNOWMAIL] -Name = Snow Mail -NamePlural = Snow Mail -PortionName = piece of Snow Mail -PortionNamePlural = pieces of Snow Mail -Pocket = 6 -Price = 50 -Flags = IconMail -Description = Stationery featuring a print of a chilly, snow-covered world. Let a Pokémon hold it for delivery. -#------------------------------- -[SPACEMAIL] -Name = Space Mail -NamePlural = Space Mail -PortionName = piece of Space Mail -PortionNamePlural = pieces of Space Mail -Pocket = 6 -Price = 50 -Flags = IconMail -Description = Stationery featuring a print depicting the huge expanse of space. Let a Pokémon hold it for delivery. -#------------------------------- -[AIRMAIL] -Name = Air Mail -NamePlural = Air Mail -PortionName = piece of Air Mail -PortionNamePlural = pieces of Air Mail -Pocket = 6 -Price = 50 -Flags = IconMail -Description = Stationery featuring a print of colorful letter sets. Let a Pokémon hold it for delivery. -#------------------------------- -[MOSAICMAIL] -Name = Mosaic Mail -NamePlural = Mosaic Mail -PortionName = piece of Mosaic Mail -PortionNamePlural = pieces of Mosaic Mail -Pocket = 6 -Price = 50 -Flags = IconMail -Description = Stationery featuring a print of a vivid rainbow pattern. Let a Pokémon hold it for delivery. -#------------------------------- -[BRICKMAIL] -Name = Brick Mail -NamePlural = Brick Mail -PortionName = piece of Brick Mail -PortionNamePlural = pieces of Brick Mail -Pocket = 6 -Price = 50 -Flags = IconMail -Description = Stationery featuring a print of a tough-looking brick pattern. Let a Pokémon hold it for delivery. -#------------------------------- -[XATTACK] -Name = X Attack -NamePlural = X Attacks -Pocket = 7 -Price = 1000 -BattleUse = OnBattler -Flags = Fling_30 -Description = An item that sharply boosts the Attack stat of a Pokémon while it remains in battle. -#------------------------------- -[XATTACK2] -Name = X Attack 2 -NamePlural = X Attack 2s -Pocket = 7 -Price = 0 -BattleUse = OnBattler -Flags = Fling_30 -Description = It sharply raises the Attack stat of a Pokémon in battle. It wears off if the Pokémon is withdrawn. -#------------------------------- -[XATTACK3] -Name = X Attack 3 -NamePlural = X Attack 3s -Pocket = 7 -Price = 0 -BattleUse = OnBattler -Flags = Fling_30 -Description = It drastically raises the Attack stat of a Pokémon in battle. It wears off if the Pokémon is withdrawn. -#------------------------------- -[XATTACK6] -Name = X Attack 6 -NamePlural = X Attack 6s -Pocket = 7 -Price = 0 -BattleUse = OnBattler -Flags = Fling_30 -Description = It raises the Attack stat of a Pokémon in battle immensely. It wears off if the Pokémon is withdrawn. -#------------------------------- -[XDEFENSE] -Name = X Defense -NamePlural = X Defenses -Pocket = 7 -Price = 2000 -BattleUse = OnBattler -Flags = Fling_30 -Description = An item that sharply boosts the Defense of a Pokémon while it remains in battle. -#------------------------------- -[XDEFENSE2] -Name = X Defense 2 -NamePlural = X Defense 2s -Pocket = 7 -Price = 0 -BattleUse = OnBattler -Flags = Fling_30 -Description = It sharply raises the Defense stat of a Pokémon in battle. It wears off if the Pokémon is withdrawn. -#------------------------------- -[XDEFENSE3] -Name = X Defense 3 -NamePlural = X Defense 3s -Pocket = 7 -Price = 0 -BattleUse = OnBattler -Flags = Fling_30 -Description = It drastically raises the Defense stat of a Pokémon in battle. It wears off if the Pokémon is withdrawn. -#------------------------------- -[XDEFENSE6] -Name = X Defense 6 -NamePlural = X Defense 6s -Pocket = 7 -Price = 0 -BattleUse = OnBattler -Flags = Fling_30 -Description = It raises the Defense stat of a Pokémon in battle immensely. It wears off if the Pokémon is withdrawn. -#------------------------------- -[XSPATK] -Name = X Sp. Atk -NamePlural = X Sp. Atks -Pocket = 7 -Price = 1000 -BattleUse = OnBattler -Flags = Fling_30 -Description = An item that sharply boosts the Sp. Atk stat of a Pokémon while it remains in battle. -#------------------------------- -[XSPATK2] -Name = X Sp. Atk 2 -NamePlural = X Sp. Atk 2s -Pocket = 7 -Price = 0 -BattleUse = OnBattler -Flags = Fling_30 -Description = It sharply raises the Sp. Atk stat of a Pokémon in battle. It wears off if the Pokémon is withdrawn. -#------------------------------- -[XSPATK3] -Name = X Sp. Atk 3 -NamePlural = X Sp. Atk 3s -Pocket = 7 -Price = 0 -BattleUse = OnBattler -Flags = Fling_30 -Description = It drastically raises the Sp. Atk stat of a Pokémon in battle. It wears off if the Pokémon is withdrawn. -#------------------------------- -[XSPATK6] -Name = X Sp. Atk 6 -NamePlural = X Sp. Atk 6s -Pocket = 7 -Price = 0 -BattleUse = OnBattler -Flags = Fling_30 -Description = It raises the Sp. Atk stat of a Pokémon in battle immensely. It wears off if the Pokémon is withdrawn. -#------------------------------- -[XSPDEF] -Name = X Sp. Def -NamePlural = X Sp. Defs -Pocket = 7 -Price = 2000 -BattleUse = OnBattler -Flags = Fling_30 -Description = An item that sharply boosts the Sp. Def stat of a Pokémon while it remains in battle. -#------------------------------- -[XSPDEF2] -Name = X Sp. Def 2 -NamePlural = X Sp. Def 2s -Pocket = 7 -Price = 0 -BattleUse = OnBattler -Flags = Fling_30 -Description = It sharply raises the Sp. Def stat of a Pokémon in battle. It wears off if the Pokémon is withdrawn. -#------------------------------- -[XSPDEF3] -Name = X Sp. Def 3 -NamePlural = X Sp. Def 3s -Pocket = 7 -Price = 0 -BattleUse = OnBattler -Flags = Fling_30 -Description = It drastically raises the Sp. Def stat of a Pokémon in battle. It wears off if the Pokémon is withdrawn. -#------------------------------- -[XSPDEF6] -Name = X Sp. Def 6 -NamePlural = X Sp. Def 6s -Pocket = 7 -Price = 0 -BattleUse = OnBattler -Flags = Fling_30 -Description = It raises the Sp. Def stat of a Pokémon in battle immensely. It wears off if the Pokémon is withdrawn. -#------------------------------- -[XSPEED] -Name = X Speed -NamePlural = X Speeds -Pocket = 7 -Price = 1000 -BattleUse = OnBattler -Flags = Fling_30 -Description = An item that sharply boosts the Speed stat of a Pokémon while it remains in battle. -#------------------------------- -[XSPEED2] -Name = X Speed 2 -NamePlural = X Speed 2s -Pocket = 7 -Price = 0 -BattleUse = OnBattler -Flags = Fling_30 -Description = It sharply raises the Speed stat of a Pokémon in battle. It wears off if the Pokémon is withdrawn. -#------------------------------- -[XSPEED3] -Name = X Speed 3 -NamePlural = X Speed 3s -Pocket = 7 -Price = 0 -BattleUse = OnBattler -Flags = Fling_30 -Description = It drastically raises the Speed stat of a Pokémon in battle. It wears off if the Pokémon is withdrawn. -#------------------------------- -[XSPEED6] -Name = X Speed 6 -NamePlural = X Speed 6s -Pocket = 7 -Price = 0 -BattleUse = OnBattler -Flags = Fling_30 -Description = It raises the Speed stat of a Pokémon in battle immensely. It wears off if the Pokémon is withdrawn. -#------------------------------- -[XACCURACY] -Name = X Accuracy -NamePlural = X Accuracies -Pocket = 7 -Price = 1000 -BattleUse = OnBattler -Flags = Fling_30 -Description = An item that sharply boosts the accuracy of a Pokémon while it remains in battle. -#------------------------------- -[XACCURACY2] -Name = X Accuracy 2 -NamePlural = X Accuracy 2s -Pocket = 7 -Price = 0 -BattleUse = OnBattler -Flags = Fling_30 -Description = It sharply raises the accuracy of a Pokémon in battle. It wears off if the Pokémon is withdrawn. -#------------------------------- -[XACCURACY3] -Name = X Accuracy 3 -NamePlural = X Accuracy 3s -Pocket = 7 -Price = 0 -BattleUse = OnBattler -Flags = Fling_30 -Description = It drastically raises the accuracy of a Pokémon in battle. It wears off if the Pokémon is withdrawn. -#------------------------------- -[XACCURACY6] -Name = X Accuracy 6 -NamePlural = X Accuracy 6s -Pocket = 7 -Price = 0 -BattleUse = OnBattler -Flags = Fling_30 -Description = It raises the accuracy of a Pokémon in battle immensely. It wears off if the Pokémon is withdrawn. -#------------------------------- -[DIREHIT] -Name = Dire Hit -NamePlural = Dire Hits -Pocket = 7 -Price = 1000 -BattleUse = OnBattler -Flags = Fling_30 -Description = An item that raises the critical-hit ratio greatly. It wears off if the Pokémon is withdrawn. -#------------------------------- -[DIREHIT2] -Name = Dire Hit 2 -NamePlural = Dire Hit 2s -Pocket = 7 -Price = 0 -BattleUse = OnBattler -Flags = Fling_30 -Description = It sharply raises the critical-hit ratio. It wears off if the Pokémon is withdrawn. -#------------------------------- -[DIREHIT3] -Name = Dire Hit 3 -NamePlural = Dire Hit 3s -Pocket = 7 -Price = 0 -BattleUse = OnBattler -Flags = Fling_30 -Description = It greatly raises the critical-hit ratio. It wears off if the Pokémon is withdrawn. -#------------------------------- -[GUARDSPEC] -Name = Guard Spec. -NamePlural = Guard Specs. -Pocket = 7 -Price = 1500 -BattleUse = Direct -Flags = Fling_30 -Description = An item that prevents stat reduction among the Trainer's party Pokémon for five turns after use. -#------------------------------- -[RESETURGE] -Name = Reset Urge -NamePlural = Reset Urges -Pocket = 7 -Price = 0 -Flags = Fling_30 -Description = When used, it restores any stat changes of an ally Pokémon. -#------------------------------- -[ABILITYURGE] -Name = Ability Urge -NamePlural = Ability Urges -Pocket = 7 -Price = 0 -Flags = Fling_30 -Description = When used, it activates the Ability of an ally Pokémon. -#------------------------------- -[ITEMURGE] -Name = Item Urge -NamePlural = Item Urges -Pocket = 7 -Price = 0 -Flags = Fling_30 -Description = When used, it causes an ally Pokémon to use its held item. -#------------------------------- -[ITEMDROP] -Name = Item Drop -NamePlural = Item Drops -Pocket = 7 -Price = 0 -Flags = Fling_30 -Description = When used, it causes an ally Pokémon to drop a held item. -#------------------------------- -[BLUEFLUTE] -Name = Blue Flute -NamePlural = Blue Flutes -Pocket = 7 -Price = 100 -FieldUse = OnPokemon -BattleUse = OnPokemon -Flags = Fling_30 -Consumable = false -Description = A blue flute made from blown glass. Its melody awakens a single Pokémon from sleep. -#------------------------------- -[YELLOWFLUTE] -Name = Yellow Flute -NamePlural = Yellow Flutes -Pocket = 7 -Price = 300 -BattleUse = OnBattler -Flags = Fling_30 -Consumable = false -Description = A yellow flute made from blown glass. Its melody snaps a single Pokémon out of confusion. -#------------------------------- -[REDFLUTE] -Name = Red Flute -NamePlural = Red Flutes -Pocket = 7 -Price = 200 -BattleUse = OnBattler -Flags = Fling_30 -Consumable = false -Description = A red flute made from blown glass. Its melody snaps a single Pokémon out of infatuation. -#------------------------------- -[POKEDOLL] -Name = Poké Doll -NamePlural = Poké Dolls -Pocket = 7 -Price = 100 -BattleUse = Direct -Flags = Fling_30 -Description = A doll that attracts Pokémon. Use it to flee from any battle with a wild Pokémon. -#------------------------------- -[FLUFFYTAIL] -Name = Fluffy Tail -NamePlural = Fluffy Tails -Pocket = 7 -Price = 100 -BattleUse = Direct -Flags = Fling_30 -Description = An item that attracts Pokémon. Use it to flee from any battle with a wild Pokémon. -#------------------------------- -[POKETOY] -Name = Poké Toy -NamePlural = Poké Toys -Pocket = 7 -Price = 100 -BattleUse = Direct -Flags = Fling_30 -Description = An item that attracts Pokémon. Use it to flee from any battle with a wild Pokémon. -#------------------------------- [BICYCLE] Name = Bicycle NamePlural = Bicycles -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = Direct Flags = KeyItem @@ -5436,7 +5436,7 @@ Description = A folding Bicycle that enables much faster movement than the Runni [OLDROD] Name = Old Rod NamePlural = Old Rods -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = Direct Flags = KeyItem @@ -5445,7 +5445,7 @@ Description = An old and beat-up fishing rod. Use it by any body of water to fis [GOODROD] Name = Good Rod NamePlural = Good Rods -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = Direct Flags = KeyItem @@ -5454,7 +5454,7 @@ Description = A new, good-quality fishing rod. Use it by any body of water to fi [SUPERROD] Name = Super Rod NamePlural = Super Rods -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = Direct Flags = KeyItem @@ -5463,7 +5463,7 @@ Description = An awesome, high-tech fishing rod. Use it by any body of water to [ITEMFINDER] Name = Itemfinder NamePlural = Itemfinders -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = Direct Flags = KeyItem @@ -5472,7 +5472,7 @@ Description = A device used for finding items. If there is a hidden item nearby [DOWSINGMACHINE] Name = Dowsing Machine NamePlural = Dowsing Machines -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = Direct Flags = KeyItem @@ -5481,7 +5481,7 @@ Description = It checks for unseen items in the area and makes noise and lights [POKERADAR] Name = Poké Radar NamePlural = Poké Radars -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = Direct Flags = KeyItem @@ -5490,7 +5490,7 @@ Description = A tool that can search out Pokémon that are hiding in grass. Its [TOWNMAP] Name = Town Map NamePlural = Town Maps -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = Direct Flags = KeyItem @@ -5499,7 +5499,7 @@ Description = A very convenient map that can be viewed anytime. It even shows yo [POKEFLUTE] Name = Poké Flute NamePlural = Poké Flutes -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = OnPokemon BattleUse = Direct @@ -5509,7 +5509,7 @@ Description = A flute that is said to instantly awaken any Pokémon. It has a lo [COINCASE] Name = Coin Case NamePlural = Coin Cases -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = Direct Flags = KeyItem @@ -5518,7 +5518,7 @@ Description = A case for holding coins obtained at the Game Corner. It holds up [SOOTSACK] Name = Soot Sack NamePlural = Soot Sacks -Pocket = 8 +Pocket = KeyItems Price = 0 Flags = KeyItem Description = A sack used to gather and hold volcanic ash. @@ -5526,7 +5526,7 @@ Description = A sack used to gather and hold volcanic ash. [SILPHSCOPE] Name = Silph Scope NamePlural = Silph Scopes -Pocket = 8 +Pocket = KeyItems Price = 0 Flags = KeyItem Description = A scope that makes unseeable Pokémon visible. It is made by Silph Co. @@ -5534,7 +5534,7 @@ Description = A scope that makes unseeable Pokémon visible. It is made by Silph [DEVONSCOPE] Name = Devon Scope NamePlural = Devon Scopes -Pocket = 8 +Pocket = KeyItems Price = 0 Flags = KeyItem Description = A device by Devon that signals any unseeable Pokémon. @@ -5542,7 +5542,7 @@ Description = A device by Devon that signals any unseeable Pokémon. [SQUIRTBOTTLE] Name = Squirt Bottle NamePlural = Squirt Bottles -Pocket = 8 +Pocket = KeyItems Price = 0 Flags = KeyItem Description = A watering can shaped like a Squirtle. It helps promote healthy growth of Berries planted in soft soil. @@ -5550,7 +5550,7 @@ Description = A watering can shaped like a Squirtle. It helps promote healthy gr [SPRAYDUCK] Name = Sprayduck NamePlural = Sprayducks -Pocket = 8 +Pocket = KeyItems Price = 0 Flags = KeyItem Description = A watering can shaped like a Psyduck. It helps promote healthy growth of Berries planted in soft soil. @@ -5558,7 +5558,7 @@ Description = A watering can shaped like a Psyduck. It helps promote healthy gro [WAILMERPAIL] Name = Wailmer Pail NamePlural = Wailmer Pails -Pocket = 8 +Pocket = KeyItems Price = 0 Flags = KeyItem Description = A nifty watering pail. Use it to promote strong growth in Berries planted in soft soil. @@ -5566,7 +5566,7 @@ Description = A nifty watering pail. Use it to promote strong growth in Berries [SPRINKLOTAD] Name = Sprinklotad NamePlural = Sprinklotads -Pocket = 8 +Pocket = KeyItems Price = 0 Flags = KeyItem Description = A watering can shaped like a Lotad. It helps promote the healthy growth of any Berries planted in soft soil. @@ -5574,7 +5574,7 @@ Description = A watering can shaped like a Lotad. It helps promote the healthy g [GRACIDEA] Name = Gracidea NamePlural = Gracideas -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = OnPokemon Flags = KeyItem @@ -5583,7 +5583,7 @@ Description = A flower sometimes bundled in bouquets to convey gratitude on spec [REVEALGLASS] Name = Reveal Glass NamePlural = Reveal Glasses -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = OnPokemon Flags = KeyItem @@ -5592,7 +5592,7 @@ Description = A glass that reveals the truth. It is a mysterious glass that retu [PRISONBOTTLE] Name = Prison Bottle NamePlural = Prison Bottles -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = OnPokemon Flags = KeyItem @@ -5601,7 +5601,7 @@ Description = A bottle believed to have been used to seal away the power of a ce [ZYGARDECUBE] Name = Zygarde Cube NamePlural = Zygarde Cubes -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = OnPokemon Flags = KeyItem @@ -5610,7 +5610,7 @@ Description = An item in which Zygarde Cores and Cells are gathered. You can als [DNASPLICERS] Name = DNA Splicers NamePlural = DNA Splicers -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = OnPokemon Flags = KeyItem @@ -5619,7 +5619,7 @@ Description = A splicer that fuses Kyurem and a certain Pokémon. They are said [DNASPLICERSUSED] Name = DNA Splicers NamePlural = DNA Splicers -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = OnPokemon Flags = KeyItem @@ -5628,7 +5628,7 @@ Description = A splicer that separates Kyurem and a certain Pokémon when they h [NSOLARIZER] Name = N-Solarizer NamePlural = N-Solarizers -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = OnPokemon Flags = KeyItem @@ -5637,7 +5637,7 @@ Description = A machine to fuse Necrozma, which needs light, and Solgaleo. [NSOLARIZERUSED] Name = N-Solarizer NamePlural = N-Solarizers -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = OnPokemon Flags = KeyItem @@ -5646,7 +5646,7 @@ Description = A machine to separate Necrozma, which needed light, from Solgaleo. [NLUNARIZER] Name = N-Lunarizer NamePlural = N-Lunarizers -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = OnPokemon Flags = KeyItem @@ -5655,7 +5655,7 @@ Description = A machine to fuse Necrozma, which needs light, and Lunala. [NLUNARIZERUSED] Name = N-Lunarizer NamePlural = N-Lunarizers -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = OnPokemon Flags = KeyItem @@ -5664,7 +5664,7 @@ Description = A machine to separate Necrozma, which needed light, from Lunala. [OVALCHARM] Name = Oval Charm NamePlural = Oval Charms -Pocket = 8 +Pocket = KeyItems Price = 0 Flags = KeyItem Description = An oval charm said to increase the chance of Eggs being found at the Day Care. @@ -5672,7 +5672,7 @@ Description = An oval charm said to increase the chance of Eggs being found at t [SHINYCHARM] Name = Shiny Charm NamePlural = Shiny Charms -Pocket = 8 +Pocket = KeyItems Price = 0 Flags = KeyItem Description = A shiny charm said to increase the chance of finding a Shiny Pokémon. @@ -5680,7 +5680,7 @@ Description = A shiny charm said to increase the chance of finding a Shiny Poké [MEGARING] Name = Mega Ring NamePlural = Mega Rings -Pocket = 8 +Pocket = KeyItems Price = 0 Flags = KeyItem Description = This ring contains an untold power that somehow enables Pokémon carrying Mega Stones to Mega Evolve. @@ -5688,7 +5688,7 @@ Description = This ring contains an untold power that somehow enables Pokémon c [AURORATICKET] Name = Aurora Ticket NamePlural = Aurora Tickets -Pocket = 8 +Pocket = KeyItems Price = 0 Flags = KeyItem Description = A ticket required to board the ship to Berth Island. It glows beautifully. @@ -5696,7 +5696,7 @@ Description = A ticket required to board the ship to Berth Island. It glows beau [OLDSEAMAP] Name = Old Sea Map NamePlural = Old Sea Maps -Pocket = 8 +Pocket = KeyItems Price = 0 Flags = KeyItem Description = A faded sea chart that shows the way to a certain island. diff --git a/PBS/Gen 8 backup/items.txt b/PBS/Gen 8 backup/items.txt index d82b7bd39..71d9e92b9 100644 --- a/PBS/Gen 8 backup/items.txt +++ b/PBS/Gen 8 backup/items.txt @@ -3,7 +3,7 @@ [REPEL] Name = Repel NamePlural = Repels -Pocket = 1 +Pocket = Items Price = 400 FieldUse = Direct Flags = Repel,Fling_30 @@ -12,7 +12,7 @@ Description = An item that prevents weak wild Pokémon from appearing for 100 st [SUPERREPEL] Name = Super Repel NamePlural = Super Repels -Pocket = 1 +Pocket = Items Price = 700 FieldUse = Direct Flags = Repel,Fling_30 @@ -21,7 +21,7 @@ Description = An item that prevents weak wild Pokémon from appearing for 200 st [MAXREPEL] Name = Max Repel NamePlural = Max Repels -Pocket = 1 +Pocket = Items Price = 900 FieldUse = Direct Flags = Repel,Fling_30 @@ -30,7 +30,7 @@ Description = An item that prevents weak wild Pokémon from appearing for 250 st [BLACKFLUTE] Name = Black Flute NamePlural = Black Flutes -Pocket = 1 +Pocket = Items Price = 20 FieldUse = Direct Flags = Fling_30 @@ -40,7 +40,7 @@ Description = A black flute made from blown glass. Its melody makes wild Pokémo [WHITEFLUTE] Name = White Flute NamePlural = White Flutes -Pocket = 1 +Pocket = Items Price = 20 FieldUse = Direct Flags = Fling_30 @@ -52,7 +52,7 @@ Name = Honey NamePlural = Honey PortionName = jar of Honey PortionNamePlural = jars of Honey -Pocket = 1 +Pocket = Items Price = 900 FieldUse = Direct Flags = Fling_30 @@ -61,7 +61,7 @@ Description = A sweet honey with a lush aroma that attracts wild Pokémon when u [REDSHARD] Name = Red Shard NamePlural = Red Shards -Pocket = 1 +Pocket = Items Price = 1000 Flags = Fling_30 Description = A small red shard. It appears to be from some sort of implement made long ago. @@ -69,7 +69,7 @@ Description = A small red shard. It appears to be from some sort of implement ma [YELLOWSHARD] Name = Yellow Shard NamePlural = Yellow Shards -Pocket = 1 +Pocket = Items Price = 1000 Flags = Fling_30 Description = A small yellow shard. It appears to be from some sort of implement made long ago. @@ -77,7 +77,7 @@ Description = A small yellow shard. It appears to be from some sort of implement [BLUESHARD] Name = Blue Shard NamePlural = Blue Shards -Pocket = 1 +Pocket = Items Price = 1000 Flags = Fling_30 Description = A small blue shard. It appears to be from some sort of implement made long ago. @@ -85,7 +85,7 @@ Description = A small blue shard. It appears to be from some sort of implement m [GREENSHARD] Name = Green Shard NamePlural = Green Shards -Pocket = 1 +Pocket = Items Price = 1000 Flags = Fling_30 Description = A small green shard. It appears to be from some sort of implement made long ago. @@ -93,7 +93,7 @@ Description = A small green shard. It appears to be from some sort of implement [FIRESTONE] Name = Fire Stone NamePlural = Fire Stones -Pocket = 1 +Pocket = Items Price = 3000 BPPrice = 5 FieldUse = OnPokemon @@ -103,7 +103,7 @@ Description = A peculiar stone that makes certain species of Pokémon evolve. It [THUNDERSTONE] Name = Thunder Stone NamePlural = Thunder Stones -Pocket = 1 +Pocket = Items Price = 3000 BPPrice = 5 FieldUse = OnPokemon @@ -113,7 +113,7 @@ Description = A peculiar stone that makes certain species of Pokémon evolve. It [WATERSTONE] Name = Water Stone NamePlural = Water Stones -Pocket = 1 +Pocket = Items Price = 3000 BPPrice = 5 FieldUse = OnPokemon @@ -123,7 +123,7 @@ Description = A peculiar stone that makes certain species of Pokémon evolve. It [LEAFSTONE] Name = Leaf Stone NamePlural = Leaf Stones -Pocket = 1 +Pocket = Items Price = 3000 BPPrice = 5 FieldUse = OnPokemon @@ -133,7 +133,7 @@ Description = A peculiar stone that makes certain species of Pokémon evolve. It [MOONSTONE] Name = Moon Stone NamePlural = Moon Stones -Pocket = 1 +Pocket = Items Price = 3000 BPPrice = 5 FieldUse = OnPokemon @@ -143,7 +143,7 @@ Description = A peculiar stone that makes certain species of Pokémon evolve. It [SUNSTONE] Name = Sun Stone NamePlural = Sun Stones -Pocket = 1 +Pocket = Items Price = 3000 BPPrice = 5 FieldUse = OnPokemon @@ -153,7 +153,7 @@ Description = A peculiar stone that makes certain species of Pokémon evolve. It [DUSKSTONE] Name = Dusk Stone NamePlural = Dusk Stones -Pocket = 1 +Pocket = Items Price = 3000 BPPrice = 5 FieldUse = OnPokemon @@ -163,7 +163,7 @@ Description = A peculiar stone that makes certain species of Pokémon evolve. It [DAWNSTONE] Name = Dawn Stone NamePlural = Dawn Stones -Pocket = 1 +Pocket = Items Price = 3000 BPPrice = 5 FieldUse = OnPokemon @@ -173,7 +173,7 @@ Description = A peculiar stone that makes certain species of Pokémon evolve. It [SHINYSTONE] Name = Shiny Stone NamePlural = Shiny Stones -Pocket = 1 +Pocket = Items Price = 3000 BPPrice = 5 FieldUse = OnPokemon @@ -183,7 +183,7 @@ Description = A peculiar stone that makes certain species of Pokémon evolve. It [ICESTONE] Name = Ice Stone NamePlural = Ice Stones -Pocket = 1 +Pocket = Items Price = 3000 BPPrice = 5 FieldUse = OnPokemon @@ -193,7 +193,7 @@ Description = A peculiar stone that makes certain species of Pokémon evolve. It [SWEETAPPLE] Name = Sweet Apple NamePlural = Sweet Apples -Pocket = 1 +Pocket = Items Price = 2200 BPPrice = 5 FieldUse = OnPokemon @@ -203,7 +203,7 @@ Description = A peculiar apple that can make a certain species of Pokémon evolv [TARTAPPLE] Name = Tart Apple NamePlural = Tart Apples -Pocket = 1 +Pocket = Items Price = 2200 BPPrice = 5 FieldUse = OnPokemon @@ -213,7 +213,7 @@ Description = A peculiar apple that can make a certain species of Pokémon evolv [CRACKEDPOT] Name = Cracked Pot NamePlural = Cracked Pots -Pocket = 1 +Pocket = Items Price = 3000 SellPrice = 800 BPPrice = 5 @@ -224,7 +224,7 @@ Description = A peculiar cracked teapot that can make a certain species of Poké [CHIPPEDPOT] Name = Chipped Pot NamePlural = Chipped Pots -Pocket = 1 +Pocket = Items Price = 3000 SellPrice = 19000 BPPrice = 5 @@ -235,7 +235,7 @@ Description = A peculiar chipped teapot that can make a certain species of Poké [GALARICACUFF] Name = Galarica Cuff NamePlural = Galarica Cuffs -Pocket = 1 +Pocket = Items Price = 6000 BPPrice = 5 FieldUse = OnPokemon @@ -245,7 +245,7 @@ Description = A cuff made from woven-together Galarica Twigs. Giving it to a Gal [GALARICAWREATH] Name = Galarica Wreath NamePlural = Galarica Wreaths -Pocket = 1 +Pocket = Items Price = 6000 BPPrice = 5 FieldUse = OnPokemon @@ -257,7 +257,7 @@ Name = Black Augurite NamePlural = Black Augurites PortionName = piece of Black Augurite PortionNamePlural = pieces of Black Augurite -Pocket = 1 +Pocket = Items Price = 8000 SellPrice = 500 BPPrice = 5 @@ -268,7 +268,7 @@ Description = A glassy black stone that produces a sharp cutting edge when split [PEATBLOCK] Name = Peat Block NamePlural = Peat Blocks -Pocket = 1 +Pocket = Items Price = 10000 SellPrice = 500 BPPrice = 5 @@ -279,7 +279,7 @@ Description = A block of muddy material that can be used as fuel when it is drie [REDAPRICORN] Name = Red Apricorn NamePlural = Red Apricorns -Pocket = 1 +Pocket = Items Price = 200 Flags = Apricorn Description = A red Apricorn. It assails your nostrils. @@ -287,7 +287,7 @@ Description = A red Apricorn. It assails your nostrils. [YELLOWAPRICORN] Name = Yellow Apricorn NamePlural = Yellow Apricorns -Pocket = 1 +Pocket = Items Price = 200 Flags = Apricorn Description = A yellow Apricorn. It has an invigorating scent. @@ -295,7 +295,7 @@ Description = A yellow Apricorn. It has an invigorating scent. [BLUEAPRICORN] Name = Blue Apricorn NamePlural = Blue Apricorns -Pocket = 1 +Pocket = Items Price = 200 Flags = Apricorn Description = A blue Apricorn. It smells a bit like grass. @@ -303,7 +303,7 @@ Description = A blue Apricorn. It smells a bit like grass. [GREENAPRICORN] Name = Green Apricorn NamePlural = Green Apricorns -Pocket = 1 +Pocket = Items Price = 200 Flags = Apricorn Description = A green Apricorn. It has a mysterious, aromatic scent. @@ -311,7 +311,7 @@ Description = A green Apricorn. It has a mysterious, aromatic scent. [PINKAPRICORN] Name = Pink Apricorn NamePlural = Pink Apricorns -Pocket = 1 +Pocket = Items Price = 200 Flags = Apricorn Description = A pink Apricorn. It has a nice, sweet scent. @@ -319,7 +319,7 @@ Description = A pink Apricorn. It has a nice, sweet scent. [WHITEAPRICORN] Name = White Apricorn NamePlural = White Apricorns -Pocket = 1 +Pocket = Items Price = 200 Flags = Apricorn Description = A white Apricorn. It doesn't smell like anything. @@ -327,7 +327,7 @@ Description = A white Apricorn. It doesn't smell like anything. [BLACKAPRICORN] Name = Black Apricorn NamePlural = Black Apricorns -Pocket = 1 +Pocket = Items Price = 200 Flags = Apricorn Description = A black Apricorn. It has an indescribable scent. @@ -335,7 +335,7 @@ Description = A black Apricorn. It has an indescribable scent. [HELIXFOSSIL] Name = Helix Fossil NamePlural = Helix Fossils -Pocket = 1 +Pocket = Items Price = 7000 Flags = Fossil,Fling_100 Description = A fossil of an ancient Pokémon that lived in the sea. It appears to be part of a seashell. @@ -343,7 +343,7 @@ Description = A fossil of an ancient Pokémon that lived in the sea. It appears [DOMEFOSSIL] Name = Dome Fossil NamePlural = Dome Fossils -Pocket = 1 +Pocket = Items Price = 7000 Flags = Fossil,Fling_100 Description = A fossil of an ancient Pokémon that lived in the sea. It appears to be part of a shell. @@ -351,7 +351,7 @@ Description = A fossil of an ancient Pokémon that lived in the sea. It appears [OLDAMBER] Name = Old Amber NamePlural = Old Ambers -Pocket = 1 +Pocket = Items Price = 1000 Flags = Fossil,Fling_100 Description = A piece of amber that contains the genes of an ancient Pokémon. It is clear with a reddish tint. @@ -359,7 +359,7 @@ Description = A piece of amber that contains the genes of an ancient Pokémon. I [ROOTFOSSIL] Name = Root Fossil NamePlural = Root Fossils -Pocket = 1 +Pocket = Items Price = 7000 Flags = Fossil,Fling_100 Description = A fossil of an ancient Pokémon that lived in the sea. It appears to be part of a plant root. @@ -367,7 +367,7 @@ Description = A fossil of an ancient Pokémon that lived in the sea. It appears [CLAWFOSSIL] Name = Claw Fossil NamePlural = Claw Fossils -Pocket = 1 +Pocket = Items Price = 7000 Flags = Fossil,Fling_100 Description = A fossil of an ancient Pokémon that lived in the sea. It appears to be part of a claw. @@ -375,7 +375,7 @@ Description = A fossil of an ancient Pokémon that lived in the sea. It appears [SKULLFOSSIL] Name = Skull Fossil NamePlural = Skull Fossils -Pocket = 1 +Pocket = Items Price = 7000 Flags = Fossil,Fling_100 Description = A fossil from a prehistoric Pokémon that lived on the land. It appears to be part of a head. @@ -383,7 +383,7 @@ Description = A fossil from a prehistoric Pokémon that lived on the land. It ap [ARMORFOSSIL] Name = Armor Fossil NamePlural = Armor Fossils -Pocket = 1 +Pocket = Items Price = 7000 Flags = Fossil,Fling_100 Description = A fossil from a prehistoric Pokémon that lived on the land. It appears to be part of a collar. @@ -391,7 +391,7 @@ Description = A fossil from a prehistoric Pokémon that lived on the land. It ap [COVERFOSSIL] Name = Cover Fossil NamePlural = Cover Fossils -Pocket = 1 +Pocket = Items Price = 7000 Flags = Fossil,Fling_100 Description = A fossil of an ancient Pokémon that lived in the sea in ancient times. It appears to be part of its back. @@ -399,7 +399,7 @@ Description = A fossil of an ancient Pokémon that lived in the sea in ancient t [PLUMEFOSSIL] Name = Plume Fossil NamePlural = Plume Fossils -Pocket = 1 +Pocket = Items Price = 7000 Flags = Fossil,Fling_100 Description = A fossil of an ancient Pokémon that flew in the sky in ancient times. It appears to be part of its wing. @@ -407,7 +407,7 @@ Description = A fossil of an ancient Pokémon that flew in the sky in ancient ti [JAWFOSSIL] Name = Jaw Fossil NamePlural = Jaw Fossils -Pocket = 1 +Pocket = Items Price = 7000 Flags = Fossil,Fling_100 Description = A fossil from a prehistoric Pokémon that once lived on the land. It appears to be part of a large jaw. @@ -415,7 +415,7 @@ Description = A fossil from a prehistoric Pokémon that once lived on the land. [SAILFOSSIL] Name = Sail Fossil NamePlural = Sail Fossils -Pocket = 1 +Pocket = Items Price = 7000 Flags = Fossil,Fling_100 Description = A fossil from a prehistoric Pokémon that once lived on the land. It looks like the impression from a skin sail. @@ -423,7 +423,7 @@ Description = A fossil from a prehistoric Pokémon that once lived on the land. [FOSSILIZEDBIRD] Name = Fossilized Bird NamePlural = Fossilized Birds -Pocket = 1 +Pocket = Items Price = 5000 Flags = Fling_100 Description = The fossil of an ancient Pokémon that once soared through the sky. What it looked like is a mystery. @@ -431,7 +431,7 @@ Description = The fossil of an ancient Pokémon that once soared through the sky [FOSSILIZEDFISH] Name = Fossilized Fish NamePlural = Fossilized Fish -Pocket = 1 +Pocket = Items Price = 5000 Flags = Fling_100 Description = The fossil of an ancient Pokémon that once lived in the sea. What it looked like is a mystery. @@ -439,7 +439,7 @@ Description = The fossil of an ancient Pokémon that once lived in the sea. What [FOSSILIZEDDRAKE] Name = Fossilized Drake NamePlural = Fossilized Drakes -Pocket = 1 +Pocket = Items Price = 5000 Flags = Fling_100 Description = The fossil of an ancient Pokémon that once roamed the land. What it looked like is a mystery. @@ -447,7 +447,7 @@ Description = The fossil of an ancient Pokémon that once roamed the land. What [FOSSILIZEDDINO] Name = Fossilized Dino NamePlural = Fossilized Dinos -Pocket = 1 +Pocket = Items Price = 5000 Flags = Fling_100 Description = The fossil of an ancient Pokémon that once lived in the sea. What it looked like is a mystery. @@ -455,7 +455,7 @@ Description = The fossil of an ancient Pokémon that once lived in the sea. What [PRETTYFEATHER] Name = Pretty Feather NamePlural = Pretty Feathers -Pocket = 1 +Pocket = Items Price = 1000 Flags = Fling_20 Description = Though this feather is beautiful, it's just a regular feather and has no effect on Pokémon. @@ -463,7 +463,7 @@ Description = Though this feather is beautiful, it's just a regular feather and [TINYMUSHROOM] Name = Tiny Mushroom NamePlural = Tiny Mushrooms -Pocket = 1 +Pocket = Items Price = 500 Flags = Fling_30 Description = A small and rare mushroom. It is sought after by collectors. @@ -471,7 +471,7 @@ Description = A small and rare mushroom. It is sought after by collectors. [BIGMUSHROOM] Name = Big Mushroom NamePlural = Big Mushrooms -Pocket = 1 +Pocket = Items Price = 5000 Flags = Fling_30 Description = A large and rare mushroom. It is sought after by collectors. @@ -479,7 +479,7 @@ Description = A large and rare mushroom. It is sought after by collectors. [BALMMUSHROOM] Name = Balm Mushroom NamePlural = Balm Mushrooms -Pocket = 1 +Pocket = Items Price = 15000 Flags = Fling_30 Description = A rare mushroom which gives off a nice fragrance. A maniac will buy it for a high price. @@ -487,7 +487,7 @@ Description = A rare mushroom which gives off a nice fragrance. A maniac will bu [PEARL] Name = Pearl NamePlural = Pearls -Pocket = 1 +Pocket = Items Price = 2000 Flags = Fling_30 Description = A somewhat-small pearl that sparkles in a pretty silver color. It can be sold cheaply to shops. @@ -495,7 +495,7 @@ Description = A somewhat-small pearl that sparkles in a pretty silver color. It [BIGPEARL] Name = Big Pearl NamePlural = Big Pearls -Pocket = 1 +Pocket = Items Price = 8000 Flags = Fling_30 Description = A quite-large pearl that sparkles in a pretty silver color. It can be sold at a high price to shops. @@ -503,7 +503,7 @@ Description = A quite-large pearl that sparkles in a pretty silver color. It can [PEARLSTRING] Name = Pearl String NamePlural = Pearl Strings -Pocket = 1 +Pocket = Items Price = 20000 Flags = Fling_30 Description = Very large pearls that sparkle in a pretty silver color. A maniac will buy them for a high price. @@ -513,7 +513,7 @@ Name = Stardust NamePlural = Stardusts PortionName = bag of Stardust PortionNamePlural = bags of Stardust -Pocket = 1 +Pocket = Items Price = 3000 Flags = Fling_30 Description = Lovely, red-colored sand with a loose, silky feel. It can be sold at a high price to shops. @@ -521,7 +521,7 @@ Description = Lovely, red-colored sand with a loose, silky feel. It can be sold [STARPIECE] Name = Star Piece NamePlural = Star Pieces -Pocket = 1 +Pocket = Items Price = 12000 Flags = Fling_30 Description = A shard of a pretty gem that sparkles in a red color. It can be sold at a high price to shops. @@ -529,7 +529,7 @@ Description = A shard of a pretty gem that sparkles in a red color. It can be so [COMETSHARD] Name = Comet Shard NamePlural = Comet Shards -Pocket = 1 +Pocket = Items Price = 25000 Flags = Fling_30 Description = A shard which fell to the ground when a comet approached. A maniac will buy it for a high price. @@ -537,7 +537,7 @@ Description = A shard which fell to the ground when a comet approached. A maniac [NUGGET] Name = Nugget NamePlural = Nuggets -Pocket = 1 +Pocket = Items Price = 10000 Flags = Fling_30 Description = A nugget of pure gold that gives off a lustrous gleam. It can be sold at a high price to shops. @@ -545,7 +545,7 @@ Description = A nugget of pure gold that gives off a lustrous gleam. It can be s [BIGNUGGET] Name = Big Nugget NamePlural = Big Nuggets -Pocket = 1 +Pocket = Items Price = 40000 Flags = Fling_130 Description = A big nugget of pure gold that gives off a lustrous gleam. A maniac will buy it for a high price. @@ -553,7 +553,7 @@ Description = A big nugget of pure gold that gives off a lustrous gleam. A mania [HEARTSCALE] Name = Heart Scale NamePlural = Heart Scales -Pocket = 1 +Pocket = Items Price = 100 Flags = Fling_30 Description = A pretty, heart-shaped scale that is extremely rare. It glows faintly in the colors of the rainbow. @@ -561,14 +561,14 @@ Description = A pretty, heart-shaped scale that is extremely rare. It glows fain [SLOWPOKETAIL] Name = Slowpoke Tail NamePlural = Slowpoke Tails -Pocket = 1 +Pocket = Items Price = 10000 Description = A very tasty tail of something. It can be sold at a high price to shops. #------------------------------- [RAREBONE] Name = Rare Bone NamePlural = Rare Bones -Pocket = 1 +Pocket = Items Price = 5000 Flags = Fling_100 Description = A bone that is extremely valuable for Pokémon archaeology. It can be sold for a high price to shops. @@ -578,7 +578,7 @@ Name = Relic Copper NamePlural = Relic Coppers PortionName = Relic Copper coin PortionNamePlural = Relic Copper coins -Pocket = 1 +Pocket = Items Price = 0 Flags = Fling_30 Description = A copper coin used in a civilization about 3,000 years ago. A maniac will buy it for a high price. @@ -588,7 +588,7 @@ Name = Relic Silver NamePlural = Relic Silvers PortionName = Relic Silver coin PortionNamePlural = Relic Silver coins -Pocket = 1 +Pocket = Items Price = 0 Flags = Fling_30 Description = A silver coin used in a civilization about 3,000 years ago. A maniac will buy it for a high price. @@ -598,7 +598,7 @@ Name = Relic Gold NamePlural = Relic Golds PortionName = Relic Gold coin PortionNamePlural = Relic Gold coins -Pocket = 1 +Pocket = Items Price = 60000 Flags = Fling_30 Description = A gold coin used in a civilization about 3,000 years ago. A maniac will buy it for a high price. @@ -606,7 +606,7 @@ Description = A gold coin used in a civilization about 3,000 years ago. A maniac [RELICVASE] Name = Relic Vase NamePlural = Relic Vases -Pocket = 1 +Pocket = Items Price = 0 Flags = Fling_30 Description = A vase made in a civilization about 3,000 years ago. A maniac will buy it for a high price. @@ -614,7 +614,7 @@ Description = A vase made in a civilization about 3,000 years ago. A maniac will [RELICBAND] Name = Relic Band NamePlural = Relic Bands -Pocket = 1 +Pocket = Items Price = 0 Flags = Fling_30 Description = A bracelet made in a civilization about 3,000 years ago. A maniac will buy it for a high price. @@ -622,7 +622,7 @@ Description = A bracelet made in a civilization about 3,000 years ago. A maniac [RELICSTATUE] Name = Relic Statue NamePlural = Relic Statues -Pocket = 1 +Pocket = Items Price = 0 Flags = Fling_30 Description = A stone figure made in a civilization about 3,000 years ago. A maniac will buy it for a high price. @@ -630,7 +630,7 @@ Description = A stone figure made in a civilization about 3,000 years ago. A man [RELICCROWN] Name = Relic Crown NamePlural = Relic Crowns -Pocket = 1 +Pocket = Items Price = 0 Flags = Fling_30 Description = A crown made in a civilization about 3,000 years ago. A maniac will buy it for a high price. @@ -640,7 +640,7 @@ Name = Growth Mulch NamePlural = Growth Mulch PortionName = bag of Growth Mulch PortionNamePlural = bags of Growth Mulch -Pocket = 1 +Pocket = Items Price = 200 Flags = Mulch,Fling_30 Description = A fertilizer to be spread on soft soil in regions where Berries are grown. A maniac will buy it for a high price. @@ -650,7 +650,7 @@ Name = Damp Mulch NamePlural = Damp Mulch PortionName = bag of Damp Mulch PortionNamePlural = bags of Damp Mulch -Pocket = 1 +Pocket = Items Price = 200 Flags = Mulch,Fling_30 Description = A fertilizer to be spread on soft soil in regions where Berries are grown. A maniac will buy it for a high price. @@ -660,7 +660,7 @@ Name = Stable Mulch NamePlural = Stable Mulch PortionName = bag of Stable Mulch PortionNamePlural = bags of Stable Mulch -Pocket = 1 +Pocket = Items Price = 200 Flags = Mulch,Fling_30 Description = A fertilizer to be spread on soft soil in regions where Berries are grown. A maniac will buy it for a high price. @@ -670,7 +670,7 @@ Name = Gooey Mulch NamePlural = Gooey Mulch PortionName = bag of Gooey Mulch PortionNamePlural = bags of Gooey Mulch -Pocket = 1 +Pocket = Items Price = 200 Flags = Mulch,Fling_30 Description = A fertilizer to be spread on soft soil in regions where Berries are grown. A maniac will buy it for a high price. @@ -680,7 +680,7 @@ Name = Shoal Salt NamePlural = Shoal Salts PortionName = pile of Shoal Salt PortionNamePlural = piles of Shoal Salt -Pocket = 1 +Pocket = Items Price = 20 Flags = Fling_30 Description = Pure salt that can be discovered deep inside the Shoal Cave. A maniac will buy it for a high price. @@ -688,7 +688,7 @@ Description = Pure salt that can be discovered deep inside the Shoal Cave. A man [SHOALSHELL] Name = Shoal Shell NamePlural = Shoal Shells -Pocket = 1 +Pocket = Items Price = 20 Flags = Fling_30 Description = A pretty seashell that can be found deep inside the Shoal Cave. A maniac will buy it for a high price. @@ -696,7 +696,7 @@ Description = A pretty seashell that can be found deep inside the Shoal Cave. A [ODDKEYSTONE] Name = Odd Keystone NamePlural = Odd Keystones -Pocket = 1 +Pocket = Items Price = 2100 Flags = Fling_80 Description = A vital item that is needed to keep a stone tower from collapsing. Voices can be heard from it occasionally. @@ -706,7 +706,7 @@ Name = Red Nectar NamePlural = Red Nectars PortionName = jar of Red Nectar PortionNamePlural = jars of Red Nectar -Pocket = 1 +Pocket = Items Price = 300 FieldUse = OnPokemon Flags = Fling_10 @@ -717,7 +717,7 @@ Name = Yellow Nectar NamePlural = Yellow Nectars PortionName = jar of Yellow Nectar PortionNamePlural = jars of Yellow Nectar -Pocket = 1 +Pocket = Items Price = 300 FieldUse = OnPokemon Flags = Fling_10 @@ -728,7 +728,7 @@ Name = Pink Nectar NamePlural = Pink Nectars PortionName = jar of Pink Nectar PortionNamePlural = jars of Pink Nectar -Pocket = 1 +Pocket = Items Price = 300 FieldUse = OnPokemon Flags = Fling_10 @@ -739,2261 +739,136 @@ Name = Purple Nectar NamePlural = Purple Nectars PortionName = jar of Purple Nectar PortionNamePlural = jars of Purple Nectar -Pocket = 1 +Pocket = Items Price = 300 FieldUse = OnPokemon Flags = Fling_10 Description = A flower nectar obtained at Poni Meadow. It changes the form of certain species of Pokémon. #------------------------------- -[AIRBALLOON] -Name = Air Balloon -NamePlural = Air Balloons -Pocket = 1 -Price = 3000 -SellPrice = 2000 -BPPrice = 15 -Flags = Fling_10 -Description = An item to be held by a Pokémon. The holder will float in the air until hit. Once hit, this item will burst. -#------------------------------- -[BRIGHTPOWDER] -Name = Bright Powder -NamePlural = Bright Powders -PortionName = bag of Bright Powder -PortionNamePlural = bags of Bright Powder -Pocket = 1 -Price = 3000 -SellPrice = 2000 -BPPrice = 48 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It casts a tricky glare that lowers the opponent's accuracy. -#------------------------------- -[EVIOLITE] -Name = Eviolite -NamePlural = Eviolites -Pocket = 1 -Price = 3000 -SellPrice = 2000 -BPPrice = 25 -Flags = Fling_40 -Description = A mysterious evolutionary lump. When held, it raises the Defense and Sp. Def if the holder can still evolve. -#------------------------------- -[FLOATSTONE] -Name = Float Stone -NamePlural = Float Stones -Pocket = 1 -Price = 3000 -SellPrice = 2000 -BPPrice = 10 -Flags = Fling_30 -Description = A very light stone. It reduces the weight of a Pokémon when held. -#------------------------------- -[DESTINYKNOT] -Name = Destiny Knot -NamePlural = Destiny Knots -Pocket = 1 -Price = 3000 -SellPrice = 2000 -BPPrice = 10 -Flags = Fling_10 -Description = A long, thin, bright-red string to be held by a Pokémon. If the holder becomes infatuated, so does the foe. -#------------------------------- -[ROCKYHELMET] -Name = Rocky Helmet -NamePlural = Rocky Helmets -Pocket = 1 -Price = 3000 -SellPrice = 2000 -BPPrice = 25 -Flags = Fling_60 -Description = If the holder of this item takes damage, the attacker will also be damaged upon contact. -#------------------------------- -[ASSAULTVEST] -Name = Assault Vest -NamePlural = Assault Vests -Pocket = 1 -Price = 1000 -BPPrice = 25 -Flags = Fling_80 -Description = An item to be held by a Pokémon. This offensive vest raises Sp. Def but prevents the use of status moves. -#------------------------------- -[SAFETYGOGGLES] -Name = Safety Goggles -NamePlural = Safety Goggles -PortionName = pair of Safety Goggles -PortionNamePlural = pairs of Safety Goggles -Pocket = 1 -Price = 3000 -SellPrice = 2000 -BPPrice = 25 -Flags = Fling_80 -Description = An item to be held by a Pokémon. They protect the holder from weather-related damage and powder. -#------------------------------- -[PROTECTIVEPADS] -Name = Protective Pads -NamePlural = Protective Pads -PortionName = set of Protective Pads -PortionNamePlural = sets of Protective Pads -Pocket = 1 -Price = 3000 -SellPrice = 2000 -BPPrice = 25 -Flags = Fling_30 -Description = An item to be held by a Pokémon. They protect the holder from effects caused by making contact. -#------------------------------- -[HEAVYDUTYBOOTS] -Name = Heavy-Duty Boots -NamePlural = Heavy-Duty Boots -PortionName = pair of Heavy-Duty Boots -PortionNamePlural = pairs of Heavy-Duty Boots -Pocket = 1 -Price = 3000 -SellPrice = 2000 -BPPrice = 25 -Flags = Fling_80 -Description = These boots prevent the effects of traps set on the battlefield. -#------------------------------- -[UTILITYUMBRELLA] -Name = Utility Umbrella -NamePlural = Utility Umbrellas -Pocket = 1 -Price = 3000 -SellPrice = 2000 -BPPrice = 25 -Flags = Fling_60 -Description = An item to be held by a Pokémon. This sturdy umbrella protects the holder from the effects of rain and sun. -#------------------------------- -[EJECTBUTTON] -Name = Eject Button -NamePlural = Eject Buttons -Pocket = 1 -Price = 3000 -SellPrice = 2000 -BPPrice = 20 -Flags = Fling_30 -Description = If the holder is hit by an attack, it will switch with another Pokémon in your party. -#------------------------------- -[EJECTPACK] -Name = Eject Pack -NamePlural = Eject Packs -Pocket = 1 -Price = 3000 -SellPrice = 2000 -BPPrice = 20 -Flags = Fling_50 -Description = An item to be held by a Pokémon. When the holder's stats are lowered, it will be switched out of battle. -#------------------------------- -[REDCARD] -Name = Red Card -NamePlural = Red Cards -Pocket = 1 -Price = 3000 -SellPrice = 2000 -BPPrice = 20 -Flags = Fling_10 -Description = A card with a mysterious power. When the holder is struck by a foe, the attacker is removed from battle. -#------------------------------- -[SHEDSHELL] -Name = Shed Shell -NamePlural = Shed Shells -Pocket = 1 -Price = 3000 -SellPrice = 2000 -Flags = Fling_10 -Description = An item to be held by a Pokémon. This discarded carapace lets the holder switch out of battle without fail. -#------------------------------- -[SMOKEBALL] -Name = Smoke Ball -NamePlural = Smoke Balls -Pocket = 1 -Price = 3000 -SellPrice = 2000 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It enables the holder to flee from any wild Pokémon without fail. -#------------------------------- -[LUCKYEGG] -Name = Lucky Egg -NamePlural = Lucky Eggs -Pocket = 1 -Price = 10000 -BPPrice = 77 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It is an egg filled with happiness that earns extra Exp. Points in battle. -#------------------------------- -[EXPSHARE] -Name = Exp. Share -NamePlural = Exp. Shares -Pocket = 1 -Price = 3000 -Flags = Fling_30 -Description = An item to be held by a Pokémon. The holder gets a share of a battle's Exp. Points without battling. -#------------------------------- -[AMULETCOIN] -Name = Amulet Coin -NamePlural = Amulet Coins -Pocket = 1 -Price = 10000 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It doubles a battle's prize money if the holding Pokémon joins in. -#------------------------------- -[SOOTHEBELL] -Name = Soothe Bell -NamePlural = Soothe Bells -Pocket = 1 -Price = 4000 -BPPrice = 15 -Flags = Fling_10 -Description = An item to be held by a Pokémon. The comforting chime of this bell calms the holder, making it friendly. -#------------------------------- -[CLEANSETAG] -Name = Cleanse Tag -NamePlural = Cleanse Tags -Pocket = 1 -Price = 5000 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It helps keep wild Pokémon away if the holder is the first one in the party. -#------------------------------- -[CHOICEBAND] -Name = Choice Band -NamePlural = Choice Bands -Pocket = 1 -Price = 4000 -BPPrice = 25 -Flags = Fling_10 -Description = An item to be held by a Pokémon. This headband ups Attack, but allows the use of only one move. -#------------------------------- -[CHOICESPECS] -Name = Choice Specs -NamePlural = Choice Specs -PortionName = pair of Choice Specs -PortionNamePlural = pairs of Choice Specs -Pocket = 1 -Price = 4000 -BPPrice = 25 -Flags = Fling_10 -Description = An item to be held by a Pokémon. These curious glasses boost Sp. Atk but allows the use of only one move. -#------------------------------- -[CHOICESCARF] -Name = Choice Scarf -NamePlural = Choice Scarves -Pocket = 1 -Price = 4000 -BPPrice = 25 -Flags = Fling_10 -Description = An item to be held by a Pokémon. This scarf boosts Speed but allows the use of only one move. -#------------------------------- -[HEATROCK] -Name = Heat Rock -NamePlural = Heat Rocks -Pocket = 1 -Price = 4000 -BPPrice = 15 -Flags = Fling_60 -Description = A Pokémon held item that extends the duration of the move Sunny Day used by the holder. -#------------------------------- -[DAMPROCK] -Name = Damp Rock -NamePlural = Damp Rocks -Pocket = 1 -Price = 4000 -BPPrice = 15 -Flags = Fling_60 -Description = A Pokémon held item that extends the duration of the move Rain Dance used by the holder. -#------------------------------- -[SMOOTHROCK] -Name = Smooth Rock -NamePlural = Smooth Rocks -Pocket = 1 -Price = 4000 -BPPrice = 15 -Flags = Fling_10 -Description = A Pokémon held item that extends the duration of the move Sandstorm used by the holder. -#------------------------------- -[ICYROCK] -Name = Icy Rock -NamePlural = Icy Rocks -Pocket = 1 -Price = 4000 -BPPrice = 15 -Flags = Fling_40 -Description = A Pokémon held item that extends the duration of the move Hail used by the holder. -#------------------------------- -[TERRAINEXTENDER] -Name = Terrain Extender -NamePlural = Terrain Extenders -Pocket = 1 -Price = 4000 -BPPrice = 15 -Flags = Fling_60 -Description = An item to be held by a Pokémon. It extends the duration of the terrain caused by the holder. -#------------------------------- -[LIGHTCLAY] -Name = Light Clay -NamePlural = Light Clays -PortionName = lump of Light Clay -PortionNamePlural = lumps of Light Clay -Pocket = 1 -Price = 4000 -BPPrice = 15 -Flags = Fling_30 -Description = An item to be held by a Pokémon. Protective moves like Light Screen and Reflect will be effective longer. -#------------------------------- -[GRIPCLAW] -Name = Grip Claw -NamePlural = Grip Claws -Pocket = 1 -Price = 4000 -BPPrice = 15 -Flags = Fling_90 -Description = A Pokémon held item that extends the duration of multiturn attacks like Bind and Wrap. -#------------------------------- -[BINDINGBAND] -Name = Binding Band -NamePlural = Binding Bands -Pocket = 1 -Price = 3000 -SellPrice = 2000 -BPPrice = 15 -Flags = Fling_30 -Description = A band that increases the power of binding moves when held. -#------------------------------- -[BIGROOT] -Name = Big Root -NamePlural = Big Roots -Pocket = 1 -Price = 4000 -BPPrice = 15 -Flags = Fling_10 -Description = A Pokémon held item that boosts the power of HP-stealing moves to let the holder recover more HP. -#------------------------------- -[BLACKSLUDGE] -Name = Black Sludge -NamePlural = Black Sludges -PortionName = blob of Black Sludge -PortionNamePlural = blobs of Black Sludge -Pocket = 1 -Price = 3000 -SellPrice = 2000 -BPPrice = 25 -Flags = Fling_30 -Description = A held item that gradually restores the HP of Poison-type Pokémon. It inflicts damage on all other types. -#------------------------------- -[LEFTOVERS] -Name = Leftovers -NamePlural = Leftovers -PortionName = serving of Leftovers -PortionNamePlural = servings of Leftovers -Pocket = 1 -Price = 4000 -BPPrice = 25 -Flags = Fling_10 -Description = An item to be held by a Pokémon. The holder's HP is gradually restored during battle. -#------------------------------- -[SHELLBELL] -Name = Shell Bell -NamePlural = Shell Bells -Pocket = 1 -Price = 4000 -BPPrice = 25 -Flags = Fling_30 -Description = An item to be held by a Pokémon. The holder's HP is restored a little every time it inflicts damage. -#------------------------------- -[MENTALHERB] -Name = Mental Herb -NamePlural = Mental Herbs -Pocket = 1 -Price = 4000 -BPPrice = 15 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It snaps the holder out of infatuation. It can be used only once. -#------------------------------- -[WHITEHERB] -Name = White Herb -NamePlural = White Herbs -Pocket = 1 -Price = 4000 -BPPrice = 15 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It restores any lowered stat in battle. It can be used only once. -#------------------------------- -[POWERHERB] -Name = Power Herb -NamePlural = Power Herbs -Pocket = 1 -Price = 4000 -BPPrice = 15 -Flags = Fling_10 -Description = A single-use item to be held by a Pokémon. It allows the immediate use of a move that charges up first. -#------------------------------- -[ABSORBBULB] -Name = Absorb Bulb -NamePlural = Absorb Bulbs -Pocket = 1 -Price = 4000 -BPPrice = 10 -Flags = Fling_30 -Description = A consumable bulb. If the holder is hit by a Water-type move, its Sp. Atk will rise. -#------------------------------- -[CELLBATTERY] -Name = Cell Battery -NamePlural = Cell Batteries -Pocket = 1 -Price = 4000 -BPPrice = 10 -Flags = Fling_30 -Description = A consumable battery. If the holder is hit by an Electric-type move, its Attack will rise. -#------------------------------- -[LUMINOUSMOSS] -Name = Luminous Moss -NamePlural = Luminous Moss -PortionName = clump of Luminous Moss -PortionNamePlural = clumps of Luminous Moss -Pocket = 1 -Price = 4000 -BPPrice = 10 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It boosts Sp. Def if hit by a Water-type attack. It can only be used once. -#------------------------------- -[SNOWBALL] -Name = Snowball -NamePlural = Snowballs -Pocket = 1 -Price = 4000 -BPPrice = 10 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It boosts Attack if hit by an Ice-type attack. It can only be used once. -#------------------------------- -[WEAKNESSPOLICY] -Name = Weakness Policy -NamePlural = Weakness Policies -Pocket = 1 -Price = 1000 -BPPrice = 20 -Flags = Fling_80 -Description = An item to be held by a Pokémon. The holder's Attack and Sp. Atk sharply increase if hit by a move it's weak to. -#------------------------------- -[BLUNDERPOLICY] -Name = Blunder Policy -NamePlural = Blunder Policies -Pocket = 1 -Price = 4000 -BPPrice = 20 -Flags = Fling_80 -Description = Raises Speed sharply when a Pokémon misses with a move because of accuracy. -#------------------------------- -[THROATSPRAY] -Name = Throat Spray -NamePlural = Throat Sprays -PortionName = bottle of Throat Spray -PortionNamePlural = bottles of Throat Spray -Pocket = 1 -Price = 4000 -BPPrice = 10 -Flags = Fling_30 -Description = Raises Sp. Atk when a Pokémon uses a sound-based move. -#------------------------------- -[ADRENALINEORB] -Name = Adrenaline Orb -NamePlural = Adrenaline Orbs -Pocket = 1 -Price = 300 -BPPrice = 10 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It boosts Speed when intimidated. It can be used only once. -#------------------------------- -[ROOMSERVICE] -Name = Room Service -NamePlural = Room Services -PortionName = voucher for Room Service -PortionNamePlural = vouchers for Room Service -Pocket = 1 -Price = 4000 -BPPrice = 15 -Flags = Fling_100 -Description = An item to be held by a Pokémon. Lowers Speed when Trick Room takes effect. -#------------------------------- -[ELECTRICSEED] -Name = Electric Seed -NamePlural = Electric Seeds -Pocket = 1 -Price = 3000 -SellPrice = 2000 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It boosts Defense on Electric Terrain. It can only be used once. -#------------------------------- -[GRASSYSEED] -Name = Grassy Seed -NamePlural = Grassy Seeds -Pocket = 1 -Price = 3000 -SellPrice = 2000 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It boosts Defense on Grassy Terrain. It can only be used once. -#------------------------------- -[MISTYSEED] -Name = Misty Seed -NamePlural = Misty Seeds -Pocket = 1 -Price = 3000 -SellPrice = 2000 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It boosts Sp. Def on Misty Terrain. It can only be used once. -#------------------------------- -[PSYCHICSEED] -Name = Psychic Seed -NamePlural = Psychic Seeds -Pocket = 1 -Price = 3000 -SellPrice = 2000 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It boosts Sp. Def on Psychic Terrain. It can only be used once. -#------------------------------- -[LIFEORB] -Name = Life Orb -NamePlural = Life Orbs -Pocket = 1 -Price = 4000 -BPPrice = 25 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It boosts the power of moves, but at the cost of some HP on each hit. -#------------------------------- -[EXPERTBELT] -Name = Expert Belt -NamePlural = Expert Belts -Pocket = 1 -Price = 4000 -BPPrice = 25 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It is a well-worn belt that slightly boosts the power of supereffective moves. -#------------------------------- -[METRONOME] -Name = Metronome -NamePlural = Metronomes -Pocket = 1 -Price = 3000 -SellPrice = 2000 -BPPrice = 25 -Flags = Fling_30 -Description = A Pokémon held item that boosts a move used consecutively. Its effect is reset if another move is used. -#------------------------------- -[MUSCLEBAND] -Name = Muscle Band -NamePlural = Muscle Bands -Pocket = 1 -Price = 4000 -BPPrice = 48 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It is a headband that slightly boosts the power of physical moves. -#------------------------------- -[WISEGLASSES] -Name = Wise Glasses -NamePlural = Wise Glasses -PortionName = pair of Wise Glasses -PortionNamePlural = pairs of Wise Glasses -Pocket = 1 -Price = 4000 -BPPrice = 48 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It is a thick pair of glasses that slightly boosts the power of special moves. -#------------------------------- -[RAZORCLAW] -Name = Razor Claw -NamePlural = Razor Claws -Pocket = 1 -Price = 3000 -SellPrice = 2500 -BPPrice = 5 -Flags = Fling_80 -Description = An item to be held by a Pokémon. It is a sharply hooked claw that ups the holder's critical-hit ratio. -#------------------------------- -[SCOPELENS] -Name = Scope Lens -NamePlural = Scope Lenses -Pocket = 1 -Price = 4000 -BPPrice = 48 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It is a lens that boosts the holder's critical-hit ratio. -#------------------------------- -[WIDELENS] -Name = Wide Lens -NamePlural = Wide Lenses -Pocket = 1 -Price = 4000 -BPPrice = 48 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It is a magnifying lens that slightly boosts the accuracy of moves. -#------------------------------- -[ZOOMLENS] -Name = Zoom Lens -NamePlural = Zoom Lenses -Pocket = 1 -Price = 4000 -BPPrice = 48 -Flags = Fling_10 -Description = An item to be held by a Pokémon. If the holder moves after its target, its accuracy will be boosted. -#------------------------------- -[KINGSROCK] -Name = King's Rock -NamePlural = King's Rocks -Pocket = 1 -Price = 5000 -BPPrice = 5 -Flags = Fling_30 -Description = An item to be held by a Pokémon. When the holder inflicts damage, the target may flinch. -#------------------------------- -[RAZORFANG] -Name = Razor Fang -NamePlural = Razor Fangs -Pocket = 1 -Price = 5000 -BPPrice = 5 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It may make foes and allies flinch when the holder inflicts damage. -#------------------------------- -[LAGGINGTAIL] -Name = Lagging Tail -NamePlural = Lagging Tails -Pocket = 1 -Price = 4000 -BPPrice = 25 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It is tremendously heavy and makes the holder move slower than usual. -#------------------------------- -[QUICKCLAW] -Name = Quick Claw -NamePlural = Quick Claws -Pocket = 1 -Price = 3000 -SellPrice = 2000 -BPPrice = 25 -Flags = Fling_80 -Description = An item to be held by a Pokémon. A light, sharp claw that lets the bearer move first occasionally. -#------------------------------- -[FOCUSBAND] -Name = Focus Band -NamePlural = Focus Bands -Pocket = 1 -Price = 3000 -SellPrice = 2000 -BPPrice = 48 -Flags = Fling_10 -Description = An item to be held by a Pokémon. The holder may endure a potential KO attack, leaving it with just 1 HP. -#------------------------------- -[FOCUSSASH] -Name = Focus Sash -NamePlural = Focus Sashes -Pocket = 1 -Price = 3000 -SellPrice = 2000 -BPPrice = 15 -Flags = Fling_10 -Description = An item to be held by a Pokémon. If it has full HP, the holder will endure one potential KO attack, leaving 1 HP. -#------------------------------- -[FLAMEORB] -Name = Flame Orb -NamePlural = Flame Orbs -Pocket = 1 -Price = 4000 -BPPrice = 16 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It is a bizarre orb that inflicts a burn on the holder in battle. -#------------------------------- -[TOXICORB] -Name = Toxic Orb -NamePlural = Toxic Orbs -Pocket = 1 -Price = 4000 -BPPrice = 16 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It is a bizarre orb that badly poisons the holder in battle. -#------------------------------- -[STICKYBARB] -Name = Sticky Barb -NamePlural = Sticky Barbs -Pocket = 1 -Price = 4000 -BPPrice = 16 -Flags = Fling_80 -Description = A held item that damages the holder on every turn. It may latch on to Pokémon that touch the holder. -#------------------------------- -[IRONBALL] -Name = Iron Ball -NamePlural = Iron Balls -Pocket = 1 -Price = 4000 -BPPrice = 10 -Flags = Fling_130 -Description = A Pokémon held item that cuts Speed. It makes Flying-type and levitating holders susceptible to Ground moves. -#------------------------------- -[RINGTARGET] -Name = Ring Target -NamePlural = Ring Targets -Pocket = 1 -Price = 3000 -SellPrice = 2000 -BPPrice = 10 -Flags = Fling_10 -Description = Moves that would otherwise have no effect will land on the Pokémon that holds it. -#------------------------------- -[MACHOBRACE] -Name = Macho Brace -NamePlural = Macho Braces -Pocket = 1 -Price = 3000 -BPPrice = 10 -Flags = Fling_60 -Description = An item to be held by a Pokémon. It is a stiff, heavy brace that promotes strong growth but lowers Speed. -#------------------------------- -[POWERWEIGHT] -Name = Power Weight -NamePlural = Power Weights -Pocket = 1 -Price = 3000 -BPPrice = 10 -Flags = Fling_70 -Description = A Pokémon held item that promotes HP gain on leveling, but reduces the Speed stat. -#------------------------------- -[POWERBRACER] -Name = Power Bracer -NamePlural = Power Bracers -Pocket = 1 -Price = 3000 -BPPrice = 10 -Flags = Fling_70 -Description = A Pokémon held item that promotes Attack gain on leveling, but reduces the Speed stat. -#------------------------------- -[POWERBELT] -Name = Power Belt -NamePlural = Power Belts -Pocket = 1 -Price = 3000 -BPPrice = 10 -Flags = Fling_70 -Description = A Pokémon held item that promotes Defense gain on leveling, but reduces the Speed stat. -#------------------------------- -[POWERLENS] -Name = Power Lens -NamePlural = Power Lenses -Pocket = 1 -Price = 3000 -BPPrice = 10 -Flags = Fling_70 -Description = A Pokémon held item that promotes Sp. Atk gain on leveling, but reduces the Speed stat. -#------------------------------- -[POWERBAND] -Name = Power Band -NamePlural = Power Bands -Pocket = 1 -Price = 3000 -BPPrice = 10 -Flags = Fling_70 -Description = A Pokémon held item that promotes Sp. Def gain on leveling, but reduces the Speed stat. -#------------------------------- -[POWERANKLET] -Name = Power Anklet -NamePlural = Power Anklets -Pocket = 1 -Price = 3000 -BPPrice = 10 -Flags = Fling_70 -Description = A Pokémon held item that promotes Speed gain on leveling, but reduces the Speed stat. -#------------------------------- -[LAXINCENSE] -Name = Lax Incense -NamePlural = Lax Incenses -PortionName = jar of Lax Incense -PortionNamePlural = jars of Lax Incense -Pocket = 1 -Price = 5000 -Flags = Fling_10 -Description = An item to be held by a Pokémon. The tricky aroma of this incense may make attacks miss the holder. -#------------------------------- -[FULLINCENSE] -Name = Full Incense -NamePlural = Full Incenses -PortionName = jar of Full Incense -PortionNamePlural = jars of Full Incense -Pocket = 1 -Price = 5000 -Flags = Fling_10 -Description = An item to be held by a Pokémon. This exotic-smelling incense makes the holder bloated and slow moving. -#------------------------------- -[LUCKINCENSE] -Name = Luck Incense -NamePlural = Luck Incenses -PortionName = jar of Luck Incense -PortionNamePlural = jars of Luck Incense -Pocket = 1 -Price = 11000 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It doubles a battle's prize money if the holding Pokémon joins in. -#------------------------------- -[PUREINCENSE] -Name = Pure Incense -NamePlural = Pure Incenses -PortionName = jar of Pure Incense -PortionNamePlural = jars of Pure Incense -Pocket = 1 -Price = 6000 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It helps keep wild Pokémon away if the holder is the first one in the party. -#------------------------------- -[SEAINCENSE] -Name = Sea Incense -NamePlural = Sea Incenses -PortionName = jar of Sea Incense -PortionNamePlural = jars of Sea Incense -Pocket = 1 -Price = 2000 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It has a curious aroma that boosts the power of Water-type moves. -#------------------------------- -[WAVEINCENSE] -Name = Wave Incense -NamePlural = Wave Incenses -PortionName = jar of Wave Incense -PortionNamePlural = jars of Wave Incense -Pocket = 1 -Price = 2000 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It has a curious aroma that boosts the power of Water-type moves. -#------------------------------- -[ROSEINCENSE] -Name = Rose Incense -NamePlural = Rose Incenses -PortionName = jar of Rose Incense -PortionNamePlural = jars of Rose Incense -Pocket = 1 -Price = 2000 -Flags = Fling_10 -Description = An item to be held by a Pokémon. This exotic-smelling incense boosts the power of Grass-type moves. -#------------------------------- -[ODDINCENSE] -Name = Odd Incense -NamePlural = Odd Incenses -PortionName = jar of Odd Incense -PortionNamePlural = jars of Odd Incense -Pocket = 1 -Price = 2000 -Flags = Fling_10 -Description = An item to be held by a Pokémon. This exotic-smelling incense boosts the power of Psychic-type moves. -#------------------------------- -[ROCKINCENSE] -Name = Rock Incense -NamePlural = Rock Incenses -PortionName = jar of Rock Incense -PortionNamePlural = jars of Rock Incense -Pocket = 1 -Price = 2000 -Flags = Fling_10 -Description = An item to be held by a Pokémon. This exotic-smelling incense boosts the power of Rock-type moves. -#------------------------------- -[CHARCOAL] -Name = Charcoal -NamePlural = Charcoals -PortionName = piece of Charcoal -PortionNamePlural = pieces of Charcoal -Pocket = 1 -Price = 3000 -SellPrice = 500 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It is a combustible fuel that boosts the power of Fire-type moves. -#------------------------------- -[MYSTICWATER] -Name = Mystic Water -NamePlural = Mystic Waters -Pocket = 1 -Price = 3000 -SellPrice = 500 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It is a teardrop-shaped gem that ups the power of Water-type moves. -#------------------------------- -[MAGNET] -Name = Magnet -NamePlural = Magnets -Pocket = 1 -Price = 3000 -SellPrice = 500 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It is a powerful magnet that boosts the power of Electric-type moves. -#------------------------------- -[MIRACLESEED] -Name = Miracle Seed -NamePlural = Miracle Seeds -Pocket = 1 -Price = 3000 -SellPrice = 500 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It is a seed imbued with life that ups the power of Grass-type moves. -#------------------------------- -[NEVERMELTICE] -Name = Never-Melt Ice -NamePlural = Never-Melt Ices -PortionName = piece of Never-Melt Ice -PortionNamePlural = pieces of Never-Melt Ice -Pocket = 1 -Price = 3000 -SellPrice = 500 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It is a piece of ice that repels heat and boosts Ice-type moves. -#------------------------------- -[BLACKBELT] -Name = Black Belt -NamePlural = Black Belts -Pocket = 1 -Price = 3000 -SellPrice = 500 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It is a belt that boosts determination and Fighting-type moves. -#------------------------------- -[POISONBARB] -Name = Poison Barb -NamePlural = Poison Barbs -Pocket = 1 -Price = 3000 -SellPrice = 500 -Flags = Fling_70 -Description = An item to be held by a Pokémon. It is a small, poisonous barb that ups the power of Poison-type moves. -#------------------------------- -[SOFTSAND] -Name = Soft Sand -NamePlural = Soft Sand -PortionName = bag of Soft Sand -PortionNamePlural = bags of Soft Sand -Pocket = 1 -Price = 3000 -SellPrice = 500 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It is a loose, silky sand that boosts the power of Ground-type moves. -#------------------------------- -[SHARPBEAK] -Name = Sharp Beak -NamePlural = Sharp Beaks -Pocket = 1 -Price = 3000 -SellPrice = 500 -Flags = Fling_50 -Description = An item to be held by a Pokémon. It is a long, sharp beak that boosts the power of Flying-type moves. -#------------------------------- -[TWISTEDSPOON] -Name = Twisted Spoon -NamePlural = Twisted Spoons -Pocket = 1 -Price = 3000 -SellPrice = 500 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It is a spoon imbued with telekinetic power that boosts Psychic-type moves. -#------------------------------- -[SILVERPOWDER] -Name = Silver Powder -NamePlural = Silver Powders -PortionName = pile of Silver Powder -PortionNamePlural = piles of Silver Powder -Pocket = 1 -Price = 3000 -SellPrice = 500 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It is a shiny, silver powder that ups the power of Bug-type moves. -#------------------------------- -[HARDSTONE] -Name = Hard Stone -NamePlural = Hard Stones -Pocket = 1 -Price = 3000 -SellPrice = 500 -Flags = Fling_100 -Description = An item to be held by a Pokémon. It is an unbreakable stone that ups the power of Rock-type moves. -#------------------------------- -[SPELLTAG] -Name = Spell Tag -NamePlural = Spell Tags -Pocket = 1 -Price = 3000 -SellPrice = 500 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It is a sinister, eerie tag that boosts the power of Ghost-type moves. -#------------------------------- -[DRAGONFANG] -Name = Dragon Fang -NamePlural = Dragon Fangs -Pocket = 1 -Price = 3000 -SellPrice = 500 -Flags = Fling_70 -Description = An item to be held by a Pokémon. It is a hard and sharp fang that ups the power of Dragon-type moves. -#------------------------------- -[BLACKGLASSES] -Name = Black Glasses -NamePlural = Black Glasses -PortionName = pair of Black Glasses -PortionNamePlural = pairs of Black Glasses -Pocket = 1 -Price = 3000 -SellPrice = 500 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It is a shady-looking pair of glasses that boosts Dark-type moves. -#------------------------------- -[METALCOAT] -Name = Metal Coat -NamePlural = Metal Coats -Pocket = 1 -Price = 3000 -SellPrice = 1000 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It is a special metallic film that ups the power of Steel-type moves. -#------------------------------- -[SILKSCARF] -Name = Silk Scarf -NamePlural = Silk Scarves -Pocket = 1 -Price = 3000 -SellPrice = 500 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It is a sumptuous scarf that boosts the power of Normal-type moves. -#------------------------------- -[FLAMEPLATE] -Name = Flame Plate -NamePlural = Flame Plates -Pocket = 1 -Price = 10000 -SellPrice = 500 -Flags = Fling_90 -Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Fire-type moves. -#------------------------------- -[SPLASHPLATE] -Name = Splash Plate -NamePlural = Splash Plates -Pocket = 1 -Price = 10000 -SellPrice = 500 -Flags = Fling_90 -Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Water-type moves. -#------------------------------- -[ZAPPLATE] -Name = Zap Plate -NamePlural = Zap Plates -Pocket = 1 -Price = 10000 -SellPrice = 500 -Flags = Fling_90 -Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Electric-type moves. -#------------------------------- -[MEADOWPLATE] -Name = Meadow Plate -NamePlural = Meadow Plates -Pocket = 1 -Price = 10000 -SellPrice = 500 -Flags = Fling_90 -Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Grass-type moves. -#------------------------------- -[ICICLEPLATE] -Name = Icicle Plate -NamePlural = Icicle Plates -Pocket = 1 -Price = 10000 -SellPrice = 500 -Flags = Fling_90 -Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Ice-type moves. -#------------------------------- -[FISTPLATE] -Name = Fist Plate -NamePlural = Fist Plates -Pocket = 1 -Price = 10000 -SellPrice = 500 -Flags = Fling_90 -Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Fighting-type moves. -#------------------------------- -[TOXICPLATE] -Name = Toxic Plate -NamePlural = Toxic Plates -Pocket = 1 -Price = 10000 -SellPrice = 500 -Flags = Fling_90 -Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Poison-type moves. -#------------------------------- -[EARTHPLATE] -Name = Earth Plate -NamePlural = Earth Plates -Pocket = 1 -Price = 10000 -SellPrice = 500 -Flags = Fling_90 -Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Ground-type moves. -#------------------------------- -[SKYPLATE] -Name = Sky Plate -NamePlural = Sky Plates -Pocket = 1 -Price = 10000 -SellPrice = 500 -Flags = Fling_90 -Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Flying-type moves. -#------------------------------- -[MINDPLATE] -Name = Mind Plate -NamePlural = Mind Plates -Pocket = 1 -Price = 10000 -SellPrice = 500 -Flags = Fling_90 -Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Psychic-type moves. -#------------------------------- -[INSECTPLATE] -Name = Insect Plate -NamePlural = Insect Plates -Pocket = 1 -Price = 10000 -SellPrice = 500 -Flags = Fling_90 -Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Bug-type moves. -#------------------------------- -[STONEPLATE] -Name = Stone Plate -NamePlural = Stone Plates -Pocket = 1 -Price = 10000 -SellPrice = 500 -Flags = Fling_90 -Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Rock-type moves. -#------------------------------- -[SPOOKYPLATE] -Name = Spooky Plate -NamePlural = Spooky Plates -Pocket = 1 -Price = 10000 -SellPrice = 500 -Flags = Fling_90 -Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Ghost-type moves. -#------------------------------- -[DRACOPLATE] -Name = Draco Plate -NamePlural = Draco Plates -Pocket = 1 -Price = 10000 -SellPrice = 500 -Flags = Fling_90 -Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Dragon-type moves. -#------------------------------- -[DREADPLATE] -Name = Dread Plate -NamePlural = Dread Plates -Pocket = 1 -Price = 10000 -SellPrice = 500 -Flags = Fling_90 -Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Dark-type moves. -#------------------------------- -[IRONPLATE] -Name = Iron Plate -NamePlural = Iron Plates -Pocket = 1 -Price = 10000 -SellPrice = 500 -Flags = Fling_90 -Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Steel-type moves. -#------------------------------- -[PIXIEPLATE] -Name = Pixie Plate -NamePlural = Pixie Plates -Pocket = 1 -Price = 10000 -SellPrice = 500 -Flags = Fling_90 -Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Fairy-type moves. -#------------------------------- -[FIREGEM] -Name = Fire Gem -NamePlural = Fire Gems -Pocket = 1 -Price = 4000 -Flags = TypeGem -Description = A gem with an essence of fire. When held, it strengthens the power of a Fire-type move only once. -#------------------------------- -[WATERGEM] -Name = Water Gem -NamePlural = Water Gems -Pocket = 1 -Price = 4000 -Flags = TypeGem -Description = A gem with an essence of water. When held, it strengthens the power of a Water-type move only once. -#------------------------------- -[ELECTRICGEM] -Name = Electric Gem -NamePlural = Electric Gems -Pocket = 1 -Price = 4000 -Flags = TypeGem -Description = A gem with an essence of electricity. When held, it strengthens the power of an Electric-type move only once. -#------------------------------- -[GRASSGEM] -Name = Grass Gem -NamePlural = Grass Gems -Pocket = 1 -Price = 4000 -Flags = TypeGem -Description = A gem with an essence of nature. When held, it strengthens the power of a Grass-type move only once. -#------------------------------- -[ICEGEM] -Name = Ice Gem -NamePlural = Ice Gems -Pocket = 1 -Price = 4000 -Flags = TypeGem -Description = A gem with an essence of ice. When held, it strengthens the power of an Ice-type move only once. -#------------------------------- -[FIGHTINGGEM] -Name = Fighting Gem -NamePlural = Fighting Gems -Pocket = 1 -Price = 4000 -Flags = TypeGem -Description = A gem with an essence of combat. When held, it strengthens the power of a Fighting-type move only once. -#------------------------------- -[POISONGEM] -Name = Poison Gem -NamePlural = Poison Gems -Pocket = 1 -Price = 4000 -Flags = TypeGem -Description = A gem with an essence of poison. When held, it strengthens the power of a Poison-type move only once. -#------------------------------- -[GROUNDGEM] -Name = Ground Gem -NamePlural = Ground Gems -Pocket = 1 -Price = 4000 -Flags = TypeGem -Description = A gem with an essence of land. When held, it strengthens the power of a Ground-type move only once. -#------------------------------- -[FLYINGGEM] -Name = Flying Gem -NamePlural = Flying Gems -Pocket = 1 -Price = 4000 -Flags = TypeGem -Description = A gem with an essence of air. When held, it strengthens the power of a Flying-type move only once. -#------------------------------- -[PSYCHICGEM] -Name = Psychic Gem -NamePlural = Psychic Gems -Pocket = 1 -Price = 4000 -Flags = TypeGem -Description = A gem with an essence of the mind. When held, it strengthens the power of a Psychic-type move only once. -#------------------------------- -[BUGGEM] -Name = Bug Gem -NamePlural = Bug Gems -Pocket = 1 -Price = 4000 -Flags = TypeGem -Description = A gem with an insect-like essence. When held, it strengthens the power of a Bug-type move only once. -#------------------------------- -[ROCKGEM] -Name = Rock Gem -NamePlural = Rock Gems -Pocket = 1 -Price = 4000 -Flags = TypeGem -Description = A gem with an essence of rock. When held, it strengthens the power of a Rock-type move only once. -#------------------------------- -[GHOSTGEM] -Name = Ghost Gem -NamePlural = Ghost Gems -Pocket = 1 -Price = 4000 -Flags = TypeGem -Description = A gem with a spectral essence. When held, it strengthens the power of a Ghost-type move only once. -#------------------------------- -[DRAGONGEM] -Name = Dragon Gem -NamePlural = Dragon Gems -Pocket = 1 -Price = 4000 -Flags = TypeGem -Description = A gem with a draconic essence. When held, it strengthens the power of a Dragon-type move only once. -#------------------------------- -[DARKGEM] -Name = Dark Gem -NamePlural = Dark Gems -Pocket = 1 -Price = 4000 -Flags = TypeGem -Description = A gem with an essence of darkness. When held, it strengthens the power of a Dark-type move only once. -#------------------------------- -[STEELGEM] -Name = Steel Gem -NamePlural = Steel Gems -Pocket = 1 -Price = 4000 -Flags = TypeGem -Description = A gem with an essence of steel. When held, it strengthens the power of a Steel-type move only once. -#------------------------------- -[FAIRYGEM] -Name = Fairy Gem -NamePlural = Fairy Gems -Pocket = 1 -Price = 4000 -Flags = TypeGem -Description = A gem with an essence of the fey. When held, it strengthens the power of a Fairy-type move only once. -#------------------------------- -[NORMALGEM] -Name = Normal Gem -NamePlural = Normal Gems -Pocket = 1 -Price = 4000 -Flags = TypeGem -Description = A gem with an ordinary essence. When held, it strengthens the power of a Normal-type move only once. -#------------------------------- -[LIGHTBALL] -Name = Light Ball -NamePlural = Light Balls -Pocket = 1 -Price = 1000 -Flags = Fling_30 -Description = An item to be held by Pikachu. It is a puzzling orb that raises the Attack and Sp. Atk stat. -#------------------------------- -[LUCKYPUNCH] -Name = Lucky Punch -NamePlural = Lucky Punches -Pocket = 1 -Price = 1000 -BPPrice = 7 -Flags = Fling_40 -Description = An item to be held by Chansey. It is a pair of gloves that boosts Chansey's critical-hit ratio. -#------------------------------- -[METALPOWDER] -Name = Metal Powder -NamePlural = Metal Powders -PortionName = bag of Metal Powder -PortionNamePlural = bags of Metal Powder -Pocket = 1 -Price = 1000 -Flags = Fling_10 -Description = An item to be held by Ditto. Extremely fine yet hard, this odd powder boosts the Defense stat. -#------------------------------- -[QUICKPOWDER] -Name = Quick Powder -NamePlural = Quick Powders -PortionName = bag of Quick Powder -PortionNamePlural = bags of Quick Powder -Pocket = 1 -Price = 1000 -Flags = Fling_10 -Description = An item to be held by Ditto. Extremely fine yet hard, this odd powder boosts the Speed stat. -#------------------------------- -[THICKCLUB] -Name = Thick Club -NamePlural = Thick Clubs -Pocket = 1 -Price = 1000 -Flags = Fling_90 -Description = An item to be held by Cubone or Marowak. It is a hard bone of some sort that boosts the Attack stat. -#------------------------------- -[LEEK] -Name = Leek -NamePlural = Leeks -Pocket = 1 -Price = 1000 -Flags = Fling_60 -Description = An item to be held by Farfetch'd. It is a very long and stiff stalk of leek that boosts the critical-hit ratio. -#------------------------------- -[SOULDEW] -Name = Soul Dew -NamePlural = Soul Dews -Pocket = 1 -Price = 0 -Flags = Fling_30 -Description = A wondrous orb to be held by either Latios or Latias. It raises the power of Psychic- and Dragon-type moves. -#------------------------------- -[DEEPSEATOOTH] -Name = Deep Sea Tooth -NamePlural = Deep Sea Teeth -Pocket = 1 -Price = 2000 -BPPrice = 5 -Flags = Fling_90 -Description = An item to be held by Clamperl. A fang that gleams a sharp silver, it raises the Sp. Atk stat. -#------------------------------- -[DEEPSEASCALE] -Name = Deep Sea Scale -NamePlural = Deep Sea Scales -Pocket = 1 -Price = 2000 -BPPrice = 5 -Flags = Fling_30 -Description = An item to be held by Clamperl. A scale that shines a faint pink, it raises the Sp. Def stat. -#------------------------------- -[ADAMANTORB] -Name = Adamant Orb -NamePlural = Adamant Orbs -Pocket = 1 -Price = 10000 -SellPrice = 0 -Flags = Fling_60 -Description = A brightly gleaming orb to be held by Dialga. It boosts the power of Dragon- and Steel-type moves. -#------------------------------- -[LUSTROUSORB] -Name = Lustrous Orb -NamePlural = Lustrous Orbs -Pocket = 1 -Price = 10000 -SellPrice = 0 -Flags = Fling_60 -Description = A beautifully glowing orb to be held by Palkia. It boosts the power of Dragon- and Water-type moves. -#------------------------------- -[GRISEOUSORB] -Name = Griseous Orb -NamePlural = Griseous Orbs -Pocket = 1 -Price = 10000 -SellPrice = 0 -Flags = Fling_60 -Description = A glowing orb to be held by Giratina. It boosts the power of Dragon- and Ghost-type moves. -#------------------------------- -[ADAMANTCRYSTAL] -Name = Adamant Crystal -NamePlural = Adamant Crystals -Pocket = 1 -Price = 4000 -SellPrice = 0 -Flags = Fling_60 -Description = An item to be held by Dialga. This large, glowing gem wells with power and allows the Pokémon to change form. -#------------------------------- -[LUSTROUSGLOBE] -Name = Lustrous Globe -NamePlural = Lustrous Globes -Pocket = 1 -Price = 4000 -SellPrice = 0 -Flags = Fling_60 -Description = An item to be held by Palkia. This large, glowing orb wells with power and allows the Pokémon to change form. -#------------------------------- -[GRISEOUSCORE] -Name = Griseous Core -NamePlural = Griseous Cores -Pocket = 1 -Price = 4000 -SellPrice = 0 -Flags = Fling_60 -Description = An item to be held by Giratina. This large, glowing gem wells with power and allows the Pokémon to change form. -#------------------------------- -[RUSTEDSWORD] -Name = Rusted Sword -NamePlural = Rusted Swords -Pocket = 1 -Price = 0 -Description = It is said that a hero used this sword to halt a disaster in ancient times. But it's grown rusty and worn. -#------------------------------- -[RUSTEDSHIELD] -Name = Rusted Shield -NamePlural = Rusted Shields -Pocket = 1 -Price = 0 -Description = It is said that a hero used this shield to halt a disaster in ancient times. But it's grown rusty and worn. -#------------------------------- -[DOUSEDRIVE] -Name = Douse Drive -NamePlural = Douse Drives -Pocket = 1 -Price = 0 -Flags = Fling_70 -Description = A cassette to be held by Genesect. It changes Techno Blast to a Water-type move. -#------------------------------- -[SHOCKDRIVE] -Name = Shock Drive -NamePlural = Shock Drives -Pocket = 1 -Price = 0 -Flags = Fling_70 -Description = A cassette to be held by Genesect. It changes Techno Blast to an Electric-type move. -#------------------------------- -[BURNDRIVE] -Name = Burn Drive -NamePlural = Burn Drives -Pocket = 1 -Price = 0 -Flags = Fling_70 -Description = A cassette to be held by Genesect. It changes Techno Blast to a Fire-type move. -#------------------------------- -[CHILLDRIVE] -Name = Chill Drive -NamePlural = Chill Drives -Pocket = 1 -Price = 0 -Flags = Fling_70 -Description = A cassette to be held by Genesect. It changes Techno Blast to an Ice-type move. -#------------------------------- -[FIREMEMORY] -Name = Fire Memory -NamePlural = Fire Memories -Pocket = 1 -Price = 1000 -Flags = Fling_50 -Description = A memory disc containing Fire-type data. It changes the holder's type if held by a certain Pokémon. -#------------------------------- -[WATERMEMORY] -Name = Water Memory -NamePlural = Water Memories -Pocket = 1 -Price = 1000 -Flags = Fling_50 -Description = A memory disc containing Water-type data. It changes the holder's type if held by a certain Pokémon. -#------------------------------- -[ELECTRICMEMORY] -Name = Electric Memory -NamePlural = Electric Memories -Pocket = 1 -Price = 1000 -Flags = Fling_50 -Description = A memory disc containing Electric-type data. It changes the holder's type if held by a certain Pokémon. -#------------------------------- -[GRASSMEMORY] -Name = Grass Memory -NamePlural = Grass Memories -Pocket = 1 -Price = 1000 -Flags = Fling_50 -Description = A memory disc containing Grass-type data. It changes the holder's type if held by a certain Pokémon. -#------------------------------- -[ICEMEMORY] -Name = Ice Memory -NamePlural = Ice Memories -Pocket = 1 -Price = 1000 -Flags = Fling_50 -Description = A memory disc containing Ice-type data. It changes the holder's type if held by a certain Pokémon. -#------------------------------- -[FIGHTINGMEMORY] -Name = Fighting Memory -NamePlural = Fighting Memories -Pocket = 1 -Price = 1000 -Flags = Fling_50 -Description = A memory disc containing Fighting-type data. It changes the holder's type if held by a certain Pokémon. -#------------------------------- -[POISONMEMORY] -Name = Poison Memory -NamePlural = Poison Memories -Pocket = 1 -Price = 1000 -Flags = Fling_50 -Description = A memory disc containing Poison-type data. It changes the holder's type if held by a certain Pokémon. -#------------------------------- -[GROUNDMEMORY] -Name = Ground Memory -NamePlural = Ground Memories -Pocket = 1 -Price = 1000 -Flags = Fling_50 -Description = A memory disc containing Ground-type data. It changes the holder's type if held by a certain Pokémon. -#------------------------------- -[FLYINGMEMORY] -Name = Flying Memory -NamePlural = Flying Memories -Pocket = 1 -Price = 1000 -Flags = Fling_50 -Description = A memory disc containing Flying-type data. It changes the holder's type if held by a certain Pokémon. -#------------------------------- -[PSYCHICMEMORY] -Name = Psychic Memory -NamePlural = Psychic Memories -Pocket = 1 -Price = 1000 -Flags = Fling_50 -Description = A memory disc containing Psychic-type data. It changes the holder's type if held by a certain Pokémon. -#------------------------------- -[BUGMEMORY] -Name = Bug Memory -NamePlural = Bug Memories -Pocket = 1 -Price = 1000 -Flags = Fling_50 -Description = A memory disc containing Bug-type data. It changes the holder's type if held by a certain Pokémon. -#------------------------------- -[ROCKMEMORY] -Name = Rock Memory -NamePlural = Rock Memories -Pocket = 1 -Price = 1000 -Flags = Fling_50 -Description = A memory disc containing Rock-type data. It changes the holder's type if held by a certain Pokémon. -#------------------------------- -[GHOSTMEMORY] -Name = Ghost Memory -NamePlural = Ghost Memories -Pocket = 1 -Price = 1000 -Flags = Fling_50 -Description = A memory disc containing Ghost-type data. It changes the holder's type if held by a certain Pokémon. -#------------------------------- -[DRAGONMEMORY] -Name = Dragon Memory -NamePlural = Dragon Memories -Pocket = 1 -Price = 1000 -Flags = Fling_50 -Description = A memory disc containing Dragon-type data. It changes the holder's type if held by a certain Pokémon. -#------------------------------- -[DARKMEMORY] -Name = Dark Memory -NamePlural = Dark Memories -Pocket = 1 -Price = 1000 -Flags = Fling_50 -Description = A memory disc containing Dark-type data. It changes the holder's type if held by a certain Pokémon. -#------------------------------- -[STEELMEMORY] -Name = Steel Memory -NamePlural = Steel Memories -Pocket = 1 -Price = 1000 -Flags = Fling_50 -Description = A memory disc containing Steel-type data. It changes the holder's type if held by a certain Pokémon. -#------------------------------- -[FAIRYMEMORY] -Name = Fairy Memory -NamePlural = Fairy Memories -Pocket = 1 -Price = 1000 -Flags = Fling_50 -Description = A memory disc containing Fairy-type data. It changes the holder's type if held by a certain Pokémon. -#------------------------------- -[EVERSTONE] -Name = Everstone -NamePlural = Everstones -Pocket = 1 -Price = 3000 -BPPrice = 5 -Flags = Fling_30 -Description = An item to be held by a Pokémon. The Pokémon holding this peculiar stone is prevented from evolving. -#------------------------------- -[DRAGONSCALE] -Name = Dragon Scale -NamePlural = Dragon Scales -Pocket = 1 -Price = 3000 -SellPrice = 1000 -BPPrice = 5 -Flags = Fling_30 -Description = A thick and tough scale. Dragon-type Pokémon may be holding this item when caught. -#------------------------------- -[UPGRADE] -Name = Upgrade -NamePlural = Upgrades -Pocket = 1 -Price = 3000 -SellPrice = 1000 -BPPrice = 5 -Flags = Fling_30 -Description = A transparent device filled with all sorts of data. It was produced by Silph Co. -#------------------------------- -[DUBIOUSDISC] -Name = Dubious Disc -NamePlural = Dubious Discs -Pocket = 1 -Price = 3000 -SellPrice = 1000 -BPPrice = 5 -Flags = Fling_50 -Description = A transparent device overflowing with dubious data. Its producer is unknown. -#------------------------------- -[PROTECTOR] -Name = Protector -NamePlural = Protectors -Pocket = 1 -Price = 3000 -SellPrice = 1000 -BPPrice = 5 -Flags = Fling_80 -Description = A protective item of some sort. It is extremely stiff and heavy. It is loved by a certain Pokémon. -#------------------------------- -[ELECTIRIZER] -Name = Electirizer -NamePlural = Electirizers -Pocket = 1 -Price = 3000 -SellPrice = 1000 -BPPrice = 5 -Flags = Fling_80 -Description = A box packed with a tremendous amount of electric energy. It is loved by a certain Pokémon. -#------------------------------- -[MAGMARIZER] -Name = Magmarizer -NamePlural = Magmarizers -Pocket = 1 -Price = 3000 -SellPrice = 1000 -BPPrice = 5 -Flags = Fling_80 -Description = A box packed with a tremendous amount of magma energy. It is loved by a certain Pokémon. -#------------------------------- -[REAPERCLOTH] -Name = Reaper Cloth -NamePlural = Reaper Cloths -PortionName = scrap of Reaper Cloth -PortionNamePlural = scraps of Reaper Cloth -Pocket = 1 -Price = 3000 -SellPrice = 1000 -BPPrice = 5 -Flags = Fling_10 -Description = A cloth imbued with horrifyingly strong spiritual energy. It is loved by a certain Pokémon. -#------------------------------- -[PRISMSCALE] -Name = Prism Scale -NamePlural = Prism Scales -Pocket = 1 -Price = 3000 -SellPrice = 1000 -BPPrice = 10 -Flags = Fling_30 -Description = A mysterious scale that evolves certain Pokémon. It shines in rainbow colors. -#------------------------------- -[OVALSTONE] -Name = Oval Stone -NamePlural = Oval Stones -Pocket = 1 -Price = 3000 -SellPrice = 1000 -BPPrice = 5 -Flags = Fling_80 -Description = A peculiar stone that makes certain species of Pokémon evolve. It is shaped like an egg. -#------------------------------- -[WHIPPEDDREAM] -Name = Whipped Dream -NamePlural = Whipped Dreams -PortionName = dollop of Whipped Dream -PortionNamePlural = dollops of Whipped Dream -Pocket = 1 -Price = 3000 -SellPrice = 1000 -BPPrice = 5 -Flags = Fling_80 -Description = A soft and sweet treat made of fluffy, puffy and whirled cream. It's loved by a certain Pokémon. -#------------------------------- -[SACHET] -Name = Sachet -NamePlural = Sachets -Pocket = 1 -Price = 3000 -SellPrice = 1000 -BPPrice = 5 -Flags = Fling_80 -Description = A sachet filled with slightly overwhelming fragrant perfumes. Yet it's loved by a certain Pokémon. -#------------------------------- -[STRAWBERRYSWEET] -Name = Strawberry Sweet -NamePlural = Strawberry Sweets -Pocket = 1 -Price = 500 -BPPrice = 5 -Flags = Fling_10 -Description = A strawberry-shaped sweet. When a Milcery holds this, it will spin around happily. -#------------------------------- -[LOVESWEET] -Name = Love Sweet -NamePlural = Love Sweets -Pocket = 1 -Price = 500 -BPPrice = 5 -Flags = Fling_10 -Description = A heart-shaped sweet. When a Milcery holds this, it spins around happily. -#------------------------------- -[BERRYSWEET] -Name = Berry Sweet -NamePlural = Berry Sweets -Pocket = 1 -Price = 500 -BPPrice = 5 -Flags = Fling_10 -Description = A berry-shaped sweet. When a Milcery holds this, it spins around happily. -#------------------------------- -[CLOVERSWEET] -Name = Clover Sweet -NamePlural = Clover Sweets -Pocket = 1 -Price = 500 -BPPrice = 5 -Flags = Fling_10 -Description = A clover-shaped sweet. When a Milcery holds this, it spins around happily. -#------------------------------- -[FLOWERSWEET] -Name = Flower Sweet -NamePlural = Flower Sweets -Pocket = 1 -Price = 500 -BPPrice = 5 -Flags = Fling_10 -Description = A flower-shaped sweet. When a Milcery holds this, it spins around happily. -#------------------------------- -[STARSWEET] -Name = Star Sweet -NamePlural = Star Sweets -Pocket = 1 -Price = 500 -BPPrice = 5 -Flags = Fling_10 -Description = A star-shaped sweet. When a Milcery holds this, it spins around happily. -#------------------------------- -[RIBBONSWEET] -Name = Ribbon Sweet -NamePlural = Ribbon Sweets -Pocket = 1 -Price = 500 -BPPrice = 5 -Flags = Fling_10 -Description = A ribbon-shaped sweet. When a Milcery holds this, it spins around happily. -#------------------------------- -[VENUSAURITE] -Name = Venusaurite -NamePlural = Venusaurites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Venusaur hold it, and it will be able to Mega Evolve. -#------------------------------- -[CHARIZARDITEX] -Name = Charizardite X -NamePlural = Charizardite Xs -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Charizard hold it, and it will be able to Mega Evolve. -#------------------------------- -[CHARIZARDITEY] -Name = Charizardite Y -NamePlural = Charizardite Ys -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Charizard hold it, and it will be able to Mega Evolve. -#------------------------------- -[BLASTOISINITE] -Name = Blastoisinite -NamePlural = Blastoisinites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Blastoise hold it, and it will be able to Mega Evolve. -#------------------------------- -[BEEDRILLITE] -Name = Beedrillite -NamePlural = Beedrillites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Beedrill hold it, and it will be able to Mega Evolve. -#------------------------------- -[PIDGEOTITE] -Name = Pidgeotite -NamePlural = Pidgeotites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Pidgeot hold it, and it will be able to Mega Evolve. -#------------------------------- -[ALAKAZITE] -Name = Alakazite -NamePlural = Alakazites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Alakazam hold it, and it will be able to Mega Evolve. -#------------------------------- -[SLOWBRONITE] -Name = Slowbronite -NamePlural = Slowbronites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Slowbro hold it, and it will be able to Mega Evolve. -#------------------------------- -[GENGARITE] -Name = Gengarite -NamePlural = Gengarites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Gengar hold it, and it will be able to Mega Evolve. -#------------------------------- -[KANGASKHANITE] -Name = Kangaskhanite -NamePlural = Kangaskhanites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Kangaskhan hold it, and it will be able to Mega Evolve. -#------------------------------- -[PINSIRITE] -Name = Pinsirite -NamePlural = Pinsirites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Pinsir hold it, and it will be able to Mega Evolve. -#------------------------------- -[GYARADOSITE] -Name = Gyaradosite -NamePlural = Gyaradosites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Gyarados hold it, and it will be able to Mega Evolve. -#------------------------------- -[AERODACTYLITE] -Name = Aerodactylite -NamePlural = Aerodactylites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Aerodactyl hold it, and it will be able to Mega Evolve. -#------------------------------- -[MEWTWONITEX] -Name = Mewtwonite X -NamePlural = Mewtwonite Xs -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Mewtwo hold it, and it will be able to Mega Evolve. -#------------------------------- -[MEWTWONITEY] -Name = Mewtwonite Y -NamePlural = Mewtwonite Ys -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Mewtwo hold it, and it will be able to Mega Evolve. -#------------------------------- -[AMPHAROSITE] -Name = Ampharosite -NamePlural = Ampharosites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Ampharos hold it, and it will be able to Mega Evolve. -#------------------------------- -[STEELIXITE] -Name = Steelixite -NamePlural = Steelixites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Steelix hold it, and it will be able to Mega Evolve. -#------------------------------- -[SCIZORITE] -Name = Scizorite -NamePlural = Scizorites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Scizor hold it, and it will be able to Mega Evolve. -#------------------------------- -[HERACRONITE] -Name = Heracronite -NamePlural = Heracronites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Heracross hold it, and it will be able to Mega Evolve. -#------------------------------- -[HOUNDOOMINITE] -Name = Houndoominite -NamePlural = Houndoominites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Houndoom hold it, and it will be able to Mega Evolve. -#------------------------------- -[TYRANITARITE] -Name = Tyranitarite -NamePlural = Tyranitarites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Tyranitar hold it, and it will be able to Mega Evolve. -#------------------------------- -[SCEPTILITE] -Name = Sceptilite -NamePlural = Sceptilites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Sceptile hold it, and it will be able to Mega Evolve. -#------------------------------- -[BLAZIKENITE] -Name = Blazikenite -NamePlural = Blazikenites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Blaziken hold it, and it will be able to Mega Evolve. -#------------------------------- -[SWAMPERTITE] -Name = Swampertite -NamePlural = Swampertites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Swampert hold it, and it will be able to Mega Evolve. -#------------------------------- -[GARDEVOIRITE] -Name = Gardevoirite -NamePlural = Gardevoirites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Gardevoir hold it, and it will be able to Mega Evolve. -#------------------------------- -[SABLENITE] -Name = Sablenite -NamePlural = Sablenites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Sableye hold it, and it will be able to Mega Evolve. -#------------------------------- -[MAWILITE] -Name = Mawilite -NamePlural = Mawilites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Mawile hold it, and it will be able to Mega Evolve. -#------------------------------- -[AGGRONITE] -Name = Aggronite -NamePlural = Aggronites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Aggron hold it, and it will be able to Mega Evolve. -#------------------------------- -[MEDICHAMITE] -Name = Medichamite -NamePlural = Medichamites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Medicham hold it, and it will be able to Mega Evolve. -#------------------------------- -[MANECTITE] -Name = Manectite -NamePlural = Manectites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Manectric hold it, and it will be able to Mega Evolve. -#------------------------------- -[SHARPEDONITE] -Name = Sharpedonite -NamePlural = Sharpedonites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Sharpedo hold it, and it will be able to Mega Evolve. -#------------------------------- -[CAMERUPTITE] -Name = Cameruptite -NamePlural = Cameruptites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Camerupt hold it, and it will be able to Mega Evolve. -#------------------------------- -[ALTARIANITE] -Name = Altarianite -NamePlural = Altarianites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Altaria hold it, and it will be able to Mega Evolve. -#------------------------------- -[BANETTITE] -Name = Banettite -NamePlural = Banettites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Banette hold it, and it will be able to Mega Evolve. -#------------------------------- -[ABSOLITE] -Name = Absolite -NamePlural = Absolites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Absol hold it, and it will be able to Mega Evolve. -#------------------------------- -[GLALITITE] -Name = Glalitite -NamePlural = Glalitites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Glalie hold it, and it will be able to Mega Evolve. -#------------------------------- -[SALAMENCITE] -Name = Salamencite -NamePlural = Salamencites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Salamence hold it, and it will be able to Mega Evolve. -#------------------------------- -[METAGROSSITE] -Name = Metagrossite -NamePlural = Metagrossites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Metagross hold it, and it will be able to Mega Evolve. -#------------------------------- -[LATIASITE] -Name = Latiasite -NamePlural = Latiasites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Latias hold it, and it will be able to Mega Evolve. -#------------------------------- -[LATIOSITE] -Name = Latiosite -NamePlural = Latiosites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Latios hold it, and it will be able to Mega Evolve. -#------------------------------- -[LOPUNNITE] -Name = Lopunnite -NamePlural = Lopunnites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Lopunny hold it, and it will be able to Mega Evolve. -#------------------------------- -[GARCHOMPITE] -Name = Garchompite -NamePlural = Garchompites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Garchomp hold it, and it will be able to Mega Evolve. -#------------------------------- -[LUCARIONITE] -Name = Lucarionite -NamePlural = Lucarionites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Lucario hold it, and it will be able to Mega Evolve. -#------------------------------- -[ABOMASITE] -Name = Abomasite -NamePlural = Abomasites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Abomasnow hold it, and it will be able to Mega Evolve. -#------------------------------- -[GALLADITE] -Name = Galladite -NamePlural = Galladites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Gallade hold it, and it will be able to Mega Evolve. -#------------------------------- -[AUDINITE] -Name = Audinite -NamePlural = Audinites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Audino hold it, and it will be able to Mega Evolve. -#------------------------------- -[DIANCITE] -Name = Diancite -NamePlural = Diancites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Diancie hold it, and it will be able to Mega Evolve. -#------------------------------- -[REDORB] -Name = Red Orb -NamePlural = Red Orbs -Pocket = 1 -Price = 10000 -SellPrice = 0 -BPPrice = 50 -Description = A shiny red orb that is said to have a legend tied to it. It's known to be connected with the Hoenn region. -#------------------------------- -[BLUEORB] -Name = Blue Orb -NamePlural = Blue Orbs -Pocket = 1 -Price = 10000 -SellPrice = 0 -BPPrice = 50 -Description = A shiny blue orb that is said to have a legend tied to it. It's known to be connected with the Hoenn region. +[GRASSMAIL] +Name = Grass Mail +NamePlural = Grass Mail +PortionName = piece of Grass Mail +PortionNamePlural = pieces of Grass Mail +Pocket = Items +Price = 50 +Flags = IconMail +Description = Stationery featuring a print of a refreshingly green field. Let a Pokémon hold it for delivery. +#------------------------------- +[FLAMEMAIL] +Name = Flame Mail +NamePlural = Flame Mail +PortionName = piece of Flame Mail +PortionNamePlural = pieces of Flame Mail +Pocket = Items +Price = 50 +Flags = IconMail +Description = Stationery featuring a print of flames in blazing red. Let a Pokémon hold it for delivery. +#------------------------------- +[BUBBLEMAIL] +Name = Bubble Mail +NamePlural = Bubble Mail +PortionName = piece of Bubble Mail +PortionNamePlural = pieces of Bubble Mail +Pocket = Items +Price = 50 +Flags = IconMail +Description = Stationery featuring a print of a blue world underwater. Let a Pokémon hold it for delivery. +#------------------------------- +[BLOOMMAIL] +Name = Bloom Mail +NamePlural = Bloom Mail +PortionName = piece of Bloom Mail +PortionNamePlural = pieces of Bloom Mail +Pocket = Items +Price = 50 +Flags = IconMail +Description = Stationery featuring a print of pretty floral patterns. Let a Pokémon hold it for delivery. +#------------------------------- +[TUNNELMAIL] +Name = Tunnel Mail +NamePlural = Tunnel Mail +PortionName = piece of Tunnel Mail +PortionNamePlural = pieces of Tunnel Mail +Pocket = Items +Price = 50 +Flags = IconMail +Description = Stationery featuring a print of a dimly lit coal mine. Let a Pokémon hold it for delivery. +#------------------------------- +[STEELMAIL] +Name = Steel Mail +NamePlural = Steel Mail +PortionName = piece of Steel Mail +PortionNamePlural = pieces of Steel Mail +Pocket = Items +Price = 50 +Flags = IconMail +Description = Stationery featuring a print of cool mechanical designs. Let a Pokémon hold it for delivery. +#------------------------------- +[HEARTMAIL] +Name = Heart Mail +NamePlural = Heart Mail +PortionName = piece of Heart Mail +PortionNamePlural = pieces of Heart Mail +Pocket = Items +Price = 50 +Flags = IconMail +Description = Stationery featuring a print of giant heart patterns. Let a Pokémon hold it for delivery. +#------------------------------- +[SNOWMAIL] +Name = Snow Mail +NamePlural = Snow Mail +PortionName = piece of Snow Mail +PortionNamePlural = pieces of Snow Mail +Pocket = Items +Price = 50 +Flags = IconMail +Description = Stationery featuring a print of a chilly, snow-covered world. Let a Pokémon hold it for delivery. +#------------------------------- +[SPACEMAIL] +Name = Space Mail +NamePlural = Space Mail +PortionName = piece of Space Mail +PortionNamePlural = pieces of Space Mail +Pocket = Items +Price = 50 +Flags = IconMail +Description = Stationery featuring a print depicting the huge expanse of space. Let a Pokémon hold it for delivery. +#------------------------------- +[AIRMAIL] +Name = Air Mail +NamePlural = Air Mail +PortionName = piece of Air Mail +PortionNamePlural = pieces of Air Mail +Pocket = Items +Price = 50 +Flags = IconMail +Description = Stationery featuring a print of colorful letter sets. Let a Pokémon hold it for delivery. +#------------------------------- +[MOSAICMAIL] +Name = Mosaic Mail +NamePlural = Mosaic Mail +PortionName = piece of Mosaic Mail +PortionNamePlural = pieces of Mosaic Mail +Pocket = Items +Price = 50 +Flags = IconMail +Description = Stationery featuring a print of a vivid rainbow pattern. Let a Pokémon hold it for delivery. +#------------------------------- +[BRICKMAIL] +Name = Brick Mail +NamePlural = Brick Mail +PortionName = piece of Brick Mail +PortionNamePlural = pieces of Brick Mail +Pocket = Items +Price = 50 +Flags = IconMail +Description = Stationery featuring a print of a tough-looking brick pattern. Let a Pokémon hold it for delivery. #------------------------------- [POTION] Name = Potion NamePlural = Potions -Pocket = 2 +Pocket = Medicine Price = 200 FieldUse = OnPokemon BattleUse = OnPokemon @@ -3003,7 +878,7 @@ Description = A spray-type medicine for treating wounds. It can be used to resto [SUPERPOTION] Name = Super Potion NamePlural = Super Potions -Pocket = 2 +Pocket = Medicine Price = 700 FieldUse = OnPokemon BattleUse = OnPokemon @@ -3013,7 +888,7 @@ Description = A spray-type medicine for treating wounds. It can be used to resto [HYPERPOTION] Name = Hyper Potion NamePlural = Hyper Potions -Pocket = 2 +Pocket = Medicine Price = 1500 FieldUse = OnPokemon BattleUse = OnPokemon @@ -3023,7 +898,7 @@ Description = A spray-type medicine for treating wounds. It can be used to resto [MAXPOTION] Name = Max Potion NamePlural = Max Potions -Pocket = 2 +Pocket = Medicine Price = 2500 BPPrice = 2 FieldUse = OnPokemon @@ -3034,7 +909,7 @@ Description = A spray-type medicine for treating wounds. It can completely resto [FULLRESTORE] Name = Full Restore NamePlural = Full Restores -Pocket = 2 +Pocket = Medicine Price = 3000 FieldUse = OnPokemon BattleUse = OnPokemon @@ -3046,7 +921,7 @@ Name = Sacred Ash NamePlural = Sacred Ashes PortionName = bag of Sacred Ash PortionNamePlural = bags of Sacred Ash -Pocket = 2 +Pocket = Medicine Price = 50000 FieldUse = Direct Flags = Fling_30 @@ -3055,7 +930,7 @@ Description = It revives all fainted Pokémon. In doing so, it also fully restor [AWAKENING] Name = Awakening NamePlural = Awakenings -Pocket = 2 +Pocket = Medicine Price = 200 FieldUse = OnPokemon BattleUse = OnPokemon @@ -3065,7 +940,7 @@ Description = A spray-type medicine. It awakens a Pokémon from the clutches of [ANTIDOTE] Name = Antidote NamePlural = Antidotes -Pocket = 2 +Pocket = Medicine Price = 200 FieldUse = OnPokemon BattleUse = OnPokemon @@ -3075,7 +950,7 @@ Description = A spray-type medicine. It lifts the effect of poison from one Pok [BURNHEAL] Name = Burn Heal NamePlural = Burn Heals -Pocket = 2 +Pocket = Medicine Price = 200 FieldUse = OnPokemon BattleUse = OnPokemon @@ -3085,7 +960,7 @@ Description = A spray-type medicine. It heals a single Pokémon that is sufferin [PARALYZEHEAL] Name = Paralyze Heal NamePlural = Paralyze Heals -Pocket = 2 +Pocket = Medicine Price = 200 FieldUse = OnPokemon BattleUse = OnPokemon @@ -3095,7 +970,7 @@ Description = A spray-type medicine. It eliminates paralysis from a single Poké [ICEHEAL] Name = Ice Heal NamePlural = Ice Heals -Pocket = 2 +Pocket = Medicine Price = 200 FieldUse = OnPokemon BattleUse = OnPokemon @@ -3105,7 +980,7 @@ Description = A spray-type medicine. It defrosts a Pokémon that has been frozen [FULLHEAL] Name = Full Heal NamePlural = Full Heals -Pocket = 2 +Pocket = Medicine Price = 400 FieldUse = OnPokemon BattleUse = OnPokemon @@ -3117,7 +992,7 @@ Name = Pewter Crunchies NamePlural = Pewter Crunchies PortionName = bag of Pewter Crunchies PortionNamePlural = bags of Pewter Crunchies -Pocket = 2 +Pocket = Medicine Price = 250 FieldUse = OnPokemon BattleUse = OnPokemon @@ -3127,7 +1002,7 @@ Description = Pewter City's famous crunchy snack. They can be used to heal all s [RAGECANDYBAR] Name = Rage Candy Bar NamePlural = Rage Candy Bars -Pocket = 2 +Pocket = Medicine Price = 350 FieldUse = OnPokemon BattleUse = OnPokemon @@ -3137,7 +1012,7 @@ Description = Mahogany Town's famous candy. It can be used once to heal all the [LAVACOOKIE] Name = Lava Cookie NamePlural = Lava Cookies -Pocket = 2 +Pocket = Medicine Price = 350 FieldUse = OnPokemon BattleUse = OnPokemon @@ -3147,7 +1022,7 @@ Description = Lavaridge Town's local specialty. It heals all the status problems [OLDGATEAU] Name = Old Gateau NamePlural = Old Gateaux -Pocket = 2 +Pocket = Medicine Price = 350 FieldUse = OnPokemon BattleUse = OnPokemon @@ -3157,7 +1032,7 @@ Description = Old Chateau's hidden specialty. It heals all the status problems o [CASTELIACONE] Name = Casteliacone NamePlural = Casteliacones -Pocket = 2 +Pocket = Medicine Price = 350 FieldUse = OnPokemon BattleUse = OnPokemon @@ -3167,7 +1042,7 @@ Description = Castelia City's specialty, soft-serve ice cream. It heals all the [LUMIOSEGALETTE] Name = Lumiose Galette NamePlural = Lumiose Galettes -Pocket = 2 +Pocket = Medicine Price = 350 FieldUse = OnPokemon BattleUse = OnPokemon @@ -3177,7 +1052,7 @@ Description = A popular treat in Lumiose City. It can be used once to heal all t [SHALOURSABLE] Name = Shalour Sable NamePlural = Shalour Sables -Pocket = 2 +Pocket = Medicine Price = 350 FieldUse = OnPokemon BattleUse = OnPokemon @@ -3187,7 +1062,7 @@ Description = Shalour City's famous shortbread. It can be used once to heal all [BIGMALASADA] Name = Big Malasada NamePlural = Big Malasadas -Pocket = 2 +Pocket = Medicine Price = 350 FieldUse = OnPokemon BattleUse = OnPokemon @@ -3197,7 +1072,7 @@ Description = The Alola region's specialty--fried bread. It can be used once to [REVIVE] Name = Revive NamePlural = Revives -Pocket = 2 +Pocket = Medicine Price = 2000 FieldUse = OnPokemon BattleUse = OnPokemon @@ -3207,7 +1082,7 @@ Description = A medicine that revives a fainted Pokémon. It restores half the P [MAXREVIVE] Name = Max Revive NamePlural = Max Revives -Pocket = 2 +Pocket = Medicine Price = 4000 BPPrice = 20 FieldUse = OnPokemon @@ -3220,7 +1095,7 @@ Name = Berry Juice NamePlural = Berry Juices PortionName = cup of Berry Juice PortionNamePlural = cups of Berry Juice -Pocket = 2 +Pocket = Medicine Price = 100 FieldUse = OnPokemon BattleUse = OnPokemon @@ -3230,7 +1105,7 @@ Description = A 100% pure juice made of Berries. It restores the HP of one Poké [SWEETHEART] Name = Sweet Heart NamePlural = Sweet Hearts -Pocket = 2 +Pocket = Medicine Price = 3000 FieldUse = OnPokemon BattleUse = OnPokemon @@ -3242,7 +1117,7 @@ Name = Fresh Water NamePlural = Fresh Waters PortionName = bottle of Fresh Water PortionNamePlural = bottles of Fresh Water -Pocket = 2 +Pocket = Medicine Price = 200 FieldUse = OnPokemon BattleUse = OnPokemon @@ -3254,7 +1129,7 @@ Name = Soda Pop NamePlural = Soda Pops PortionName = bottle of Soda Pop PortionNamePlural = bottles of Soda Pop -Pocket = 2 +Pocket = Medicine Price = 300 FieldUse = OnPokemon BattleUse = OnPokemon @@ -3266,7 +1141,7 @@ Name = Lemonade NamePlural = Lemonades PortionName = can of Lemonade PortionNamePlural = cans of Lemonade -Pocket = 2 +Pocket = Medicine Price = 350 SellPrice = 200 FieldUse = OnPokemon @@ -3279,7 +1154,7 @@ Name = Moomoo Milk NamePlural = Moomoo Milks PortionName = bottle of Moomoo Milk PortionNamePlural = bottles of Moomoo Milk -Pocket = 2 +Pocket = Medicine Price = 600 FieldUse = OnPokemon BattleUse = OnPokemon @@ -3291,7 +1166,7 @@ Name = Energy Powder NamePlural = Energy Powders PortionName = dose of Energy Powder PortionNamePlural = doses of Energy Powder -Pocket = 2 +Pocket = Medicine Price = 500 FieldUse = OnPokemon BattleUse = OnPokemon @@ -3301,7 +1176,7 @@ Description = A very bitter medicinal powder. It can be used to restore 60 HP to [ENERGYROOT] Name = Energy Root NamePlural = Energy Roots -Pocket = 2 +Pocket = Medicine Price = 1200 FieldUse = OnPokemon BattleUse = OnPokemon @@ -3313,7 +1188,7 @@ Name = Heal Powder NamePlural = Heal Powders PortionName = dose of Heal Powder PortionNamePlural = doses of Heal Powder -Pocket = 2 +Pocket = Medicine Price = 300 FieldUse = OnPokemon BattleUse = OnPokemon @@ -3323,7 +1198,7 @@ Description = A very bitter medicine powder. It heals all the status problems of [REVIVALHERB] Name = Revival Herb NamePlural = Revival Herbs -Pocket = 2 +Pocket = Medicine Price = 2800 FieldUse = OnPokemon BattleUse = OnPokemon @@ -3335,7 +1210,7 @@ Name = Max Honey NamePlural = Max Honeys PortionName = comb of Max Honey PortionNamePlural = combs of Max Honey -Pocket = 2 +Pocket = Medicine Price = 8000 FieldUse = OnPokemon BattleUse = OnPokemon @@ -3345,7 +1220,7 @@ Description = Honey that Dynamax Vespiquen produces. It has the same effect as a [ETHER] Name = Ether NamePlural = Ethers -Pocket = 2 +Pocket = Medicine Price = 1200 BPPrice = 4 FieldUse = OnPokemon @@ -3356,7 +1231,7 @@ Description = It restores the PP of a Pokémon's selected move by a maximum of 1 [MAXETHER] Name = Max Ether NamePlural = Max Ethers -Pocket = 2 +Pocket = Medicine Price = 2000 FieldUse = OnPokemon BattleUse = OnMove @@ -3366,7 +1241,7 @@ Description = It fully restores the PP of a single selected move that has been l [ELIXIR] Name = Elixir NamePlural = Elixirs -Pocket = 2 +Pocket = Medicine Price = 3000 FieldUse = OnPokemon BattleUse = OnPokemon @@ -3376,7 +1251,7 @@ Description = It restores the PP of all the moves learned by the targeted Pokém [MAXELIXIR] Name = Max Elixir NamePlural = Max Elixirs -Pocket = 2 +Pocket = Medicine Price = 4500 FieldUse = OnPokemon BattleUse = OnPokemon @@ -3388,7 +1263,7 @@ Name = PP Up NamePlural = PP Ups PortionName = bottle of PP Up PortionNamePlural = bottles of PP Up -Pocket = 2 +Pocket = Medicine Price = 10000 BPPrice = 10 FieldUse = OnPokemon @@ -3400,7 +1275,7 @@ Name = PP Max NamePlural = PP Maxes PortionName = bottle of PP Max PortionNamePlural = bottles of PP Max -Pocket = 2 +Pocket = Medicine Price = 10000 FieldUse = OnPokemon Flags = Fling_30 @@ -3411,7 +1286,7 @@ Name = HP Up NamePlural = HP Ups PortionName = bottle of HP Up PortionNamePlural = bottles of HP Up -Pocket = 2 +Pocket = Medicine Price = 10000 FieldUse = OnPokemon Flags = Fling_30 @@ -3422,7 +1297,7 @@ Name = Protein NamePlural = Proteins PortionName = bottle of Protein PortionNamePlural = bottles of Protein -Pocket = 2 +Pocket = Medicine Price = 10000 FieldUse = OnPokemon Flags = Fling_30 @@ -3433,7 +1308,7 @@ Name = Iron NamePlural = Irons PortionName = bottle of Iron PortionNamePlural = bottles of Iron -Pocket = 2 +Pocket = Medicine Price = 10000 FieldUse = OnPokemon Flags = Fling_30 @@ -3444,7 +1319,7 @@ Name = Calcium NamePlural = Calciums PortionName = bottle of Calcium PortionNamePlural = bottles of Calcium -Pocket = 2 +Pocket = Medicine Price = 10000 FieldUse = OnPokemon Flags = Fling_30 @@ -3455,7 +1330,7 @@ Name = Zinc NamePlural = Zincs PortionName = bottle of Zinc PortionNamePlural = bottles of Zinc -Pocket = 2 +Pocket = Medicine Price = 10000 FieldUse = OnPokemon Flags = Fling_30 @@ -3466,7 +1341,7 @@ Name = Carbos NamePlural = Carbos PortionName = bottle of Carbos PortionNamePlural = bottles of Carbos -Pocket = 2 +Pocket = Medicine Price = 10000 FieldUse = OnPokemon Flags = Fling_30 @@ -3475,7 +1350,7 @@ Description = A nutritious drink for Pokémon. It raises the base Speed stat of [HEALTHFEATHER] Name = Health Feather NamePlural = Health Feathers -Pocket = 2 +Pocket = Medicine Price = 300 FieldUse = OnPokemon Flags = Fling_20 @@ -3484,7 +1359,7 @@ Description = An item for use on a Pokémon. It slightly increases the base HP o [MUSCLEFEATHER] Name = Muscle Feather NamePlural = Muscle Feathers -Pocket = 2 +Pocket = Medicine Price = 300 FieldUse = OnPokemon Flags = Fling_20 @@ -3493,7 +1368,7 @@ Description = An item for use on a Pokémon. It slightly increases the base Atta [RESISTFEATHER] Name = Resist Feather NamePlural = Resist Feathers -Pocket = 2 +Pocket = Medicine Price = 300 FieldUse = OnPokemon Flags = Fling_20 @@ -3502,7 +1377,7 @@ Description = An item for use on a Pokémon. It slightly increases the base Defe [GENIUSFEATHER] Name = Genius Feather NamePlural = Genius Feathers -Pocket = 2 +Pocket = Medicine Price = 300 FieldUse = OnPokemon Flags = Fling_20 @@ -3511,7 +1386,7 @@ Description = An item for use on a Pokémon. It slightly increases the base Sp. [CLEVERFEATHER] Name = Clever Feather NamePlural = Clever Feathers -Pocket = 2 +Pocket = Medicine Price = 300 FieldUse = OnPokemon Flags = Fling_20 @@ -3520,7 +1395,7 @@ Description = An item for use on a Pokémon. It slightly increases the base Sp. [SWIFTFEATHER] Name = Swift Feather NamePlural = Swift Feathers -Pocket = 2 +Pocket = Medicine Price = 300 FieldUse = OnPokemon Flags = Fling_20 @@ -3531,7 +1406,7 @@ Name = Lonely Mint NamePlural = Lonely Mints PortionName = sprig of Lonely Mint PortionNamePlural = sprigs of Lonely Mint -Pocket = 2 +Pocket = Medicine Price = 20 BPPrice = 50 FieldUse = OnPokemon @@ -3543,7 +1418,7 @@ Name = Adamant Mint NamePlural = Adamant Mints PortionName = sprig of Adamant Mint PortionNamePlural = sprigs of Adamant Mint -Pocket = 2 +Pocket = Medicine Price = 20 BPPrice = 50 FieldUse = OnPokemon @@ -3555,7 +1430,7 @@ Name = Naughty Mint NamePlural = Naughty Mints PortionName = sprig of Naughty Mint PortionNamePlural = sprigs of Naughty Mint -Pocket = 2 +Pocket = Medicine Price = 20 BPPrice = 50 FieldUse = OnPokemon @@ -3567,7 +1442,7 @@ Name = Brave Mint NamePlural = Brave Mints PortionName = sprig of Brave Mint PortionNamePlural = sprigs of Brave Mint -Pocket = 2 +Pocket = Medicine Price = 20 BPPrice = 50 FieldUse = OnPokemon @@ -3579,7 +1454,7 @@ Name = Bold Mint NamePlural = Bold Mints PortionName = sprig of Bold Mint PortionNamePlural = sprigs of Bold Mint -Pocket = 2 +Pocket = Medicine Price = 20 BPPrice = 50 FieldUse = OnPokemon @@ -3591,7 +1466,7 @@ Name = Impish Mint NamePlural = Impish Mints PortionName = sprig of Impish Mint PortionNamePlural = sprigs of Impish Mint -Pocket = 2 +Pocket = Medicine Price = 20 BPPrice = 50 FieldUse = OnPokemon @@ -3603,7 +1478,7 @@ Name = Lax Mint NamePlural = Lax Mints PortionName = sprig of Lax Mint PortionNamePlural = sprigs of Lax Mint -Pocket = 2 +Pocket = Medicine Price = 20 BPPrice = 50 FieldUse = OnPokemon @@ -3615,7 +1490,7 @@ Name = Relaxed Mint NamePlural = Relaxed Mints PortionName = sprig of Relaxed Mint PortionNamePlural = sprigs of Relaxed Mint -Pocket = 2 +Pocket = Medicine Price = 20 BPPrice = 50 FieldUse = OnPokemon @@ -3627,7 +1502,7 @@ Name = Modest Mint NamePlural = Modest Mints PortionName = sprig of Modest Mint PortionNamePlural = sprigs of Modest Mint -Pocket = 2 +Pocket = Medicine Price = 20 BPPrice = 50 FieldUse = OnPokemon @@ -3639,7 +1514,7 @@ Name = Mild Mint NamePlural = Mild Mints PortionName = sprig of Mild Mint PortionNamePlural = sprigs of Mild Mint -Pocket = 2 +Pocket = Medicine Price = 20 BPPrice = 50 FieldUse = OnPokemon @@ -3651,7 +1526,7 @@ Name = Rash Mint NamePlural = Rash Mints PortionName = sprig of Rash Mint PortionNamePlural = sprigs of Rash Mint -Pocket = 2 +Pocket = Medicine Price = 20 BPPrice = 50 FieldUse = OnPokemon @@ -3663,7 +1538,7 @@ Name = Quiet Mint NamePlural = Quiet Mints PortionName = sprig of Quiet Mint PortionNamePlural = sprigs of Quiet Mint -Pocket = 2 +Pocket = Medicine Price = 20 BPPrice = 50 FieldUse = OnPokemon @@ -3675,7 +1550,7 @@ Name = Calm Mint NamePlural = Calm Mints PortionName = sprig of Calm Mint PortionNamePlural = sprigs of Calm Mint -Pocket = 2 +Pocket = Medicine Price = 20 BPPrice = 50 FieldUse = OnPokemon @@ -3687,7 +1562,7 @@ Name = Gentle Mint NamePlural = Gentle Mints PortionName = sprig of Gentle Mint PortionNamePlural = sprigs of Gentle Mint -Pocket = 2 +Pocket = Medicine Price = 20 BPPrice = 50 FieldUse = OnPokemon @@ -3699,7 +1574,7 @@ Name = Careful Mint NamePlural = Careful Mints PortionName = sprig of Careful Mint PortionNamePlural = sprigs of Careful Mint -Pocket = 2 +Pocket = Medicine Price = 20 BPPrice = 50 FieldUse = OnPokemon @@ -3711,7 +1586,7 @@ Name = Sassy Mint NamePlural = Sassy Mints PortionName = sprig of Sassy Mint PortionNamePlural = sprigs of Sassy Mint -Pocket = 2 +Pocket = Medicine Price = 20 BPPrice = 50 FieldUse = OnPokemon @@ -3723,7 +1598,7 @@ Name = Timid Mint NamePlural = Timid Mints PortionName = sprig of Timid Mint PortionNamePlural = sprigs of Timid Mint -Pocket = 2 +Pocket = Medicine Price = 20 BPPrice = 50 FieldUse = OnPokemon @@ -3735,7 +1610,7 @@ Name = Hasty Mint NamePlural = Hasty Mints PortionName = sprig of Hasty Mint PortionNamePlural = sprigs of Hasty Mint -Pocket = 2 +Pocket = Medicine Price = 20 BPPrice = 50 FieldUse = OnPokemon @@ -3747,7 +1622,7 @@ Name = Jolly Mint NamePlural = Jolly Mints PortionName = sprig of Jolly Mint PortionNamePlural = sprigs of Jolly Mint -Pocket = 2 +Pocket = Medicine Price = 20 BPPrice = 50 FieldUse = OnPokemon @@ -3759,7 +1634,7 @@ Name = Naive Mint NamePlural = Naive Mints PortionName = sprig of Naive Mint PortionNamePlural = sprigs of Naive Mint -Pocket = 2 +Pocket = Medicine Price = 20 BPPrice = 50 FieldUse = OnPokemon @@ -3771,7 +1646,7 @@ Name = Serious Mint NamePlural = Serious Mints PortionName = sprig of Serious Mint PortionNamePlural = sprigs of Serious Mint -Pocket = 2 +Pocket = Medicine Price = 20 BPPrice = 50 FieldUse = OnPokemon @@ -3781,7 +1656,7 @@ Description = When a Pokémon smells this mint, all of its stats will grow at an [ABILITYCAPSULE] Name = Ability Capsule NamePlural = Ability Capsule -Pocket = 2 +Pocket = Medicine Price = 10000 BPPrice = 50 FieldUse = OnPokemon @@ -3790,7 +1665,7 @@ Description = A capsule that allows a Pokémon with two Abilities to switch betw [ABILITYPATCH] Name = Ability Patch NamePlural = Ability Patches -Pocket = 2 +Pocket = Medicine Price = 10000 BPPrice = 200 FieldUse = OnPokemon @@ -3799,7 +1674,7 @@ Description = A patch that allows a Pokémon with a regular Ability to have a ra [EXPCANDYXS] Name = Exp. Candy XS NamePlural = Exp. Candy XSs -Pocket = 2 +Pocket = Medicine Price = 20 FieldUse = OnPokemon Flags = Fling_30 @@ -3808,7 +1683,7 @@ Description = A candy packed with energy. When consumed, it will grant a Pokémo [EXPCANDYS] Name = Exp. Candy S NamePlural = Exp. Candy Ss -Pocket = 2 +Pocket = Medicine Price = 240 FieldUse = OnPokemon Flags = Fling_30 @@ -3817,7 +1692,7 @@ Description = A candy packed with energy. When consumed, it will grant a Pokémo [EXPCANDYM] Name = Exp. Candy M NamePlural = Exp. Candy Ms -Pocket = 2 +Pocket = Medicine Price = 1000 FieldUse = OnPokemon Flags = Fling_30 @@ -3826,7 +1701,7 @@ Description = A candy packed with energy. When consumed, it will grant a Pokémo [EXPCANDYL] Name = Exp. Candy L NamePlural = Exp. Candy Ls -Pocket = 2 +Pocket = Medicine Price = 3000 FieldUse = OnPokemon Flags = Fling_30 @@ -3835,7 +1710,7 @@ Description = A candy packed with energy. When consumed, it will grant a Pokémo [EXPCANDYXL] Name = Exp. Candy XL NamePlural = Exp. Candy XLs -Pocket = 2 +Pocket = Medicine Price = 10000 FieldUse = OnPokemon Flags = Fling_30 @@ -3844,7 +1719,7 @@ Description = A candy packed with energy. When consumed, it will grant a Pokémo [RARECANDY] Name = Rare Candy NamePlural = Rare Candies -Pocket = 2 +Pocket = Medicine Price = 10000 BPPrice = 20 FieldUse = OnPokemon @@ -3854,7 +1729,7 @@ Description = A candy that is packed with energy. It raises the level of a singl [MASTERBALL] Name = Master Ball NamePlural = Master Balls -Pocket = 3 +Pocket = PokeBalls Price = 0 BattleUse = OnFoe Flags = PokeBall @@ -3863,7 +1738,7 @@ Description = The best Ball with the ultimate level of performance. It will catc [ULTRABALL] Name = Ultra Ball NamePlural = Ultra Balls -Pocket = 3 +Pocket = PokeBalls Price = 800 BattleUse = OnFoe Flags = PokeBall @@ -3872,7 +1747,7 @@ Description = An ultra-performance Ball that provides a higher Pokémon catch ra [GREATBALL] Name = Great Ball NamePlural = Great Balls -Pocket = 3 +Pocket = PokeBalls Price = 600 BattleUse = OnFoe Flags = PokeBall @@ -3881,7 +1756,7 @@ Description = A good, high-performance Ball that provides a higher Pokémon catc [POKEBALL] Name = Poké Ball NamePlural = Poké Balls -Pocket = 3 +Pocket = PokeBalls Price = 200 BattleUse = OnFoe Flags = PokeBall @@ -3890,7 +1765,7 @@ Description = A device for catching wild Pokémon. It is thrown like a ball at t [SAFARIBALL] Name = Safari Ball NamePlural = Safari Balls -Pocket = 3 +Pocket = PokeBalls Price = 0 BattleUse = OnFoe Flags = PokeBall @@ -3899,7 +1774,7 @@ Description = A special Poké Ball that is used only in the Safari Zone. It is d [SPORTBALL] Name = Sport Ball NamePlural = Sport Balls -Pocket = 3 +Pocket = PokeBalls Price = 300 BattleUse = OnFoe Flags = PokeBall @@ -3908,7 +1783,7 @@ Description = A special Poké Ball for the Bug-Catching Contest. [NETBALL] Name = Net Ball NamePlural = Net Balls -Pocket = 3 +Pocket = PokeBalls Price = 1000 BattleUse = OnFoe Flags = PokeBall @@ -3917,7 +1792,7 @@ Description = A somewhat different Poké Ball that works especially well on Wate [DIVEBALL] Name = Dive Ball NamePlural = Dive Balls -Pocket = 3 +Pocket = PokeBalls Price = 1000 BattleUse = OnFoe Flags = PokeBall @@ -3926,7 +1801,7 @@ Description = A somewhat different Poké Ball that works especially well on Pok [NESTBALL] Name = Nest Ball NamePlural = Nest Balls -Pocket = 3 +Pocket = PokeBalls Price = 1000 BattleUse = OnFoe Flags = PokeBall @@ -3935,7 +1810,7 @@ Description = A somewhat different Poké Ball that works especially well on weak [REPEATBALL] Name = Repeat Ball NamePlural = Repeat Balls -Pocket = 3 +Pocket = PokeBalls Price = 1000 BattleUse = OnFoe Flags = PokeBall @@ -3944,7 +1819,7 @@ Description = A somewhat different Poké Ball that works especially well on Pok [TIMERBALL] Name = Timer Ball NamePlural = Timer Balls -Pocket = 3 +Pocket = PokeBalls Price = 1000 BattleUse = OnFoe Flags = PokeBall @@ -3953,7 +1828,7 @@ Description = A somewhat different Ball that becomes progressively better the mo [LUXURYBALL] Name = Luxury Ball NamePlural = Luxury Balls -Pocket = 3 +Pocket = PokeBalls Price = 3000 BattleUse = OnFoe Flags = PokeBall @@ -3962,7 +1837,7 @@ Description = A comfortable Poké Ball that makes a caught wild Pokémon quickly [PREMIERBALL] Name = Premier Ball NamePlural = Premier Balls -Pocket = 3 +Pocket = PokeBalls Price = 200 SellPrice = 10 BattleUse = OnFoe @@ -3972,7 +1847,7 @@ Description = A somewhat rare Poké Ball that has been specially made to commemo [DUSKBALL] Name = Dusk Ball NamePlural = Dusk Balls -Pocket = 3 +Pocket = PokeBalls Price = 1000 BattleUse = OnFoe Flags = PokeBall @@ -3981,7 +1856,7 @@ Description = A somewhat different Poké Ball that makes it easier to catch wild [HEALBALL] Name = Heal Ball NamePlural = Heal Balls -Pocket = 3 +Pocket = PokeBalls Price = 300 BattleUse = OnFoe Flags = PokeBall @@ -3990,7 +1865,7 @@ Description = A remedial Poké Ball that restores the caught Pokémon's HP and e [QUICKBALL] Name = Quick Ball NamePlural = Quick Balls -Pocket = 3 +Pocket = PokeBalls Price = 1000 BattleUse = OnFoe Flags = PokeBall @@ -3999,7 +1874,7 @@ Description = A somewhat different Poké Ball that provides a better catch rate [CHERISHBALL] Name = Cherish Ball NamePlural = Cherish Balls -Pocket = 3 +Pocket = PokeBalls Price = 0 BattleUse = OnFoe Flags = PokeBall @@ -4008,7 +1883,7 @@ Description = A quite rare Poké Ball that has been specially crafted to commemo [FASTBALL] Name = Fast Ball NamePlural = Fast Balls -Pocket = 3 +Pocket = PokeBalls Price = 300 BattleUse = OnFoe Flags = PokeBall @@ -4017,7 +1892,7 @@ Description = A Poké Ball that makes it easier to catch fast Pokémon. [LEVELBALL] Name = Level Ball NamePlural = Level Balls -Pocket = 3 +Pocket = PokeBalls Price = 300 BattleUse = OnFoe Flags = PokeBall @@ -4026,7 +1901,7 @@ Description = A Poké Ball for catching Pokémon that are a lower level than you [LUREBALL] Name = Lure Ball NamePlural = Lure Balls -Pocket = 3 +Pocket = PokeBalls Price = 300 BattleUse = OnFoe Flags = PokeBall @@ -4035,7 +1910,7 @@ Description = A Poké Ball for catching Pokémon hooked by a Rod when fishing. [HEAVYBALL] Name = Heavy Ball NamePlural = Heavy Balls -Pocket = 3 +Pocket = PokeBalls Price = 300 BattleUse = OnFoe Flags = PokeBall @@ -4044,7 +1919,7 @@ Description = A Poké Ball for catching very heavy Pokémon. [LOVEBALL] Name = Love Ball NamePlural = Love Balls -Pocket = 3 +Pocket = PokeBalls Price = 300 BattleUse = OnFoe Flags = PokeBall @@ -4053,7 +1928,7 @@ Description = A Poké Ball for catching Pokémon that are the opposite gender of [FRIENDBALL] Name = Friend Ball NamePlural = Friend Balls -Pocket = 3 +Pocket = PokeBalls Price = 300 BattleUse = OnFoe Flags = PokeBall @@ -4062,7 +1937,7 @@ Description = A Poké Ball that makes caught Pokémon more friendly. [MOONBALL] Name = Moon Ball NamePlural = Moon Balls -Pocket = 3 +Pocket = PokeBalls Price = 300 BattleUse = OnFoe Flags = PokeBall @@ -4071,7 +1946,7 @@ Description = A Poké Ball for catching Pokémon that evolve using the Moon Ston [DREAMBALL] Name = Dream Ball NamePlural = Dream Balls -Pocket = 3 +Pocket = PokeBalls Price = 300 BattleUse = OnFoe Flags = PokeBall @@ -4080,1170 +1955,16 @@ Description = A somewhat different Poké Ball that makes it easier to catch wild [BEASTBALL] Name = Beast Ball NamePlural = Beast Balls -Pocket = 3 +Pocket = PokeBalls Price = 1000 BattleUse = OnFoe Flags = PokeBall Description = A special Poké Ball designed to catch Ultra Beasts. It has a low success rate for catching others. #------------------------------- -[TM01] -Name = TM01 -NamePlural = TM01s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_150 -Move = FOCUSPUNCH -Description = The user focuses its mind before launching a punch. This move fails if the user is hit before it is used. -#------------------------------- -[TM02] -Name = TM02 -NamePlural = TM02s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_80 -Move = DRAGONCLAW -Description = The user slashes the target with huge sharp claws. -#------------------------------- -[TM03] -Name = TM03 -NamePlural = TM03s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_60 -Move = WATERPULSE -Description = The user attacks the target with a pulsing blast of water. This may also confuse the target. -#------------------------------- -[TM04] -Name = TM04 -NamePlural = TM04s -Pocket = 4 -Price = 1500 -BPPrice = 48 -FieldUse = TR -Flags = Fling_10 -Move = CALMMIND -Description = The user quietly focuses its mind and calms its spirit to raise its Sp. Atk and Sp. Def stats. -#------------------------------- -[TM05] -Name = TM05 -NamePlural = TM05s -Pocket = 4 -Price = 1000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_10 -Move = ROAR -Description = The target is scared off, and a different Pokémon is dragged out. In the wild, this ends the battle. -#------------------------------- -[TM06] -Name = TM06 -NamePlural = TM06s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_10 -Move = TOXIC -Description = A move that leaves the target badly poisoned. Its poison damage worsens every turn. -#------------------------------- -[TM07] -Name = TM07 -NamePlural = TM07s -Pocket = 4 -Price = 2000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_10 -Move = HAIL -Description = The user summons a hailstorm lasting five turns. It damages all Pokémon except Ice types. -#------------------------------- -[TM08] -Name = TM08 -NamePlural = TM08s -Pocket = 4 -Price = 1500 -BPPrice = 48 -FieldUse = TR -Flags = Fling_10 -Move = BULKUP -Description = The user tenses its muscles to bulk up its body, raising both its Attack and Defense stats. -#------------------------------- -[TM09] -Name = TM09 -NamePlural = TM09s -Pocket = 4 -Price = 2000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_25 -Move = BULLETSEED -Description = The user forcefully shoots seeds at the target two to five times in a row. -#------------------------------- -[TM10] -Name = TM10 -NamePlural = TM10s -Pocket = 4 -Price = 1500 -BPPrice = 32 -FieldUse = TR -Flags = Fling_10 -Move = WORKUP -Description = The user is roused, and its Attack and Sp. Atk stats increase. -#------------------------------- -[TM11] -Name = TM11 -NamePlural = TM11s -Pocket = 4 -Price = 2000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_10 -Move = SUNNYDAY -Description = The user intensifies the sun for five turns, powering up Fire-type moves and weakening Water-type moves. -#------------------------------- -[TM12] -Name = TM12 -NamePlural = TM12s -Pocket = 4 -Price = 1500 -BPPrice = 32 -FieldUse = TR -Flags = Fling_10 -Move = TAUNT -Description = The target is taunted into a rage that allows it to use only attack moves for three turns. -#------------------------------- -[TM13] -Name = TM13 -NamePlural = TM13s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_90 -Move = ICEBEAM -Description = The target is struck with an icy-cold beam of energy. This may also leave the target frozen. -#------------------------------- -[TM14] -Name = TM14 -NamePlural = TM14s -Pocket = 4 -Price = 5500 -BPPrice = 32 -FieldUse = TR -Flags = Fling_110 -Move = BLIZZARD -Description = A howling blizzard is summoned to strike opposing Pokémon. This may also leave them frozen. -#------------------------------- -[TM15] -Name = TM15 -NamePlural = TM15s -Pocket = 4 -Price = 7500 -BPPrice = 32 -FieldUse = TR -Flags = Fling_150 -Move = HYPERBEAM -Description = The target is attacked with a powerful beam. The user can't move on the next turn. -#------------------------------- -[TM16] -Name = TM16 -NamePlural = TM16s -Pocket = 4 -Price = 2000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_10 -Move = LIGHTSCREEN -Description = A wondrous wall of light is put up to reduce damage from special attacks for five turns. -#------------------------------- -[TM17] -Name = TM17 -NamePlural = TM17s -Pocket = 4 -Price = 2000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_10 -Move = PROTECT -Description = The user protects itself from all attacks. Its chance of failing rises if it is used in succession. -#------------------------------- -[TM18] -Name = TM18 -NamePlural = TM18s -Pocket = 4 -Price = 2000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_10 -Move = RAINDANCE -Description = The user summons a heavy rain for five turns, powering up Water-type moves and weakening Fire-type ones. -#------------------------------- -[TM19] -Name = TM19 -NamePlural = TM19s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_75 -Move = GIGADRAIN -Description = A nutrient-draining attack. The user's HP is restored by half the damage taken by the target. -#------------------------------- -[TM20] -Name = TM20 -NamePlural = TM20s -Pocket = 4 -Price = 2000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_10 -Move = SAFEGUARD -Description = The user creates a protective field that prevents status conditions for five turns. -#------------------------------- -[TM21] -Name = TM21 -NamePlural = TM21s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_80 -Move = DAZZLINGGLEAM -Description = The user damages opposing Pokémon by emitting a powerful flash. -#------------------------------- -[TM22] -Name = TM22 -NamePlural = TM22s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_120 -Move = SOLARBEAM -Description = In this two-turn attack, the user gathers light, then blasts a bundled beam on the next turn. -#------------------------------- -[TM23] -Name = TM23 -NamePlural = TM23s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_100 -Move = IRONTAIL -Description = The target is slammed with a steel-hard tail. This may also lower the target's Defense stat. -#------------------------------- -[TM24] -Name = TM24 -NamePlural = TM24s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_90 -Move = THUNDERBOLT -Description = A strong electric blast crashes down on the target. This may also leave the target with paralysis. -#------------------------------- -[TM25] -Name = TM25 -NamePlural = TM25s -Pocket = 4 -Price = 5500 -BPPrice = 32 -FieldUse = TR -Flags = Fling_110 -Move = THUNDER -Description = A wicked thunderbolt is dropped on the target to inflict damage. This may also leave them with paralysis. -#------------------------------- -[TM26] -Name = TM26 -NamePlural = TM26s -Pocket = 4 -Price = 3000 -BPPrice = 80 -FieldUse = TR -Flags = Fling_100 -Move = EARTHQUAKE -Description = The user sets off an earthquake that strikes every Pokémon around it. -#------------------------------- -[TM27] -Name = TM27 -NamePlural = TM27s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_65 -Move = LOWSWEEP -Description = The user makes a swift attack on the target's legs, which lowers the target's Speed stat. -#------------------------------- -[TM28] -Name = TM28 -NamePlural = TM28s -Pocket = 4 -Price = 2000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_80 -Move = DIG -Description = The user burrows into the ground, then attacks on the next turn. It can also be used to exit dungeons. -#------------------------------- -[TM29] -Name = TM29 -NamePlural = TM29s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_90 -Move = PSYCHIC -Description = The target is hit by a strong telekinetic force. This may also lower the target's Sp. Def stat. -#------------------------------- -[TM30] -Name = TM30 -NamePlural = TM30s -Pocket = 4 -Price = 3000 -BPPrice = 64 -FieldUse = TR -Flags = Fling_80 -Move = SHADOWBALL -Description = The user hurls a shadowy blob at the target. This may also lower the target's Sp. Def stat. -#------------------------------- -[TM31] -Name = TM31 -NamePlural = TM31s -Pocket = 4 -Price = 3000 -BPPrice = 40 -FieldUse = TR -Flags = Fling_75 -Move = BRICKBREAK -Description = The user attacks with a swift chop. It can also break barriers, such as Light Screen and Reflect. -#------------------------------- -[TM32] -Name = TM32 -NamePlural = TM32s -Pocket = 4 -Price = 1000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_10 -Move = DOUBLETEAM -Description = By moving rapidly, the user makes illusory copies of itself to raise its evasiveness. -#------------------------------- -[TM33] -Name = TM33 -NamePlural = TM33s -Pocket = 4 -Price = 2000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_10 -Move = REFLECT -Description = A wondrous wall of light is put up to reduce damage from physical attacks for five turns. -#------------------------------- -[TM34] -Name = TM34 -NamePlural = TM34s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_60 -Move = SHOCKWAVE -Description = The user strikes the target with a quick jolt of electricity. This attack never misses. -#------------------------------- -[TM35] -Name = TM35 -NamePlural = TM35s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_90 -Move = FLAMETHROWER -Description = The target is scorched with an intense blast of fire. This may also leave the target with a burn. -#------------------------------- -[TM36] -Name = TM36 -NamePlural = TM36s -Pocket = 4 -Price = 3000 -BPPrice = 80 -FieldUse = TR -Flags = Fling_90 -Move = SLUDGEBOMB -Description = Unsanitary sludge is hurled at the target. This may also poison the target. -#------------------------------- -[TM37] -Name = TM37 -NamePlural = TM37s -Pocket = 4 -Price = 2000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_10 -Move = SANDSTORM -Description = A five-turn sandstorm is summoned to hurt all combatants except Rock, Ground, and Steel types. -#------------------------------- -[TM38] -Name = TM38 -NamePlural = TM38s -Pocket = 4 -Price = 5500 -BPPrice = 32 -FieldUse = TR -Flags = Fling_110 -Move = FIREBLAST -Description = The target is attacked with an intense blast of all-consuming fire. This may also leave them with a burn. -#------------------------------- -[TM39] -Name = TM39 -NamePlural = TM39s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_60 -Move = ROCKTOMB -Description = Boulders are hurled at the target. This also lowers the target's Speed stat by preventing its movement. -#------------------------------- -[TM40] -Name = TM40 -NamePlural = TM40s -Pocket = 4 -Price = 3000 -BPPrice = 40 -FieldUse = TR -Flags = Fling_60 -Move = AERIALACE -Description = The user confounds the target with speed, then slashes. This attack never misses. -#------------------------------- -[TM41] -Name = TM41 -NamePlural = TM41s -Pocket = 4 -Price = 1500 -BPPrice = 32 -FieldUse = TR -Flags = Fling_10 -Move = TORMENT -Description = The user torments and enrages the target, making it incapable of using the same move twice in a row. -#------------------------------- -[TM42] -Name = TM42 -NamePlural = TM42s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_70 -Move = FACADE -Description = This attack move doubles its power if the user is poisoned, burned, or paralyzed. -#------------------------------- -[TM43] -Name = TM43 -NamePlural = TM43s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_70 -Move = VOLTSWITCH -Description = After making its attack, the user rushes back to switch places with a party Pokémon in waiting. -#------------------------------- -[TM44] -Name = TM44 -NamePlural = TM44s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_10 -Move = REST -Description = The user goes to sleep for two turns. This fully restores the user's HP and heals any status conditions. -#------------------------------- -[TM45] -Name = TM45 -NamePlural = TM45s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_10 -Move = ATTRACT -Description = If it is the opposite gender of the user, the target becomes infatuated and less likely to attack. -#------------------------------- -[TM46] -Name = TM46 -NamePlural = TM46s -Pocket = 4 -Price = 2000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_60 -Move = THIEF -Description = The user attacks and steals the target's held item simultaneously. -#------------------------------- -[TM47] -Name = TM47 -NamePlural = TM47s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_70 -Move = STEELWING -Description = The target is hit with wings of steel. This may also raise the user's Defense stat. -#------------------------------- -[TM48] -Name = TM48 -NamePlural = TM48s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_10 -Move = SKILLSWAP -Description = The user employs its psychic power to exchange Abilities with the target. -#------------------------------- -[TM49] -Name = TM49 -NamePlural = TM49s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_80 -Move = SCALD -Description = The user shoots boiling hot water at its target. This may also leave the target with a burn. -#------------------------------- -[TM50] -Name = TM50 -NamePlural = TM50s -Pocket = 4 -Price = 5500 -BPPrice = 32 -FieldUse = TR -Flags = Fling_130 -Move = OVERHEAT -Description = The user attacks the target at full power. The attack's recoil harshly lowers the user's Sp. Atk stat. -#------------------------------- -[TM51] -Name = TM51 -NamePlural = TM51s -Pocket = 4 -Price = 2000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_10 -Move = ROOST -Description = The user lands and rests its body. This move restores the user's HP by up to half of its max HP. -#------------------------------- -[TM52] -Name = TM52 -NamePlural = TM52s -Pocket = 4 -Price = 5500 -BPPrice = 32 -FieldUse = TR -Flags = Fling_120 -Move = FOCUSBLAST -Description = The user heightens its mental focus and unleashes its power. This may also lower the target's Sp. Def stat. -#------------------------------- -[TM53] -Name = TM53 -NamePlural = TM53s -Pocket = 4 -Price = 3000 -BPPrice = 64 -FieldUse = TR -Flags = Fling_90 -Move = ENERGYBALL -Description = The user draws power from nature and fires it at the target. This may also lower the target's Sp. Def stat. -#------------------------------- -[TM54] -Name = TM54 -NamePlural = TM54s -Pocket = 4 -Price = 2000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_40 -Move = FALSESWIPE -Description = A restrained attack that prevents the target from fainting. The target is left with at least 1 HP. -#------------------------------- -[TM55] -Name = TM55 -NamePlural = TM55s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_65 -Move = BRINE -Description = If the target's HP is half or less, this attack will hit with double the power. -#------------------------------- -[TM56] -Name = TM56 -NamePlural = TM56s -Pocket = 4 -Price = 2000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_10 -Move = FLING -Description = The user flings its held item at the target to attack. This move's power and effects depend on the item. -#------------------------------- -[TM57] -Name = TM57 -NamePlural = TM57s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_50 -Move = CHARGEBEAM -Description = The user attacks the target with an electric charge. The user may use any remaining charge to raise its Sp. Atk. -#------------------------------- -[TM58] -Name = TM58 -NamePlural = TM58s -Pocket = 4 -Price = 2000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_10 -Move = ENDURE -Description = The user endures any attack with at least 1 HP. Its chance of failing rises if it is used in succession. -#------------------------------- -[TM59] -Name = TM59 -NamePlural = TM59s -Pocket = 4 -Price = 3000 -BPPrice = 80 -FieldUse = TR -Flags = Fling_85 -Move = DRAGONPULSE -Description = The target is attacked with a shock wave generated by the user's gaping mouth. -#------------------------------- -[TM60] -Name = TM60 -NamePlural = TM60s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_75 -Move = DRAINPUNCH -Description = An energy-draining punch. The user's HP is restored by half the damage taken by the target. -#------------------------------- -[TM61] -Name = TM61 -NamePlural = TM61s -Pocket = 4 -Price = 2000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_10 -Move = WILLOWISP -Description = The user shoots a sinister flame at the target to inflict a burn. -#------------------------------- -[TM62] -Name = TM62 -NamePlural = TM62s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_90 -Move = BUGBUZZ -Description = The user generates a damaging sound wave by vibration. This may also lower the target's Sp. Def stat. -#------------------------------- -[TM63] -Name = TM63 -NamePlural = TM63s -Pocket = 4 -Price = 2000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_10 -Move = NASTYPLOT -Description = The user stimulates its brain by thinking bad thoughts. This sharply raises the user's Sp. Atk stat. -#------------------------------- -[TM64] -Name = TM64 -NamePlural = TM64s -Pocket = 4 -Price = 7500 -BPPrice = 32 -FieldUse = TR -Flags = Fling_250 -Move = EXPLOSION -Description = The user attacks everything around it by causing a tremendous explosion. The user faints upon using this move. -#------------------------------- -[TM65] -Name = TM65 -NamePlural = TM65s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_70 -Move = SHADOWCLAW -Description = The user slashes with a sharp claw made from shadows. Critical hits land more easily. -#------------------------------- -[TM66] -Name = TM66 -NamePlural = TM66s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_50 -Move = PAYBACK -Description = The user stores power, then attacks. If the user moves after the target, this attack's power will be doubled. -#------------------------------- -[TM67] -Name = TM67 -NamePlural = TM67s -Pocket = 4 -Price = 1000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_10 -Move = RECYCLE -Description = The user recycles a held item that has been used in battle so it can be used again. -#------------------------------- -[TM68] -Name = TM68 -NamePlural = TM68s -Pocket = 4 -Price = 7500 -BPPrice = 32 -FieldUse = TR -Flags = Fling_150 -Move = GIGAIMPACT -Description = The user charges at the target using every bit of its power. The user can't move on the next turn. -#------------------------------- -[TM69] -Name = TM69 -NamePlural = TM69s -Pocket = 4 -Price = 1500 -BPPrice = 32 -FieldUse = TR -Flags = Fling_10 -Move = ROCKPOLISH -Description = The user polishes its body to reduce drag. This sharply raises the Speed stat. -#------------------------------- -[TM70] -Name = TM70 -NamePlural = TM70s -Pocket = 4 -Price = 1000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_10 -Move = FLASH -Description = The user flashes a light that lowers the target's accuracy. It can also be used to illuminate caves. -#------------------------------- -[TM71] -Name = TM71 -NamePlural = TM71s -Pocket = 4 -Price = 3000 -BPPrice = 80 -FieldUse = TR -Flags = Fling_100 -Move = STONEEDGE -Description = The user stabs the target from below with sharpened stones. Critical hits land more easily. -#------------------------------- -[TM72] -Name = TM72 -NamePlural = TM72s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_60 -Move = AVALANCHE -Description = The power of this attack move is doubled if the user has been hurt by the target in the same turn. -#------------------------------- -[TM73] -Name = TM73 -NamePlural = TM73s -Pocket = 4 -Price = 2000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_10 -Move = THUNDERWAVE -Description = The user launches a weak jolt of electricity that paralyzes the target. -#------------------------------- -[TM74] -Name = TM74 -NamePlural = TM74s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_10 -Move = GYROBALL -Description = The user tackles with a high-speed spin. This move is stronger the slower the user is than the target. -#------------------------------- -[TM75] -Name = TM75 -NamePlural = TM75s -Pocket = 4 -Price = 1500 -BPPrice = 32 -FieldUse = TR -Flags = Fling_10 -Move = SWORDSDANCE -Description = A frenetic dance to uplift the fighting spirit. This sharply raises the user's Attack stat. -#------------------------------- -[TM76] -Name = TM76 -NamePlural = TM76s -Pocket = 4 -Price = 2000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_10 -Move = STEALTHROCK -Description = The user lays a trap of levitating stones around the opposing team that hurt Pokémon that switch in. -#------------------------------- -[TM77] -Name = TM77 -NamePlural = TM77s -Pocket = 4 -Price = 1500 -BPPrice = 32 -FieldUse = TR -Flags = Fling_10 -Move = PSYCHUP -Description = The user hypnotizes itself into copying any stat change made by the target. -#------------------------------- -[TM78] -Name = TM78 -NamePlural = TM78s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_55 -Move = SNARL -Description = The user yells as if it's ranting about something, which lowers the Sp. Atk stats of opposing Pokémon. -#------------------------------- -[TM79] -Name = TM79 -NamePlural = TM79s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_80 -Move = DARKPULSE -Description = The user releases a horrible aura imbued with dark thoughts. This may also make the target flinch. -#------------------------------- -[TM80] -Name = TM80 -NamePlural = TM80s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_75 -Move = ROCKSLIDE -Description = Large boulders are hurled at opposing Pokémon to inflict damage. This may also make them flinch. -#------------------------------- -[TM81] -Name = TM81 -NamePlural = TM81s -Pocket = 4 -Price = 3000 -BPPrice = 64 -FieldUse = TR -Flags = Fling_80 -Move = XSCISSOR -Description = The user slashes at the target by crossing its scythes or claws as if they were a pair of scissors. -#------------------------------- -[TM82] -Name = TM82 -NamePlural = TM82s -Pocket = 4 -Price = 1000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_10 -Move = SLEEPTALK -Description = While it is asleep, the user randomly uses one of the moves it knows. -#------------------------------- -[TM83] -Name = TM83 -NamePlural = TM83s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_60 -Move = BULLDOZE -Description = The user strikes everything around it by stomping down on the ground. This lowers the Speed of those hit. -#------------------------------- -[TM84] -Name = TM84 -NamePlural = TM84s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_80 -Move = POISONJAB -Description = The target is stabbed with a tentacle, arm, or the like steeped in poison. This may also poison them. -#------------------------------- -[TM85] -Name = TM85 -NamePlural = TM85s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_100 -Move = DREAMEATER -Description = The user eats the dreams of a sleeping target. The user's HP is restored by half the damage dealt. -#------------------------------- -[TM86] -Name = TM86 -NamePlural = TM86s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_10 -Move = GRASSKNOT -Description = The user snares the target with grass and trips it. The heavier the target, the strong the move is. -#------------------------------- -[TM87] -Name = TM87 -NamePlural = TM87s -Pocket = 4 -Price = 1500 -BPPrice = 32 -FieldUse = TR -Flags = Fling_10 -Move = SWAGGER -Description = The user enrages and confuses the target. However, this also sharply raises the target's Attack stat. -#------------------------------- -[TM88] -Name = TM88 -NamePlural = TM88s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_60 -Move = PLUCK -Description = The user pecks the target. If the target is holding a Berry, the user eats it and gains its effect. -#------------------------------- -[TM89] -Name = TM89 -NamePlural = TM89s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_70 -Move = UTURN -Description = After making its attack, the user rushes back to switch places with a party Pokémon in waiting. -#------------------------------- -[TM90] -Name = TM90 -NamePlural = TM90s -Pocket = 4 -Price = 2000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_10 -Move = SUBSTITUTE -Description = The user creates a substitute for itself using some of its HP. The substitute serves as a decoy. -#------------------------------- -[TM91] -Name = TM91 -NamePlural = TM91s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_80 -Move = FLASHCANNON -Description = The user gathers all its light energy and releases it all at once. This may also lower the target's Sp. Def stat. -#------------------------------- -[TM92] -Name = TM92 -NamePlural = TM92s -Pocket = 4 -Price = 5500 -BPPrice = 32 -FieldUse = TR -Flags = Fling_10 -Move = TRICKROOM -Description = The user creates a bizarre area in which slower Pokémon get to move first for five turns. -#------------------------------- -[TM93] -Name = TM93 -NamePlural = TM93s -Pocket = 4 -Price = 2000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_50 -Move = CUT -Description = The target is cut with a scythe or claw. -#------------------------------- -[TM94] -Name = TM94 -NamePlural = TM94s -Pocket = 4 -Price = 2000 -BPPrice = 40 -FieldUse = TR -Flags = Fling_90 -Move = FLY -Description = The user flies up into the sky and then strikes its target on the next turn. -#------------------------------- -[TM95] -Name = TM95 -NamePlural = TM95s -Pocket = 4 -Price = 2500 -BPPrice = 64 -FieldUse = TR -Flags = Fling_90 -Move = SURF -Description = The user attacks everything around it by swamping its surroundings with a giant wave. -#------------------------------- -[TM96] -Name = TM96 -NamePlural = TM96s -Pocket = 4 -Price = 2000 -BPPrice = 40 -FieldUse = TR -Flags = Fling_80 -Move = STRENGTH -Description = The target is slugged with a punch thrown at maximum power. -#------------------------------- -[TM97] -Name = TM97 -NamePlural = TM97s -Pocket = 4 -Price = 2000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_10 -Move = DEFOG -Description = A strong wind blows away the target's barriers, such as Reflect, and lowers their evasiveness. -#------------------------------- -[TM98] -Name = TM98 -NamePlural = TM98s -Pocket = 4 -Price = 2000 -BPPrice = 40 -FieldUse = TR -Flags = Fling_40 -Move = ROCKSMASH -Description = The user attacks with a punch that may lower the target's Defense stat. -#------------------------------- -[TM99] -Name = TM99 -NamePlural = TM99s -Pocket = 4 -Price = 2500 -BPPrice = 64 -FieldUse = TR -Flags = Fling_80 -Move = WATERFALL -Description = The user charges at the target and may make it flinch. -#------------------------------- -[TM100] -Name = TM100 -NamePlural = TM100s -Pocket = 4 -Price = 2000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_90 -Move = ROCKCLIMB -Description = A charging attack that may also leave the foe confused. -#------------------------------- -[HM01] -Name = HM01 -NamePlural = HM01s -Pocket = 4 -Price = 0 -FieldUse = HM -Move = CUT -Description = The target is cut with a scythe or claw. This can also be used to cut down thin trees. -#------------------------------- -[HM02] -Name = HM02 -NamePlural = HM02s -Pocket = 4 -Price = 0 -FieldUse = HM -Move = FLY -Description = The user soars and then strikes on the next turn. This can also be used to fly to any familiar town. -#------------------------------- -[HM03] -Name = HM03 -NamePlural = HM03s -Pocket = 4 -Price = 0 -FieldUse = HM -Move = SURF -Description = Attacks everything by swamping the surroundings with a giant wave. This can also be used to cross water. -#------------------------------- -[HM04] -Name = HM04 -NamePlural = HM04s -Pocket = 4 -Price = 0 -FieldUse = HM -Move = STRENGTH -Description = The target is slugged with a punch thrown at maximum power. This can also be used to move heavy boulders. -#------------------------------- -[HM05] -Name = HM05 -NamePlural = HM05s -Pocket = 4 -Price = 0 -FieldUse = HM -Move = WATERFALL -Description = The user charges at the target and may make it flinch. It can also be used to climb a waterfall. -#------------------------------- -[HM06] -Name = HM06 -NamePlural = HM06s -Pocket = 4 -Price = 0 -FieldUse = HM -Move = DIVE -Description = Diving on the first turn, the user floats up and attacks on the second. It can be used to dive underwater. -#------------------------------- [CHERIBERRY] Name = Cheri Berry NamePlural = Cheri Berries -Pocket = 5 +Pocket = Berries Price = 20 FieldUse = OnPokemon BattleUse = OnPokemon @@ -5253,7 +1974,7 @@ Description = It may be used or held by a Pokémon to recover from paralysis. [CHESTOBERRY] Name = Chesto Berry NamePlural = Chesto Berries -Pocket = 5 +Pocket = Berries Price = 20 FieldUse = OnPokemon BattleUse = OnPokemon @@ -5263,7 +1984,7 @@ Description = It may be used or held by a Pokémon to recover from sleep. [PECHABERRY] Name = Pecha Berry NamePlural = Pecha Berries -Pocket = 5 +Pocket = Berries Price = 20 FieldUse = OnPokemon BattleUse = OnPokemon @@ -5273,7 +1994,7 @@ Description = It may be used or held by a Pokémon to recover from poison. [RAWSTBERRY] Name = Rawst Berry NamePlural = Rawst Berries -Pocket = 5 +Pocket = Berries Price = 20 FieldUse = OnPokemon BattleUse = OnPokemon @@ -5283,7 +2004,7 @@ Description = It may be used or held by a Pokémon to recover from a burn. [ASPEARBERRY] Name = Aspear Berry NamePlural = Aspear Berries -Pocket = 5 +Pocket = Berries Price = 20 FieldUse = OnPokemon BattleUse = OnPokemon @@ -5293,7 +2014,7 @@ Description = It may be used or held by a Pokémon to defrost it. [LEPPABERRY] Name = Leppa Berry NamePlural = Leppa Berries -Pocket = 5 +Pocket = Berries Price = 20 FieldUse = OnPokemon BattleUse = OnMove @@ -5303,7 +2024,7 @@ Description = It may be used or held by a Pokémon to restore a move's PP by 10. [ORANBERRY] Name = Oran Berry NamePlural = Oran Berries -Pocket = 5 +Pocket = Berries Price = 20 FieldUse = OnPokemon BattleUse = OnPokemon @@ -5313,7 +2034,7 @@ Description = It may be used or held by a Pokémon to heal the user by just 10 H [PERSIMBERRY] Name = Persim Berry NamePlural = Persim Berries -Pocket = 5 +Pocket = Berries Price = 20 BattleUse = OnBattler Flags = Berry,Fling_10,NaturalGift_GROUND_80 @@ -5322,7 +2043,7 @@ Description = It may be used or held by a Pokémon to recover from confusion. [LUMBERRY] Name = Lum Berry NamePlural = Lum Berries -Pocket = 5 +Pocket = Berries Price = 20 FieldUse = OnPokemon BattleUse = OnPokemon @@ -5332,7 +2053,7 @@ Description = It may be used or held by a Pokémon to recover from any status pr [SITRUSBERRY] Name = Sitrus Berry NamePlural = Sitrus Berries -Pocket = 5 +Pocket = Berries Price = 20 FieldUse = OnPokemon BattleUse = OnPokemon @@ -5342,7 +2063,7 @@ Description = It may be used or held by a Pokémon to heal the user's HP a littl [FIGYBERRY] Name = Figy Berry NamePlural = Figy Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_BUG_80 Description = If held by a Pokémon, it restores the user's HP in a pinch, but will cause confusion if it hates the taste. @@ -5350,7 +2071,7 @@ Description = If held by a Pokémon, it restores the user's HP in a pinch, but w [WIKIBERRY] Name = Wiki Berry NamePlural = Wiki Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_ROCK_80 Description = If held by a Pokémon, it restores the user's HP in a pinch, but will cause confusion if it hates the taste. @@ -5358,7 +2079,7 @@ Description = If held by a Pokémon, it restores the user's HP in a pinch, but w [MAGOBERRY] Name = Mago Berry NamePlural = Mago Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_GHOST_80 Description = If held by a Pokémon, it restores the user's HP in a pinch, but will cause confusion if it hates the taste. @@ -5366,7 +2087,7 @@ Description = If held by a Pokémon, it restores the user's HP in a pinch, but w [AGUAVBERRY] Name = Aguav Berry NamePlural = Aguav Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_DRAGON_80 Description = If held by a Pokémon, it restores the user's HP in a pinch, but will cause confusion if it hates the taste. @@ -5374,7 +2095,7 @@ Description = If held by a Pokémon, it restores the user's HP in a pinch, but w [IAPAPABERRY] Name = Iapapa Berry NamePlural = Iapapa Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_DARK_80 Description = If held by a Pokémon, it restores the user's HP in a pinch, but will cause confusion if it hates the taste. @@ -5382,7 +2103,7 @@ Description = If held by a Pokémon, it restores the user's HP in a pinch, but w [RAZZBERRY] Name = Razz Berry NamePlural = Razz Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_STEEL_80 Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry. @@ -5390,7 +2111,7 @@ Description = In the Sinnoh region, they like to make sweets known as Poffins wi [BLUKBERRY] Name = Bluk Berry NamePlural = Bluk Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_FIRE_90 Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry. @@ -5398,7 +2119,7 @@ Description = In the Sinnoh region, they like to make sweets known as Poffins wi [NANABBERRY] Name = Nanab Berry NamePlural = Nanab Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_WATER_90 Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry. @@ -5406,7 +2127,7 @@ Description = In the Sinnoh region, they like to make sweets known as Poffins wi [WEPEARBERRY] Name = Wepear Berry NamePlural = Wepear Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_ELECTRIC_90 Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry. @@ -5414,7 +2135,7 @@ Description = In the Sinnoh region, they like to make sweets known as Poffins wi [PINAPBERRY] Name = Pinap Berry NamePlural = Pinap Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_GRASS_90 Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry. @@ -5422,7 +2143,7 @@ Description = In the Sinnoh region, they like to make sweets known as Poffins wi [POMEGBERRY] Name = Pomeg Berry NamePlural = Pomeg Berries -Pocket = 5 +Pocket = Berries Price = 20 FieldUse = OnPokemon Flags = Berry,Fling_10,NaturalGift_ICE_90 @@ -5431,7 +2152,7 @@ Description = Using it on a Pokémon makes it more friendly, but it also lowers [KELPSYBERRY] Name = Kelpsy Berry NamePlural = Kelpsy Berries -Pocket = 5 +Pocket = Berries Price = 20 FieldUse = OnPokemon Flags = Berry,Fling_10,NaturalGift_FIGHTING_90 @@ -5440,7 +2161,7 @@ Description = Using it on a Pokémon makes it more friendly, but it also lowers [QUALOTBERRY] Name = Qualot Berry NamePlural = Qualot Berries -Pocket = 5 +Pocket = Berries Price = 20 FieldUse = OnPokemon Flags = Berry,Fling_10,NaturalGift_POISON_90 @@ -5449,7 +2170,7 @@ Description = Using it on a Pokémon makes it more friendly, but it also lowers [HONDEWBERRY] Name = Hondew Berry NamePlural = Hondew Berries -Pocket = 5 +Pocket = Berries Price = 20 FieldUse = OnPokemon Flags = Berry,Fling_10,NaturalGift_GROUND_90 @@ -5458,7 +2179,7 @@ Description = Using it on a Pokémon makes it more friendly, but it also lowers [GREPABERRY] Name = Grepa Berry NamePlural = Grepa Berries -Pocket = 5 +Pocket = Berries Price = 20 FieldUse = OnPokemon Flags = Berry,Fling_10,NaturalGift_FLYING_90 @@ -5467,7 +2188,7 @@ Description = Using it on a Pokémon makes it more friendly, but it also lowers [TAMATOBERRY] Name = Tamato Berry NamePlural = Tamato Berries -Pocket = 5 +Pocket = Berries Price = 20 FieldUse = OnPokemon Flags = Berry,Fling_10,NaturalGift_PSYCHIC_90 @@ -5476,7 +2197,7 @@ Description = Using it on a Pokémon makes it more friendly, but it also lowers [CORNNBERRY] Name = Cornn Berry NamePlural = Cornn Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_BUG_90 Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry. @@ -5484,7 +2205,7 @@ Description = In the Sinnoh region, they like to make sweets known as Poffins wi [MAGOSTBERRY] Name = Magost Berry NamePlural = Magost Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_ROCK_90 Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry. @@ -5492,7 +2213,7 @@ Description = In the Sinnoh region, they like to make sweets known as Poffins wi [RABUTABERRY] Name = Rabuta Berry NamePlural = Rabuta Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_GHOST_90 Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry. @@ -5500,7 +2221,7 @@ Description = In the Sinnoh region, they like to make sweets known as Poffins wi [NOMELBERRY] Name = Nomel Berry NamePlural = Nomel Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_DRAGON_90 Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry. @@ -5508,7 +2229,7 @@ Description = In the Sinnoh region, they like to make sweets known as Poffins wi [SPELONBERRY] Name = Spelon Berry NamePlural = Spelon Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_DARK_90 Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry. @@ -5516,7 +2237,7 @@ Description = In the Sinnoh region, they like to make sweets known as Poffins wi [PAMTREBERRY] Name = Pamtre Berry NamePlural = Pamtre Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_STEEL_90 Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry. @@ -5524,7 +2245,7 @@ Description = In the Sinnoh region, they like to make sweets known as Poffins wi [WATMELBERRY] Name = Watmel Berry NamePlural = Watmel Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_FIRE_100 Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry. @@ -5532,7 +2253,7 @@ Description = In the Sinnoh region, they like to make sweets known as Poffins wi [DURINBERRY] Name = Durin Berry NamePlural = Durin Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_WATER_100 Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry. @@ -5540,7 +2261,7 @@ Description = In the Sinnoh region, they like to make sweets known as Poffins wi [BELUEBERRY] Name = Belue Berry NamePlural = Belue Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_ELECTRIC_100 Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry. @@ -5548,7 +2269,7 @@ Description = In the Sinnoh region, they like to make sweets known as Poffins wi [OCCABERRY] Name = Occa Berry NamePlural = Occa Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_FIRE_80 Description = Weakens a supereffective Fire-type attack against the holding Pokémon. @@ -5556,7 +2277,7 @@ Description = Weakens a supereffective Fire-type attack against the holding Pok [PASSHOBERRY] Name = Passho Berry NamePlural = Passho Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_WATER_80 Description = Weakens a supereffective Water-type attack against the holding Pokémon. @@ -5564,7 +2285,7 @@ Description = Weakens a supereffective Water-type attack against the holding Pok [WACANBERRY] Name = Wacan Berry NamePlural = Wacan Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_ELECTRIC_80 Description = Weakens a supereffective Electric-type attack against the holding Pokémon. @@ -5572,7 +2293,7 @@ Description = Weakens a supereffective Electric-type attack against the holding [RINDOBERRY] Name = Rindo Berry NamePlural = Rindo Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_GRASS_80 Description = Weakens a supereffective Grass-type attack against the holding Pokémon. @@ -5580,7 +2301,7 @@ Description = Weakens a supereffective Grass-type attack against the holding Pok [YACHEBERRY] Name = Yache Berry NamePlural = Yache Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_ICE_80 Description = Weakens a supereffective Ice-type attack against the holding Pokémon. @@ -5588,7 +2309,7 @@ Description = Weakens a supereffective Ice-type attack against the holding Poké [CHOPLEBERRY] Name = Chople Berry NamePlural = Chople Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_FIGHTING_80 Description = Weakens a supereffective Fighting-type attack against the holding Pokémon. @@ -5596,7 +2317,7 @@ Description = Weakens a supereffective Fighting-type attack against the holding [KEBIABERRY] Name = Kebia Berry NamePlural = Kebia Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_POISON_80 Description = Weakens a supereffective Poison-type attack against the holding Pokémon. @@ -5604,7 +2325,7 @@ Description = Weakens a supereffective Poison-type attack against the holding Po [SHUCABERRY] Name = Shuca Berry NamePlural = Shuca Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_GROUND_80 Description = Weakens a supereffective Ground-type attack against the holding Pokémon. @@ -5612,7 +2333,7 @@ Description = Weakens a supereffective Ground-type attack against the holding Po [COBABERRY] Name = Coba Berry NamePlural = Coba Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_FLYING_80 Description = Weakens a supereffective Flying-type attack against the holding Pokémon. @@ -5620,7 +2341,7 @@ Description = Weakens a supereffective Flying-type attack against the holding Po [PAYAPABERRY] Name = Payapa Berry NamePlural = Payapa Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_PSYCHIC_80 Description = Weakens a supereffective Psychic-type attack against the holding Pokémon. @@ -5628,7 +2349,7 @@ Description = Weakens a supereffective Psychic-type attack against the holding P [TANGABERRY] Name = Tanga Berry NamePlural = Tanga Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_BUG_80 Description = Weakens a supereffective Bug-type attack against the holding Pokémon. @@ -5636,7 +2357,7 @@ Description = Weakens a supereffective Bug-type attack against the holding Poké [CHARTIBERRY] Name = Charti Berry NamePlural = Charti Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_ROCK_80 Description = Weakens a supereffective Rock-type attack against the holding Pokémon. @@ -5644,7 +2365,7 @@ Description = Weakens a supereffective Rock-type attack against the holding Pok [KASIBBERRY] Name = Kasib Berry NamePlural = Kasib Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_GHOST_80 Description = Weakens a supereffective Ghost-type attack against the holding Pokémon. @@ -5652,7 +2373,7 @@ Description = Weakens a supereffective Ghost-type attack against the holding Pok [HABANBERRY] Name = Haban Berry NamePlural = Haban Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_DRAGON_80 Description = Weakens a supereffective Dragon-type attack against the holding Pokémon. @@ -5660,7 +2381,7 @@ Description = Weakens a supereffective Dragon-type attack against the holding Po [COLBURBERRY] Name = Colbur Berry NamePlural = Colbur Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_DARK_80 Description = Weakens a supereffective Dark-type attack against the holding Pokémon. @@ -5668,7 +2389,7 @@ Description = Weakens a supereffective Dark-type attack against the holding Pok [BABIRIBERRY] Name = Babiri Berry NamePlural = Babiri Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_STEEL_80 Description = Weakens a supereffective Steel-type attack against the holding Pokémon. @@ -5676,7 +2397,7 @@ Description = Weakens a supereffective Steel-type attack against the holding Pok [ROSELIBERRY] Name = Roseli Berry NamePlural = Roseli Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_FAIRY_80 Description = If held by a Pokémon, this Berry will lessen the damage taken from one supereffective Fairy-type attack. @@ -5684,7 +2405,7 @@ Description = If held by a Pokémon, this Berry will lessen the damage taken fro [CHILANBERRY] Name = Chilan Berry NamePlural = Chilan Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_NORMAL_80 Description = Weakens a Normal-type attack against the Pokémon holding this berry. @@ -5692,7 +2413,7 @@ Description = Weakens a Normal-type attack against the Pokémon holding this ber [LIECHIBERRY] Name = Liechi Berry NamePlural = Liechi Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_GRASS_100 Description = If held by a Pokémon, it raises its Attack stat in a pinch. @@ -5700,7 +2421,7 @@ Description = If held by a Pokémon, it raises its Attack stat in a pinch. [GANLONBERRY] Name = Ganlon Berry NamePlural = Ganlon Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_ICE_100 Description = If held by a Pokémon, it raises its Defense stat in a pinch. @@ -5708,7 +2429,7 @@ Description = If held by a Pokémon, it raises its Defense stat in a pinch. [SALACBERRY] Name = Salac Berry NamePlural = Salac Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_FIGHTING_100 Description = If held by a Pokémon, it raises its Speed stat in a pinch. @@ -5716,7 +2437,7 @@ Description = If held by a Pokémon, it raises its Speed stat in a pinch. [PETAYABERRY] Name = Petaya Berry NamePlural = Petaya Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_POISON_100 Description = If held by a Pokémon, it raises its Sp. Atk stat in a pinch. @@ -5724,7 +2445,7 @@ Description = If held by a Pokémon, it raises its Sp. Atk stat in a pinch. [APICOTBERRY] Name = Apicot Berry NamePlural = Apicot Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_GROUND_100 Description = If held by a Pokémon, it raises its Sp. Def stat in a pinch. @@ -5732,7 +2453,7 @@ Description = If held by a Pokémon, it raises its Sp. Def stat in a pinch. [LANSATBERRY] Name = Lansat Berry NamePlural = Lansat Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_FLYING_100 Description = If held by a Pokémon, it raises its critical-hit ratio in a pinch. @@ -5740,7 +2461,7 @@ Description = If held by a Pokémon, it raises its critical-hit ratio in a pinch [STARFBERRY] Name = Starf Berry NamePlural = Starf Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_PSYCHIC_100 Description = If held by a Pokémon, it sharply raises one of its stats in a pinch. @@ -5748,7 +2469,7 @@ Description = If held by a Pokémon, it sharply raises one of its stats in a pin [ENIGMABERRY] Name = Enigma Berry NamePlural = Enigma Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_BUG_100 Description = If held by a Pokémon, it restores its HP if it is hit by any supereffective attack. @@ -5756,7 +2477,7 @@ Description = If held by a Pokémon, it restores its HP if it is hit by any supe [MICLEBERRY] Name = Micle Berry NamePlural = Micle Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_ROCK_100 Description = If held by a Pokémon, it raises the accuracy of a move just once in a pinch. @@ -5764,7 +2485,7 @@ Description = If held by a Pokémon, it raises the accuracy of a move just once [CUSTAPBERRY] Name = Custap Berry NamePlural = Custap Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_GHOST_100 Description = If held by a Pokémon, it gets to move first just once in a pinch. @@ -5772,7 +2493,7 @@ Description = If held by a Pokémon, it gets to move first just once in a pinch. [JABOCABERRY] Name = Jaboca Berry NamePlural = Jaboca Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_DRAGON_100 Description = If held by a Pokémon and a physical attack lands, the attacker also takes damage. @@ -5780,7 +2501,7 @@ Description = If held by a Pokémon and a physical attack lands, the attacker al [ROWAPBERRY] Name = Rowap Berry NamePlural = Rowap Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_DARK_100 Description = If held by a Pokémon and a special attack lands, the attacker also takes damage. @@ -5788,7 +2509,7 @@ Description = If held by a Pokémon and a special attack lands, the attacker als [KEEBERRY] Name = Kee Berry NamePlural = Kee Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_FAIRY_100 Description = If held by a Pokémon, this Berry will increase the holder's Defense if it's hit with a physical move. @@ -5796,135 +2517,2260 @@ Description = If held by a Pokémon, this Berry will increase the holder's Defen [MARANGABERRY] Name = Maranga Berry NamePlural = Maranga Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_DARK_100 Description = If held by a Pokémon, this Berry will increase the holder's Sp. Def if it's hit with a special move. #------------------------------- -[GRASSMAIL] -Name = Grass Mail -NamePlural = Grass Mail -PortionName = piece of Grass Mail -PortionNamePlural = pieces of Grass Mail -Pocket = 6 -Price = 50 -Flags = IconMail -Description = Stationery featuring a print of a refreshingly green field. Let a Pokémon hold it for delivery. +[AIRBALLOON] +Name = Air Balloon +NamePlural = Air Balloons +Pocket = HeldItems +Price = 3000 +SellPrice = 2000 +BPPrice = 15 +Flags = Fling_10 +Description = An item to be held by a Pokémon. The holder will float in the air until hit. Once hit, this item will burst. #------------------------------- -[FLAMEMAIL] -Name = Flame Mail -NamePlural = Flame Mail -PortionName = piece of Flame Mail -PortionNamePlural = pieces of Flame Mail -Pocket = 6 -Price = 50 -Flags = IconMail -Description = Stationery featuring a print of flames in blazing red. Let a Pokémon hold it for delivery. +[BRIGHTPOWDER] +Name = Bright Powder +NamePlural = Bright Powders +PortionName = bag of Bright Powder +PortionNamePlural = bags of Bright Powder +Pocket = HeldItems +Price = 3000 +SellPrice = 2000 +BPPrice = 48 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It casts a tricky glare that lowers the opponent's accuracy. #------------------------------- -[BUBBLEMAIL] -Name = Bubble Mail -NamePlural = Bubble Mail -PortionName = piece of Bubble Mail -PortionNamePlural = pieces of Bubble Mail -Pocket = 6 -Price = 50 -Flags = IconMail -Description = Stationery featuring a print of a blue world underwater. Let a Pokémon hold it for delivery. +[EVIOLITE] +Name = Eviolite +NamePlural = Eviolites +Pocket = HeldItems +Price = 3000 +SellPrice = 2000 +BPPrice = 25 +Flags = Fling_40 +Description = A mysterious evolutionary lump. When held, it raises the Defense and Sp. Def if the holder can still evolve. #------------------------------- -[BLOOMMAIL] -Name = Bloom Mail -NamePlural = Bloom Mail -PortionName = piece of Bloom Mail -PortionNamePlural = pieces of Bloom Mail -Pocket = 6 -Price = 50 -Flags = IconMail -Description = Stationery featuring a print of pretty floral patterns. Let a Pokémon hold it for delivery. +[FLOATSTONE] +Name = Float Stone +NamePlural = Float Stones +Pocket = HeldItems +Price = 3000 +SellPrice = 2000 +BPPrice = 10 +Flags = Fling_30 +Description = A very light stone. It reduces the weight of a Pokémon when held. #------------------------------- -[TUNNELMAIL] -Name = Tunnel Mail -NamePlural = Tunnel Mail -PortionName = piece of Tunnel Mail -PortionNamePlural = pieces of Tunnel Mail -Pocket = 6 -Price = 50 -Flags = IconMail -Description = Stationery featuring a print of a dimly lit coal mine. Let a Pokémon hold it for delivery. +[DESTINYKNOT] +Name = Destiny Knot +NamePlural = Destiny Knots +Pocket = HeldItems +Price = 3000 +SellPrice = 2000 +BPPrice = 10 +Flags = Fling_10 +Description = A long, thin, bright-red string to be held by a Pokémon. If the holder becomes infatuated, so does the foe. #------------------------------- -[STEELMAIL] -Name = Steel Mail -NamePlural = Steel Mail -PortionName = piece of Steel Mail -PortionNamePlural = pieces of Steel Mail -Pocket = 6 -Price = 50 -Flags = IconMail -Description = Stationery featuring a print of cool mechanical designs. Let a Pokémon hold it for delivery. +[ROCKYHELMET] +Name = Rocky Helmet +NamePlural = Rocky Helmets +Pocket = HeldItems +Price = 3000 +SellPrice = 2000 +BPPrice = 25 +Flags = Fling_60 +Description = If the holder of this item takes damage, the attacker will also be damaged upon contact. #------------------------------- -[HEARTMAIL] -Name = Heart Mail -NamePlural = Heart Mail -PortionName = piece of Heart Mail -PortionNamePlural = pieces of Heart Mail -Pocket = 6 -Price = 50 -Flags = IconMail -Description = Stationery featuring a print of giant heart patterns. Let a Pokémon hold it for delivery. +[ASSAULTVEST] +Name = Assault Vest +NamePlural = Assault Vests +Pocket = HeldItems +Price = 1000 +BPPrice = 25 +Flags = Fling_80 +Description = An item to be held by a Pokémon. This offensive vest raises Sp. Def but prevents the use of status moves. #------------------------------- -[SNOWMAIL] -Name = Snow Mail -NamePlural = Snow Mail -PortionName = piece of Snow Mail -PortionNamePlural = pieces of Snow Mail -Pocket = 6 -Price = 50 -Flags = IconMail -Description = Stationery featuring a print of a chilly, snow-covered world. Let a Pokémon hold it for delivery. +[SAFETYGOGGLES] +Name = Safety Goggles +NamePlural = Safety Goggles +PortionName = pair of Safety Goggles +PortionNamePlural = pairs of Safety Goggles +Pocket = HeldItems +Price = 3000 +SellPrice = 2000 +BPPrice = 25 +Flags = Fling_80 +Description = An item to be held by a Pokémon. They protect the holder from weather-related damage and powder. #------------------------------- -[SPACEMAIL] -Name = Space Mail -NamePlural = Space Mail -PortionName = piece of Space Mail -PortionNamePlural = pieces of Space Mail -Pocket = 6 -Price = 50 -Flags = IconMail -Description = Stationery featuring a print depicting the huge expanse of space. Let a Pokémon hold it for delivery. +[PROTECTIVEPADS] +Name = Protective Pads +NamePlural = Protective Pads +PortionName = set of Protective Pads +PortionNamePlural = sets of Protective Pads +Pocket = HeldItems +Price = 3000 +SellPrice = 2000 +BPPrice = 25 +Flags = Fling_30 +Description = An item to be held by a Pokémon. They protect the holder from effects caused by making contact. #------------------------------- -[AIRMAIL] -Name = Air Mail -NamePlural = Air Mail -PortionName = piece of Air Mail -PortionNamePlural = pieces of Air Mail -Pocket = 6 -Price = 50 -Flags = IconMail -Description = Stationery featuring a print of colorful letter sets. Let a Pokémon hold it for delivery. +[HEAVYDUTYBOOTS] +Name = Heavy-Duty Boots +NamePlural = Heavy-Duty Boots +PortionName = pair of Heavy-Duty Boots +PortionNamePlural = pairs of Heavy-Duty Boots +Pocket = HeldItems +Price = 3000 +SellPrice = 2000 +BPPrice = 25 +Flags = Fling_80 +Description = These boots prevent the effects of traps set on the battlefield. #------------------------------- -[MOSAICMAIL] -Name = Mosaic Mail -NamePlural = Mosaic Mail -PortionName = piece of Mosaic Mail -PortionNamePlural = pieces of Mosaic Mail -Pocket = 6 -Price = 50 -Flags = IconMail -Description = Stationery featuring a print of a vivid rainbow pattern. Let a Pokémon hold it for delivery. +[UTILITYUMBRELLA] +Name = Utility Umbrella +NamePlural = Utility Umbrellas +Pocket = HeldItems +Price = 3000 +SellPrice = 2000 +BPPrice = 25 +Flags = Fling_60 +Description = An item to be held by a Pokémon. This sturdy umbrella protects the holder from the effects of rain and sun. #------------------------------- -[BRICKMAIL] -Name = Brick Mail -NamePlural = Brick Mail -PortionName = piece of Brick Mail -PortionNamePlural = pieces of Brick Mail -Pocket = 6 -Price = 50 -Flags = IconMail -Description = Stationery featuring a print of a tough-looking brick pattern. Let a Pokémon hold it for delivery. +[EJECTBUTTON] +Name = Eject Button +NamePlural = Eject Buttons +Pocket = HeldItems +Price = 3000 +SellPrice = 2000 +BPPrice = 20 +Flags = Fling_30 +Description = If the holder is hit by an attack, it will switch with another Pokémon in your party. +#------------------------------- +[EJECTPACK] +Name = Eject Pack +NamePlural = Eject Packs +Pocket = HeldItems +Price = 3000 +SellPrice = 2000 +BPPrice = 20 +Flags = Fling_50 +Description = An item to be held by a Pokémon. When the holder's stats are lowered, it will be switched out of battle. +#------------------------------- +[REDCARD] +Name = Red Card +NamePlural = Red Cards +Pocket = HeldItems +Price = 3000 +SellPrice = 2000 +BPPrice = 20 +Flags = Fling_10 +Description = A card with a mysterious power. When the holder is struck by a foe, the attacker is removed from battle. +#------------------------------- +[SHEDSHELL] +Name = Shed Shell +NamePlural = Shed Shells +Pocket = HeldItems +Price = 3000 +SellPrice = 2000 +Flags = Fling_10 +Description = An item to be held by a Pokémon. This discarded carapace lets the holder switch out of battle without fail. +#------------------------------- +[SMOKEBALL] +Name = Smoke Ball +NamePlural = Smoke Balls +Pocket = HeldItems +Price = 3000 +SellPrice = 2000 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It enables the holder to flee from any wild Pokémon without fail. +#------------------------------- +[LUCKYEGG] +Name = Lucky Egg +NamePlural = Lucky Eggs +Pocket = HeldItems +Price = 10000 +BPPrice = 77 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It is an egg filled with happiness that earns extra Exp. Points in battle. +#------------------------------- +[EXPSHARE] +Name = Exp. Share +NamePlural = Exp. Shares +Pocket = HeldItems +Price = 3000 +Flags = Fling_30 +Description = An item to be held by a Pokémon. The holder gets a share of a battle's Exp. Points without battling. +#------------------------------- +[AMULETCOIN] +Name = Amulet Coin +NamePlural = Amulet Coins +Pocket = HeldItems +Price = 10000 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It doubles a battle's prize money if the holding Pokémon joins in. +#------------------------------- +[SOOTHEBELL] +Name = Soothe Bell +NamePlural = Soothe Bells +Pocket = HeldItems +Price = 4000 +BPPrice = 15 +Flags = Fling_10 +Description = An item to be held by a Pokémon. The comforting chime of this bell calms the holder, making it friendly. +#------------------------------- +[CLEANSETAG] +Name = Cleanse Tag +NamePlural = Cleanse Tags +Pocket = HeldItems +Price = 5000 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It helps keep wild Pokémon away if the holder is the first one in the party. +#------------------------------- +[CHOICEBAND] +Name = Choice Band +NamePlural = Choice Bands +Pocket = HeldItems +Price = 4000 +BPPrice = 25 +Flags = Fling_10 +Description = An item to be held by a Pokémon. This headband ups Attack, but allows the use of only one move. +#------------------------------- +[CHOICESPECS] +Name = Choice Specs +NamePlural = Choice Specs +PortionName = pair of Choice Specs +PortionNamePlural = pairs of Choice Specs +Pocket = HeldItems +Price = 4000 +BPPrice = 25 +Flags = Fling_10 +Description = An item to be held by a Pokémon. These curious glasses boost Sp. Atk but allows the use of only one move. +#------------------------------- +[CHOICESCARF] +Name = Choice Scarf +NamePlural = Choice Scarves +Pocket = HeldItems +Price = 4000 +BPPrice = 25 +Flags = Fling_10 +Description = An item to be held by a Pokémon. This scarf boosts Speed but allows the use of only one move. +#------------------------------- +[HEATROCK] +Name = Heat Rock +NamePlural = Heat Rocks +Pocket = HeldItems +Price = 4000 +BPPrice = 15 +Flags = Fling_60 +Description = A Pokémon held item that extends the duration of the move Sunny Day used by the holder. +#------------------------------- +[DAMPROCK] +Name = Damp Rock +NamePlural = Damp Rocks +Pocket = HeldItems +Price = 4000 +BPPrice = 15 +Flags = Fling_60 +Description = A Pokémon held item that extends the duration of the move Rain Dance used by the holder. +#------------------------------- +[SMOOTHROCK] +Name = Smooth Rock +NamePlural = Smooth Rocks +Pocket = HeldItems +Price = 4000 +BPPrice = 15 +Flags = Fling_10 +Description = A Pokémon held item that extends the duration of the move Sandstorm used by the holder. +#------------------------------- +[ICYROCK] +Name = Icy Rock +NamePlural = Icy Rocks +Pocket = HeldItems +Price = 4000 +BPPrice = 15 +Flags = Fling_40 +Description = A Pokémon held item that extends the duration of the move Hail used by the holder. +#------------------------------- +[TERRAINEXTENDER] +Name = Terrain Extender +NamePlural = Terrain Extenders +Pocket = HeldItems +Price = 4000 +BPPrice = 15 +Flags = Fling_60 +Description = An item to be held by a Pokémon. It extends the duration of the terrain caused by the holder. +#------------------------------- +[LIGHTCLAY] +Name = Light Clay +NamePlural = Light Clays +PortionName = lump of Light Clay +PortionNamePlural = lumps of Light Clay +Pocket = HeldItems +Price = 4000 +BPPrice = 15 +Flags = Fling_30 +Description = An item to be held by a Pokémon. Protective moves like Light Screen and Reflect will be effective longer. +#------------------------------- +[GRIPCLAW] +Name = Grip Claw +NamePlural = Grip Claws +Pocket = HeldItems +Price = 4000 +BPPrice = 15 +Flags = Fling_90 +Description = A Pokémon held item that extends the duration of multiturn attacks like Bind and Wrap. +#------------------------------- +[BINDINGBAND] +Name = Binding Band +NamePlural = Binding Bands +Pocket = HeldItems +Price = 3000 +SellPrice = 2000 +BPPrice = 15 +Flags = Fling_30 +Description = A band that increases the power of binding moves when held. +#------------------------------- +[BIGROOT] +Name = Big Root +NamePlural = Big Roots +Pocket = HeldItems +Price = 4000 +BPPrice = 15 +Flags = Fling_10 +Description = A Pokémon held item that boosts the power of HP-stealing moves to let the holder recover more HP. +#------------------------------- +[BLACKSLUDGE] +Name = Black Sludge +NamePlural = Black Sludges +PortionName = blob of Black Sludge +PortionNamePlural = blobs of Black Sludge +Pocket = HeldItems +Price = 3000 +SellPrice = 2000 +BPPrice = 25 +Flags = Fling_30 +Description = A held item that gradually restores the HP of Poison-type Pokémon. It inflicts damage on all other types. +#------------------------------- +[LEFTOVERS] +Name = Leftovers +NamePlural = Leftovers +PortionName = serving of Leftovers +PortionNamePlural = servings of Leftovers +Pocket = HeldItems +Price = 4000 +BPPrice = 25 +Flags = Fling_10 +Description = An item to be held by a Pokémon. The holder's HP is gradually restored during battle. +#------------------------------- +[SHELLBELL] +Name = Shell Bell +NamePlural = Shell Bells +Pocket = HeldItems +Price = 4000 +BPPrice = 25 +Flags = Fling_30 +Description = An item to be held by a Pokémon. The holder's HP is restored a little every time it inflicts damage. +#------------------------------- +[MENTALHERB] +Name = Mental Herb +NamePlural = Mental Herbs +Pocket = HeldItems +Price = 4000 +BPPrice = 15 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It snaps the holder out of infatuation. It can be used only once. +#------------------------------- +[WHITEHERB] +Name = White Herb +NamePlural = White Herbs +Pocket = HeldItems +Price = 4000 +BPPrice = 15 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It restores any lowered stat in battle. It can be used only once. +#------------------------------- +[POWERHERB] +Name = Power Herb +NamePlural = Power Herbs +Pocket = HeldItems +Price = 4000 +BPPrice = 15 +Flags = Fling_10 +Description = A single-use item to be held by a Pokémon. It allows the immediate use of a move that charges up first. +#------------------------------- +[ABSORBBULB] +Name = Absorb Bulb +NamePlural = Absorb Bulbs +Pocket = HeldItems +Price = 4000 +BPPrice = 10 +Flags = Fling_30 +Description = A consumable bulb. If the holder is hit by a Water-type move, its Sp. Atk will rise. +#------------------------------- +[CELLBATTERY] +Name = Cell Battery +NamePlural = Cell Batteries +Pocket = HeldItems +Price = 4000 +BPPrice = 10 +Flags = Fling_30 +Description = A consumable battery. If the holder is hit by an Electric-type move, its Attack will rise. +#------------------------------- +[LUMINOUSMOSS] +Name = Luminous Moss +NamePlural = Luminous Moss +PortionName = clump of Luminous Moss +PortionNamePlural = clumps of Luminous Moss +Pocket = HeldItems +Price = 4000 +BPPrice = 10 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It boosts Sp. Def if hit by a Water-type attack. It can only be used once. +#------------------------------- +[SNOWBALL] +Name = Snowball +NamePlural = Snowballs +Pocket = HeldItems +Price = 4000 +BPPrice = 10 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It boosts Attack if hit by an Ice-type attack. It can only be used once. +#------------------------------- +[WEAKNESSPOLICY] +Name = Weakness Policy +NamePlural = Weakness Policies +Pocket = HeldItems +Price = 1000 +BPPrice = 20 +Flags = Fling_80 +Description = An item to be held by a Pokémon. The holder's Attack and Sp. Atk sharply increase if hit by a move it's weak to. +#------------------------------- +[BLUNDERPOLICY] +Name = Blunder Policy +NamePlural = Blunder Policies +Pocket = HeldItems +Price = 4000 +BPPrice = 20 +Flags = Fling_80 +Description = Raises Speed sharply when a Pokémon misses with a move because of accuracy. +#------------------------------- +[THROATSPRAY] +Name = Throat Spray +NamePlural = Throat Sprays +PortionName = bottle of Throat Spray +PortionNamePlural = bottles of Throat Spray +Pocket = HeldItems +Price = 4000 +BPPrice = 10 +Flags = Fling_30 +Description = Raises Sp. Atk when a Pokémon uses a sound-based move. +#------------------------------- +[ADRENALINEORB] +Name = Adrenaline Orb +NamePlural = Adrenaline Orbs +Pocket = HeldItems +Price = 300 +BPPrice = 10 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It boosts Speed when intimidated. It can be used only once. +#------------------------------- +[ROOMSERVICE] +Name = Room Service +NamePlural = Room Services +PortionName = voucher for Room Service +PortionNamePlural = vouchers for Room Service +Pocket = HeldItems +Price = 4000 +BPPrice = 15 +Flags = Fling_100 +Description = An item to be held by a Pokémon. Lowers Speed when Trick Room takes effect. +#------------------------------- +[ELECTRICSEED] +Name = Electric Seed +NamePlural = Electric Seeds +Pocket = HeldItems +Price = 3000 +SellPrice = 2000 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It boosts Defense on Electric Terrain. It can only be used once. +#------------------------------- +[GRASSYSEED] +Name = Grassy Seed +NamePlural = Grassy Seeds +Pocket = HeldItems +Price = 3000 +SellPrice = 2000 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It boosts Defense on Grassy Terrain. It can only be used once. +#------------------------------- +[MISTYSEED] +Name = Misty Seed +NamePlural = Misty Seeds +Pocket = HeldItems +Price = 3000 +SellPrice = 2000 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It boosts Sp. Def on Misty Terrain. It can only be used once. +#------------------------------- +[PSYCHICSEED] +Name = Psychic Seed +NamePlural = Psychic Seeds +Pocket = HeldItems +Price = 3000 +SellPrice = 2000 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It boosts Sp. Def on Psychic Terrain. It can only be used once. +#------------------------------- +[LIFEORB] +Name = Life Orb +NamePlural = Life Orbs +Pocket = HeldItems +Price = 4000 +BPPrice = 25 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It boosts the power of moves, but at the cost of some HP on each hit. +#------------------------------- +[EXPERTBELT] +Name = Expert Belt +NamePlural = Expert Belts +Pocket = HeldItems +Price = 4000 +BPPrice = 25 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It is a well-worn belt that slightly boosts the power of supereffective moves. +#------------------------------- +[METRONOME] +Name = Metronome +NamePlural = Metronomes +Pocket = HeldItems +Price = 3000 +SellPrice = 2000 +BPPrice = 25 +Flags = Fling_30 +Description = A Pokémon held item that boosts a move used consecutively. Its effect is reset if another move is used. +#------------------------------- +[MUSCLEBAND] +Name = Muscle Band +NamePlural = Muscle Bands +Pocket = HeldItems +Price = 4000 +BPPrice = 48 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It is a headband that slightly boosts the power of physical moves. +#------------------------------- +[WISEGLASSES] +Name = Wise Glasses +NamePlural = Wise Glasses +PortionName = pair of Wise Glasses +PortionNamePlural = pairs of Wise Glasses +Pocket = HeldItems +Price = 4000 +BPPrice = 48 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It is a thick pair of glasses that slightly boosts the power of special moves. +#------------------------------- +[RAZORCLAW] +Name = Razor Claw +NamePlural = Razor Claws +Pocket = HeldItems +Price = 3000 +SellPrice = 2500 +BPPrice = 5 +Flags = Fling_80 +Description = An item to be held by a Pokémon. It is a sharply hooked claw that ups the holder's critical-hit ratio. +#------------------------------- +[SCOPELENS] +Name = Scope Lens +NamePlural = Scope Lenses +Pocket = HeldItems +Price = 4000 +BPPrice = 48 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It is a lens that boosts the holder's critical-hit ratio. +#------------------------------- +[WIDELENS] +Name = Wide Lens +NamePlural = Wide Lenses +Pocket = HeldItems +Price = 4000 +BPPrice = 48 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It is a magnifying lens that slightly boosts the accuracy of moves. +#------------------------------- +[ZOOMLENS] +Name = Zoom Lens +NamePlural = Zoom Lenses +Pocket = HeldItems +Price = 4000 +BPPrice = 48 +Flags = Fling_10 +Description = An item to be held by a Pokémon. If the holder moves after its target, its accuracy will be boosted. +#------------------------------- +[KINGSROCK] +Name = King's Rock +NamePlural = King's Rocks +Pocket = HeldItems +Price = 5000 +BPPrice = 5 +Flags = Fling_30 +Description = An item to be held by a Pokémon. When the holder inflicts damage, the target may flinch. +#------------------------------- +[RAZORFANG] +Name = Razor Fang +NamePlural = Razor Fangs +Pocket = HeldItems +Price = 5000 +BPPrice = 5 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It may make foes and allies flinch when the holder inflicts damage. +#------------------------------- +[LAGGINGTAIL] +Name = Lagging Tail +NamePlural = Lagging Tails +Pocket = HeldItems +Price = 4000 +BPPrice = 25 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It is tremendously heavy and makes the holder move slower than usual. +#------------------------------- +[QUICKCLAW] +Name = Quick Claw +NamePlural = Quick Claws +Pocket = HeldItems +Price = 3000 +SellPrice = 2000 +BPPrice = 25 +Flags = Fling_80 +Description = An item to be held by a Pokémon. A light, sharp claw that lets the bearer move first occasionally. +#------------------------------- +[FOCUSBAND] +Name = Focus Band +NamePlural = Focus Bands +Pocket = HeldItems +Price = 3000 +SellPrice = 2000 +BPPrice = 48 +Flags = Fling_10 +Description = An item to be held by a Pokémon. The holder may endure a potential KO attack, leaving it with just 1 HP. +#------------------------------- +[FOCUSSASH] +Name = Focus Sash +NamePlural = Focus Sashes +Pocket = HeldItems +Price = 3000 +SellPrice = 2000 +BPPrice = 15 +Flags = Fling_10 +Description = An item to be held by a Pokémon. If it has full HP, the holder will endure one potential KO attack, leaving 1 HP. +#------------------------------- +[FLAMEORB] +Name = Flame Orb +NamePlural = Flame Orbs +Pocket = HeldItems +Price = 4000 +BPPrice = 16 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It is a bizarre orb that inflicts a burn on the holder in battle. +#------------------------------- +[TOXICORB] +Name = Toxic Orb +NamePlural = Toxic Orbs +Pocket = HeldItems +Price = 4000 +BPPrice = 16 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It is a bizarre orb that badly poisons the holder in battle. +#------------------------------- +[STICKYBARB] +Name = Sticky Barb +NamePlural = Sticky Barbs +Pocket = HeldItems +Price = 4000 +BPPrice = 16 +Flags = Fling_80 +Description = A held item that damages the holder on every turn. It may latch on to Pokémon that touch the holder. +#------------------------------- +[IRONBALL] +Name = Iron Ball +NamePlural = Iron Balls +Pocket = HeldItems +Price = 4000 +BPPrice = 10 +Flags = Fling_130 +Description = A Pokémon held item that cuts Speed. It makes Flying-type and levitating holders susceptible to Ground moves. +#------------------------------- +[RINGTARGET] +Name = Ring Target +NamePlural = Ring Targets +Pocket = HeldItems +Price = 3000 +SellPrice = 2000 +BPPrice = 10 +Flags = Fling_10 +Description = Moves that would otherwise have no effect will land on the Pokémon that holds it. +#------------------------------- +[MACHOBRACE] +Name = Macho Brace +NamePlural = Macho Braces +Pocket = HeldItems +Price = 3000 +BPPrice = 10 +Flags = Fling_60 +Description = An item to be held by a Pokémon. It is a stiff, heavy brace that promotes strong growth but lowers Speed. +#------------------------------- +[POWERWEIGHT] +Name = Power Weight +NamePlural = Power Weights +Pocket = HeldItems +Price = 3000 +BPPrice = 10 +Flags = Fling_70 +Description = A Pokémon held item that promotes HP gain on leveling, but reduces the Speed stat. +#------------------------------- +[POWERBRACER] +Name = Power Bracer +NamePlural = Power Bracers +Pocket = HeldItems +Price = 3000 +BPPrice = 10 +Flags = Fling_70 +Description = A Pokémon held item that promotes Attack gain on leveling, but reduces the Speed stat. +#------------------------------- +[POWERBELT] +Name = Power Belt +NamePlural = Power Belts +Pocket = HeldItems +Price = 3000 +BPPrice = 10 +Flags = Fling_70 +Description = A Pokémon held item that promotes Defense gain on leveling, but reduces the Speed stat. +#------------------------------- +[POWERLENS] +Name = Power Lens +NamePlural = Power Lenses +Pocket = HeldItems +Price = 3000 +BPPrice = 10 +Flags = Fling_70 +Description = A Pokémon held item that promotes Sp. Atk gain on leveling, but reduces the Speed stat. +#------------------------------- +[POWERBAND] +Name = Power Band +NamePlural = Power Bands +Pocket = HeldItems +Price = 3000 +BPPrice = 10 +Flags = Fling_70 +Description = A Pokémon held item that promotes Sp. Def gain on leveling, but reduces the Speed stat. +#------------------------------- +[POWERANKLET] +Name = Power Anklet +NamePlural = Power Anklets +Pocket = HeldItems +Price = 3000 +BPPrice = 10 +Flags = Fling_70 +Description = A Pokémon held item that promotes Speed gain on leveling, but reduces the Speed stat. +#------------------------------- +[LAXINCENSE] +Name = Lax Incense +NamePlural = Lax Incenses +PortionName = jar of Lax Incense +PortionNamePlural = jars of Lax Incense +Pocket = HeldItems +Price = 5000 +Flags = Fling_10 +Description = An item to be held by a Pokémon. The tricky aroma of this incense may make attacks miss the holder. +#------------------------------- +[FULLINCENSE] +Name = Full Incense +NamePlural = Full Incenses +PortionName = jar of Full Incense +PortionNamePlural = jars of Full Incense +Pocket = HeldItems +Price = 5000 +Flags = Fling_10 +Description = An item to be held by a Pokémon. This exotic-smelling incense makes the holder bloated and slow moving. +#------------------------------- +[LUCKINCENSE] +Name = Luck Incense +NamePlural = Luck Incenses +PortionName = jar of Luck Incense +PortionNamePlural = jars of Luck Incense +Pocket = HeldItems +Price = 11000 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It doubles a battle's prize money if the holding Pokémon joins in. +#------------------------------- +[PUREINCENSE] +Name = Pure Incense +NamePlural = Pure Incenses +PortionName = jar of Pure Incense +PortionNamePlural = jars of Pure Incense +Pocket = HeldItems +Price = 6000 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It helps keep wild Pokémon away if the holder is the first one in the party. +#------------------------------- +[SEAINCENSE] +Name = Sea Incense +NamePlural = Sea Incenses +PortionName = jar of Sea Incense +PortionNamePlural = jars of Sea Incense +Pocket = HeldItems +Price = 2000 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It has a curious aroma that boosts the power of Water-type moves. +#------------------------------- +[WAVEINCENSE] +Name = Wave Incense +NamePlural = Wave Incenses +PortionName = jar of Wave Incense +PortionNamePlural = jars of Wave Incense +Pocket = HeldItems +Price = 2000 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It has a curious aroma that boosts the power of Water-type moves. +#------------------------------- +[ROSEINCENSE] +Name = Rose Incense +NamePlural = Rose Incenses +PortionName = jar of Rose Incense +PortionNamePlural = jars of Rose Incense +Pocket = HeldItems +Price = 2000 +Flags = Fling_10 +Description = An item to be held by a Pokémon. This exotic-smelling incense boosts the power of Grass-type moves. +#------------------------------- +[ODDINCENSE] +Name = Odd Incense +NamePlural = Odd Incenses +PortionName = jar of Odd Incense +PortionNamePlural = jars of Odd Incense +Pocket = HeldItems +Price = 2000 +Flags = Fling_10 +Description = An item to be held by a Pokémon. This exotic-smelling incense boosts the power of Psychic-type moves. +#------------------------------- +[ROCKINCENSE] +Name = Rock Incense +NamePlural = Rock Incenses +PortionName = jar of Rock Incense +PortionNamePlural = jars of Rock Incense +Pocket = HeldItems +Price = 2000 +Flags = Fling_10 +Description = An item to be held by a Pokémon. This exotic-smelling incense boosts the power of Rock-type moves. +#------------------------------- +[CHARCOAL] +Name = Charcoal +NamePlural = Charcoals +PortionName = piece of Charcoal +PortionNamePlural = pieces of Charcoal +Pocket = HeldItems +Price = 3000 +SellPrice = 500 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It is a combustible fuel that boosts the power of Fire-type moves. +#------------------------------- +[MYSTICWATER] +Name = Mystic Water +NamePlural = Mystic Waters +Pocket = HeldItems +Price = 3000 +SellPrice = 500 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It is a teardrop-shaped gem that ups the power of Water-type moves. +#------------------------------- +[MAGNET] +Name = Magnet +NamePlural = Magnets +Pocket = HeldItems +Price = 3000 +SellPrice = 500 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It is a powerful magnet that boosts the power of Electric-type moves. +#------------------------------- +[MIRACLESEED] +Name = Miracle Seed +NamePlural = Miracle Seeds +Pocket = HeldItems +Price = 3000 +SellPrice = 500 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It is a seed imbued with life that ups the power of Grass-type moves. +#------------------------------- +[NEVERMELTICE] +Name = Never-Melt Ice +NamePlural = Never-Melt Ices +PortionName = piece of Never-Melt Ice +PortionNamePlural = pieces of Never-Melt Ice +Pocket = HeldItems +Price = 3000 +SellPrice = 500 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It is a piece of ice that repels heat and boosts Ice-type moves. +#------------------------------- +[BLACKBELT] +Name = Black Belt +NamePlural = Black Belts +Pocket = HeldItems +Price = 3000 +SellPrice = 500 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It is a belt that boosts determination and Fighting-type moves. +#------------------------------- +[POISONBARB] +Name = Poison Barb +NamePlural = Poison Barbs +Pocket = HeldItems +Price = 3000 +SellPrice = 500 +Flags = Fling_70 +Description = An item to be held by a Pokémon. It is a small, poisonous barb that ups the power of Poison-type moves. +#------------------------------- +[SOFTSAND] +Name = Soft Sand +NamePlural = Soft Sand +PortionName = bag of Soft Sand +PortionNamePlural = bags of Soft Sand +Pocket = HeldItems +Price = 3000 +SellPrice = 500 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It is a loose, silky sand that boosts the power of Ground-type moves. +#------------------------------- +[SHARPBEAK] +Name = Sharp Beak +NamePlural = Sharp Beaks +Pocket = HeldItems +Price = 3000 +SellPrice = 500 +Flags = Fling_50 +Description = An item to be held by a Pokémon. It is a long, sharp beak that boosts the power of Flying-type moves. +#------------------------------- +[TWISTEDSPOON] +Name = Twisted Spoon +NamePlural = Twisted Spoons +Pocket = HeldItems +Price = 3000 +SellPrice = 500 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It is a spoon imbued with telekinetic power that boosts Psychic-type moves. +#------------------------------- +[SILVERPOWDER] +Name = Silver Powder +NamePlural = Silver Powders +PortionName = pile of Silver Powder +PortionNamePlural = piles of Silver Powder +Pocket = HeldItems +Price = 3000 +SellPrice = 500 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It is a shiny, silver powder that ups the power of Bug-type moves. +#------------------------------- +[HARDSTONE] +Name = Hard Stone +NamePlural = Hard Stones +Pocket = HeldItems +Price = 3000 +SellPrice = 500 +Flags = Fling_100 +Description = An item to be held by a Pokémon. It is an unbreakable stone that ups the power of Rock-type moves. +#------------------------------- +[SPELLTAG] +Name = Spell Tag +NamePlural = Spell Tags +Pocket = HeldItems +Price = 3000 +SellPrice = 500 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It is a sinister, eerie tag that boosts the power of Ghost-type moves. +#------------------------------- +[DRAGONFANG] +Name = Dragon Fang +NamePlural = Dragon Fangs +Pocket = HeldItems +Price = 3000 +SellPrice = 500 +Flags = Fling_70 +Description = An item to be held by a Pokémon. It is a hard and sharp fang that ups the power of Dragon-type moves. +#------------------------------- +[BLACKGLASSES] +Name = Black Glasses +NamePlural = Black Glasses +PortionName = pair of Black Glasses +PortionNamePlural = pairs of Black Glasses +Pocket = HeldItems +Price = 3000 +SellPrice = 500 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It is a shady-looking pair of glasses that boosts Dark-type moves. +#------------------------------- +[METALCOAT] +Name = Metal Coat +NamePlural = Metal Coats +Pocket = HeldItems +Price = 3000 +SellPrice = 1000 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It is a special metallic film that ups the power of Steel-type moves. +#------------------------------- +[SILKSCARF] +Name = Silk Scarf +NamePlural = Silk Scarves +Pocket = HeldItems +Price = 3000 +SellPrice = 500 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It is a sumptuous scarf that boosts the power of Normal-type moves. +#------------------------------- +[FLAMEPLATE] +Name = Flame Plate +NamePlural = Flame Plates +Pocket = HeldItems +Price = 10000 +SellPrice = 500 +Flags = Fling_90 +Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Fire-type moves. +#------------------------------- +[SPLASHPLATE] +Name = Splash Plate +NamePlural = Splash Plates +Pocket = HeldItems +Price = 10000 +SellPrice = 500 +Flags = Fling_90 +Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Water-type moves. +#------------------------------- +[ZAPPLATE] +Name = Zap Plate +NamePlural = Zap Plates +Pocket = HeldItems +Price = 10000 +SellPrice = 500 +Flags = Fling_90 +Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Electric-type moves. +#------------------------------- +[MEADOWPLATE] +Name = Meadow Plate +NamePlural = Meadow Plates +Pocket = HeldItems +Price = 10000 +SellPrice = 500 +Flags = Fling_90 +Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Grass-type moves. +#------------------------------- +[ICICLEPLATE] +Name = Icicle Plate +NamePlural = Icicle Plates +Pocket = HeldItems +Price = 10000 +SellPrice = 500 +Flags = Fling_90 +Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Ice-type moves. +#------------------------------- +[FISTPLATE] +Name = Fist Plate +NamePlural = Fist Plates +Pocket = HeldItems +Price = 10000 +SellPrice = 500 +Flags = Fling_90 +Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Fighting-type moves. +#------------------------------- +[TOXICPLATE] +Name = Toxic Plate +NamePlural = Toxic Plates +Pocket = HeldItems +Price = 10000 +SellPrice = 500 +Flags = Fling_90 +Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Poison-type moves. +#------------------------------- +[EARTHPLATE] +Name = Earth Plate +NamePlural = Earth Plates +Pocket = HeldItems +Price = 10000 +SellPrice = 500 +Flags = Fling_90 +Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Ground-type moves. +#------------------------------- +[SKYPLATE] +Name = Sky Plate +NamePlural = Sky Plates +Pocket = HeldItems +Price = 10000 +SellPrice = 500 +Flags = Fling_90 +Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Flying-type moves. +#------------------------------- +[MINDPLATE] +Name = Mind Plate +NamePlural = Mind Plates +Pocket = HeldItems +Price = 10000 +SellPrice = 500 +Flags = Fling_90 +Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Psychic-type moves. +#------------------------------- +[INSECTPLATE] +Name = Insect Plate +NamePlural = Insect Plates +Pocket = HeldItems +Price = 10000 +SellPrice = 500 +Flags = Fling_90 +Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Bug-type moves. +#------------------------------- +[STONEPLATE] +Name = Stone Plate +NamePlural = Stone Plates +Pocket = HeldItems +Price = 10000 +SellPrice = 500 +Flags = Fling_90 +Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Rock-type moves. +#------------------------------- +[SPOOKYPLATE] +Name = Spooky Plate +NamePlural = Spooky Plates +Pocket = HeldItems +Price = 10000 +SellPrice = 500 +Flags = Fling_90 +Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Ghost-type moves. +#------------------------------- +[DRACOPLATE] +Name = Draco Plate +NamePlural = Draco Plates +Pocket = HeldItems +Price = 10000 +SellPrice = 500 +Flags = Fling_90 +Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Dragon-type moves. +#------------------------------- +[DREADPLATE] +Name = Dread Plate +NamePlural = Dread Plates +Pocket = HeldItems +Price = 10000 +SellPrice = 500 +Flags = Fling_90 +Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Dark-type moves. +#------------------------------- +[IRONPLATE] +Name = Iron Plate +NamePlural = Iron Plates +Pocket = HeldItems +Price = 10000 +SellPrice = 500 +Flags = Fling_90 +Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Steel-type moves. +#------------------------------- +[PIXIEPLATE] +Name = Pixie Plate +NamePlural = Pixie Plates +Pocket = HeldItems +Price = 10000 +SellPrice = 500 +Flags = Fling_90 +Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Fairy-type moves. +#------------------------------- +[FIREGEM] +Name = Fire Gem +NamePlural = Fire Gems +Pocket = HeldItems +Price = 4000 +Flags = TypeGem +Description = A gem with an essence of fire. When held, it strengthens the power of a Fire-type move only once. +#------------------------------- +[WATERGEM] +Name = Water Gem +NamePlural = Water Gems +Pocket = HeldItems +Price = 4000 +Flags = TypeGem +Description = A gem with an essence of water. When held, it strengthens the power of a Water-type move only once. +#------------------------------- +[ELECTRICGEM] +Name = Electric Gem +NamePlural = Electric Gems +Pocket = HeldItems +Price = 4000 +Flags = TypeGem +Description = A gem with an essence of electricity. When held, it strengthens the power of an Electric-type move only once. +#------------------------------- +[GRASSGEM] +Name = Grass Gem +NamePlural = Grass Gems +Pocket = HeldItems +Price = 4000 +Flags = TypeGem +Description = A gem with an essence of nature. When held, it strengthens the power of a Grass-type move only once. +#------------------------------- +[ICEGEM] +Name = Ice Gem +NamePlural = Ice Gems +Pocket = HeldItems +Price = 4000 +Flags = TypeGem +Description = A gem with an essence of ice. When held, it strengthens the power of an Ice-type move only once. +#------------------------------- +[FIGHTINGGEM] +Name = Fighting Gem +NamePlural = Fighting Gems +Pocket = HeldItems +Price = 4000 +Flags = TypeGem +Description = A gem with an essence of combat. When held, it strengthens the power of a Fighting-type move only once. +#------------------------------- +[POISONGEM] +Name = Poison Gem +NamePlural = Poison Gems +Pocket = HeldItems +Price = 4000 +Flags = TypeGem +Description = A gem with an essence of poison. When held, it strengthens the power of a Poison-type move only once. +#------------------------------- +[GROUNDGEM] +Name = Ground Gem +NamePlural = Ground Gems +Pocket = HeldItems +Price = 4000 +Flags = TypeGem +Description = A gem with an essence of land. When held, it strengthens the power of a Ground-type move only once. +#------------------------------- +[FLYINGGEM] +Name = Flying Gem +NamePlural = Flying Gems +Pocket = HeldItems +Price = 4000 +Flags = TypeGem +Description = A gem with an essence of air. When held, it strengthens the power of a Flying-type move only once. +#------------------------------- +[PSYCHICGEM] +Name = Psychic Gem +NamePlural = Psychic Gems +Pocket = HeldItems +Price = 4000 +Flags = TypeGem +Description = A gem with an essence of the mind. When held, it strengthens the power of a Psychic-type move only once. +#------------------------------- +[BUGGEM] +Name = Bug Gem +NamePlural = Bug Gems +Pocket = HeldItems +Price = 4000 +Flags = TypeGem +Description = A gem with an insect-like essence. When held, it strengthens the power of a Bug-type move only once. +#------------------------------- +[ROCKGEM] +Name = Rock Gem +NamePlural = Rock Gems +Pocket = HeldItems +Price = 4000 +Flags = TypeGem +Description = A gem with an essence of rock. When held, it strengthens the power of a Rock-type move only once. +#------------------------------- +[GHOSTGEM] +Name = Ghost Gem +NamePlural = Ghost Gems +Pocket = HeldItems +Price = 4000 +Flags = TypeGem +Description = A gem with a spectral essence. When held, it strengthens the power of a Ghost-type move only once. +#------------------------------- +[DRAGONGEM] +Name = Dragon Gem +NamePlural = Dragon Gems +Pocket = HeldItems +Price = 4000 +Flags = TypeGem +Description = A gem with a draconic essence. When held, it strengthens the power of a Dragon-type move only once. +#------------------------------- +[DARKGEM] +Name = Dark Gem +NamePlural = Dark Gems +Pocket = HeldItems +Price = 4000 +Flags = TypeGem +Description = A gem with an essence of darkness. When held, it strengthens the power of a Dark-type move only once. +#------------------------------- +[STEELGEM] +Name = Steel Gem +NamePlural = Steel Gems +Pocket = HeldItems +Price = 4000 +Flags = TypeGem +Description = A gem with an essence of steel. When held, it strengthens the power of a Steel-type move only once. +#------------------------------- +[FAIRYGEM] +Name = Fairy Gem +NamePlural = Fairy Gems +Pocket = HeldItems +Price = 4000 +Flags = TypeGem +Description = A gem with an essence of the fey. When held, it strengthens the power of a Fairy-type move only once. +#------------------------------- +[NORMALGEM] +Name = Normal Gem +NamePlural = Normal Gems +Pocket = HeldItems +Price = 4000 +Flags = TypeGem +Description = A gem with an ordinary essence. When held, it strengthens the power of a Normal-type move only once. +#------------------------------- +[LIGHTBALL] +Name = Light Ball +NamePlural = Light Balls +Pocket = HeldItems +Price = 1000 +Flags = Fling_30 +Description = An item to be held by Pikachu. It is a puzzling orb that raises the Attack and Sp. Atk stat. +#------------------------------- +[LUCKYPUNCH] +Name = Lucky Punch +NamePlural = Lucky Punches +Pocket = HeldItems +Price = 1000 +BPPrice = 7 +Flags = Fling_40 +Description = An item to be held by Chansey. It is a pair of gloves that boosts Chansey's critical-hit ratio. +#------------------------------- +[METALPOWDER] +Name = Metal Powder +NamePlural = Metal Powders +PortionName = bag of Metal Powder +PortionNamePlural = bags of Metal Powder +Pocket = HeldItems +Price = 1000 +Flags = Fling_10 +Description = An item to be held by Ditto. Extremely fine yet hard, this odd powder boosts the Defense stat. +#------------------------------- +[QUICKPOWDER] +Name = Quick Powder +NamePlural = Quick Powders +PortionName = bag of Quick Powder +PortionNamePlural = bags of Quick Powder +Pocket = HeldItems +Price = 1000 +Flags = Fling_10 +Description = An item to be held by Ditto. Extremely fine yet hard, this odd powder boosts the Speed stat. +#------------------------------- +[THICKCLUB] +Name = Thick Club +NamePlural = Thick Clubs +Pocket = HeldItems +Price = 1000 +Flags = Fling_90 +Description = An item to be held by Cubone or Marowak. It is a hard bone of some sort that boosts the Attack stat. +#------------------------------- +[LEEK] +Name = Leek +NamePlural = Leeks +Pocket = HeldItems +Price = 1000 +Flags = Fling_60 +Description = An item to be held by Farfetch'd. It is a very long and stiff stalk of leek that boosts the critical-hit ratio. +#------------------------------- +[SOULDEW] +Name = Soul Dew +NamePlural = Soul Dews +Pocket = HeldItems +Price = 0 +Flags = Fling_30 +Description = A wondrous orb to be held by either Latios or Latias. It raises the power of Psychic- and Dragon-type moves. +#------------------------------- +[DEEPSEATOOTH] +Name = Deep Sea Tooth +NamePlural = Deep Sea Teeth +Pocket = HeldItems +Price = 2000 +BPPrice = 5 +Flags = Fling_90 +Description = An item to be held by Clamperl. A fang that gleams a sharp silver, it raises the Sp. Atk stat. +#------------------------------- +[DEEPSEASCALE] +Name = Deep Sea Scale +NamePlural = Deep Sea Scales +Pocket = HeldItems +Price = 2000 +BPPrice = 5 +Flags = Fling_30 +Description = An item to be held by Clamperl. A scale that shines a faint pink, it raises the Sp. Def stat. +#------------------------------- +[ADAMANTORB] +Name = Adamant Orb +NamePlural = Adamant Orbs +Pocket = HeldItems +Price = 10000 +SellPrice = 0 +Flags = Fling_60 +Description = A brightly gleaming orb to be held by Dialga. It boosts the power of Dragon- and Steel-type moves. +#------------------------------- +[LUSTROUSORB] +Name = Lustrous Orb +NamePlural = Lustrous Orbs +Pocket = HeldItems +Price = 10000 +SellPrice = 0 +Flags = Fling_60 +Description = A beautifully glowing orb to be held by Palkia. It boosts the power of Dragon- and Water-type moves. +#------------------------------- +[GRISEOUSORB] +Name = Griseous Orb +NamePlural = Griseous Orbs +Pocket = HeldItems +Price = 10000 +SellPrice = 0 +Flags = Fling_60 +Description = A glowing orb to be held by Giratina. It boosts the power of Dragon- and Ghost-type moves. +#------------------------------- +[ADAMANTCRYSTAL] +Name = Adamant Crystal +NamePlural = Adamant Crystals +Pocket = HeldItems +Price = 4000 +SellPrice = 0 +Flags = Fling_60 +Description = An item to be held by Dialga. This large, glowing gem wells with power and allows the Pokémon to change form. +#------------------------------- +[LUSTROUSGLOBE] +Name = Lustrous Globe +NamePlural = Lustrous Globes +Pocket = HeldItems +Price = 4000 +SellPrice = 0 +Flags = Fling_60 +Description = An item to be held by Palkia. This large, glowing orb wells with power and allows the Pokémon to change form. +#------------------------------- +[GRISEOUSCORE] +Name = Griseous Core +NamePlural = Griseous Cores +Pocket = HeldItems +Price = 4000 +SellPrice = 0 +Flags = Fling_60 +Description = An item to be held by Giratina. This large, glowing gem wells with power and allows the Pokémon to change form. +#------------------------------- +[RUSTEDSWORD] +Name = Rusted Sword +NamePlural = Rusted Swords +Pocket = HeldItems +Price = 0 +Description = It is said that a hero used this sword to halt a disaster in ancient times. But it's grown rusty and worn. +#------------------------------- +[RUSTEDSHIELD] +Name = Rusted Shield +NamePlural = Rusted Shields +Pocket = HeldItems +Price = 0 +Description = It is said that a hero used this shield to halt a disaster in ancient times. But it's grown rusty and worn. +#------------------------------- +[DOUSEDRIVE] +Name = Douse Drive +NamePlural = Douse Drives +Pocket = HeldItems +Price = 0 +Flags = Fling_70 +Description = A cassette to be held by Genesect. It changes Techno Blast to a Water-type move. +#------------------------------- +[SHOCKDRIVE] +Name = Shock Drive +NamePlural = Shock Drives +Pocket = HeldItems +Price = 0 +Flags = Fling_70 +Description = A cassette to be held by Genesect. It changes Techno Blast to an Electric-type move. +#------------------------------- +[BURNDRIVE] +Name = Burn Drive +NamePlural = Burn Drives +Pocket = HeldItems +Price = 0 +Flags = Fling_70 +Description = A cassette to be held by Genesect. It changes Techno Blast to a Fire-type move. +#------------------------------- +[CHILLDRIVE] +Name = Chill Drive +NamePlural = Chill Drives +Pocket = HeldItems +Price = 0 +Flags = Fling_70 +Description = A cassette to be held by Genesect. It changes Techno Blast to an Ice-type move. +#------------------------------- +[FIREMEMORY] +Name = Fire Memory +NamePlural = Fire Memories +Pocket = HeldItems +Price = 1000 +Flags = Fling_50 +Description = A memory disc containing Fire-type data. It changes the holder's type if held by a certain Pokémon. +#------------------------------- +[WATERMEMORY] +Name = Water Memory +NamePlural = Water Memories +Pocket = HeldItems +Price = 1000 +Flags = Fling_50 +Description = A memory disc containing Water-type data. It changes the holder's type if held by a certain Pokémon. +#------------------------------- +[ELECTRICMEMORY] +Name = Electric Memory +NamePlural = Electric Memories +Pocket = HeldItems +Price = 1000 +Flags = Fling_50 +Description = A memory disc containing Electric-type data. It changes the holder's type if held by a certain Pokémon. +#------------------------------- +[GRASSMEMORY] +Name = Grass Memory +NamePlural = Grass Memories +Pocket = HeldItems +Price = 1000 +Flags = Fling_50 +Description = A memory disc containing Grass-type data. It changes the holder's type if held by a certain Pokémon. +#------------------------------- +[ICEMEMORY] +Name = Ice Memory +NamePlural = Ice Memories +Pocket = HeldItems +Price = 1000 +Flags = Fling_50 +Description = A memory disc containing Ice-type data. It changes the holder's type if held by a certain Pokémon. +#------------------------------- +[FIGHTINGMEMORY] +Name = Fighting Memory +NamePlural = Fighting Memories +Pocket = HeldItems +Price = 1000 +Flags = Fling_50 +Description = A memory disc containing Fighting-type data. It changes the holder's type if held by a certain Pokémon. +#------------------------------- +[POISONMEMORY] +Name = Poison Memory +NamePlural = Poison Memories +Pocket = HeldItems +Price = 1000 +Flags = Fling_50 +Description = A memory disc containing Poison-type data. It changes the holder's type if held by a certain Pokémon. +#------------------------------- +[GROUNDMEMORY] +Name = Ground Memory +NamePlural = Ground Memories +Pocket = HeldItems +Price = 1000 +Flags = Fling_50 +Description = A memory disc containing Ground-type data. It changes the holder's type if held by a certain Pokémon. +#------------------------------- +[FLYINGMEMORY] +Name = Flying Memory +NamePlural = Flying Memories +Pocket = HeldItems +Price = 1000 +Flags = Fling_50 +Description = A memory disc containing Flying-type data. It changes the holder's type if held by a certain Pokémon. +#------------------------------- +[PSYCHICMEMORY] +Name = Psychic Memory +NamePlural = Psychic Memories +Pocket = HeldItems +Price = 1000 +Flags = Fling_50 +Description = A memory disc containing Psychic-type data. It changes the holder's type if held by a certain Pokémon. +#------------------------------- +[BUGMEMORY] +Name = Bug Memory +NamePlural = Bug Memories +Pocket = HeldItems +Price = 1000 +Flags = Fling_50 +Description = A memory disc containing Bug-type data. It changes the holder's type if held by a certain Pokémon. +#------------------------------- +[ROCKMEMORY] +Name = Rock Memory +NamePlural = Rock Memories +Pocket = HeldItems +Price = 1000 +Flags = Fling_50 +Description = A memory disc containing Rock-type data. It changes the holder's type if held by a certain Pokémon. +#------------------------------- +[GHOSTMEMORY] +Name = Ghost Memory +NamePlural = Ghost Memories +Pocket = HeldItems +Price = 1000 +Flags = Fling_50 +Description = A memory disc containing Ghost-type data. It changes the holder's type if held by a certain Pokémon. +#------------------------------- +[DRAGONMEMORY] +Name = Dragon Memory +NamePlural = Dragon Memories +Pocket = HeldItems +Price = 1000 +Flags = Fling_50 +Description = A memory disc containing Dragon-type data. It changes the holder's type if held by a certain Pokémon. +#------------------------------- +[DARKMEMORY] +Name = Dark Memory +NamePlural = Dark Memories +Pocket = HeldItems +Price = 1000 +Flags = Fling_50 +Description = A memory disc containing Dark-type data. It changes the holder's type if held by a certain Pokémon. +#------------------------------- +[STEELMEMORY] +Name = Steel Memory +NamePlural = Steel Memories +Pocket = HeldItems +Price = 1000 +Flags = Fling_50 +Description = A memory disc containing Steel-type data. It changes the holder's type if held by a certain Pokémon. +#------------------------------- +[FAIRYMEMORY] +Name = Fairy Memory +NamePlural = Fairy Memories +Pocket = HeldItems +Price = 1000 +Flags = Fling_50 +Description = A memory disc containing Fairy-type data. It changes the holder's type if held by a certain Pokémon. +#------------------------------- +[EVERSTONE] +Name = Everstone +NamePlural = Everstones +Pocket = HeldItems +Price = 3000 +BPPrice = 5 +Flags = Fling_30 +Description = An item to be held by a Pokémon. The Pokémon holding this peculiar stone is prevented from evolving. +#------------------------------- +[DRAGONSCALE] +Name = Dragon Scale +NamePlural = Dragon Scales +Pocket = HeldItems +Price = 3000 +SellPrice = 1000 +BPPrice = 5 +Flags = Fling_30 +Description = A thick and tough scale. Dragon-type Pokémon may be holding this item when caught. +#------------------------------- +[UPGRADE] +Name = Upgrade +NamePlural = Upgrades +Pocket = HeldItems +Price = 3000 +SellPrice = 1000 +BPPrice = 5 +Flags = Fling_30 +Description = A transparent device filled with all sorts of data. It was produced by Silph Co. +#------------------------------- +[DUBIOUSDISC] +Name = Dubious Disc +NamePlural = Dubious Discs +Pocket = HeldItems +Price = 3000 +SellPrice = 1000 +BPPrice = 5 +Flags = Fling_50 +Description = A transparent device overflowing with dubious data. Its producer is unknown. +#------------------------------- +[PROTECTOR] +Name = Protector +NamePlural = Protectors +Pocket = HeldItems +Price = 3000 +SellPrice = 1000 +BPPrice = 5 +Flags = Fling_80 +Description = A protective item of some sort. It is extremely stiff and heavy. It is loved by a certain Pokémon. +#------------------------------- +[ELECTIRIZER] +Name = Electirizer +NamePlural = Electirizers +Pocket = HeldItems +Price = 3000 +SellPrice = 1000 +BPPrice = 5 +Flags = Fling_80 +Description = A box packed with a tremendous amount of electric energy. It is loved by a certain Pokémon. +#------------------------------- +[MAGMARIZER] +Name = Magmarizer +NamePlural = Magmarizers +Pocket = HeldItems +Price = 3000 +SellPrice = 1000 +BPPrice = 5 +Flags = Fling_80 +Description = A box packed with a tremendous amount of magma energy. It is loved by a certain Pokémon. +#------------------------------- +[REAPERCLOTH] +Name = Reaper Cloth +NamePlural = Reaper Cloths +PortionName = scrap of Reaper Cloth +PortionNamePlural = scraps of Reaper Cloth +Pocket = HeldItems +Price = 3000 +SellPrice = 1000 +BPPrice = 5 +Flags = Fling_10 +Description = A cloth imbued with horrifyingly strong spiritual energy. It is loved by a certain Pokémon. +#------------------------------- +[PRISMSCALE] +Name = Prism Scale +NamePlural = Prism Scales +Pocket = HeldItems +Price = 3000 +SellPrice = 1000 +BPPrice = 10 +Flags = Fling_30 +Description = A mysterious scale that evolves certain Pokémon. It shines in rainbow colors. +#------------------------------- +[OVALSTONE] +Name = Oval Stone +NamePlural = Oval Stones +Pocket = HeldItems +Price = 3000 +SellPrice = 1000 +BPPrice = 5 +Flags = Fling_80 +Description = A peculiar stone that makes certain species of Pokémon evolve. It is shaped like an egg. +#------------------------------- +[WHIPPEDDREAM] +Name = Whipped Dream +NamePlural = Whipped Dreams +PortionName = dollop of Whipped Dream +PortionNamePlural = dollops of Whipped Dream +Pocket = HeldItems +Price = 3000 +SellPrice = 1000 +BPPrice = 5 +Flags = Fling_80 +Description = A soft and sweet treat made of fluffy, puffy and whirled cream. It's loved by a certain Pokémon. +#------------------------------- +[SACHET] +Name = Sachet +NamePlural = Sachets +Pocket = HeldItems +Price = 3000 +SellPrice = 1000 +BPPrice = 5 +Flags = Fling_80 +Description = A sachet filled with slightly overwhelming fragrant perfumes. Yet it's loved by a certain Pokémon. +#------------------------------- +[STRAWBERRYSWEET] +Name = Strawberry Sweet +NamePlural = Strawberry Sweets +Pocket = HeldItems +Price = 500 +BPPrice = 5 +Flags = Fling_10 +Description = A strawberry-shaped sweet. When a Milcery holds this, it will spin around happily. +#------------------------------- +[LOVESWEET] +Name = Love Sweet +NamePlural = Love Sweets +Pocket = HeldItems +Price = 500 +BPPrice = 5 +Flags = Fling_10 +Description = A heart-shaped sweet. When a Milcery holds this, it spins around happily. +#------------------------------- +[BERRYSWEET] +Name = Berry Sweet +NamePlural = Berry Sweets +Pocket = HeldItems +Price = 500 +BPPrice = 5 +Flags = Fling_10 +Description = A berry-shaped sweet. When a Milcery holds this, it spins around happily. +#------------------------------- +[CLOVERSWEET] +Name = Clover Sweet +NamePlural = Clover Sweets +Pocket = HeldItems +Price = 500 +BPPrice = 5 +Flags = Fling_10 +Description = A clover-shaped sweet. When a Milcery holds this, it spins around happily. +#------------------------------- +[FLOWERSWEET] +Name = Flower Sweet +NamePlural = Flower Sweets +Pocket = HeldItems +Price = 500 +BPPrice = 5 +Flags = Fling_10 +Description = A flower-shaped sweet. When a Milcery holds this, it spins around happily. +#------------------------------- +[STARSWEET] +Name = Star Sweet +NamePlural = Star Sweets +Pocket = HeldItems +Price = 500 +BPPrice = 5 +Flags = Fling_10 +Description = A star-shaped sweet. When a Milcery holds this, it spins around happily. +#------------------------------- +[RIBBONSWEET] +Name = Ribbon Sweet +NamePlural = Ribbon Sweets +Pocket = HeldItems +Price = 500 +BPPrice = 5 +Flags = Fling_10 +Description = A ribbon-shaped sweet. When a Milcery holds this, it spins around happily. +#------------------------------- +[VENUSAURITE] +Name = Venusaurite +NamePlural = Venusaurites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Venusaur hold it, and it will be able to Mega Evolve. +#------------------------------- +[CHARIZARDITEX] +Name = Charizardite X +NamePlural = Charizardite Xs +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Charizard hold it, and it will be able to Mega Evolve. +#------------------------------- +[CHARIZARDITEY] +Name = Charizardite Y +NamePlural = Charizardite Ys +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Charizard hold it, and it will be able to Mega Evolve. +#------------------------------- +[BLASTOISINITE] +Name = Blastoisinite +NamePlural = Blastoisinites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Blastoise hold it, and it will be able to Mega Evolve. +#------------------------------- +[BEEDRILLITE] +Name = Beedrillite +NamePlural = Beedrillites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Beedrill hold it, and it will be able to Mega Evolve. +#------------------------------- +[PIDGEOTITE] +Name = Pidgeotite +NamePlural = Pidgeotites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Pidgeot hold it, and it will be able to Mega Evolve. +#------------------------------- +[ALAKAZITE] +Name = Alakazite +NamePlural = Alakazites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Alakazam hold it, and it will be able to Mega Evolve. +#------------------------------- +[SLOWBRONITE] +Name = Slowbronite +NamePlural = Slowbronites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Slowbro hold it, and it will be able to Mega Evolve. +#------------------------------- +[GENGARITE] +Name = Gengarite +NamePlural = Gengarites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Gengar hold it, and it will be able to Mega Evolve. +#------------------------------- +[KANGASKHANITE] +Name = Kangaskhanite +NamePlural = Kangaskhanites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Kangaskhan hold it, and it will be able to Mega Evolve. +#------------------------------- +[PINSIRITE] +Name = Pinsirite +NamePlural = Pinsirites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Pinsir hold it, and it will be able to Mega Evolve. +#------------------------------- +[GYARADOSITE] +Name = Gyaradosite +NamePlural = Gyaradosites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Gyarados hold it, and it will be able to Mega Evolve. +#------------------------------- +[AERODACTYLITE] +Name = Aerodactylite +NamePlural = Aerodactylites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Aerodactyl hold it, and it will be able to Mega Evolve. +#------------------------------- +[MEWTWONITEX] +Name = Mewtwonite X +NamePlural = Mewtwonite Xs +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Mewtwo hold it, and it will be able to Mega Evolve. +#------------------------------- +[MEWTWONITEY] +Name = Mewtwonite Y +NamePlural = Mewtwonite Ys +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Mewtwo hold it, and it will be able to Mega Evolve. +#------------------------------- +[AMPHAROSITE] +Name = Ampharosite +NamePlural = Ampharosites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Ampharos hold it, and it will be able to Mega Evolve. +#------------------------------- +[STEELIXITE] +Name = Steelixite +NamePlural = Steelixites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Steelix hold it, and it will be able to Mega Evolve. +#------------------------------- +[SCIZORITE] +Name = Scizorite +NamePlural = Scizorites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Scizor hold it, and it will be able to Mega Evolve. +#------------------------------- +[HERACRONITE] +Name = Heracronite +NamePlural = Heracronites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Heracross hold it, and it will be able to Mega Evolve. +#------------------------------- +[HOUNDOOMINITE] +Name = Houndoominite +NamePlural = Houndoominites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Houndoom hold it, and it will be able to Mega Evolve. +#------------------------------- +[TYRANITARITE] +Name = Tyranitarite +NamePlural = Tyranitarites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Tyranitar hold it, and it will be able to Mega Evolve. +#------------------------------- +[SCEPTILITE] +Name = Sceptilite +NamePlural = Sceptilites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Sceptile hold it, and it will be able to Mega Evolve. +#------------------------------- +[BLAZIKENITE] +Name = Blazikenite +NamePlural = Blazikenites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Blaziken hold it, and it will be able to Mega Evolve. +#------------------------------- +[SWAMPERTITE] +Name = Swampertite +NamePlural = Swampertites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Swampert hold it, and it will be able to Mega Evolve. +#------------------------------- +[GARDEVOIRITE] +Name = Gardevoirite +NamePlural = Gardevoirites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Gardevoir hold it, and it will be able to Mega Evolve. +#------------------------------- +[SABLENITE] +Name = Sablenite +NamePlural = Sablenites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Sableye hold it, and it will be able to Mega Evolve. +#------------------------------- +[MAWILITE] +Name = Mawilite +NamePlural = Mawilites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Mawile hold it, and it will be able to Mega Evolve. +#------------------------------- +[AGGRONITE] +Name = Aggronite +NamePlural = Aggronites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Aggron hold it, and it will be able to Mega Evolve. +#------------------------------- +[MEDICHAMITE] +Name = Medichamite +NamePlural = Medichamites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Medicham hold it, and it will be able to Mega Evolve. +#------------------------------- +[MANECTITE] +Name = Manectite +NamePlural = Manectites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Manectric hold it, and it will be able to Mega Evolve. +#------------------------------- +[SHARPEDONITE] +Name = Sharpedonite +NamePlural = Sharpedonites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Sharpedo hold it, and it will be able to Mega Evolve. +#------------------------------- +[CAMERUPTITE] +Name = Cameruptite +NamePlural = Cameruptites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Camerupt hold it, and it will be able to Mega Evolve. +#------------------------------- +[ALTARIANITE] +Name = Altarianite +NamePlural = Altarianites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Altaria hold it, and it will be able to Mega Evolve. +#------------------------------- +[BANETTITE] +Name = Banettite +NamePlural = Banettites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Banette hold it, and it will be able to Mega Evolve. +#------------------------------- +[ABSOLITE] +Name = Absolite +NamePlural = Absolites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Absol hold it, and it will be able to Mega Evolve. +#------------------------------- +[GLALITITE] +Name = Glalitite +NamePlural = Glalitites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Glalie hold it, and it will be able to Mega Evolve. +#------------------------------- +[SALAMENCITE] +Name = Salamencite +NamePlural = Salamencites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Salamence hold it, and it will be able to Mega Evolve. +#------------------------------- +[METAGROSSITE] +Name = Metagrossite +NamePlural = Metagrossites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Metagross hold it, and it will be able to Mega Evolve. +#------------------------------- +[LATIASITE] +Name = Latiasite +NamePlural = Latiasites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Latias hold it, and it will be able to Mega Evolve. +#------------------------------- +[LATIOSITE] +Name = Latiosite +NamePlural = Latiosites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Latios hold it, and it will be able to Mega Evolve. +#------------------------------- +[LOPUNNITE] +Name = Lopunnite +NamePlural = Lopunnites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Lopunny hold it, and it will be able to Mega Evolve. +#------------------------------- +[GARCHOMPITE] +Name = Garchompite +NamePlural = Garchompites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Garchomp hold it, and it will be able to Mega Evolve. +#------------------------------- +[LUCARIONITE] +Name = Lucarionite +NamePlural = Lucarionites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Lucario hold it, and it will be able to Mega Evolve. +#------------------------------- +[ABOMASITE] +Name = Abomasite +NamePlural = Abomasites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Abomasnow hold it, and it will be able to Mega Evolve. +#------------------------------- +[GALLADITE] +Name = Galladite +NamePlural = Galladites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Gallade hold it, and it will be able to Mega Evolve. +#------------------------------- +[AUDINITE] +Name = Audinite +NamePlural = Audinites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Audino hold it, and it will be able to Mega Evolve. +#------------------------------- +[DIANCITE] +Name = Diancite +NamePlural = Diancites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Diancie hold it, and it will be able to Mega Evolve. +#------------------------------- +[REDORB] +Name = Red Orb +NamePlural = Red Orbs +Pocket = HeldItems +Price = 10000 +SellPrice = 0 +BPPrice = 50 +Description = A shiny red orb that is said to have a legend tied to it. It's known to be connected with the Hoenn region. +#------------------------------- +[BLUEORB] +Name = Blue Orb +NamePlural = Blue Orbs +Pocket = HeldItems +Price = 10000 +SellPrice = 0 +BPPrice = 50 +Description = A shiny blue orb that is said to have a legend tied to it. It's known to be connected with the Hoenn region. #------------------------------- [XATTACK] Name = X Attack NamePlural = X Attacks -Pocket = 7 +Pocket = BattleItems Price = 1000 BattleUse = OnBattler Flags = Fling_30 @@ -5933,7 +4779,7 @@ Description = An item that sharply boosts the Attack stat of a Pokémon while it [XATTACK2] Name = X Attack 2 NamePlural = X Attack 2s -Pocket = 7 +Pocket = BattleItems Price = 0 BattleUse = OnBattler Flags = Fling_30 @@ -5942,7 +4788,7 @@ Description = It sharply raises the Attack stat of a Pokémon in battle. It wear [XATTACK3] Name = X Attack 3 NamePlural = X Attack 3s -Pocket = 7 +Pocket = BattleItems Price = 0 BattleUse = OnBattler Flags = Fling_30 @@ -5951,7 +4797,7 @@ Description = It drastically raises the Attack stat of a Pokémon in battle. It [XATTACK6] Name = X Attack 6 NamePlural = X Attack 6s -Pocket = 7 +Pocket = BattleItems Price = 0 BattleUse = OnBattler Flags = Fling_30 @@ -5960,7 +4806,7 @@ Description = It raises the Attack stat of a Pokémon in battle immensely. It we [XDEFENSE] Name = X Defense NamePlural = X Defenses -Pocket = 7 +Pocket = BattleItems Price = 2000 BattleUse = OnBattler Flags = Fling_30 @@ -5969,7 +4815,7 @@ Description = An item that sharply boosts the Defense of a Pokémon while it rem [XDEFENSE2] Name = X Defense 2 NamePlural = X Defense 2s -Pocket = 7 +Pocket = BattleItems Price = 0 BattleUse = OnBattler Flags = Fling_30 @@ -5978,7 +4824,7 @@ Description = It sharply raises the Defense stat of a Pokémon in battle. It wea [XDEFENSE3] Name = X Defense 3 NamePlural = X Defense 3s -Pocket = 7 +Pocket = BattleItems Price = 0 BattleUse = OnBattler Flags = Fling_30 @@ -5987,7 +4833,7 @@ Description = It drastically raises the Defense stat of a Pokémon in battle. It [XDEFENSE6] Name = X Defense 6 NamePlural = X Defense 6s -Pocket = 7 +Pocket = BattleItems Price = 0 BattleUse = OnBattler Flags = Fling_30 @@ -5996,7 +4842,7 @@ Description = It raises the Defense stat of a Pokémon in battle immensely. It w [XSPATK] Name = X Sp. Atk NamePlural = X Sp. Atks -Pocket = 7 +Pocket = BattleItems Price = 1000 BattleUse = OnBattler Flags = Fling_30 @@ -6005,7 +4851,7 @@ Description = An item that sharply boosts the Sp. Atk stat of a Pokémon while i [XSPATK2] Name = X Sp. Atk 2 NamePlural = X Sp. Atk 2s -Pocket = 7 +Pocket = BattleItems Price = 0 BattleUse = OnBattler Flags = Fling_30 @@ -6014,7 +4860,7 @@ Description = It sharply raises the Sp. Atk stat of a Pokémon in battle. It wea [XSPATK3] Name = X Sp. Atk 3 NamePlural = X Sp. Atk 3s -Pocket = 7 +Pocket = BattleItems Price = 0 BattleUse = OnBattler Flags = Fling_30 @@ -6023,7 +4869,7 @@ Description = It drastically raises the Sp. Atk stat of a Pokémon in battle. It [XSPATK6] Name = X Sp. Atk 6 NamePlural = X Sp. Atk 6s -Pocket = 7 +Pocket = BattleItems Price = 0 BattleUse = OnBattler Flags = Fling_30 @@ -6032,7 +4878,7 @@ Description = It raises the Sp. Atk stat of a Pokémon in battle immensely. It w [XSPDEF] Name = X Sp. Def NamePlural = X Sp. Defs -Pocket = 7 +Pocket = BattleItems Price = 2000 BattleUse = OnBattler Flags = Fling_30 @@ -6041,7 +4887,7 @@ Description = An item that sharply boosts the Sp. Def stat of a Pokémon while i [XSPDEF2] Name = X Sp. Def 2 NamePlural = X Sp. Def 2s -Pocket = 7 +Pocket = BattleItems Price = 0 BattleUse = OnBattler Flags = Fling_30 @@ -6050,7 +4896,7 @@ Description = It sharply raises the Sp. Def stat of a Pokémon in battle. It wea [XSPDEF3] Name = X Sp. Def 3 NamePlural = X Sp. Def 3s -Pocket = 7 +Pocket = BattleItems Price = 0 BattleUse = OnBattler Flags = Fling_30 @@ -6059,7 +4905,7 @@ Description = It drastically raises the Sp. Def stat of a Pokémon in battle. It [XSPDEF6] Name = X Sp. Def 6 NamePlural = X Sp. Def 6s -Pocket = 7 +Pocket = BattleItems Price = 0 BattleUse = OnBattler Flags = Fling_30 @@ -6068,7 +4914,7 @@ Description = It raises the Sp. Def stat of a Pokémon in battle immensely. It w [XSPEED] Name = X Speed NamePlural = X Speeds -Pocket = 7 +Pocket = BattleItems Price = 1000 BattleUse = OnBattler Flags = Fling_30 @@ -6077,7 +4923,7 @@ Description = An item that sharply boosts the Speed stat of a Pokémon while it [XSPEED2] Name = X Speed 2 NamePlural = X Speed 2s -Pocket = 7 +Pocket = BattleItems Price = 0 BattleUse = OnBattler Flags = Fling_30 @@ -6086,7 +4932,7 @@ Description = It sharply raises the Speed stat of a Pokémon in battle. It wears [XSPEED3] Name = X Speed 3 NamePlural = X Speed 3s -Pocket = 7 +Pocket = BattleItems Price = 0 BattleUse = OnBattler Flags = Fling_30 @@ -6095,7 +4941,7 @@ Description = It drastically raises the Speed stat of a Pokémon in battle. It w [XSPEED6] Name = X Speed 6 NamePlural = X Speed 6s -Pocket = 7 +Pocket = BattleItems Price = 0 BattleUse = OnBattler Flags = Fling_30 @@ -6104,7 +4950,7 @@ Description = It raises the Speed stat of a Pokémon in battle immensely. It wea [XACCURACY] Name = X Accuracy NamePlural = X Accuracies -Pocket = 7 +Pocket = BattleItems Price = 1000 BattleUse = OnBattler Flags = Fling_30 @@ -6113,7 +4959,7 @@ Description = An item that sharply boosts the accuracy of a Pokémon while it re [XACCURACY2] Name = X Accuracy 2 NamePlural = X Accuracy 2s -Pocket = 7 +Pocket = BattleItems Price = 0 BattleUse = OnBattler Flags = Fling_30 @@ -6122,7 +4968,7 @@ Description = It sharply raises the accuracy of a Pokémon in battle. It wears o [XACCURACY3] Name = X Accuracy 3 NamePlural = X Accuracy 3s -Pocket = 7 +Pocket = BattleItems Price = 0 BattleUse = OnBattler Flags = Fling_30 @@ -6131,7 +4977,7 @@ Description = It drastically raises the accuracy of a Pokémon in battle. It wea [XACCURACY6] Name = X Accuracy 6 NamePlural = X Accuracy 6s -Pocket = 7 +Pocket = BattleItems Price = 0 BattleUse = OnBattler Flags = Fling_30 @@ -6142,7 +4988,7 @@ Name = Max Mushrooms NamePlural = Max Mushrooms PortionName = cluster of Max Mushrooms PortionNamePlural = clusters of Max Mushrooms -Pocket = 7 +Pocket = BattleItems Price = 8000 BattleUse = OnBattler Flags = Fling_30 @@ -6151,7 +4997,7 @@ Description = Mushrooms that boost all stats of a Pokémon during battle. [DIREHIT] Name = Dire Hit NamePlural = Dire Hits -Pocket = 7 +Pocket = BattleItems Price = 1000 BattleUse = OnBattler Flags = Fling_30 @@ -6160,7 +5006,7 @@ Description = An item that raises the critical-hit ratio greatly. It wears off i [DIREHIT2] Name = Dire Hit 2 NamePlural = Dire Hit 2s -Pocket = 7 +Pocket = BattleItems Price = 0 BattleUse = OnBattler Flags = Fling_30 @@ -6169,7 +5015,7 @@ Description = It sharply raises the critical-hit ratio. It wears off if the Pok [DIREHIT3] Name = Dire Hit 3 NamePlural = Dire Hit 3s -Pocket = 7 +Pocket = BattleItems Price = 0 BattleUse = OnBattler Flags = Fling_30 @@ -6178,7 +5024,7 @@ Description = It greatly raises the critical-hit ratio. It wears off if the Pok [GUARDSPEC] Name = Guard Spec. NamePlural = Guard Specs. -Pocket = 7 +Pocket = BattleItems Price = 1500 BattleUse = Direct Flags = Fling_30 @@ -6187,7 +5033,7 @@ Description = An item that prevents stat reduction among the Trainer's party Pok [RESETURGE] Name = Reset Urge NamePlural = Reset Urges -Pocket = 7 +Pocket = BattleItems Price = 0 Flags = Fling_30 Description = When used, it restores any stat changes of an ally Pokémon. @@ -6195,7 +5041,7 @@ Description = When used, it restores any stat changes of an ally Pokémon. [ABILITYURGE] Name = Ability Urge NamePlural = Ability Urges -Pocket = 7 +Pocket = BattleItems Price = 0 Flags = Fling_30 Description = When used, it activates the Ability of an ally Pokémon. @@ -6203,7 +5049,7 @@ Description = When used, it activates the Ability of an ally Pokémon. [ITEMURGE] Name = Item Urge NamePlural = Item Urges -Pocket = 7 +Pocket = BattleItems Price = 0 Flags = Fling_30 Description = When used, it causes an ally Pokémon to use its held item. @@ -6211,7 +5057,7 @@ Description = When used, it causes an ally Pokémon to use its held item. [ITEMDROP] Name = Item Drop NamePlural = Item Drops -Pocket = 7 +Pocket = BattleItems Price = 0 Flags = Fling_30 Description = When used, it causes an ally Pokémon to drop a held item. @@ -6219,7 +5065,7 @@ Description = When used, it causes an ally Pokémon to drop a held item. [BLUEFLUTE] Name = Blue Flute NamePlural = Blue Flutes -Pocket = 7 +Pocket = BattleItems Price = 20 FieldUse = OnPokemon BattleUse = OnPokemon @@ -6230,7 +5076,7 @@ Description = A blue flute made from blown glass. Its melody awakens a single Po [YELLOWFLUTE] Name = Yellow Flute NamePlural = Yellow Flutes -Pocket = 7 +Pocket = BattleItems Price = 20 BattleUse = OnBattler Flags = Fling_30 @@ -6240,7 +5086,7 @@ Description = A yellow flute made from blown glass. Its melody snaps a single Po [REDFLUTE] Name = Red Flute NamePlural = Red Flutes -Pocket = 7 +Pocket = BattleItems Price = 20 BattleUse = OnBattler Flags = Fling_30 @@ -6250,7 +5096,7 @@ Description = A red flute made from blown glass. Its melody snaps a single Poké [POKEDOLL] Name = Poké Doll NamePlural = Poké Dolls -Pocket = 7 +Pocket = BattleItems Price = 300 BattleUse = Direct Flags = Fling_30 @@ -6259,7 +5105,7 @@ Description = A doll that attracts Pokémon. Use it to flee from any battle with [FLUFFYTAIL] Name = Fluffy Tail NamePlural = Fluffy Tails -Pocket = 7 +Pocket = BattleItems Price = 300 BattleUse = Direct Flags = Fling_30 @@ -6268,16 +5114,1170 @@ Description = An item that attracts Pokémon. Use it to flee from any battle wit [POKETOY] Name = Poké Toy NamePlural = Poké Toys -Pocket = 7 +Pocket = BattleItems Price = 300 BattleUse = Direct Flags = Fling_30 Description = An item that attracts Pokémon. Use it to flee from any battle with a wild Pokémon. #------------------------------- +[TM01] +Name = TM01 +NamePlural = TM01s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_150 +Move = FOCUSPUNCH +Description = The user focuses its mind before launching a punch. This move fails if the user is hit before it is used. +#------------------------------- +[TM02] +Name = TM02 +NamePlural = TM02s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_80 +Move = DRAGONCLAW +Description = The user slashes the target with huge sharp claws. +#------------------------------- +[TM03] +Name = TM03 +NamePlural = TM03s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_60 +Move = WATERPULSE +Description = The user attacks the target with a pulsing blast of water. This may also confuse the target. +#------------------------------- +[TM04] +Name = TM04 +NamePlural = TM04s +Pocket = Machines +Price = 1500 +BPPrice = 48 +FieldUse = TR +Flags = Fling_10 +Move = CALMMIND +Description = The user quietly focuses its mind and calms its spirit to raise its Sp. Atk and Sp. Def stats. +#------------------------------- +[TM05] +Name = TM05 +NamePlural = TM05s +Pocket = Machines +Price = 1000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_10 +Move = ROAR +Description = The target is scared off, and a different Pokémon is dragged out. In the wild, this ends the battle. +#------------------------------- +[TM06] +Name = TM06 +NamePlural = TM06s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_10 +Move = TOXIC +Description = A move that leaves the target badly poisoned. Its poison damage worsens every turn. +#------------------------------- +[TM07] +Name = TM07 +NamePlural = TM07s +Pocket = Machines +Price = 2000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_10 +Move = HAIL +Description = The user summons a hailstorm lasting five turns. It damages all Pokémon except Ice types. +#------------------------------- +[TM08] +Name = TM08 +NamePlural = TM08s +Pocket = Machines +Price = 1500 +BPPrice = 48 +FieldUse = TR +Flags = Fling_10 +Move = BULKUP +Description = The user tenses its muscles to bulk up its body, raising both its Attack and Defense stats. +#------------------------------- +[TM09] +Name = TM09 +NamePlural = TM09s +Pocket = Machines +Price = 2000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_25 +Move = BULLETSEED +Description = The user forcefully shoots seeds at the target two to five times in a row. +#------------------------------- +[TM10] +Name = TM10 +NamePlural = TM10s +Pocket = Machines +Price = 1500 +BPPrice = 32 +FieldUse = TR +Flags = Fling_10 +Move = WORKUP +Description = The user is roused, and its Attack and Sp. Atk stats increase. +#------------------------------- +[TM11] +Name = TM11 +NamePlural = TM11s +Pocket = Machines +Price = 2000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_10 +Move = SUNNYDAY +Description = The user intensifies the sun for five turns, powering up Fire-type moves and weakening Water-type moves. +#------------------------------- +[TM12] +Name = TM12 +NamePlural = TM12s +Pocket = Machines +Price = 1500 +BPPrice = 32 +FieldUse = TR +Flags = Fling_10 +Move = TAUNT +Description = The target is taunted into a rage that allows it to use only attack moves for three turns. +#------------------------------- +[TM13] +Name = TM13 +NamePlural = TM13s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_90 +Move = ICEBEAM +Description = The target is struck with an icy-cold beam of energy. This may also leave the target frozen. +#------------------------------- +[TM14] +Name = TM14 +NamePlural = TM14s +Pocket = Machines +Price = 5500 +BPPrice = 32 +FieldUse = TR +Flags = Fling_110 +Move = BLIZZARD +Description = A howling blizzard is summoned to strike opposing Pokémon. This may also leave them frozen. +#------------------------------- +[TM15] +Name = TM15 +NamePlural = TM15s +Pocket = Machines +Price = 7500 +BPPrice = 32 +FieldUse = TR +Flags = Fling_150 +Move = HYPERBEAM +Description = The target is attacked with a powerful beam. The user can't move on the next turn. +#------------------------------- +[TM16] +Name = TM16 +NamePlural = TM16s +Pocket = Machines +Price = 2000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_10 +Move = LIGHTSCREEN +Description = A wondrous wall of light is put up to reduce damage from special attacks for five turns. +#------------------------------- +[TM17] +Name = TM17 +NamePlural = TM17s +Pocket = Machines +Price = 2000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_10 +Move = PROTECT +Description = The user protects itself from all attacks. Its chance of failing rises if it is used in succession. +#------------------------------- +[TM18] +Name = TM18 +NamePlural = TM18s +Pocket = Machines +Price = 2000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_10 +Move = RAINDANCE +Description = The user summons a heavy rain for five turns, powering up Water-type moves and weakening Fire-type ones. +#------------------------------- +[TM19] +Name = TM19 +NamePlural = TM19s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_75 +Move = GIGADRAIN +Description = A nutrient-draining attack. The user's HP is restored by half the damage taken by the target. +#------------------------------- +[TM20] +Name = TM20 +NamePlural = TM20s +Pocket = Machines +Price = 2000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_10 +Move = SAFEGUARD +Description = The user creates a protective field that prevents status conditions for five turns. +#------------------------------- +[TM21] +Name = TM21 +NamePlural = TM21s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_80 +Move = DAZZLINGGLEAM +Description = The user damages opposing Pokémon by emitting a powerful flash. +#------------------------------- +[TM22] +Name = TM22 +NamePlural = TM22s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_120 +Move = SOLARBEAM +Description = In this two-turn attack, the user gathers light, then blasts a bundled beam on the next turn. +#------------------------------- +[TM23] +Name = TM23 +NamePlural = TM23s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_100 +Move = IRONTAIL +Description = The target is slammed with a steel-hard tail. This may also lower the target's Defense stat. +#------------------------------- +[TM24] +Name = TM24 +NamePlural = TM24s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_90 +Move = THUNDERBOLT +Description = A strong electric blast crashes down on the target. This may also leave the target with paralysis. +#------------------------------- +[TM25] +Name = TM25 +NamePlural = TM25s +Pocket = Machines +Price = 5500 +BPPrice = 32 +FieldUse = TR +Flags = Fling_110 +Move = THUNDER +Description = A wicked thunderbolt is dropped on the target to inflict damage. This may also leave them with paralysis. +#------------------------------- +[TM26] +Name = TM26 +NamePlural = TM26s +Pocket = Machines +Price = 3000 +BPPrice = 80 +FieldUse = TR +Flags = Fling_100 +Move = EARTHQUAKE +Description = The user sets off an earthquake that strikes every Pokémon around it. +#------------------------------- +[TM27] +Name = TM27 +NamePlural = TM27s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_65 +Move = LOWSWEEP +Description = The user makes a swift attack on the target's legs, which lowers the target's Speed stat. +#------------------------------- +[TM28] +Name = TM28 +NamePlural = TM28s +Pocket = Machines +Price = 2000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_80 +Move = DIG +Description = The user burrows into the ground, then attacks on the next turn. It can also be used to exit dungeons. +#------------------------------- +[TM29] +Name = TM29 +NamePlural = TM29s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_90 +Move = PSYCHIC +Description = The target is hit by a strong telekinetic force. This may also lower the target's Sp. Def stat. +#------------------------------- +[TM30] +Name = TM30 +NamePlural = TM30s +Pocket = Machines +Price = 3000 +BPPrice = 64 +FieldUse = TR +Flags = Fling_80 +Move = SHADOWBALL +Description = The user hurls a shadowy blob at the target. This may also lower the target's Sp. Def stat. +#------------------------------- +[TM31] +Name = TM31 +NamePlural = TM31s +Pocket = Machines +Price = 3000 +BPPrice = 40 +FieldUse = TR +Flags = Fling_75 +Move = BRICKBREAK +Description = The user attacks with a swift chop. It can also break barriers, such as Light Screen and Reflect. +#------------------------------- +[TM32] +Name = TM32 +NamePlural = TM32s +Pocket = Machines +Price = 1000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_10 +Move = DOUBLETEAM +Description = By moving rapidly, the user makes illusory copies of itself to raise its evasiveness. +#------------------------------- +[TM33] +Name = TM33 +NamePlural = TM33s +Pocket = Machines +Price = 2000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_10 +Move = REFLECT +Description = A wondrous wall of light is put up to reduce damage from physical attacks for five turns. +#------------------------------- +[TM34] +Name = TM34 +NamePlural = TM34s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_60 +Move = SHOCKWAVE +Description = The user strikes the target with a quick jolt of electricity. This attack never misses. +#------------------------------- +[TM35] +Name = TM35 +NamePlural = TM35s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_90 +Move = FLAMETHROWER +Description = The target is scorched with an intense blast of fire. This may also leave the target with a burn. +#------------------------------- +[TM36] +Name = TM36 +NamePlural = TM36s +Pocket = Machines +Price = 3000 +BPPrice = 80 +FieldUse = TR +Flags = Fling_90 +Move = SLUDGEBOMB +Description = Unsanitary sludge is hurled at the target. This may also poison the target. +#------------------------------- +[TM37] +Name = TM37 +NamePlural = TM37s +Pocket = Machines +Price = 2000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_10 +Move = SANDSTORM +Description = A five-turn sandstorm is summoned to hurt all combatants except Rock, Ground, and Steel types. +#------------------------------- +[TM38] +Name = TM38 +NamePlural = TM38s +Pocket = Machines +Price = 5500 +BPPrice = 32 +FieldUse = TR +Flags = Fling_110 +Move = FIREBLAST +Description = The target is attacked with an intense blast of all-consuming fire. This may also leave them with a burn. +#------------------------------- +[TM39] +Name = TM39 +NamePlural = TM39s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_60 +Move = ROCKTOMB +Description = Boulders are hurled at the target. This also lowers the target's Speed stat by preventing its movement. +#------------------------------- +[TM40] +Name = TM40 +NamePlural = TM40s +Pocket = Machines +Price = 3000 +BPPrice = 40 +FieldUse = TR +Flags = Fling_60 +Move = AERIALACE +Description = The user confounds the target with speed, then slashes. This attack never misses. +#------------------------------- +[TM41] +Name = TM41 +NamePlural = TM41s +Pocket = Machines +Price = 1500 +BPPrice = 32 +FieldUse = TR +Flags = Fling_10 +Move = TORMENT +Description = The user torments and enrages the target, making it incapable of using the same move twice in a row. +#------------------------------- +[TM42] +Name = TM42 +NamePlural = TM42s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_70 +Move = FACADE +Description = This attack move doubles its power if the user is poisoned, burned, or paralyzed. +#------------------------------- +[TM43] +Name = TM43 +NamePlural = TM43s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_70 +Move = VOLTSWITCH +Description = After making its attack, the user rushes back to switch places with a party Pokémon in waiting. +#------------------------------- +[TM44] +Name = TM44 +NamePlural = TM44s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_10 +Move = REST +Description = The user goes to sleep for two turns. This fully restores the user's HP and heals any status conditions. +#------------------------------- +[TM45] +Name = TM45 +NamePlural = TM45s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_10 +Move = ATTRACT +Description = If it is the opposite gender of the user, the target becomes infatuated and less likely to attack. +#------------------------------- +[TM46] +Name = TM46 +NamePlural = TM46s +Pocket = Machines +Price = 2000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_60 +Move = THIEF +Description = The user attacks and steals the target's held item simultaneously. +#------------------------------- +[TM47] +Name = TM47 +NamePlural = TM47s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_70 +Move = STEELWING +Description = The target is hit with wings of steel. This may also raise the user's Defense stat. +#------------------------------- +[TM48] +Name = TM48 +NamePlural = TM48s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_10 +Move = SKILLSWAP +Description = The user employs its psychic power to exchange Abilities with the target. +#------------------------------- +[TM49] +Name = TM49 +NamePlural = TM49s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_80 +Move = SCALD +Description = The user shoots boiling hot water at its target. This may also leave the target with a burn. +#------------------------------- +[TM50] +Name = TM50 +NamePlural = TM50s +Pocket = Machines +Price = 5500 +BPPrice = 32 +FieldUse = TR +Flags = Fling_130 +Move = OVERHEAT +Description = The user attacks the target at full power. The attack's recoil harshly lowers the user's Sp. Atk stat. +#------------------------------- +[TM51] +Name = TM51 +NamePlural = TM51s +Pocket = Machines +Price = 2000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_10 +Move = ROOST +Description = The user lands and rests its body. This move restores the user's HP by up to half of its max HP. +#------------------------------- +[TM52] +Name = TM52 +NamePlural = TM52s +Pocket = Machines +Price = 5500 +BPPrice = 32 +FieldUse = TR +Flags = Fling_120 +Move = FOCUSBLAST +Description = The user heightens its mental focus and unleashes its power. This may also lower the target's Sp. Def stat. +#------------------------------- +[TM53] +Name = TM53 +NamePlural = TM53s +Pocket = Machines +Price = 3000 +BPPrice = 64 +FieldUse = TR +Flags = Fling_90 +Move = ENERGYBALL +Description = The user draws power from nature and fires it at the target. This may also lower the target's Sp. Def stat. +#------------------------------- +[TM54] +Name = TM54 +NamePlural = TM54s +Pocket = Machines +Price = 2000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_40 +Move = FALSESWIPE +Description = A restrained attack that prevents the target from fainting. The target is left with at least 1 HP. +#------------------------------- +[TM55] +Name = TM55 +NamePlural = TM55s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_65 +Move = BRINE +Description = If the target's HP is half or less, this attack will hit with double the power. +#------------------------------- +[TM56] +Name = TM56 +NamePlural = TM56s +Pocket = Machines +Price = 2000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_10 +Move = FLING +Description = The user flings its held item at the target to attack. This move's power and effects depend on the item. +#------------------------------- +[TM57] +Name = TM57 +NamePlural = TM57s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_50 +Move = CHARGEBEAM +Description = The user attacks the target with an electric charge. The user may use any remaining charge to raise its Sp. Atk. +#------------------------------- +[TM58] +Name = TM58 +NamePlural = TM58s +Pocket = Machines +Price = 2000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_10 +Move = ENDURE +Description = The user endures any attack with at least 1 HP. Its chance of failing rises if it is used in succession. +#------------------------------- +[TM59] +Name = TM59 +NamePlural = TM59s +Pocket = Machines +Price = 3000 +BPPrice = 80 +FieldUse = TR +Flags = Fling_85 +Move = DRAGONPULSE +Description = The target is attacked with a shock wave generated by the user's gaping mouth. +#------------------------------- +[TM60] +Name = TM60 +NamePlural = TM60s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_75 +Move = DRAINPUNCH +Description = An energy-draining punch. The user's HP is restored by half the damage taken by the target. +#------------------------------- +[TM61] +Name = TM61 +NamePlural = TM61s +Pocket = Machines +Price = 2000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_10 +Move = WILLOWISP +Description = The user shoots a sinister flame at the target to inflict a burn. +#------------------------------- +[TM62] +Name = TM62 +NamePlural = TM62s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_90 +Move = BUGBUZZ +Description = The user generates a damaging sound wave by vibration. This may also lower the target's Sp. Def stat. +#------------------------------- +[TM63] +Name = TM63 +NamePlural = TM63s +Pocket = Machines +Price = 2000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_10 +Move = NASTYPLOT +Description = The user stimulates its brain by thinking bad thoughts. This sharply raises the user's Sp. Atk stat. +#------------------------------- +[TM64] +Name = TM64 +NamePlural = TM64s +Pocket = Machines +Price = 7500 +BPPrice = 32 +FieldUse = TR +Flags = Fling_250 +Move = EXPLOSION +Description = The user attacks everything around it by causing a tremendous explosion. The user faints upon using this move. +#------------------------------- +[TM65] +Name = TM65 +NamePlural = TM65s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_70 +Move = SHADOWCLAW +Description = The user slashes with a sharp claw made from shadows. Critical hits land more easily. +#------------------------------- +[TM66] +Name = TM66 +NamePlural = TM66s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_50 +Move = PAYBACK +Description = The user stores power, then attacks. If the user moves after the target, this attack's power will be doubled. +#------------------------------- +[TM67] +Name = TM67 +NamePlural = TM67s +Pocket = Machines +Price = 1000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_10 +Move = RECYCLE +Description = The user recycles a held item that has been used in battle so it can be used again. +#------------------------------- +[TM68] +Name = TM68 +NamePlural = TM68s +Pocket = Machines +Price = 7500 +BPPrice = 32 +FieldUse = TR +Flags = Fling_150 +Move = GIGAIMPACT +Description = The user charges at the target using every bit of its power. The user can't move on the next turn. +#------------------------------- +[TM69] +Name = TM69 +NamePlural = TM69s +Pocket = Machines +Price = 1500 +BPPrice = 32 +FieldUse = TR +Flags = Fling_10 +Move = ROCKPOLISH +Description = The user polishes its body to reduce drag. This sharply raises the Speed stat. +#------------------------------- +[TM70] +Name = TM70 +NamePlural = TM70s +Pocket = Machines +Price = 1000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_10 +Move = FLASH +Description = The user flashes a light that lowers the target's accuracy. It can also be used to illuminate caves. +#------------------------------- +[TM71] +Name = TM71 +NamePlural = TM71s +Pocket = Machines +Price = 3000 +BPPrice = 80 +FieldUse = TR +Flags = Fling_100 +Move = STONEEDGE +Description = The user stabs the target from below with sharpened stones. Critical hits land more easily. +#------------------------------- +[TM72] +Name = TM72 +NamePlural = TM72s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_60 +Move = AVALANCHE +Description = The power of this attack move is doubled if the user has been hurt by the target in the same turn. +#------------------------------- +[TM73] +Name = TM73 +NamePlural = TM73s +Pocket = Machines +Price = 2000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_10 +Move = THUNDERWAVE +Description = The user launches a weak jolt of electricity that paralyzes the target. +#------------------------------- +[TM74] +Name = TM74 +NamePlural = TM74s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_10 +Move = GYROBALL +Description = The user tackles with a high-speed spin. This move is stronger the slower the user is than the target. +#------------------------------- +[TM75] +Name = TM75 +NamePlural = TM75s +Pocket = Machines +Price = 1500 +BPPrice = 32 +FieldUse = TR +Flags = Fling_10 +Move = SWORDSDANCE +Description = A frenetic dance to uplift the fighting spirit. This sharply raises the user's Attack stat. +#------------------------------- +[TM76] +Name = TM76 +NamePlural = TM76s +Pocket = Machines +Price = 2000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_10 +Move = STEALTHROCK +Description = The user lays a trap of levitating stones around the opposing team that hurt Pokémon that switch in. +#------------------------------- +[TM77] +Name = TM77 +NamePlural = TM77s +Pocket = Machines +Price = 1500 +BPPrice = 32 +FieldUse = TR +Flags = Fling_10 +Move = PSYCHUP +Description = The user hypnotizes itself into copying any stat change made by the target. +#------------------------------- +[TM78] +Name = TM78 +NamePlural = TM78s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_55 +Move = SNARL +Description = The user yells as if it's ranting about something, which lowers the Sp. Atk stats of opposing Pokémon. +#------------------------------- +[TM79] +Name = TM79 +NamePlural = TM79s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_80 +Move = DARKPULSE +Description = The user releases a horrible aura imbued with dark thoughts. This may also make the target flinch. +#------------------------------- +[TM80] +Name = TM80 +NamePlural = TM80s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_75 +Move = ROCKSLIDE +Description = Large boulders are hurled at opposing Pokémon to inflict damage. This may also make them flinch. +#------------------------------- +[TM81] +Name = TM81 +NamePlural = TM81s +Pocket = Machines +Price = 3000 +BPPrice = 64 +FieldUse = TR +Flags = Fling_80 +Move = XSCISSOR +Description = The user slashes at the target by crossing its scythes or claws as if they were a pair of scissors. +#------------------------------- +[TM82] +Name = TM82 +NamePlural = TM82s +Pocket = Machines +Price = 1000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_10 +Move = SLEEPTALK +Description = While it is asleep, the user randomly uses one of the moves it knows. +#------------------------------- +[TM83] +Name = TM83 +NamePlural = TM83s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_60 +Move = BULLDOZE +Description = The user strikes everything around it by stomping down on the ground. This lowers the Speed of those hit. +#------------------------------- +[TM84] +Name = TM84 +NamePlural = TM84s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_80 +Move = POISONJAB +Description = The target is stabbed with a tentacle, arm, or the like steeped in poison. This may also poison them. +#------------------------------- +[TM85] +Name = TM85 +NamePlural = TM85s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_100 +Move = DREAMEATER +Description = The user eats the dreams of a sleeping target. The user's HP is restored by half the damage dealt. +#------------------------------- +[TM86] +Name = TM86 +NamePlural = TM86s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_10 +Move = GRASSKNOT +Description = The user snares the target with grass and trips it. The heavier the target, the strong the move is. +#------------------------------- +[TM87] +Name = TM87 +NamePlural = TM87s +Pocket = Machines +Price = 1500 +BPPrice = 32 +FieldUse = TR +Flags = Fling_10 +Move = SWAGGER +Description = The user enrages and confuses the target. However, this also sharply raises the target's Attack stat. +#------------------------------- +[TM88] +Name = TM88 +NamePlural = TM88s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_60 +Move = PLUCK +Description = The user pecks the target. If the target is holding a Berry, the user eats it and gains its effect. +#------------------------------- +[TM89] +Name = TM89 +NamePlural = TM89s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_70 +Move = UTURN +Description = After making its attack, the user rushes back to switch places with a party Pokémon in waiting. +#------------------------------- +[TM90] +Name = TM90 +NamePlural = TM90s +Pocket = Machines +Price = 2000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_10 +Move = SUBSTITUTE +Description = The user creates a substitute for itself using some of its HP. The substitute serves as a decoy. +#------------------------------- +[TM91] +Name = TM91 +NamePlural = TM91s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_80 +Move = FLASHCANNON +Description = The user gathers all its light energy and releases it all at once. This may also lower the target's Sp. Def stat. +#------------------------------- +[TM92] +Name = TM92 +NamePlural = TM92s +Pocket = Machines +Price = 5500 +BPPrice = 32 +FieldUse = TR +Flags = Fling_10 +Move = TRICKROOM +Description = The user creates a bizarre area in which slower Pokémon get to move first for five turns. +#------------------------------- +[TM93] +Name = TM93 +NamePlural = TM93s +Pocket = Machines +Price = 2000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_50 +Move = CUT +Description = The target is cut with a scythe or claw. +#------------------------------- +[TM94] +Name = TM94 +NamePlural = TM94s +Pocket = Machines +Price = 2000 +BPPrice = 40 +FieldUse = TR +Flags = Fling_90 +Move = FLY +Description = The user flies up into the sky and then strikes its target on the next turn. +#------------------------------- +[TM95] +Name = TM95 +NamePlural = TM95s +Pocket = Machines +Price = 2500 +BPPrice = 64 +FieldUse = TR +Flags = Fling_90 +Move = SURF +Description = The user attacks everything around it by swamping its surroundings with a giant wave. +#------------------------------- +[TM96] +Name = TM96 +NamePlural = TM96s +Pocket = Machines +Price = 2000 +BPPrice = 40 +FieldUse = TR +Flags = Fling_80 +Move = STRENGTH +Description = The target is slugged with a punch thrown at maximum power. +#------------------------------- +[TM97] +Name = TM97 +NamePlural = TM97s +Pocket = Machines +Price = 2000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_10 +Move = DEFOG +Description = A strong wind blows away the target's barriers, such as Reflect, and lowers their evasiveness. +#------------------------------- +[TM98] +Name = TM98 +NamePlural = TM98s +Pocket = Machines +Price = 2000 +BPPrice = 40 +FieldUse = TR +Flags = Fling_40 +Move = ROCKSMASH +Description = The user attacks with a punch that may lower the target's Defense stat. +#------------------------------- +[TM99] +Name = TM99 +NamePlural = TM99s +Pocket = Machines +Price = 2500 +BPPrice = 64 +FieldUse = TR +Flags = Fling_80 +Move = WATERFALL +Description = The user charges at the target and may make it flinch. +#------------------------------- +[TM100] +Name = TM100 +NamePlural = TM100s +Pocket = Machines +Price = 2000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_90 +Move = ROCKCLIMB +Description = A charging attack that may also leave the foe confused. +#------------------------------- +[HM01] +Name = HM01 +NamePlural = HM01s +Pocket = Machines +Price = 0 +FieldUse = HM +Move = CUT +Description = The target is cut with a scythe or claw. This can also be used to cut down thin trees. +#------------------------------- +[HM02] +Name = HM02 +NamePlural = HM02s +Pocket = Machines +Price = 0 +FieldUse = HM +Move = FLY +Description = The user soars and then strikes on the next turn. This can also be used to fly to any familiar town. +#------------------------------- +[HM03] +Name = HM03 +NamePlural = HM03s +Pocket = Machines +Price = 0 +FieldUse = HM +Move = SURF +Description = Attacks everything by swamping the surroundings with a giant wave. This can also be used to cross water. +#------------------------------- +[HM04] +Name = HM04 +NamePlural = HM04s +Pocket = Machines +Price = 0 +FieldUse = HM +Move = STRENGTH +Description = The target is slugged with a punch thrown at maximum power. This can also be used to move heavy boulders. +#------------------------------- +[HM05] +Name = HM05 +NamePlural = HM05s +Pocket = Machines +Price = 0 +FieldUse = HM +Move = WATERFALL +Description = The user charges at the target and may make it flinch. It can also be used to climb a waterfall. +#------------------------------- +[HM06] +Name = HM06 +NamePlural = HM06s +Pocket = Machines +Price = 0 +FieldUse = HM +Move = DIVE +Description = Diving on the first turn, the user floats up and attacks on the second. It can be used to dive underwater. +#------------------------------- [BICYCLE] Name = Bicycle NamePlural = Bicycles -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = Direct Flags = KeyItem @@ -6286,7 +6286,7 @@ Description = A folding Bicycle that enables much faster movement than the Runni [OLDROD] Name = Old Rod NamePlural = Old Rods -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = Direct Flags = KeyItem @@ -6295,7 +6295,7 @@ Description = An old and beat-up fishing rod. Use it by any body of water to fis [GOODROD] Name = Good Rod NamePlural = Good Rods -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = Direct Flags = KeyItem @@ -6304,7 +6304,7 @@ Description = A new, good-quality fishing rod. Use it by any body of water to fi [SUPERROD] Name = Super Rod NamePlural = Super Rods -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = Direct Flags = KeyItem @@ -6313,7 +6313,7 @@ Description = An awesome, high-tech fishing rod. Use it by any body of water to [ITEMFINDER] Name = Itemfinder NamePlural = Itemfinders -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = Direct Flags = KeyItem @@ -6322,7 +6322,7 @@ Description = A device used for finding items. If there is a hidden item nearby [DOWSINGMACHINE] Name = Dowsing Machine NamePlural = Dowsing Machines -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = Direct Flags = KeyItem @@ -6331,7 +6331,7 @@ Description = It checks for unseen items in the area and makes noise and lights [POKERADAR] Name = Poké Radar NamePlural = Poké Radars -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = Direct Flags = KeyItem @@ -6340,7 +6340,7 @@ Description = A tool that can search out Pokémon that are hiding in grass. Its [TOWNMAP] Name = Town Map NamePlural = Town Maps -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = Direct Flags = KeyItem @@ -6349,7 +6349,7 @@ Description = A very convenient map that can be viewed anytime. It even shows yo [ESCAPEROPE] Name = Escape Rope NamePlural = Escape Ropes -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = Direct Flags = KeyItem @@ -6358,7 +6358,7 @@ Description = A long, durable rope. Use it to escape instantly from a cave or a [COINCASE] Name = Coin Case NamePlural = Coin Cases -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = Direct Flags = KeyItem @@ -6367,7 +6367,7 @@ Description = A case for holding coins obtained at the Game Corner. It holds up [POKEFLUTE] Name = Poké Flute NamePlural = Poké Flutes -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = OnPokemon BattleUse = Direct @@ -6377,7 +6377,7 @@ Description = A flute that is said to instantly awaken any Pokémon. It has a lo [SOOTSACK] Name = Soot Sack NamePlural = Soot Sacks -Pocket = 8 +Pocket = KeyItems Price = 0 Flags = KeyItem Description = A sack used to gather and hold volcanic ash. @@ -6385,7 +6385,7 @@ Description = A sack used to gather and hold volcanic ash. [SILPHSCOPE] Name = Silph Scope NamePlural = Silph Scopes -Pocket = 8 +Pocket = KeyItems Price = 0 Flags = KeyItem Description = A scope that makes unseeable Pokémon visible. It is made by Silph Co. @@ -6393,7 +6393,7 @@ Description = A scope that makes unseeable Pokémon visible. It is made by Silph [DEVONSCOPE] Name = Devon Scope NamePlural = Devon Scopes -Pocket = 8 +Pocket = KeyItems Price = 0 Flags = KeyItem Description = A device by Devon that signals any unseeable Pokémon. @@ -6401,7 +6401,7 @@ Description = A device by Devon that signals any unseeable Pokémon. [SQUIRTBOTTLE] Name = Squirt Bottle NamePlural = Squirt Bottles -Pocket = 8 +Pocket = KeyItems Price = 0 Flags = KeyItem Description = A watering can shaped like a Squirtle. It helps promote healthy growth of Berries planted in soft soil. @@ -6409,7 +6409,7 @@ Description = A watering can shaped like a Squirtle. It helps promote healthy gr [SPRAYDUCK] Name = Sprayduck NamePlural = Sprayducks -Pocket = 8 +Pocket = KeyItems Price = 0 Flags = KeyItem Description = A watering can shaped like a Psyduck. It helps promote healthy growth of Berries planted in soft soil. @@ -6417,7 +6417,7 @@ Description = A watering can shaped like a Psyduck. It helps promote healthy gro [WAILMERPAIL] Name = Wailmer Pail NamePlural = Wailmer Pails -Pocket = 8 +Pocket = KeyItems Price = 0 Flags = KeyItem Description = A nifty watering pail. Use it to promote strong growth in Berries planted in soft soil. @@ -6425,7 +6425,7 @@ Description = A nifty watering pail. Use it to promote strong growth in Berries [SPRINKLOTAD] Name = Sprinklotad NamePlural = Sprinklotads -Pocket = 8 +Pocket = KeyItems Price = 0 Flags = KeyItem Description = A watering can shaped like a Lotad. It helps promote the healthy growth of any Berries planted in soft soil. @@ -6433,7 +6433,7 @@ Description = A watering can shaped like a Lotad. It helps promote the healthy g [GRACIDEA] Name = Gracidea NamePlural = Gracideas -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = OnPokemon Flags = KeyItem @@ -6442,7 +6442,7 @@ Description = A flower sometimes bundled in bouquets to convey gratitude on spec [REVEALGLASS] Name = Reveal Glass NamePlural = Reveal Glasses -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = OnPokemon Flags = KeyItem @@ -6451,7 +6451,7 @@ Description = A glass that reveals the truth. It is a mysterious glass that retu [PRISONBOTTLE] Name = Prison Bottle NamePlural = Prison Bottles -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = OnPokemon Flags = KeyItem @@ -6460,7 +6460,7 @@ Description = A bottle believed to have been used to seal away the power of a ce [ROTOMCATALOG] Name = Rotom Catalog NamePlural = Rotom Catalogs -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = OnPokemon Flags = KeyItem @@ -6469,7 +6469,7 @@ Description = A catalog of devices that Rotom like. Use the catalog to have Roto [ZYGARDECUBE] Name = Zygarde Cube NamePlural = Zygarde Cubes -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = OnPokemon Flags = KeyItem @@ -6478,7 +6478,7 @@ Description = An item in which Zygarde Cores and Cells are gathered. You can als [DNASPLICERS] Name = DNA Splicers NamePlural = DNA Splicers -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = OnPokemon Flags = KeyItem @@ -6487,7 +6487,7 @@ Description = A splicer that fuses Kyurem and a certain Pokémon. They are said [DNASPLICERSUSED] Name = DNA Splicers NamePlural = DNA Splicers -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = OnPokemon Flags = KeyItem @@ -6496,7 +6496,7 @@ Description = A splicer that separates Kyurem and a certain Pokémon when they h [NSOLARIZER] Name = N-Solarizer NamePlural = N-Solarizers -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = OnPokemon Flags = KeyItem @@ -6505,7 +6505,7 @@ Description = A machine to fuse Necrozma, which needs light, and Solgaleo. [NSOLARIZERUSED] Name = N-Solarizer NamePlural = N-Solarizers -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = OnPokemon Flags = KeyItem @@ -6514,7 +6514,7 @@ Description = A machine to separate Necrozma, which needed light, from Solgaleo. [NLUNARIZER] Name = N-Lunarizer NamePlural = N-Lunarizers -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = OnPokemon Flags = KeyItem @@ -6523,7 +6523,7 @@ Description = A machine to fuse Necrozma, which needs light, and Lunala. [NLUNARIZERUSED] Name = N-Lunarizer NamePlural = N-Lunarizers -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = OnPokemon Flags = KeyItem @@ -6534,7 +6534,7 @@ Name = Reins of Unity NamePlural = Reins of Unity PortionName = set of Reins of Unity PortionNamePlural = sets of Reins of Unity -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = OnPokemon Flags = KeyItem @@ -6545,7 +6545,7 @@ Name = Reins of Unity NamePlural = Reins of Unity PortionName = set of Reins of Unity PortionNamePlural = sets of Reins of Unity -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = OnPokemon Flags = KeyItem @@ -6554,7 +6554,7 @@ Description = Reins that people presented to the king. They separate Calyrex and [OVALCHARM] Name = Oval Charm NamePlural = Oval Charms -Pocket = 8 +Pocket = KeyItems Price = 0 Flags = KeyItem Description = An oval charm said to increase the chance of Eggs being found at the Day Care. @@ -6562,7 +6562,7 @@ Description = An oval charm said to increase the chance of Eggs being found at t [SHINYCHARM] Name = Shiny Charm NamePlural = Shiny Charms -Pocket = 8 +Pocket = KeyItems Price = 0 Flags = KeyItem Description = A shiny charm said to increase the chance of finding a Shiny Pokémon. @@ -6570,7 +6570,7 @@ Description = A shiny charm said to increase the chance of finding a Shiny Poké [CATCHINGCHARM] Name = Catching Charm NamePlural = Catching Charms -Pocket = 8 +Pocket = KeyItems Price = 0 Flags = KeyItem Description = A charm said to increase the chance of getting a critical catch. The charm doesn't shake much. @@ -6578,7 +6578,7 @@ Description = A charm said to increase the chance of getting a critical catch. T [EXPCHARM] Name = Exp. Charm NamePlural = Exp. Charms -Pocket = 8 +Pocket = KeyItems Price = 0 Flags = KeyItem Description = A charm that increases the Exp. Points that Pokémon can get. A machine-like object is inside it. @@ -6586,7 +6586,7 @@ Description = A charm that increases the Exp. Points that Pokémon can get. A ma [MEGARING] Name = Mega Ring NamePlural = Mega Rings -Pocket = 8 +Pocket = KeyItems Price = 0 Flags = KeyItem,MegaRing Description = This ring contains an untold power that somehow enables Pokémon carrying Mega Stones to Mega Evolve. @@ -6594,7 +6594,7 @@ Description = This ring contains an untold power that somehow enables Pokémon c [POKEMONBOXLINK] Name = Pokémon Box Link NamePlural = Pokémon Box Links -Pocket = 8 +Pocket = KeyItems Price = 0 Flags = KeyItem Description = A device that allows you to access the Pokémon storage system. There are some places where it won't work. @@ -6602,7 +6602,7 @@ Description = A device that allows you to access the Pokémon storage system. Th [AURORATICKET] Name = Aurora Ticket NamePlural = Aurora Tickets -Pocket = 8 +Pocket = KeyItems Price = 0 Flags = KeyItem Description = A ticket required to board the ship to Berth Island. It glows beautifully. @@ -6610,7 +6610,7 @@ Description = A ticket required to board the ship to Berth Island. It glows beau [OLDSEAMAP] Name = Old Sea Map NamePlural = Old Sea Maps -Pocket = 8 +Pocket = KeyItems Price = 0 Flags = KeyItem Description = A faded sea chart that shows the way to a certain island. diff --git a/PBS/Gen 9 backup/items.txt b/PBS/Gen 9 backup/items.txt index cd245a85e..b0cc70513 100644 --- a/PBS/Gen 9 backup/items.txt +++ b/PBS/Gen 9 backup/items.txt @@ -3,7 +3,7 @@ [REPEL] Name = Repel NamePlural = Repels -Pocket = 1 +Pocket = Items Price = 400 FieldUse = Direct Flags = Repel,Fling_30 @@ -12,7 +12,7 @@ Description = An item that prevents weak wild Pokémon from appearing for 100 st [SUPERREPEL] Name = Super Repel NamePlural = Super Repels -Pocket = 1 +Pocket = Items Price = 700 FieldUse = Direct Flags = Repel,Fling_30 @@ -21,7 +21,7 @@ Description = An item that prevents weak wild Pokémon from appearing for 200 st [MAXREPEL] Name = Max Repel NamePlural = Max Repels -Pocket = 1 +Pocket = Items Price = 900 FieldUse = Direct Flags = Repel,Fling_30 @@ -30,7 +30,7 @@ Description = An item that prevents weak wild Pokémon from appearing for 250 st [BLACKFLUTE] Name = Black Flute NamePlural = Black Flutes -Pocket = 1 +Pocket = Items Price = 20 FieldUse = Direct Flags = Fling_30 @@ -40,7 +40,7 @@ Description = A black flute made from blown glass. Its melody makes wild Pokémo [WHITEFLUTE] Name = White Flute NamePlural = White Flutes -Pocket = 1 +Pocket = Items Price = 20 FieldUse = Direct Flags = Fling_30 @@ -52,7 +52,7 @@ Name = Honey NamePlural = Honey PortionName = jar of Honey PortionNamePlural = jars of Honey -Pocket = 1 +Pocket = Items Price = 900 FieldUse = Direct Flags = Fling_30 @@ -61,7 +61,7 @@ Description = A sweet honey with a lush aroma that attracts wild Pokémon when u [REDSHARD] Name = Red Shard NamePlural = Red Shards -Pocket = 1 +Pocket = Items Price = 1000 Flags = Fling_30 Description = A small red shard. It appears to be from some sort of implement made long ago. @@ -69,7 +69,7 @@ Description = A small red shard. It appears to be from some sort of implement ma [YELLOWSHARD] Name = Yellow Shard NamePlural = Yellow Shards -Pocket = 1 +Pocket = Items Price = 1000 Flags = Fling_30 Description = A small yellow shard. It appears to be from some sort of implement made long ago. @@ -77,7 +77,7 @@ Description = A small yellow shard. It appears to be from some sort of implement [BLUESHARD] Name = Blue Shard NamePlural = Blue Shards -Pocket = 1 +Pocket = Items Price = 1000 Flags = Fling_30 Description = A small blue shard. It appears to be from some sort of implement made long ago. @@ -85,7 +85,7 @@ Description = A small blue shard. It appears to be from some sort of implement m [GREENSHARD] Name = Green Shard NamePlural = Green Shards -Pocket = 1 +Pocket = Items Price = 1000 Flags = Fling_30 Description = A small green shard. It appears to be from some sort of implement made long ago. @@ -93,7 +93,7 @@ Description = A small green shard. It appears to be from some sort of implement [FIRESTONE] Name = Fire Stone NamePlural = Fire Stones -Pocket = 1 +Pocket = Items Price = 3000 BPPrice = 5 FieldUse = OnPokemon @@ -103,7 +103,7 @@ Description = A peculiar stone that makes certain species of Pokémon evolve. It [THUNDERSTONE] Name = Thunder Stone NamePlural = Thunder Stones -Pocket = 1 +Pocket = Items Price = 3000 BPPrice = 5 FieldUse = OnPokemon @@ -113,7 +113,7 @@ Description = A peculiar stone that makes certain species of Pokémon evolve. It [WATERSTONE] Name = Water Stone NamePlural = Water Stones -Pocket = 1 +Pocket = Items Price = 3000 BPPrice = 5 FieldUse = OnPokemon @@ -123,7 +123,7 @@ Description = A peculiar stone that makes certain species of Pokémon evolve. It [LEAFSTONE] Name = Leaf Stone NamePlural = Leaf Stones -Pocket = 1 +Pocket = Items Price = 3000 BPPrice = 5 FieldUse = OnPokemon @@ -133,7 +133,7 @@ Description = A peculiar stone that makes certain species of Pokémon evolve. It [MOONSTONE] Name = Moon Stone NamePlural = Moon Stones -Pocket = 1 +Pocket = Items Price = 3000 BPPrice = 5 FieldUse = OnPokemon @@ -143,7 +143,7 @@ Description = A peculiar stone that makes certain species of Pokémon evolve. It [SUNSTONE] Name = Sun Stone NamePlural = Sun Stones -Pocket = 1 +Pocket = Items Price = 3000 BPPrice = 5 FieldUse = OnPokemon @@ -153,7 +153,7 @@ Description = A peculiar stone that makes certain species of Pokémon evolve. It [DUSKSTONE] Name = Dusk Stone NamePlural = Dusk Stones -Pocket = 1 +Pocket = Items Price = 3000 BPPrice = 5 FieldUse = OnPokemon @@ -163,7 +163,7 @@ Description = A peculiar stone that makes certain species of Pokémon evolve. It [DAWNSTONE] Name = Dawn Stone NamePlural = Dawn Stones -Pocket = 1 +Pocket = Items Price = 3000 BPPrice = 5 FieldUse = OnPokemon @@ -173,7 +173,7 @@ Description = A peculiar stone that makes certain species of Pokémon evolve. It [SHINYSTONE] Name = Shiny Stone NamePlural = Shiny Stones -Pocket = 1 +Pocket = Items Price = 3000 BPPrice = 5 FieldUse = OnPokemon @@ -183,7 +183,7 @@ Description = A peculiar stone that makes certain species of Pokémon evolve. It [ICESTONE] Name = Ice Stone NamePlural = Ice Stones -Pocket = 1 +Pocket = Items Price = 3000 BPPrice = 5 FieldUse = OnPokemon @@ -193,7 +193,7 @@ Description = A peculiar stone that makes certain species of Pokémon evolve. It [SWEETAPPLE] Name = Sweet Apple NamePlural = Sweet Apples -Pocket = 1 +Pocket = Items Price = 2200 BPPrice = 5 FieldUse = OnPokemon @@ -203,7 +203,7 @@ Description = A peculiar apple that can make a certain species of Pokémon evolv [TARTAPPLE] Name = Tart Apple NamePlural = Tart Apples -Pocket = 1 +Pocket = Items Price = 2200 BPPrice = 5 FieldUse = OnPokemon @@ -213,7 +213,7 @@ Description = A peculiar apple that can make a certain species of Pokémon evolv [CRACKEDPOT] Name = Cracked Pot NamePlural = Cracked Pots -Pocket = 1 +Pocket = Items Price = 3000 SellPrice = 800 BPPrice = 5 @@ -224,7 +224,7 @@ Description = A peculiar cracked teapot that can make a certain species of Poké [CHIPPEDPOT] Name = Chipped Pot NamePlural = Chipped Pots -Pocket = 1 +Pocket = Items Price = 3000 SellPrice = 19000 BPPrice = 5 @@ -235,7 +235,7 @@ Description = A peculiar chipped teapot that can make a certain species of Poké [GALARICACUFF] Name = Galarica Cuff NamePlural = Galarica Cuffs -Pocket = 1 +Pocket = Items Price = 6000 BPPrice = 5 FieldUse = OnPokemon @@ -245,7 +245,7 @@ Description = A cuff made from woven-together Galarica Twigs. Giving it to a Gal [GALARICAWREATH] Name = Galarica Wreath NamePlural = Galarica Wreaths -Pocket = 1 +Pocket = Items Price = 6000 BPPrice = 5 FieldUse = OnPokemon @@ -257,7 +257,7 @@ Name = Black Augurite NamePlural = Black Augurites PortionName = piece of Black Augurite PortionNamePlural = pieces of Black Augurite -Pocket = 1 +Pocket = Items Price = 8000 SellPrice = 500 BPPrice = 5 @@ -268,7 +268,7 @@ Description = A glassy black stone that produces a sharp cutting edge when split [PEATBLOCK] Name = Peat Block NamePlural = Peat Blocks -Pocket = 1 +Pocket = Items Price = 10000 SellPrice = 500 BPPrice = 5 @@ -279,7 +279,7 @@ Description = A block of muddy material that can be used as fuel when it is drie [SYRUPYAPPLE] Name = Syrupy Apple NamePlural = Syrupy Apples -Pocket = 1 +Pocket = Items Price = 500 SellPrice = 550 BPPrice = 5 @@ -290,7 +290,7 @@ Description = A peculiar apple that can make a certain species of Pokémon evolv [UNREMARKABLETEACUP] Name = Unremarkable Teacup NamePlural = Unremarkable Teacups -Pocket = 1 +Pocket = Items Price = 1600 BPPrice = 5 FieldUse = OnPokemon @@ -300,7 +300,7 @@ Description = A peculiar cracked teacup that can make a certain species of Poké [MASTERPIECETEACUP] Name = Masterpiece Teacup NamePlural = Masterpiece Teacups -Pocket = 1 +Pocket = Items Price = 38000 BPPrice = 5 FieldUse = OnPokemon @@ -312,7 +312,7 @@ Name = Metal Alloy NamePlural = Metal Alloys PortionName = hunk of Metal Alloy PortionNamePlural = hunks of Metal Alloy -Pocket = 1 +Pocket = Items Price = 6000 BPPrice = 5 FieldUse = OnPokemon @@ -324,7 +324,7 @@ Name = Malicious Armor NamePlural = Malicious Armors PortionName = set of Malicious Armor PortionNamePlural = sets of Malicious Armor -Pocket = 1 +Pocket = Items Price = 3000 FieldUse = OnPokemon Flags = EvolutionStone,Fling_30 @@ -335,7 +335,7 @@ Name = Auspicious Armor NamePlural = Auspicious Armors PortionName = set of Auspicious Armor PortionNamePlural = sets of Auspicious Armor -Pocket = 1 +Pocket = Items Price = 3000 FieldUse = OnPokemon Flags = EvolutionStone,Fling_30 @@ -344,7 +344,7 @@ Description = A peculiar set of armor that can make a certain species of Pokémo [REDAPRICORN] Name = Red Apricorn NamePlural = Red Apricorns -Pocket = 1 +Pocket = Items Price = 200 Flags = Apricorn Description = A red Apricorn. It assails your nostrils. @@ -352,7 +352,7 @@ Description = A red Apricorn. It assails your nostrils. [YELLOWAPRICORN] Name = Yellow Apricorn NamePlural = Yellow Apricorns -Pocket = 1 +Pocket = Items Price = 200 Flags = Apricorn Description = A yellow Apricorn. It has an invigorating scent. @@ -360,7 +360,7 @@ Description = A yellow Apricorn. It has an invigorating scent. [BLUEAPRICORN] Name = Blue Apricorn NamePlural = Blue Apricorns -Pocket = 1 +Pocket = Items Price = 200 Flags = Apricorn Description = A blue Apricorn. It smells a bit like grass. @@ -368,7 +368,7 @@ Description = A blue Apricorn. It smells a bit like grass. [GREENAPRICORN] Name = Green Apricorn NamePlural = Green Apricorns -Pocket = 1 +Pocket = Items Price = 200 Flags = Apricorn Description = A green Apricorn. It has a mysterious, aromatic scent. @@ -376,7 +376,7 @@ Description = A green Apricorn. It has a mysterious, aromatic scent. [PINKAPRICORN] Name = Pink Apricorn NamePlural = Pink Apricorns -Pocket = 1 +Pocket = Items Price = 200 Flags = Apricorn Description = A pink Apricorn. It has a nice, sweet scent. @@ -384,7 +384,7 @@ Description = A pink Apricorn. It has a nice, sweet scent. [WHITEAPRICORN] Name = White Apricorn NamePlural = White Apricorns -Pocket = 1 +Pocket = Items Price = 200 Flags = Apricorn Description = A white Apricorn. It doesn't smell like anything. @@ -392,7 +392,7 @@ Description = A white Apricorn. It doesn't smell like anything. [BLACKAPRICORN] Name = Black Apricorn NamePlural = Black Apricorns -Pocket = 1 +Pocket = Items Price = 200 Flags = Apricorn Description = A black Apricorn. It has an indescribable scent. @@ -400,7 +400,7 @@ Description = A black Apricorn. It has an indescribable scent. [HELIXFOSSIL] Name = Helix Fossil NamePlural = Helix Fossils -Pocket = 1 +Pocket = Items Price = 7000 Flags = Fossil,Fling_100 Description = A fossil of an ancient Pokémon that lived in the sea. It appears to be part of a seashell. @@ -408,7 +408,7 @@ Description = A fossil of an ancient Pokémon that lived in the sea. It appears [DOMEFOSSIL] Name = Dome Fossil NamePlural = Dome Fossils -Pocket = 1 +Pocket = Items Price = 7000 Flags = Fossil,Fling_100 Description = A fossil of an ancient Pokémon that lived in the sea. It appears to be part of a shell. @@ -416,7 +416,7 @@ Description = A fossil of an ancient Pokémon that lived in the sea. It appears [OLDAMBER] Name = Old Amber NamePlural = Old Ambers -Pocket = 1 +Pocket = Items Price = 1000 Flags = Fossil,Fling_100 Description = A piece of amber that contains the genes of an ancient Pokémon. It is clear with a reddish tint. @@ -424,7 +424,7 @@ Description = A piece of amber that contains the genes of an ancient Pokémon. I [ROOTFOSSIL] Name = Root Fossil NamePlural = Root Fossils -Pocket = 1 +Pocket = Items Price = 7000 Flags = Fossil,Fling_100 Description = A fossil of an ancient Pokémon that lived in the sea. It appears to be part of a plant root. @@ -432,7 +432,7 @@ Description = A fossil of an ancient Pokémon that lived in the sea. It appears [CLAWFOSSIL] Name = Claw Fossil NamePlural = Claw Fossils -Pocket = 1 +Pocket = Items Price = 7000 Flags = Fossil,Fling_100 Description = A fossil of an ancient Pokémon that lived in the sea. It appears to be part of a claw. @@ -440,7 +440,7 @@ Description = A fossil of an ancient Pokémon that lived in the sea. It appears [SKULLFOSSIL] Name = Skull Fossil NamePlural = Skull Fossils -Pocket = 1 +Pocket = Items Price = 7000 Flags = Fossil,Fling_100 Description = A fossil from a prehistoric Pokémon that lived on the land. It appears to be part of a head. @@ -448,7 +448,7 @@ Description = A fossil from a prehistoric Pokémon that lived on the land. It ap [ARMORFOSSIL] Name = Armor Fossil NamePlural = Armor Fossils -Pocket = 1 +Pocket = Items Price = 7000 Flags = Fossil,Fling_100 Description = A fossil from a prehistoric Pokémon that lived on the land. It appears to be part of a collar. @@ -456,7 +456,7 @@ Description = A fossil from a prehistoric Pokémon that lived on the land. It ap [COVERFOSSIL] Name = Cover Fossil NamePlural = Cover Fossils -Pocket = 1 +Pocket = Items Price = 7000 Flags = Fossil,Fling_100 Description = A fossil of an ancient Pokémon that lived in the sea in ancient times. It appears to be part of its back. @@ -464,7 +464,7 @@ Description = A fossil of an ancient Pokémon that lived in the sea in ancient t [PLUMEFOSSIL] Name = Plume Fossil NamePlural = Plume Fossils -Pocket = 1 +Pocket = Items Price = 7000 Flags = Fossil,Fling_100 Description = A fossil of an ancient Pokémon that flew in the sky in ancient times. It appears to be part of its wing. @@ -472,7 +472,7 @@ Description = A fossil of an ancient Pokémon that flew in the sky in ancient ti [JAWFOSSIL] Name = Jaw Fossil NamePlural = Jaw Fossils -Pocket = 1 +Pocket = Items Price = 7000 Flags = Fossil,Fling_100 Description = A fossil from a prehistoric Pokémon that once lived on the land. It appears to be part of a large jaw. @@ -480,7 +480,7 @@ Description = A fossil from a prehistoric Pokémon that once lived on the land. [SAILFOSSIL] Name = Sail Fossil NamePlural = Sail Fossils -Pocket = 1 +Pocket = Items Price = 7000 Flags = Fossil,Fling_100 Description = A fossil from a prehistoric Pokémon that once lived on the land. It looks like the impression from a skin sail. @@ -488,7 +488,7 @@ Description = A fossil from a prehistoric Pokémon that once lived on the land. [FOSSILIZEDBIRD] Name = Fossilized Bird NamePlural = Fossilized Birds -Pocket = 1 +Pocket = Items Price = 5000 Flags = Fling_100 Description = The fossil of an ancient Pokémon that once soared through the sky. What it looked like is a mystery. @@ -496,7 +496,7 @@ Description = The fossil of an ancient Pokémon that once soared through the sky [FOSSILIZEDFISH] Name = Fossilized Fish NamePlural = Fossilized Fish -Pocket = 1 +Pocket = Items Price = 5000 Flags = Fling_100 Description = The fossil of an ancient Pokémon that once lived in the sea. What it looked like is a mystery. @@ -504,7 +504,7 @@ Description = The fossil of an ancient Pokémon that once lived in the sea. What [FOSSILIZEDDRAKE] Name = Fossilized Drake NamePlural = Fossilized Drakes -Pocket = 1 +Pocket = Items Price = 5000 Flags = Fling_100 Description = The fossil of an ancient Pokémon that once roamed the land. What it looked like is a mystery. @@ -512,7 +512,7 @@ Description = The fossil of an ancient Pokémon that once roamed the land. What [FOSSILIZEDDINO] Name = Fossilized Dino NamePlural = Fossilized Dinos -Pocket = 1 +Pocket = Items Price = 5000 Flags = Fling_100 Description = The fossil of an ancient Pokémon that once lived in the sea. What it looked like is a mystery. @@ -520,7 +520,7 @@ Description = The fossil of an ancient Pokémon that once lived in the sea. What [PRETTYFEATHER] Name = Pretty Feather NamePlural = Pretty Feathers -Pocket = 1 +Pocket = Items Price = 1000 Flags = Fling_20 Description = Though this feather is beautiful, it's just a regular feather and has no effect on Pokémon. @@ -528,7 +528,7 @@ Description = Though this feather is beautiful, it's just a regular feather and [TINYMUSHROOM] Name = Tiny Mushroom NamePlural = Tiny Mushrooms -Pocket = 1 +Pocket = Items Price = 500 Flags = Fling_30 Description = A small and rare mushroom. It is sought after by collectors. @@ -536,7 +536,7 @@ Description = A small and rare mushroom. It is sought after by collectors. [BIGMUSHROOM] Name = Big Mushroom NamePlural = Big Mushrooms -Pocket = 1 +Pocket = Items Price = 5000 Flags = Fling_30 Description = A large and rare mushroom. It is sought after by collectors. @@ -544,7 +544,7 @@ Description = A large and rare mushroom. It is sought after by collectors. [BALMMUSHROOM] Name = Balm Mushroom NamePlural = Balm Mushrooms -Pocket = 1 +Pocket = Items Price = 15000 Flags = Fling_30 Description = A rare mushroom which gives off a nice fragrance. A maniac will buy it for a high price. @@ -552,7 +552,7 @@ Description = A rare mushroom which gives off a nice fragrance. A maniac will bu [PEARL] Name = Pearl NamePlural = Pearls -Pocket = 1 +Pocket = Items Price = 2000 Flags = Fling_30 Description = A somewhat-small pearl that sparkles in a pretty silver color. It can be sold cheaply to shops. @@ -560,7 +560,7 @@ Description = A somewhat-small pearl that sparkles in a pretty silver color. It [BIGPEARL] Name = Big Pearl NamePlural = Big Pearls -Pocket = 1 +Pocket = Items Price = 8000 Flags = Fling_30 Description = A quite-large pearl that sparkles in a pretty silver color. It can be sold at a high price to shops. @@ -568,7 +568,7 @@ Description = A quite-large pearl that sparkles in a pretty silver color. It can [PEARLSTRING] Name = Pearl String NamePlural = Pearl Strings -Pocket = 1 +Pocket = Items Price = 20000 Flags = Fling_30 Description = Very large pearls that sparkle in a pretty silver color. A maniac will buy them for a high price. @@ -578,7 +578,7 @@ Name = Stardust NamePlural = Stardusts PortionName = bag of Stardust PortionNamePlural = bags of Stardust -Pocket = 1 +Pocket = Items Price = 3000 Flags = Fling_30 Description = Lovely, red-colored sand with a loose, silky feel. It can be sold at a high price to shops. @@ -586,7 +586,7 @@ Description = Lovely, red-colored sand with a loose, silky feel. It can be sold [STARPIECE] Name = Star Piece NamePlural = Star Pieces -Pocket = 1 +Pocket = Items Price = 12000 Flags = Fling_30 Description = A shard of a pretty gem that sparkles in a red color. It can be sold at a high price to shops. @@ -594,7 +594,7 @@ Description = A shard of a pretty gem that sparkles in a red color. It can be so [COMETSHARD] Name = Comet Shard NamePlural = Comet Shards -Pocket = 1 +Pocket = Items Price = 25000 Flags = Fling_30 Description = A shard which fell to the ground when a comet approached. A maniac will buy it for a high price. @@ -602,7 +602,7 @@ Description = A shard which fell to the ground when a comet approached. A maniac [NUGGET] Name = Nugget NamePlural = Nuggets -Pocket = 1 +Pocket = Items Price = 10000 Flags = Fling_30 Description = A nugget of pure gold that gives off a lustrous gleam. It can be sold at a high price to shops. @@ -610,7 +610,7 @@ Description = A nugget of pure gold that gives off a lustrous gleam. It can be s [BIGNUGGET] Name = Big Nugget NamePlural = Big Nuggets -Pocket = 1 +Pocket = Items Price = 40000 Flags = Fling_130 Description = A big nugget of pure gold that gives off a lustrous gleam. A maniac will buy it for a high price. @@ -618,7 +618,7 @@ Description = A big nugget of pure gold that gives off a lustrous gleam. A mania [HEARTSCALE] Name = Heart Scale NamePlural = Heart Scales -Pocket = 1 +Pocket = Items Price = 100 Flags = Fling_30 Description = A pretty, heart-shaped scale that is extremely rare. It glows faintly in the colors of the rainbow. @@ -626,14 +626,14 @@ Description = A pretty, heart-shaped scale that is extremely rare. It glows fain [SLOWPOKETAIL] Name = Slowpoke Tail NamePlural = Slowpoke Tails -Pocket = 1 +Pocket = Items Price = 10000 Description = A very tasty tail of something. It can be sold at a high price to shops. #------------------------------- [RAREBONE] Name = Rare Bone NamePlural = Rare Bones -Pocket = 1 +Pocket = Items Price = 5000 Flags = Fling_100 Description = A bone that is extremely valuable for Pokémon archaeology. It can be sold for a high price to shops. @@ -643,7 +643,7 @@ Name = Relic Copper NamePlural = Relic Coppers PortionName = Relic Copper coin PortionNamePlural = Relic Copper coins -Pocket = 1 +Pocket = Items Price = 0 Flags = Fling_30 Description = A copper coin used in a civilization about 3,000 years ago. A maniac will buy it for a high price. @@ -653,7 +653,7 @@ Name = Relic Silver NamePlural = Relic Silvers PortionName = Relic Silver coin PortionNamePlural = Relic Silver coins -Pocket = 1 +Pocket = Items Price = 0 Flags = Fling_30 Description = A silver coin used in a civilization about 3,000 years ago. A maniac will buy it for a high price. @@ -663,7 +663,7 @@ Name = Relic Gold NamePlural = Relic Golds PortionName = Relic Gold coin PortionNamePlural = Relic Gold coins -Pocket = 1 +Pocket = Items Price = 60000 Flags = Fling_30 Description = A gold coin used in a civilization about 3,000 years ago. A maniac will buy it for a high price. @@ -671,7 +671,7 @@ Description = A gold coin used in a civilization about 3,000 years ago. A maniac [RELICVASE] Name = Relic Vase NamePlural = Relic Vases -Pocket = 1 +Pocket = Items Price = 0 Flags = Fling_30 Description = A vase made in a civilization about 3,000 years ago. A maniac will buy it for a high price. @@ -679,7 +679,7 @@ Description = A vase made in a civilization about 3,000 years ago. A maniac will [RELICBAND] Name = Relic Band NamePlural = Relic Bands -Pocket = 1 +Pocket = Items Price = 0 Flags = Fling_30 Description = A bracelet made in a civilization about 3,000 years ago. A maniac will buy it for a high price. @@ -687,7 +687,7 @@ Description = A bracelet made in a civilization about 3,000 years ago. A maniac [RELICSTATUE] Name = Relic Statue NamePlural = Relic Statues -Pocket = 1 +Pocket = Items Price = 0 Flags = Fling_30 Description = A stone figure made in a civilization about 3,000 years ago. A maniac will buy it for a high price. @@ -695,7 +695,7 @@ Description = A stone figure made in a civilization about 3,000 years ago. A man [RELICCROWN] Name = Relic Crown NamePlural = Relic Crowns -Pocket = 1 +Pocket = Items Price = 0 Flags = Fling_30 Description = A crown made in a civilization about 3,000 years ago. A maniac will buy it for a high price. @@ -703,7 +703,7 @@ Description = A crown made in a civilization about 3,000 years ago. A maniac wil [TINYBAMBOOSHOOT] Name = Tiny Bamboo Shoot NamePlural = Tiny Bamboo Shoots -Pocket = 1 +Pocket = Items Price = 1500 Flags = Fling_30 Description = A small and rare bamboo shoot. It's quite popular with a certain class of gourmands. @@ -711,7 +711,7 @@ Description = A small and rare bamboo shoot. It's quite popular with a certain c [BIGBAMBOOSHOOT] Name = Big Bamboo Shoot NamePlural = Big Bamboo Shoots -Pocket = 1 +Pocket = Items Price = 6000 Flags = Fling_30 Description = A large and rare bamboo shoot. It's extremely popular with a certain class of gourmands. @@ -721,7 +721,7 @@ Name = Growth Mulch NamePlural = Growth Mulch PortionName = bag of Growth Mulch PortionNamePlural = bags of Growth Mulch -Pocket = 1 +Pocket = Items Price = 200 Flags = Mulch,Fling_30 Description = A fertilizer to be spread on soft soil in regions where Berries are grown. A maniac will buy it for a high price. @@ -731,7 +731,7 @@ Name = Damp Mulch NamePlural = Damp Mulch PortionName = bag of Damp Mulch PortionNamePlural = bags of Damp Mulch -Pocket = 1 +Pocket = Items Price = 200 Flags = Mulch,Fling_30 Description = A fertilizer to be spread on soft soil in regions where Berries are grown. A maniac will buy it for a high price. @@ -741,7 +741,7 @@ Name = Stable Mulch NamePlural = Stable Mulch PortionName = bag of Stable Mulch PortionNamePlural = bags of Stable Mulch -Pocket = 1 +Pocket = Items Price = 200 Flags = Mulch,Fling_30 Description = A fertilizer to be spread on soft soil in regions where Berries are grown. A maniac will buy it for a high price. @@ -751,7 +751,7 @@ Name = Gooey Mulch NamePlural = Gooey Mulch PortionName = bag of Gooey Mulch PortionNamePlural = bags of Gooey Mulch -Pocket = 1 +Pocket = Items Price = 200 Flags = Mulch,Fling_30 Description = A fertilizer to be spread on soft soil in regions where Berries are grown. A maniac will buy it for a high price. @@ -761,7 +761,7 @@ Name = Shoal Salt NamePlural = Shoal Salts PortionName = pile of Shoal Salt PortionNamePlural = piles of Shoal Salt -Pocket = 1 +Pocket = Items Price = 20 Flags = Fling_30 Description = Pure salt that can be discovered deep inside the Shoal Cave. A maniac will buy it for a high price. @@ -769,7 +769,7 @@ Description = Pure salt that can be discovered deep inside the Shoal Cave. A man [SHOALSHELL] Name = Shoal Shell NamePlural = Shoal Shells -Pocket = 1 +Pocket = Items Price = 20 Flags = Fling_30 Description = A pretty seashell that can be found deep inside the Shoal Cave. A maniac will buy it for a high price. @@ -777,7 +777,7 @@ Description = A pretty seashell that can be found deep inside the Shoal Cave. A [ODDKEYSTONE] Name = Odd Keystone NamePlural = Odd Keystones -Pocket = 1 +Pocket = Items Price = 2100 Flags = Fling_80 Description = A vital item that is needed to keep a stone tower from collapsing. Voices can be heard from it occasionally. @@ -787,7 +787,7 @@ Name = Red Nectar NamePlural = Red Nectars PortionName = jar of Red Nectar PortionNamePlural = jars of Red Nectar -Pocket = 1 +Pocket = Items Price = 300 FieldUse = OnPokemon Flags = Fling_10 @@ -798,7 +798,7 @@ Name = Yellow Nectar NamePlural = Yellow Nectars PortionName = jar of Yellow Nectar PortionNamePlural = jars of Yellow Nectar -Pocket = 1 +Pocket = Items Price = 300 FieldUse = OnPokemon Flags = Fling_10 @@ -809,7 +809,7 @@ Name = Pink Nectar NamePlural = Pink Nectars PortionName = jar of Pink Nectar PortionNamePlural = jars of Pink Nectar -Pocket = 1 +Pocket = Items Price = 300 FieldUse = OnPokemon Flags = Fling_10 @@ -820,2356 +820,136 @@ Name = Purple Nectar NamePlural = Purple Nectars PortionName = jar of Purple Nectar PortionNamePlural = jars of Purple Nectar -Pocket = 1 +Pocket = Items Price = 300 FieldUse = OnPokemon Flags = Fling_10 Description = A flower nectar obtained at Poni Meadow. It changes the form of certain species of Pokémon. #------------------------------- -[AIRBALLOON] -Name = Air Balloon -NamePlural = Air Balloons -Pocket = 1 -Price = 3000 -SellPrice = 2000 -BPPrice = 15 -Flags = Fling_10 -Description = An item to be held by a Pokémon. The holder will float in the air until hit. Once hit, this item will burst. -#------------------------------- -[BRIGHTPOWDER] -Name = Bright Powder -NamePlural = Bright Powders -PortionName = bag of Bright Powder -PortionNamePlural = bags of Bright Powder -Pocket = 1 -Price = 3000 -SellPrice = 2000 -BPPrice = 48 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It casts a tricky glare that lowers the opponent's accuracy. -#------------------------------- -[EVIOLITE] -Name = Eviolite -NamePlural = Eviolites -Pocket = 1 -Price = 3000 -SellPrice = 2000 -BPPrice = 25 -Flags = Fling_40 -Description = A mysterious evolutionary lump. When held, it raises the Defense and Sp. Def if the holder can still evolve. -#------------------------------- -[FLOATSTONE] -Name = Float Stone -NamePlural = Float Stones -Pocket = 1 -Price = 3000 -SellPrice = 2000 -BPPrice = 10 -Flags = Fling_30 -Description = A very light stone. It reduces the weight of a Pokémon when held. -#------------------------------- -[DESTINYKNOT] -Name = Destiny Knot -NamePlural = Destiny Knots -Pocket = 1 -Price = 3000 -SellPrice = 2000 -BPPrice = 10 -Flags = Fling_10 -Description = A long, thin, bright-red string to be held by a Pokémon. If the holder becomes infatuated, so does the foe. -#------------------------------- -[ROCKYHELMET] -Name = Rocky Helmet -NamePlural = Rocky Helmets -Pocket = 1 -Price = 3000 -SellPrice = 2000 -BPPrice = 25 -Flags = Fling_60 -Description = If the holder of this item takes damage, the attacker will also be damaged upon contact. -#------------------------------- -[ASSAULTVEST] -Name = Assault Vest -NamePlural = Assault Vests -Pocket = 1 -Price = 1000 -BPPrice = 25 -Flags = Fling_80 -Description = An item to be held by a Pokémon. This offensive vest raises Sp. Def but prevents the use of status moves. -#------------------------------- -[SAFETYGOGGLES] -Name = Safety Goggles -NamePlural = Safety Goggles -PortionName = pair of Safety Goggles -PortionNamePlural = pairs of Safety Goggles -Pocket = 1 -Price = 3000 -SellPrice = 2000 -BPPrice = 25 -Flags = Fling_80 -Description = An item to be held by a Pokémon. They protect the holder from weather-related damage and powder. -#------------------------------- -[PROTECTIVEPADS] -Name = Protective Pads -NamePlural = Protective Pads -PortionName = set of Protective Pads -PortionNamePlural = sets of Protective Pads -Pocket = 1 -Price = 3000 -SellPrice = 2000 -BPPrice = 25 -Flags = Fling_30 -Description = An item to be held by a Pokémon. They protect the holder from effects caused by making contact. -#------------------------------- -[HEAVYDUTYBOOTS] -Name = Heavy-Duty Boots -NamePlural = Heavy-Duty Boots -PortionName = pair of Heavy-Duty Boots -PortionNamePlural = pairs of Heavy-Duty Boots -Pocket = 1 -Price = 3000 -SellPrice = 2000 -BPPrice = 25 -Flags = Fling_80 -Description = These boots prevent the effects of traps set on the battlefield. -#------------------------------- -[UTILITYUMBRELLA] -Name = Utility Umbrella -NamePlural = Utility Umbrellas -Pocket = 1 -Price = 3000 -SellPrice = 2000 -BPPrice = 25 -Flags = Fling_60 -Description = An item to be held by a Pokémon. This sturdy umbrella protects the holder from the effects of rain and sun. -#------------------------------- -[ABILITYSHIELD] -Name = Ability Shield -NamePlural = Ability Shields -Pocket = 1 -Price = 20000 -Flags = Fling_30 -Description = An item to be held by a Pokémon. This cute shield protects the holder from having its Ability changed by others. -#------------------------------- -[CLEARAMULET] -Name = Clear Amulet -NamePlural = Clear Amulets -Pocket = 1 -Price = 30000 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It protects the holder from having its stats lowered by other Pokémon. -#------------------------------- -[COVERTCLOAK] -Name = Covert Cloak -NamePlural = Covert Cloaks -Pocket = 1 -Price = 20000 -SellPrice = 5000 -Flags = Fling_30 -Description = An item to be held by a Pokémon. This hooded cloak protects the holder from moves' additional effects. -#------------------------------- -[EJECTBUTTON] -Name = Eject Button -NamePlural = Eject Buttons -Pocket = 1 -Price = 3000 -SellPrice = 2000 -BPPrice = 20 -Flags = Fling_30 -Description = If the holder is hit by an attack, it will switch with another Pokémon in your party. -#------------------------------- -[EJECTPACK] -Name = Eject Pack -NamePlural = Eject Packs -Pocket = 1 -Price = 3000 -SellPrice = 2000 -BPPrice = 20 -Flags = Fling_50 -Description = An item to be held by a Pokémon. When the holder's stats are lowered, it will be switched out of battle. -#------------------------------- -[REDCARD] -Name = Red Card -NamePlural = Red Cards -Pocket = 1 -Price = 3000 -SellPrice = 2000 -BPPrice = 20 -Flags = Fling_10 -Description = A card with a mysterious power. When the holder is struck by a foe, the attacker is removed from battle. -#------------------------------- -[SHEDSHELL] -Name = Shed Shell -NamePlural = Shed Shells -Pocket = 1 -Price = 3000 -SellPrice = 2000 -Flags = Fling_10 -Description = An item to be held by a Pokémon. This discarded carapace lets the holder switch out of battle without fail. -#------------------------------- -[SMOKEBALL] -Name = Smoke Ball -NamePlural = Smoke Balls -Pocket = 1 -Price = 3000 -SellPrice = 2000 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It enables the holder to flee from any wild Pokémon without fail. -#------------------------------- -[LUCKYEGG] -Name = Lucky Egg -NamePlural = Lucky Eggs -Pocket = 1 -Price = 10000 -BPPrice = 77 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It is an egg filled with happiness that earns extra Exp. Points in battle. -#------------------------------- -[EXPSHARE] -Name = Exp. Share -NamePlural = Exp. Shares -Pocket = 1 -Price = 3000 -Flags = Fling_30 -Description = An item to be held by a Pokémon. The holder gets a share of a battle's Exp. Points without battling. -#------------------------------- -[AMULETCOIN] -Name = Amulet Coin -NamePlural = Amulet Coins -Pocket = 1 -Price = 10000 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It doubles a battle's prize money if the holding Pokémon joins in. -#------------------------------- -[SOOTHEBELL] -Name = Soothe Bell -NamePlural = Soothe Bells -Pocket = 1 -Price = 4000 -BPPrice = 15 -Flags = Fling_10 -Description = An item to be held by a Pokémon. The comforting chime of this bell calms the holder, making it friendly. -#------------------------------- -[CLEANSETAG] -Name = Cleanse Tag -NamePlural = Cleanse Tags -Pocket = 1 -Price = 5000 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It helps keep wild Pokémon away if the holder is the first one in the party. -#------------------------------- -[CHOICEBAND] -Name = Choice Band -NamePlural = Choice Bands -Pocket = 1 -Price = 4000 -BPPrice = 25 -Flags = Fling_10 -Description = An item to be held by a Pokémon. This headband ups Attack, but allows the use of only one move. -#------------------------------- -[CHOICESPECS] -Name = Choice Specs -NamePlural = Choice Specs -PortionName = pair of Choice Specs -PortionNamePlural = pairs of Choice Specs -Pocket = 1 -Price = 4000 -BPPrice = 25 -Flags = Fling_10 -Description = An item to be held by a Pokémon. These curious glasses boost Sp. Atk but allows the use of only one move. -#------------------------------- -[CHOICESCARF] -Name = Choice Scarf -NamePlural = Choice Scarves -Pocket = 1 -Price = 4000 -BPPrice = 25 -Flags = Fling_10 -Description = An item to be held by a Pokémon. This scarf boosts Speed but allows the use of only one move. -#------------------------------- -[HEATROCK] -Name = Heat Rock -NamePlural = Heat Rocks -Pocket = 1 -Price = 4000 -BPPrice = 15 -Flags = Fling_60 -Description = A Pokémon held item that extends the duration of the move Sunny Day used by the holder. -#------------------------------- -[DAMPROCK] -Name = Damp Rock -NamePlural = Damp Rocks -Pocket = 1 -Price = 4000 -BPPrice = 15 -Flags = Fling_60 -Description = A Pokémon held item that extends the duration of the move Rain Dance used by the holder. -#------------------------------- -[SMOOTHROCK] -Name = Smooth Rock -NamePlural = Smooth Rocks -Pocket = 1 -Price = 4000 -BPPrice = 15 -Flags = Fling_10 -Description = A Pokémon held item that extends the duration of the move Sandstorm used by the holder. -#------------------------------- -[ICYROCK] -Name = Icy Rock -NamePlural = Icy Rocks -Pocket = 1 -Price = 4000 -BPPrice = 15 -Flags = Fling_40 -Description = A Pokémon held item that extends the duration of the move Hail used by the holder. -#------------------------------- -[TERRAINEXTENDER] -Name = Terrain Extender -NamePlural = Terrain Extenders -Pocket = 1 -Price = 4000 -BPPrice = 15 -Flags = Fling_60 -Description = An item to be held by a Pokémon. It extends the duration of the terrain caused by the holder. -#------------------------------- -[LIGHTCLAY] -Name = Light Clay -NamePlural = Light Clays -PortionName = lump of Light Clay -PortionNamePlural = lumps of Light Clay -Pocket = 1 -Price = 4000 -BPPrice = 15 -Flags = Fling_30 -Description = An item to be held by a Pokémon. Protective moves like Light Screen and Reflect will be effective longer. -#------------------------------- -[GRIPCLAW] -Name = Grip Claw -NamePlural = Grip Claws -Pocket = 1 -Price = 4000 -BPPrice = 15 -Flags = Fling_90 -Description = A Pokémon held item that extends the duration of multiturn attacks like Bind and Wrap. -#------------------------------- -[LOADEDDICE] -Name = Loaded Dice -NamePlural = Loaded Dice -PortionName = set of Loaded Dice -PortionNamePlural = sets of Loaded Dice -Pocket = 1 -Price = 20000 -SellPrice = 5000 -Flags = Fling_30 -Description = An item to be held by a Pokémon. This dice ensures that the holder's multistrike moves hit more times. -#------------------------------- -[BINDINGBAND] -Name = Binding Band -NamePlural = Binding Bands -Pocket = 1 -Price = 3000 -SellPrice = 2000 -BPPrice = 15 -Flags = Fling_30 -Description = A band that increases the power of binding moves when held. -#------------------------------- -[BIGROOT] -Name = Big Root -NamePlural = Big Roots -Pocket = 1 -Price = 4000 -BPPrice = 15 -Flags = Fling_10 -Description = A Pokémon held item that boosts the power of HP-stealing moves to let the holder recover more HP. -#------------------------------- -[BLACKSLUDGE] -Name = Black Sludge -NamePlural = Black Sludges -PortionName = blob of Black Sludge -PortionNamePlural = blobs of Black Sludge -Pocket = 1 -Price = 3000 -SellPrice = 2000 -BPPrice = 25 -Flags = Fling_30 -Description = A held item that gradually restores the HP of Poison-type Pokémon. It inflicts damage on all other types. -#------------------------------- -[LEFTOVERS] -Name = Leftovers -NamePlural = Leftovers -PortionName = serving of Leftovers -PortionNamePlural = servings of Leftovers -Pocket = 1 -Price = 4000 -BPPrice = 25 -Flags = Fling_10 -Description = An item to be held by a Pokémon. The holder's HP is gradually restored during battle. -#------------------------------- -[SHELLBELL] -Name = Shell Bell -NamePlural = Shell Bells -Pocket = 1 -Price = 4000 -BPPrice = 25 -Flags = Fling_30 -Description = An item to be held by a Pokémon. The holder's HP is restored a little every time it inflicts damage. -#------------------------------- -[MENTALHERB] -Name = Mental Herb -NamePlural = Mental Herbs -Pocket = 1 -Price = 4000 -BPPrice = 15 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It snaps the holder out of infatuation. It can be used only once. -#------------------------------- -[WHITEHERB] -Name = White Herb -NamePlural = White Herbs -Pocket = 1 -Price = 4000 -BPPrice = 15 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It restores any lowered stat in battle. It can be used only once. -#------------------------------- -[POWERHERB] -Name = Power Herb -NamePlural = Power Herbs -Pocket = 1 -Price = 4000 -BPPrice = 15 -Flags = Fling_10 -Description = A single-use item to be held by a Pokémon. It allows the immediate use of a move that charges up first. -#------------------------------- -[MIRRORHERB] -Name = Mirror Herb -NamePlural = Mirror Herbs -Pocket = 1 -Price = 30000 -SellPrice = 7500 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It allows the holder to copy an opponent's stat increases once. -#------------------------------- -[ABSORBBULB] -Name = Absorb Bulb -NamePlural = Absorb Bulbs -Pocket = 1 -Price = 4000 -BPPrice = 10 -Flags = Fling_30 -Description = A consumable bulb. If the holder is hit by a Water-type move, its Sp. Atk will rise. -#------------------------------- -[CELLBATTERY] -Name = Cell Battery -NamePlural = Cell Batteries -Pocket = 1 -Price = 4000 -BPPrice = 10 -Flags = Fling_30 -Description = A consumable battery. If the holder is hit by an Electric-type move, its Attack will rise. -#------------------------------- -[LUMINOUSMOSS] -Name = Luminous Moss -NamePlural = Luminous Moss -PortionName = clump of Luminous Moss -PortionNamePlural = clumps of Luminous Moss -Pocket = 1 -Price = 4000 -BPPrice = 10 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It boosts Sp. Def if hit by a Water-type attack. It can only be used once. -#------------------------------- -[SNOWBALL] -Name = Snowball -NamePlural = Snowballs -Pocket = 1 -Price = 4000 -BPPrice = 10 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It boosts Attack if hit by an Ice-type attack. It can only be used once. -#------------------------------- -[WEAKNESSPOLICY] -Name = Weakness Policy -NamePlural = Weakness Policies -Pocket = 1 -Price = 1000 -BPPrice = 20 -Flags = Fling_80 -Description = An item to be held by a Pokémon. The holder's Attack and Sp. Atk sharply increase if hit by a move it's weak to. -#------------------------------- -[BLUNDERPOLICY] -Name = Blunder Policy -NamePlural = Blunder Policies -Pocket = 1 -Price = 4000 -BPPrice = 20 -Flags = Fling_80 -Description = Raises Speed sharply when a Pokémon misses with a move because of accuracy. -#------------------------------- -[THROATSPRAY] -Name = Throat Spray -NamePlural = Throat Sprays -PortionName = bottle of Throat Spray -PortionNamePlural = bottles of Throat Spray -Pocket = 1 -Price = 4000 -BPPrice = 10 -Flags = Fling_30 -Description = Raises Sp. Atk when a Pokémon uses a sound-based move. -#------------------------------- -[ADRENALINEORB] -Name = Adrenaline Orb -NamePlural = Adrenaline Orbs -Pocket = 1 -Price = 300 -BPPrice = 10 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It boosts Speed when intimidated. It can be used only once. -#------------------------------- -[BOOSTERENERGY] -Name = Booster Energy -NamePlural = Booster Energies -PortionName = capsule of Booster Energy -PortionNamePlural = capsules of Booster Energy -Pocket = 1 -Price = 0 -Flags = Fling_30 -Description = An item to be held by Pokémon with certain Abilities. Its energy boosts the strength of the Pokémon. -#------------------------------- -[ROOMSERVICE] -Name = Room Service -NamePlural = Room Services -PortionName = voucher for Room Service -PortionNamePlural = vouchers for Room Service -Pocket = 1 -Price = 4000 -BPPrice = 15 -Flags = Fling_100 -Description = An item to be held by a Pokémon. Lowers Speed when Trick Room takes effect. -#------------------------------- -[ELECTRICSEED] -Name = Electric Seed -NamePlural = Electric Seeds -Pocket = 1 -Price = 3000 -SellPrice = 2000 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It boosts Defense on Electric Terrain. It can only be used once. -#------------------------------- -[GRASSYSEED] -Name = Grassy Seed -NamePlural = Grassy Seeds -Pocket = 1 -Price = 3000 -SellPrice = 2000 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It boosts Defense on Grassy Terrain. It can only be used once. -#------------------------------- -[MISTYSEED] -Name = Misty Seed -NamePlural = Misty Seeds -Pocket = 1 -Price = 3000 -SellPrice = 2000 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It boosts Sp. Def on Misty Terrain. It can only be used once. -#------------------------------- -[PSYCHICSEED] -Name = Psychic Seed -NamePlural = Psychic Seeds -Pocket = 1 -Price = 3000 -SellPrice = 2000 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It boosts Sp. Def on Psychic Terrain. It can only be used once. -#------------------------------- -[LIFEORB] -Name = Life Orb -NamePlural = Life Orbs -Pocket = 1 -Price = 4000 -BPPrice = 25 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It boosts the power of moves, but at the cost of some HP on each hit. -#------------------------------- -[EXPERTBELT] -Name = Expert Belt -NamePlural = Expert Belts -Pocket = 1 -Price = 4000 -BPPrice = 25 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It is a well-worn belt that slightly boosts the power of supereffective moves. -#------------------------------- -[METRONOME] -Name = Metronome -NamePlural = Metronomes -Pocket = 1 -Price = 3000 -SellPrice = 2000 -BPPrice = 25 -Flags = Fling_30 -Description = A Pokémon held item that boosts a move used consecutively. Its effect is reset if another move is used. -#------------------------------- -[PUNCHINGGLOVE] -Name = Punching Glove -NamePlural = Punching Gloves -Pocket = 1 -Price = 15000 -SellPrice = 3750 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It powers up the holder's punching moves and prevents direct contact. -#------------------------------- -[MUSCLEBAND] -Name = Muscle Band -NamePlural = Muscle Bands -Pocket = 1 -Price = 4000 -BPPrice = 48 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It is a headband that slightly boosts the power of physical moves. -#------------------------------- -[WISEGLASSES] -Name = Wise Glasses -NamePlural = Wise Glasses -PortionName = pair of Wise Glasses -PortionNamePlural = pairs of Wise Glasses -Pocket = 1 -Price = 4000 -BPPrice = 48 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It is a thick pair of glasses that slightly boosts the power of special moves. -#------------------------------- -[RAZORCLAW] -Name = Razor Claw -NamePlural = Razor Claws -Pocket = 1 -Price = 3000 -SellPrice = 2500 -BPPrice = 5 -Flags = Fling_80 -Description = An item to be held by a Pokémon. It is a sharply hooked claw that ups the holder's critical-hit ratio. -#------------------------------- -[SCOPELENS] -Name = Scope Lens -NamePlural = Scope Lenses -Pocket = 1 -Price = 4000 -BPPrice = 48 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It is a lens that boosts the holder's critical-hit ratio. -#------------------------------- -[WIDELENS] -Name = Wide Lens -NamePlural = Wide Lenses -Pocket = 1 -Price = 4000 -BPPrice = 48 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It is a magnifying lens that slightly boosts the accuracy of moves. -#------------------------------- -[ZOOMLENS] -Name = Zoom Lens -NamePlural = Zoom Lenses -Pocket = 1 -Price = 4000 -BPPrice = 48 -Flags = Fling_10 -Description = An item to be held by a Pokémon. If the holder moves after its target, its accuracy will be boosted. -#------------------------------- -[KINGSROCK] -Name = King's Rock -NamePlural = King's Rocks -Pocket = 1 -Price = 5000 -BPPrice = 5 -Flags = Fling_30 -Description = An item to be held by a Pokémon. When the holder inflicts damage, the target may flinch. -#------------------------------- -[RAZORFANG] -Name = Razor Fang -NamePlural = Razor Fangs -Pocket = 1 -Price = 5000 -BPPrice = 5 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It may make foes and allies flinch when the holder inflicts damage. -#------------------------------- -[LAGGINGTAIL] -Name = Lagging Tail -NamePlural = Lagging Tails -Pocket = 1 -Price = 4000 -BPPrice = 25 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It is tremendously heavy and makes the holder move slower than usual. -#------------------------------- -[QUICKCLAW] -Name = Quick Claw -NamePlural = Quick Claws -Pocket = 1 -Price = 3000 -SellPrice = 2000 -BPPrice = 25 -Flags = Fling_80 -Description = An item to be held by a Pokémon. A light, sharp claw that lets the bearer move first occasionally. -#------------------------------- -[FOCUSBAND] -Name = Focus Band -NamePlural = Focus Bands -Pocket = 1 -Price = 3000 -SellPrice = 2000 -BPPrice = 48 -Flags = Fling_10 -Description = An item to be held by a Pokémon. The holder may endure a potential KO attack, leaving it with just 1 HP. -#------------------------------- -[FOCUSSASH] -Name = Focus Sash -NamePlural = Focus Sashes -Pocket = 1 -Price = 3000 -SellPrice = 2000 -BPPrice = 15 -Flags = Fling_10 -Description = An item to be held by a Pokémon. If it has full HP, the holder will endure one potential KO attack, leaving 1 HP. -#------------------------------- -[FLAMEORB] -Name = Flame Orb -NamePlural = Flame Orbs -Pocket = 1 -Price = 4000 -BPPrice = 16 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It is a bizarre orb that inflicts a burn on the holder in battle. -#------------------------------- -[TOXICORB] -Name = Toxic Orb -NamePlural = Toxic Orbs -Pocket = 1 -Price = 4000 -BPPrice = 16 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It is a bizarre orb that badly poisons the holder in battle. -#------------------------------- -[STICKYBARB] -Name = Sticky Barb -NamePlural = Sticky Barbs -Pocket = 1 -Price = 4000 -BPPrice = 16 -Flags = Fling_80 -Description = A held item that damages the holder on every turn. It may latch on to Pokémon that touch the holder. -#------------------------------- -[IRONBALL] -Name = Iron Ball -NamePlural = Iron Balls -Pocket = 1 -Price = 4000 -BPPrice = 10 -Flags = Fling_130 -Description = A Pokémon held item that cuts Speed. It makes Flying-type and levitating holders susceptible to Ground moves. -#------------------------------- -[RINGTARGET] -Name = Ring Target -NamePlural = Ring Targets -Pocket = 1 -Price = 3000 -SellPrice = 2000 -BPPrice = 10 -Flags = Fling_10 -Description = Moves that would otherwise have no effect will land on the Pokémon that holds it. -#------------------------------- -[MACHOBRACE] -Name = Macho Brace -NamePlural = Macho Braces -Pocket = 1 -Price = 3000 -BPPrice = 10 -Flags = Fling_60 -Description = An item to be held by a Pokémon. It is a stiff, heavy brace that promotes strong growth but lowers Speed. -#------------------------------- -[POWERWEIGHT] -Name = Power Weight -NamePlural = Power Weights -Pocket = 1 -Price = 3000 -BPPrice = 10 -Flags = Fling_70 -Description = A Pokémon held item that promotes HP gain on leveling, but reduces the Speed stat. -#------------------------------- -[POWERBRACER] -Name = Power Bracer -NamePlural = Power Bracers -Pocket = 1 -Price = 3000 -BPPrice = 10 -Flags = Fling_70 -Description = A Pokémon held item that promotes Attack gain on leveling, but reduces the Speed stat. -#------------------------------- -[POWERBELT] -Name = Power Belt -NamePlural = Power Belts -Pocket = 1 -Price = 3000 -BPPrice = 10 -Flags = Fling_70 -Description = A Pokémon held item that promotes Defense gain on leveling, but reduces the Speed stat. -#------------------------------- -[POWERLENS] -Name = Power Lens -NamePlural = Power Lenses -Pocket = 1 -Price = 3000 -BPPrice = 10 -Flags = Fling_70 -Description = A Pokémon held item that promotes Sp. Atk gain on leveling, but reduces the Speed stat. -#------------------------------- -[POWERBAND] -Name = Power Band -NamePlural = Power Bands -Pocket = 1 -Price = 3000 -BPPrice = 10 -Flags = Fling_70 -Description = A Pokémon held item that promotes Sp. Def gain on leveling, but reduces the Speed stat. -#------------------------------- -[POWERANKLET] -Name = Power Anklet -NamePlural = Power Anklets -Pocket = 1 -Price = 3000 -BPPrice = 10 -Flags = Fling_70 -Description = A Pokémon held item that promotes Speed gain on leveling, but reduces the Speed stat. -#------------------------------- -[LAXINCENSE] -Name = Lax Incense -NamePlural = Lax Incenses -PortionName = jar of Lax Incense -PortionNamePlural = jars of Lax Incense -Pocket = 1 -Price = 5000 -Flags = Fling_10 -Description = An item to be held by a Pokémon. The tricky aroma of this incense may make attacks miss the holder. -#------------------------------- -[FULLINCENSE] -Name = Full Incense -NamePlural = Full Incenses -PortionName = jar of Full Incense -PortionNamePlural = jars of Full Incense -Pocket = 1 -Price = 5000 -Flags = Fling_10 -Description = An item to be held by a Pokémon. This exotic-smelling incense makes the holder bloated and slow moving. -#------------------------------- -[LUCKINCENSE] -Name = Luck Incense -NamePlural = Luck Incenses -PortionName = jar of Luck Incense -PortionNamePlural = jars of Luck Incense -Pocket = 1 -Price = 11000 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It doubles a battle's prize money if the holding Pokémon joins in. -#------------------------------- -[PUREINCENSE] -Name = Pure Incense -NamePlural = Pure Incenses -PortionName = jar of Pure Incense -PortionNamePlural = jars of Pure Incense -Pocket = 1 -Price = 6000 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It helps keep wild Pokémon away if the holder is the first one in the party. -#------------------------------- -[SEAINCENSE] -Name = Sea Incense -NamePlural = Sea Incenses -PortionName = jar of Sea Incense -PortionNamePlural = jars of Sea Incense -Pocket = 1 -Price = 2000 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It has a curious aroma that boosts the power of Water-type moves. -#------------------------------- -[WAVEINCENSE] -Name = Wave Incense -NamePlural = Wave Incenses -PortionName = jar of Wave Incense -PortionNamePlural = jars of Wave Incense -Pocket = 1 -Price = 2000 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It has a curious aroma that boosts the power of Water-type moves. -#------------------------------- -[ROSEINCENSE] -Name = Rose Incense -NamePlural = Rose Incenses -PortionName = jar of Rose Incense -PortionNamePlural = jars of Rose Incense -Pocket = 1 -Price = 2000 -Flags = Fling_10 -Description = An item to be held by a Pokémon. This exotic-smelling incense boosts the power of Grass-type moves. -#------------------------------- -[ODDINCENSE] -Name = Odd Incense -NamePlural = Odd Incenses -PortionName = jar of Odd Incense -PortionNamePlural = jars of Odd Incense -Pocket = 1 -Price = 2000 -Flags = Fling_10 -Description = An item to be held by a Pokémon. This exotic-smelling incense boosts the power of Psychic-type moves. -#------------------------------- -[ROCKINCENSE] -Name = Rock Incense -NamePlural = Rock Incenses -PortionName = jar of Rock Incense -PortionNamePlural = jars of Rock Incense -Pocket = 1 -Price = 2000 -Flags = Fling_10 -Description = An item to be held by a Pokémon. This exotic-smelling incense boosts the power of Rock-type moves. -#------------------------------- -[CHARCOAL] -Name = Charcoal -NamePlural = Charcoals -PortionName = piece of Charcoal -PortionNamePlural = pieces of Charcoal -Pocket = 1 -Price = 3000 -SellPrice = 500 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It is a combustible fuel that boosts the power of Fire-type moves. -#------------------------------- -[MYSTICWATER] -Name = Mystic Water -NamePlural = Mystic Waters -Pocket = 1 -Price = 3000 -SellPrice = 500 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It is a teardrop-shaped gem that ups the power of Water-type moves. -#------------------------------- -[MAGNET] -Name = Magnet -NamePlural = Magnets -Pocket = 1 -Price = 3000 -SellPrice = 500 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It is a powerful magnet that boosts the power of Electric-type moves. -#------------------------------- -[MIRACLESEED] -Name = Miracle Seed -NamePlural = Miracle Seeds -Pocket = 1 -Price = 3000 -SellPrice = 500 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It is a seed imbued with life that ups the power of Grass-type moves. -#------------------------------- -[NEVERMELTICE] -Name = Never-Melt Ice -NamePlural = Never-Melt Ices -PortionName = piece of Never-Melt Ice -PortionNamePlural = pieces of Never-Melt Ice -Pocket = 1 -Price = 3000 -SellPrice = 500 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It is a piece of ice that repels heat and boosts Ice-type moves. -#------------------------------- -[BLACKBELT] -Name = Black Belt -NamePlural = Black Belts -Pocket = 1 -Price = 3000 -SellPrice = 500 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It is a belt that boosts determination and Fighting-type moves. -#------------------------------- -[POISONBARB] -Name = Poison Barb -NamePlural = Poison Barbs -Pocket = 1 -Price = 3000 -SellPrice = 500 -Flags = Fling_70 -Description = An item to be held by a Pokémon. It is a small, poisonous barb that ups the power of Poison-type moves. -#------------------------------- -[SOFTSAND] -Name = Soft Sand -NamePlural = Soft Sand -PortionName = bag of Soft Sand -PortionNamePlural = bags of Soft Sand -Pocket = 1 -Price = 3000 -SellPrice = 500 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It is a loose, silky sand that boosts the power of Ground-type moves. -#------------------------------- -[SHARPBEAK] -Name = Sharp Beak -NamePlural = Sharp Beaks -Pocket = 1 -Price = 3000 -SellPrice = 500 -Flags = Fling_50 -Description = An item to be held by a Pokémon. It is a long, sharp beak that boosts the power of Flying-type moves. -#------------------------------- -[TWISTEDSPOON] -Name = Twisted Spoon -NamePlural = Twisted Spoons -Pocket = 1 -Price = 3000 -SellPrice = 500 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It is a spoon imbued with telekinetic power that boosts Psychic-type moves. -#------------------------------- -[SILVERPOWDER] -Name = Silver Powder -NamePlural = Silver Powders -PortionName = pile of Silver Powder -PortionNamePlural = piles of Silver Powder -Pocket = 1 -Price = 3000 -SellPrice = 500 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It is a shiny, silver powder that ups the power of Bug-type moves. -#------------------------------- -[HARDSTONE] -Name = Hard Stone -NamePlural = Hard Stones -Pocket = 1 -Price = 3000 -SellPrice = 500 -Flags = Fling_100 -Description = An item to be held by a Pokémon. It is an unbreakable stone that ups the power of Rock-type moves. -#------------------------------- -[SPELLTAG] -Name = Spell Tag -NamePlural = Spell Tags -Pocket = 1 -Price = 3000 -SellPrice = 500 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It is a sinister, eerie tag that boosts the power of Ghost-type moves. -#------------------------------- -[DRAGONFANG] -Name = Dragon Fang -NamePlural = Dragon Fangs -Pocket = 1 -Price = 3000 -SellPrice = 500 -Flags = Fling_70 -Description = An item to be held by a Pokémon. It is a hard and sharp fang that ups the power of Dragon-type moves. -#------------------------------- -[BLACKGLASSES] -Name = Black Glasses -NamePlural = Black Glasses -PortionName = pair of Black Glasses -PortionNamePlural = pairs of Black Glasses -Pocket = 1 -Price = 3000 -SellPrice = 500 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It is a shady-looking pair of glasses that boosts Dark-type moves. -#------------------------------- -[METALCOAT] -Name = Metal Coat -NamePlural = Metal Coats -Pocket = 1 -Price = 3000 -SellPrice = 1000 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It is a special metallic film that ups the power of Steel-type moves. -#------------------------------- -[FAIRYFEATHER] -Name = Fairy Feather -NamePlural = Fairy Feathers -Pocket = 1 -Price = 3000 -Flags = Fling_10 -Description = An item to be held by a Pokémon. This gleaming feather boosts the power of the holder's Fairy-type moves. -#------------------------------- -[SILKSCARF] -Name = Silk Scarf -NamePlural = Silk Scarves -Pocket = 1 -Price = 3000 -SellPrice = 500 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It is a sumptuous scarf that boosts the power of Normal-type moves. -#------------------------------- -[FLAMEPLATE] -Name = Flame Plate -NamePlural = Flame Plates -Pocket = 1 -Price = 10000 -SellPrice = 500 -Flags = Fling_90 -Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Fire-type moves. -#------------------------------- -[SPLASHPLATE] -Name = Splash Plate -NamePlural = Splash Plates -Pocket = 1 -Price = 10000 -SellPrice = 500 -Flags = Fling_90 -Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Water-type moves. -#------------------------------- -[ZAPPLATE] -Name = Zap Plate -NamePlural = Zap Plates -Pocket = 1 -Price = 10000 -SellPrice = 500 -Flags = Fling_90 -Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Electric-type moves. -#------------------------------- -[MEADOWPLATE] -Name = Meadow Plate -NamePlural = Meadow Plates -Pocket = 1 -Price = 10000 -SellPrice = 500 -Flags = Fling_90 -Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Grass-type moves. -#------------------------------- -[ICICLEPLATE] -Name = Icicle Plate -NamePlural = Icicle Plates -Pocket = 1 -Price = 10000 -SellPrice = 500 -Flags = Fling_90 -Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Ice-type moves. -#------------------------------- -[FISTPLATE] -Name = Fist Plate -NamePlural = Fist Plates -Pocket = 1 -Price = 10000 -SellPrice = 500 -Flags = Fling_90 -Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Fighting-type moves. -#------------------------------- -[TOXICPLATE] -Name = Toxic Plate -NamePlural = Toxic Plates -Pocket = 1 -Price = 10000 -SellPrice = 500 -Flags = Fling_90 -Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Poison-type moves. -#------------------------------- -[EARTHPLATE] -Name = Earth Plate -NamePlural = Earth Plates -Pocket = 1 -Price = 10000 -SellPrice = 500 -Flags = Fling_90 -Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Ground-type moves. -#------------------------------- -[SKYPLATE] -Name = Sky Plate -NamePlural = Sky Plates -Pocket = 1 -Price = 10000 -SellPrice = 500 -Flags = Fling_90 -Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Flying-type moves. -#------------------------------- -[MINDPLATE] -Name = Mind Plate -NamePlural = Mind Plates -Pocket = 1 -Price = 10000 -SellPrice = 500 -Flags = Fling_90 -Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Psychic-type moves. -#------------------------------- -[INSECTPLATE] -Name = Insect Plate -NamePlural = Insect Plates -Pocket = 1 -Price = 10000 -SellPrice = 500 -Flags = Fling_90 -Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Bug-type moves. -#------------------------------- -[STONEPLATE] -Name = Stone Plate -NamePlural = Stone Plates -Pocket = 1 -Price = 10000 -SellPrice = 500 -Flags = Fling_90 -Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Rock-type moves. -#------------------------------- -[SPOOKYPLATE] -Name = Spooky Plate -NamePlural = Spooky Plates -Pocket = 1 -Price = 10000 -SellPrice = 500 -Flags = Fling_90 -Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Ghost-type moves. -#------------------------------- -[DRACOPLATE] -Name = Draco Plate -NamePlural = Draco Plates -Pocket = 1 -Price = 10000 -SellPrice = 500 -Flags = Fling_90 -Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Dragon-type moves. -#------------------------------- -[DREADPLATE] -Name = Dread Plate -NamePlural = Dread Plates -Pocket = 1 -Price = 10000 -SellPrice = 500 -Flags = Fling_90 -Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Dark-type moves. -#------------------------------- -[IRONPLATE] -Name = Iron Plate -NamePlural = Iron Plates -Pocket = 1 -Price = 10000 -SellPrice = 500 -Flags = Fling_90 -Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Steel-type moves. -#------------------------------- -[PIXIEPLATE] -Name = Pixie Plate -NamePlural = Pixie Plates -Pocket = 1 -Price = 10000 -SellPrice = 500 -Flags = Fling_90 -Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Fairy-type moves. -#------------------------------- -[FIREGEM] -Name = Fire Gem -NamePlural = Fire Gems -Pocket = 1 -Price = 4000 -Flags = TypeGem -Description = A gem with an essence of fire. When held, it strengthens the power of a Fire-type move only once. -#------------------------------- -[WATERGEM] -Name = Water Gem -NamePlural = Water Gems -Pocket = 1 -Price = 4000 -Flags = TypeGem -Description = A gem with an essence of water. When held, it strengthens the power of a Water-type move only once. -#------------------------------- -[ELECTRICGEM] -Name = Electric Gem -NamePlural = Electric Gems -Pocket = 1 -Price = 4000 -Flags = TypeGem -Description = A gem with an essence of electricity. When held, it strengthens the power of an Electric-type move only once. -#------------------------------- -[GRASSGEM] -Name = Grass Gem -NamePlural = Grass Gems -Pocket = 1 -Price = 4000 -Flags = TypeGem -Description = A gem with an essence of nature. When held, it strengthens the power of a Grass-type move only once. -#------------------------------- -[ICEGEM] -Name = Ice Gem -NamePlural = Ice Gems -Pocket = 1 -Price = 4000 -Flags = TypeGem -Description = A gem with an essence of ice. When held, it strengthens the power of an Ice-type move only once. -#------------------------------- -[FIGHTINGGEM] -Name = Fighting Gem -NamePlural = Fighting Gems -Pocket = 1 -Price = 4000 -Flags = TypeGem -Description = A gem with an essence of combat. When held, it strengthens the power of a Fighting-type move only once. -#------------------------------- -[POISONGEM] -Name = Poison Gem -NamePlural = Poison Gems -Pocket = 1 -Price = 4000 -Flags = TypeGem -Description = A gem with an essence of poison. When held, it strengthens the power of a Poison-type move only once. -#------------------------------- -[GROUNDGEM] -Name = Ground Gem -NamePlural = Ground Gems -Pocket = 1 -Price = 4000 -Flags = TypeGem -Description = A gem with an essence of land. When held, it strengthens the power of a Ground-type move only once. -#------------------------------- -[FLYINGGEM] -Name = Flying Gem -NamePlural = Flying Gems -Pocket = 1 -Price = 4000 -Flags = TypeGem -Description = A gem with an essence of air. When held, it strengthens the power of a Flying-type move only once. -#------------------------------- -[PSYCHICGEM] -Name = Psychic Gem -NamePlural = Psychic Gems -Pocket = 1 -Price = 4000 -Flags = TypeGem -Description = A gem with an essence of the mind. When held, it strengthens the power of a Psychic-type move only once. -#------------------------------- -[BUGGEM] -Name = Bug Gem -NamePlural = Bug Gems -Pocket = 1 -Price = 4000 -Flags = TypeGem -Description = A gem with an insect-like essence. When held, it strengthens the power of a Bug-type move only once. -#------------------------------- -[ROCKGEM] -Name = Rock Gem -NamePlural = Rock Gems -Pocket = 1 -Price = 4000 -Flags = TypeGem -Description = A gem with an essence of rock. When held, it strengthens the power of a Rock-type move only once. -#------------------------------- -[GHOSTGEM] -Name = Ghost Gem -NamePlural = Ghost Gems -Pocket = 1 -Price = 4000 -Flags = TypeGem -Description = A gem with a spectral essence. When held, it strengthens the power of a Ghost-type move only once. -#------------------------------- -[DRAGONGEM] -Name = Dragon Gem -NamePlural = Dragon Gems -Pocket = 1 -Price = 4000 -Flags = TypeGem -Description = A gem with a draconic essence. When held, it strengthens the power of a Dragon-type move only once. -#------------------------------- -[DARKGEM] -Name = Dark Gem -NamePlural = Dark Gems -Pocket = 1 -Price = 4000 -Flags = TypeGem -Description = A gem with an essence of darkness. When held, it strengthens the power of a Dark-type move only once. -#------------------------------- -[STEELGEM] -Name = Steel Gem -NamePlural = Steel Gems -Pocket = 1 -Price = 4000 -Flags = TypeGem -Description = A gem with an essence of steel. When held, it strengthens the power of a Steel-type move only once. -#------------------------------- -[FAIRYGEM] -Name = Fairy Gem -NamePlural = Fairy Gems -Pocket = 1 -Price = 4000 -Flags = TypeGem -Description = A gem with an essence of the fey. When held, it strengthens the power of a Fairy-type move only once. -#------------------------------- -[NORMALGEM] -Name = Normal Gem -NamePlural = Normal Gems -Pocket = 1 -Price = 4000 -Flags = TypeGem -Description = A gem with an ordinary essence. When held, it strengthens the power of a Normal-type move only once. -#------------------------------- -[LIGHTBALL] -Name = Light Ball -NamePlural = Light Balls -Pocket = 1 -Price = 1000 -Flags = Fling_30 -Description = An item to be held by Pikachu. It is a puzzling orb that raises the Attack and Sp. Atk stat. -#------------------------------- -[LUCKYPUNCH] -Name = Lucky Punch -NamePlural = Lucky Punches -Pocket = 1 -Price = 1000 -BPPrice = 7 -Flags = Fling_40 -Description = An item to be held by Chansey. It is a pair of gloves that boosts Chansey's critical-hit ratio. -#------------------------------- -[METALPOWDER] -Name = Metal Powder -NamePlural = Metal Powders -PortionName = bag of Metal Powder -PortionNamePlural = bags of Metal Powder -Pocket = 1 -Price = 1000 -Flags = Fling_10 -Description = An item to be held by Ditto. Extremely fine yet hard, this odd powder boosts the Defense stat. -#------------------------------- -[QUICKPOWDER] -Name = Quick Powder -NamePlural = Quick Powders -PortionName = bag of Quick Powder -PortionNamePlural = bags of Quick Powder -Pocket = 1 -Price = 1000 -Flags = Fling_10 -Description = An item to be held by Ditto. Extremely fine yet hard, this odd powder boosts the Speed stat. -#------------------------------- -[THICKCLUB] -Name = Thick Club -NamePlural = Thick Clubs -Pocket = 1 -Price = 1000 -Flags = Fling_90 -Description = An item to be held by Cubone or Marowak. It is a hard bone of some sort that boosts the Attack stat. -#------------------------------- -[LEEK] -Name = Leek -NamePlural = Leeks -Pocket = 1 -Price = 1000 -Flags = Fling_60 -Description = An item to be held by Farfetch'd. It is a very long and stiff stalk of leek that boosts the critical-hit ratio. -#------------------------------- -[SOULDEW] -Name = Soul Dew -NamePlural = Soul Dews -Pocket = 1 -Price = 0 -Flags = Fling_30 -Description = A wondrous orb to be held by either Latios or Latias. It raises the power of Psychic- and Dragon-type moves. -#------------------------------- -[DEEPSEATOOTH] -Name = Deep Sea Tooth -NamePlural = Deep Sea Teeth -Pocket = 1 -Price = 2000 -BPPrice = 5 -Flags = Fling_90 -Description = An item to be held by Clamperl. A fang that gleams a sharp silver, it raises the Sp. Atk stat. -#------------------------------- -[DEEPSEASCALE] -Name = Deep Sea Scale -NamePlural = Deep Sea Scales -Pocket = 1 -Price = 2000 -BPPrice = 5 -Flags = Fling_30 -Description = An item to be held by Clamperl. A scale that shines a faint pink, it raises the Sp. Def stat. -#------------------------------- -[ADAMANTORB] -Name = Adamant Orb -NamePlural = Adamant Orbs -Pocket = 1 -Price = 10000 -SellPrice = 0 -Flags = Fling_60 -Description = A brightly gleaming orb to be held by Dialga. It boosts the power of Dragon- and Steel-type moves. -#------------------------------- -[LUSTROUSORB] -Name = Lustrous Orb -NamePlural = Lustrous Orbs -Pocket = 1 -Price = 10000 -SellPrice = 0 -Flags = Fling_60 -Description = A beautifully glowing orb to be held by Palkia. It boosts the power of Dragon- and Water-type moves. -#------------------------------- -[GRISEOUSORB] -Name = Griseous Orb -NamePlural = Griseous Orbs -Pocket = 1 -Price = 10000 -SellPrice = 0 -Flags = Fling_60 -Description = A glowing orb to be held by Giratina. It boosts the power of Dragon- and Ghost-type moves. -#------------------------------- -[ADAMANTCRYSTAL] -Name = Adamant Crystal -NamePlural = Adamant Crystals -Pocket = 1 -Price = 4000 -SellPrice = 0 -Flags = Fling_60 -Description = A large, glowing gem to be held by Dialga. It wells with power and allows the Pokémon to change form. -#------------------------------- -[LUSTROUSGLOBE] -Name = Lustrous Globe -NamePlural = Lustrous Globes -Pocket = 1 -Price = 4000 -SellPrice = 0 -Flags = Fling_60 -Description = A large, glowing orb to be held by Palkia. It wells with power and allows the Pokémon to change form. -#------------------------------- -[GRISEOUSCORE] -Name = Griseous Core -NamePlural = Griseous Cores -Pocket = 1 -Price = 4000 -SellPrice = 0 -Flags = Fling_60 -Description = A large, glowing gem to be held by Giratina. It wells with power and allows the Pokémon to change form. -#------------------------------- -[RUSTEDSWORD] -Name = Rusted Sword -NamePlural = Rusted Swords -Pocket = 1 -Price = 0 -Description = It is said that a hero used this sword to halt a disaster in ancient times. But it's grown rusty and worn. -#------------------------------- -[RUSTEDSHIELD] -Name = Rusted Shield -NamePlural = Rusted Shields -Pocket = 1 -Price = 0 -Description = It is said that a hero used this shield to halt a disaster in ancient times. But it's grown rusty and worn. -#------------------------------- -[WELLSPRINGMASK] -Name = Wellspring Mask -NamePlural = Wellspring Masks -Pocket = 1 -Flags = Fling_60 -Description = An item to be held by Ogerpon. This carved wooden mask allows Ogerpon to wield the Water type in battle. -#------------------------------- -[HEARTHFLAMEMASK] -Name = Hearthflame Mask -NamePlural = Hearthflame Masks -Pocket = 1 -Price = 0 -Flags = Fling_60 -Description = An item to be held by Ogerpon. This carved wooden mask allows Ogerpon to wield the Fire type in battle. -#------------------------------- -[CORNERSTONEMASK] -Name = Cornerstone Mask -NamePlural = Cornerstone Masks -Pocket = 1 -Price = 0 -Flags = Fling_60 -Description = An item to be held by Ogerpon. This carved wooden mask allows Ogerpon to wield the Rock type in battle. -#------------------------------- -[DOUSEDRIVE] -Name = Douse Drive -NamePlural = Douse Drives -Pocket = 1 -Price = 0 -Flags = Fling_70 -Description = A cassette to be held by Genesect. It changes Techno Blast to a Water-type move. -#------------------------------- -[SHOCKDRIVE] -Name = Shock Drive -NamePlural = Shock Drives -Pocket = 1 -Price = 0 -Flags = Fling_70 -Description = A cassette to be held by Genesect. It changes Techno Blast to an Electric-type move. -#------------------------------- -[BURNDRIVE] -Name = Burn Drive -NamePlural = Burn Drives -Pocket = 1 -Price = 0 -Flags = Fling_70 -Description = A cassette to be held by Genesect. It changes Techno Blast to a Fire-type move. -#------------------------------- -[CHILLDRIVE] -Name = Chill Drive -NamePlural = Chill Drives -Pocket = 1 -Price = 0 -Flags = Fling_70 -Description = A cassette to be held by Genesect. It changes Techno Blast to an Ice-type move. -#------------------------------- -[FIREMEMORY] -Name = Fire Memory -NamePlural = Fire Memories -Pocket = 1 -Price = 1000 -Flags = Fling_50 -Description = A memory disc containing Fire-type data. It changes the holder's type if held by a certain Pokémon. -#------------------------------- -[WATERMEMORY] -Name = Water Memory -NamePlural = Water Memories -Pocket = 1 -Price = 1000 -Flags = Fling_50 -Description = A memory disc containing Water-type data. It changes the holder's type if held by a certain Pokémon. -#------------------------------- -[ELECTRICMEMORY] -Name = Electric Memory -NamePlural = Electric Memories -Pocket = 1 -Price = 1000 -Flags = Fling_50 -Description = A memory disc containing Electric-type data. It changes the holder's type if held by a certain Pokémon. -#------------------------------- -[GRASSMEMORY] -Name = Grass Memory -NamePlural = Grass Memories -Pocket = 1 -Price = 1000 -Flags = Fling_50 -Description = A memory disc containing Grass-type data. It changes the holder's type if held by a certain Pokémon. -#------------------------------- -[ICEMEMORY] -Name = Ice Memory -NamePlural = Ice Memories -Pocket = 1 -Price = 1000 -Flags = Fling_50 -Description = A memory disc containing Ice-type data. It changes the holder's type if held by a certain Pokémon. -#------------------------------- -[FIGHTINGMEMORY] -Name = Fighting Memory -NamePlural = Fighting Memories -Pocket = 1 -Price = 1000 -Flags = Fling_50 -Description = A memory disc containing Fighting-type data. It changes the holder's type if held by a certain Pokémon. -#------------------------------- -[POISONMEMORY] -Name = Poison Memory -NamePlural = Poison Memories -Pocket = 1 -Price = 1000 -Flags = Fling_50 -Description = A memory disc containing Poison-type data. It changes the holder's type if held by a certain Pokémon. -#------------------------------- -[GROUNDMEMORY] -Name = Ground Memory -NamePlural = Ground Memories -Pocket = 1 -Price = 1000 -Flags = Fling_50 -Description = A memory disc containing Ground-type data. It changes the holder's type if held by a certain Pokémon. -#------------------------------- -[FLYINGMEMORY] -Name = Flying Memory -NamePlural = Flying Memories -Pocket = 1 -Price = 1000 -Flags = Fling_50 -Description = A memory disc containing Flying-type data. It changes the holder's type if held by a certain Pokémon. -#------------------------------- -[PSYCHICMEMORY] -Name = Psychic Memory -NamePlural = Psychic Memories -Pocket = 1 -Price = 1000 -Flags = Fling_50 -Description = A memory disc containing Psychic-type data. It changes the holder's type if held by a certain Pokémon. -#------------------------------- -[BUGMEMORY] -Name = Bug Memory -NamePlural = Bug Memories -Pocket = 1 -Price = 1000 -Flags = Fling_50 -Description = A memory disc containing Bug-type data. It changes the holder's type if held by a certain Pokémon. -#------------------------------- -[ROCKMEMORY] -Name = Rock Memory -NamePlural = Rock Memories -Pocket = 1 -Price = 1000 -Flags = Fling_50 -Description = A memory disc containing Rock-type data. It changes the holder's type if held by a certain Pokémon. -#------------------------------- -[GHOSTMEMORY] -Name = Ghost Memory -NamePlural = Ghost Memories -Pocket = 1 -Price = 1000 -Flags = Fling_50 -Description = A memory disc containing Ghost-type data. It changes the holder's type if held by a certain Pokémon. -#------------------------------- -[DRAGONMEMORY] -Name = Dragon Memory -NamePlural = Dragon Memories -Pocket = 1 -Price = 1000 -Flags = Fling_50 -Description = A memory disc containing Dragon-type data. It changes the holder's type if held by a certain Pokémon. -#------------------------------- -[DARKMEMORY] -Name = Dark Memory -NamePlural = Dark Memories -Pocket = 1 -Price = 1000 -Flags = Fling_50 -Description = A memory disc containing Dark-type data. It changes the holder's type if held by a certain Pokémon. -#------------------------------- -[STEELMEMORY] -Name = Steel Memory -NamePlural = Steel Memories -Pocket = 1 -Price = 1000 -Flags = Fling_50 -Description = A memory disc containing Steel-type data. It changes the holder's type if held by a certain Pokémon. -#------------------------------- -[FAIRYMEMORY] -Name = Fairy Memory -NamePlural = Fairy Memories -Pocket = 1 -Price = 1000 -Flags = Fling_50 -Description = A memory disc containing Fairy-type data. It changes the holder's type if held by a certain Pokémon. -#------------------------------- -[EVERSTONE] -Name = Everstone -NamePlural = Everstones -Pocket = 1 -Price = 3000 -BPPrice = 5 -Flags = Fling_30 -Description = An item to be held by a Pokémon. The Pokémon holding this peculiar stone is prevented from evolving. -#------------------------------- -[DRAGONSCALE] -Name = Dragon Scale -NamePlural = Dragon Scales -Pocket = 1 -Price = 3000 -SellPrice = 1000 -BPPrice = 5 -Flags = Fling_30 -Description = A thick and tough scale. Dragon-type Pokémon may be holding this item when caught. -#------------------------------- -[UPGRADE] -Name = Upgrade -NamePlural = Upgrades -Pocket = 1 -Price = 3000 -SellPrice = 1000 -BPPrice = 5 -Flags = Fling_30 -Description = A transparent device filled with all sorts of data. It was produced by Silph Co. -#------------------------------- -[DUBIOUSDISC] -Name = Dubious Disc -NamePlural = Dubious Discs -Pocket = 1 -Price = 3000 -SellPrice = 1000 -BPPrice = 5 -Flags = Fling_50 -Description = A transparent device overflowing with dubious data. Its producer is unknown. -#------------------------------- -[PROTECTOR] -Name = Protector -NamePlural = Protectors -Pocket = 1 -Price = 3000 -SellPrice = 1000 -BPPrice = 5 -Flags = Fling_80 -Description = A protective item of some sort. It is extremely stiff and heavy. It is loved by a certain Pokémon. -#------------------------------- -[ELECTIRIZER] -Name = Electirizer -NamePlural = Electirizers -Pocket = 1 -Price = 3000 -SellPrice = 1000 -BPPrice = 5 -Flags = Fling_80 -Description = A box packed with a tremendous amount of electric energy. It is loved by a certain Pokémon. -#------------------------------- -[MAGMARIZER] -Name = Magmarizer -NamePlural = Magmarizers -Pocket = 1 -Price = 3000 -SellPrice = 1000 -BPPrice = 5 -Flags = Fling_80 -Description = A box packed with a tremendous amount of magma energy. It is loved by a certain Pokémon. -#------------------------------- -[REAPERCLOTH] -Name = Reaper Cloth -NamePlural = Reaper Cloths -PortionName = scrap of Reaper Cloth -PortionNamePlural = scraps of Reaper Cloth -Pocket = 1 -Price = 3000 -SellPrice = 1000 -BPPrice = 5 -Flags = Fling_10 -Description = A cloth imbued with horrifyingly strong spiritual energy. It is loved by a certain Pokémon. -#------------------------------- -[PRISMSCALE] -Name = Prism Scale -NamePlural = Prism Scales -Pocket = 1 -Price = 3000 -SellPrice = 1000 -BPPrice = 10 -Flags = Fling_30 -Description = A mysterious scale that evolves certain Pokémon. It shines in rainbow colors. -#------------------------------- -[OVALSTONE] -Name = Oval Stone -NamePlural = Oval Stones -Pocket = 1 -Price = 3000 -SellPrice = 1000 -BPPrice = 5 -Flags = Fling_80 -Description = A peculiar stone that makes certain species of Pokémon evolve. It is shaped like an egg. -#------------------------------- -[WHIPPEDDREAM] -Name = Whipped Dream -NamePlural = Whipped Dreams -PortionName = dollop of Whipped Dream -PortionNamePlural = dollops of Whipped Dream -Pocket = 1 -Price = 3000 -SellPrice = 1000 -BPPrice = 5 -Flags = Fling_80 -Description = A soft and sweet treat made of fluffy, puffy and whirled cream. It's loved by a certain Pokémon. -#------------------------------- -[SACHET] -Name = Sachet -NamePlural = Sachets -Pocket = 1 -Price = 3000 -SellPrice = 1000 -BPPrice = 5 -Flags = Fling_80 -Description = A sachet filled with slightly overwhelming fragrant perfumes. Yet it's loved by a certain Pokémon. -#------------------------------- -[STRAWBERRYSWEET] -Name = Strawberry Sweet -NamePlural = Strawberry Sweets -Pocket = 1 -Price = 500 -BPPrice = 5 -Flags = Fling_10 -Description = A strawberry-shaped sweet. When a Milcery holds this, it will spin around happily. -#------------------------------- -[LOVESWEET] -Name = Love Sweet -NamePlural = Love Sweets -Pocket = 1 -Price = 500 -BPPrice = 5 -Flags = Fling_10 -Description = A heart-shaped sweet. When a Milcery holds this, it spins around happily. -#------------------------------- -[BERRYSWEET] -Name = Berry Sweet -NamePlural = Berry Sweets -Pocket = 1 -Price = 500 -BPPrice = 5 -Flags = Fling_10 -Description = A berry-shaped sweet. When a Milcery holds this, it spins around happily. -#------------------------------- -[CLOVERSWEET] -Name = Clover Sweet -NamePlural = Clover Sweets -Pocket = 1 -Price = 500 -BPPrice = 5 -Flags = Fling_10 -Description = A clover-shaped sweet. When a Milcery holds this, it spins around happily. -#------------------------------- -[FLOWERSWEET] -Name = Flower Sweet -NamePlural = Flower Sweets -Pocket = 1 -Price = 500 -BPPrice = 5 -Flags = Fling_10 -Description = A flower-shaped sweet. When a Milcery holds this, it spins around happily. -#------------------------------- -[STARSWEET] -Name = Star Sweet -NamePlural = Star Sweets -Pocket = 1 -Price = 500 -BPPrice = 5 -Flags = Fling_10 -Description = A star-shaped sweet. When a Milcery holds this, it spins around happily. -#------------------------------- -[RIBBONSWEET] -Name = Ribbon Sweet -NamePlural = Ribbon Sweets -Pocket = 1 -Price = 500 -BPPrice = 5 -Flags = Fling_10 -Description = A ribbon-shaped sweet. When a Milcery holds this, it spins around happily. -#------------------------------- -[VENUSAURITE] -Name = Venusaurite -NamePlural = Venusaurites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Venusaur hold it, and it will be able to Mega Evolve. -#------------------------------- -[CHARIZARDITEX] -Name = Charizardite X -NamePlural = Charizardite Xs -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Charizard hold it, and it will be able to Mega Evolve. -#------------------------------- -[CHARIZARDITEY] -Name = Charizardite Y -NamePlural = Charizardite Ys -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Charizard hold it, and it will be able to Mega Evolve. -#------------------------------- -[BLASTOISINITE] -Name = Blastoisinite -NamePlural = Blastoisinites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Blastoise hold it, and it will be able to Mega Evolve. -#------------------------------- -[BEEDRILLITE] -Name = Beedrillite -NamePlural = Beedrillites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Beedrill hold it, and it will be able to Mega Evolve. -#------------------------------- -[PIDGEOTITE] -Name = Pidgeotite -NamePlural = Pidgeotites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Pidgeot hold it, and it will be able to Mega Evolve. -#------------------------------- -[ALAKAZITE] -Name = Alakazite -NamePlural = Alakazites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Alakazam hold it, and it will be able to Mega Evolve. -#------------------------------- -[SLOWBRONITE] -Name = Slowbronite -NamePlural = Slowbronites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Slowbro hold it, and it will be able to Mega Evolve. -#------------------------------- -[GENGARITE] -Name = Gengarite -NamePlural = Gengarites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Gengar hold it, and it will be able to Mega Evolve. -#------------------------------- -[KANGASKHANITE] -Name = Kangaskhanite -NamePlural = Kangaskhanites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Kangaskhan hold it, and it will be able to Mega Evolve. -#------------------------------- -[PINSIRITE] -Name = Pinsirite -NamePlural = Pinsirites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Pinsir hold it, and it will be able to Mega Evolve. -#------------------------------- -[GYARADOSITE] -Name = Gyaradosite -NamePlural = Gyaradosites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Gyarados hold it, and it will be able to Mega Evolve. -#------------------------------- -[AERODACTYLITE] -Name = Aerodactylite -NamePlural = Aerodactylites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Aerodactyl hold it, and it will be able to Mega Evolve. -#------------------------------- -[MEWTWONITEX] -Name = Mewtwonite X -NamePlural = Mewtwonite Xs -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Mewtwo hold it, and it will be able to Mega Evolve. -#------------------------------- -[MEWTWONITEY] -Name = Mewtwonite Y -NamePlural = Mewtwonite Ys -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Mewtwo hold it, and it will be able to Mega Evolve. -#------------------------------- -[AMPHAROSITE] -Name = Ampharosite -NamePlural = Ampharosites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Ampharos hold it, and it will be able to Mega Evolve. -#------------------------------- -[STEELIXITE] -Name = Steelixite -NamePlural = Steelixites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Steelix hold it, and it will be able to Mega Evolve. -#------------------------------- -[SCIZORITE] -Name = Scizorite -NamePlural = Scizorites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Scizor hold it, and it will be able to Mega Evolve. -#------------------------------- -[HERACRONITE] -Name = Heracronite -NamePlural = Heracronites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Heracross hold it, and it will be able to Mega Evolve. -#------------------------------- -[HOUNDOOMINITE] -Name = Houndoominite -NamePlural = Houndoominites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Houndoom hold it, and it will be able to Mega Evolve. -#------------------------------- -[TYRANITARITE] -Name = Tyranitarite -NamePlural = Tyranitarites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Tyranitar hold it, and it will be able to Mega Evolve. -#------------------------------- -[SCEPTILITE] -Name = Sceptilite -NamePlural = Sceptilites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Sceptile hold it, and it will be able to Mega Evolve. -#------------------------------- -[BLAZIKENITE] -Name = Blazikenite -NamePlural = Blazikenites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Blaziken hold it, and it will be able to Mega Evolve. -#------------------------------- -[SWAMPERTITE] -Name = Swampertite -NamePlural = Swampertites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Swampert hold it, and it will be able to Mega Evolve. -#------------------------------- -[GARDEVOIRITE] -Name = Gardevoirite -NamePlural = Gardevoirites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Gardevoir hold it, and it will be able to Mega Evolve. -#------------------------------- -[SABLENITE] -Name = Sablenite -NamePlural = Sablenites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Sableye hold it, and it will be able to Mega Evolve. -#------------------------------- -[MAWILITE] -Name = Mawilite -NamePlural = Mawilites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Mawile hold it, and it will be able to Mega Evolve. -#------------------------------- -[AGGRONITE] -Name = Aggronite -NamePlural = Aggronites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Aggron hold it, and it will be able to Mega Evolve. -#------------------------------- -[MEDICHAMITE] -Name = Medichamite -NamePlural = Medichamites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Medicham hold it, and it will be able to Mega Evolve. -#------------------------------- -[MANECTITE] -Name = Manectite -NamePlural = Manectites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Manectric hold it, and it will be able to Mega Evolve. -#------------------------------- -[SHARPEDONITE] -Name = Sharpedonite -NamePlural = Sharpedonites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Sharpedo hold it, and it will be able to Mega Evolve. -#------------------------------- -[CAMERUPTITE] -Name = Cameruptite -NamePlural = Cameruptites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Camerupt hold it, and it will be able to Mega Evolve. -#------------------------------- -[ALTARIANITE] -Name = Altarianite -NamePlural = Altarianites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Altaria hold it, and it will be able to Mega Evolve. -#------------------------------- -[BANETTITE] -Name = Banettite -NamePlural = Banettites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Banette hold it, and it will be able to Mega Evolve. -#------------------------------- -[ABSOLITE] -Name = Absolite -NamePlural = Absolites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Absol hold it, and it will be able to Mega Evolve. -#------------------------------- -[GLALITITE] -Name = Glalitite -NamePlural = Glalitites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Glalie hold it, and it will be able to Mega Evolve. -#------------------------------- -[SALAMENCITE] -Name = Salamencite -NamePlural = Salamencites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Salamence hold it, and it will be able to Mega Evolve. -#------------------------------- -[METAGROSSITE] -Name = Metagrossite -NamePlural = Metagrossites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Metagross hold it, and it will be able to Mega Evolve. -#------------------------------- -[LATIASITE] -Name = Latiasite -NamePlural = Latiasites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Latias hold it, and it will be able to Mega Evolve. -#------------------------------- -[LATIOSITE] -Name = Latiosite -NamePlural = Latiosites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Latios hold it, and it will be able to Mega Evolve. -#------------------------------- -[LOPUNNITE] -Name = Lopunnite -NamePlural = Lopunnites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Lopunny hold it, and it will be able to Mega Evolve. -#------------------------------- -[GARCHOMPITE] -Name = Garchompite -NamePlural = Garchompites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Garchomp hold it, and it will be able to Mega Evolve. -#------------------------------- -[LUCARIONITE] -Name = Lucarionite -NamePlural = Lucarionites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Lucario hold it, and it will be able to Mega Evolve. -#------------------------------- -[ABOMASITE] -Name = Abomasite -NamePlural = Abomasites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Abomasnow hold it, and it will be able to Mega Evolve. -#------------------------------- -[GALLADITE] -Name = Galladite -NamePlural = Galladites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Gallade hold it, and it will be able to Mega Evolve. -#------------------------------- -[AUDINITE] -Name = Audinite -NamePlural = Audinites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Audino hold it, and it will be able to Mega Evolve. -#------------------------------- -[DIANCITE] -Name = Diancite -NamePlural = Diancites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Diancie hold it, and it will be able to Mega Evolve. -#------------------------------- -[REDORB] -Name = Red Orb -NamePlural = Red Orbs -Pocket = 1 -Price = 10000 -SellPrice = 0 -BPPrice = 50 -Description = A shiny red orb that is said to have a legend tied to it. It's known to be connected with the Hoenn region. -#------------------------------- -[BLUEORB] -Name = Blue Orb -NamePlural = Blue Orbs -Pocket = 1 -Price = 10000 -SellPrice = 0 -BPPrice = 50 -Description = A shiny blue orb that is said to have a legend tied to it. It's known to be connected with the Hoenn region. +[GRASSMAIL] +Name = Grass Mail +NamePlural = Grass Mail +PortionName = piece of Grass Mail +PortionNamePlural = pieces of Grass Mail +Pocket = Items +Price = 50 +Flags = IconMail +Description = Stationery featuring a print of a refreshingly green field. Let a Pokémon hold it for delivery. +#------------------------------- +[FLAMEMAIL] +Name = Flame Mail +NamePlural = Flame Mail +PortionName = piece of Flame Mail +PortionNamePlural = pieces of Flame Mail +Pocket = Items +Price = 50 +Flags = IconMail +Description = Stationery featuring a print of flames in blazing red. Let a Pokémon hold it for delivery. +#------------------------------- +[BUBBLEMAIL] +Name = Bubble Mail +NamePlural = Bubble Mail +PortionName = piece of Bubble Mail +PortionNamePlural = pieces of Bubble Mail +Pocket = Items +Price = 50 +Flags = IconMail +Description = Stationery featuring a print of a blue world underwater. Let a Pokémon hold it for delivery. +#------------------------------- +[BLOOMMAIL] +Name = Bloom Mail +NamePlural = Bloom Mail +PortionName = piece of Bloom Mail +PortionNamePlural = pieces of Bloom Mail +Pocket = Items +Price = 50 +Flags = IconMail +Description = Stationery featuring a print of pretty floral patterns. Let a Pokémon hold it for delivery. +#------------------------------- +[TUNNELMAIL] +Name = Tunnel Mail +NamePlural = Tunnel Mail +PortionName = piece of Tunnel Mail +PortionNamePlural = pieces of Tunnel Mail +Pocket = Items +Price = 50 +Flags = IconMail +Description = Stationery featuring a print of a dimly lit coal mine. Let a Pokémon hold it for delivery. +#------------------------------- +[STEELMAIL] +Name = Steel Mail +NamePlural = Steel Mail +PortionName = piece of Steel Mail +PortionNamePlural = pieces of Steel Mail +Pocket = Items +Price = 50 +Flags = IconMail +Description = Stationery featuring a print of cool mechanical designs. Let a Pokémon hold it for delivery. +#------------------------------- +[HEARTMAIL] +Name = Heart Mail +NamePlural = Heart Mail +PortionName = piece of Heart Mail +PortionNamePlural = pieces of Heart Mail +Pocket = Items +Price = 50 +Flags = IconMail +Description = Stationery featuring a print of giant heart patterns. Let a Pokémon hold it for delivery. +#------------------------------- +[SNOWMAIL] +Name = Snow Mail +NamePlural = Snow Mail +PortionName = piece of Snow Mail +PortionNamePlural = pieces of Snow Mail +Pocket = Items +Price = 50 +Flags = IconMail +Description = Stationery featuring a print of a chilly, snow-covered world. Let a Pokémon hold it for delivery. +#------------------------------- +[SPACEMAIL] +Name = Space Mail +NamePlural = Space Mail +PortionName = piece of Space Mail +PortionNamePlural = pieces of Space Mail +Pocket = Items +Price = 50 +Flags = IconMail +Description = Stationery featuring a print depicting the huge expanse of space. Let a Pokémon hold it for delivery. +#------------------------------- +[AIRMAIL] +Name = Air Mail +NamePlural = Air Mail +PortionName = piece of Air Mail +PortionNamePlural = pieces of Air Mail +Pocket = Items +Price = 50 +Flags = IconMail +Description = Stationery featuring a print of colorful letter sets. Let a Pokémon hold it for delivery. +#------------------------------- +[MOSAICMAIL] +Name = Mosaic Mail +NamePlural = Mosaic Mail +PortionName = piece of Mosaic Mail +PortionNamePlural = pieces of Mosaic Mail +Pocket = Items +Price = 50 +Flags = IconMail +Description = Stationery featuring a print of a vivid rainbow pattern. Let a Pokémon hold it for delivery. +#------------------------------- +[BRICKMAIL] +Name = Brick Mail +NamePlural = Brick Mail +PortionName = piece of Brick Mail +PortionNamePlural = pieces of Brick Mail +Pocket = Items +Price = 50 +Flags = IconMail +Description = Stationery featuring a print of a tough-looking brick pattern. Let a Pokémon hold it for delivery. #------------------------------- [POTION] Name = Potion NamePlural = Potions -Pocket = 2 +Pocket = Medicine Price = 200 FieldUse = OnPokemon BattleUse = OnPokemon @@ -3179,7 +959,7 @@ Description = A spray-type medicine for treating wounds. It can be used to resto [SUPERPOTION] Name = Super Potion NamePlural = Super Potions -Pocket = 2 +Pocket = Medicine Price = 700 FieldUse = OnPokemon BattleUse = OnPokemon @@ -3189,7 +969,7 @@ Description = A spray-type medicine for treating wounds. It can be used to resto [HYPERPOTION] Name = Hyper Potion NamePlural = Hyper Potions -Pocket = 2 +Pocket = Medicine Price = 1500 FieldUse = OnPokemon BattleUse = OnPokemon @@ -3199,7 +979,7 @@ Description = A spray-type medicine for treating wounds. It can be used to resto [MAXPOTION] Name = Max Potion NamePlural = Max Potions -Pocket = 2 +Pocket = Medicine Price = 2500 BPPrice = 2 FieldUse = OnPokemon @@ -3210,7 +990,7 @@ Description = A spray-type medicine for treating wounds. It can completely resto [FULLRESTORE] Name = Full Restore NamePlural = Full Restores -Pocket = 2 +Pocket = Medicine Price = 3000 FieldUse = OnPokemon BattleUse = OnPokemon @@ -3222,7 +1002,7 @@ Name = Sacred Ash NamePlural = Sacred Ashes PortionName = bag of Sacred Ash PortionNamePlural = bags of Sacred Ash -Pocket = 2 +Pocket = Medicine Price = 50000 FieldUse = Direct Flags = Fling_30 @@ -3231,7 +1011,7 @@ Description = It revives all fainted Pokémon. In doing so, it also fully restor [AWAKENING] Name = Awakening NamePlural = Awakenings -Pocket = 2 +Pocket = Medicine Price = 200 FieldUse = OnPokemon BattleUse = OnPokemon @@ -3241,7 +1021,7 @@ Description = A spray-type medicine. It awakens a Pokémon from the clutches of [ANTIDOTE] Name = Antidote NamePlural = Antidotes -Pocket = 2 +Pocket = Medicine Price = 200 FieldUse = OnPokemon BattleUse = OnPokemon @@ -3251,7 +1031,7 @@ Description = A spray-type medicine. It lifts the effect of poison from one Pok [BURNHEAL] Name = Burn Heal NamePlural = Burn Heals -Pocket = 2 +Pocket = Medicine Price = 200 FieldUse = OnPokemon BattleUse = OnPokemon @@ -3261,7 +1041,7 @@ Description = A spray-type medicine. It heals a single Pokémon that is sufferin [PARALYZEHEAL] Name = Paralyze Heal NamePlural = Paralyze Heals -Pocket = 2 +Pocket = Medicine Price = 200 FieldUse = OnPokemon BattleUse = OnPokemon @@ -3271,7 +1051,7 @@ Description = A spray-type medicine. It eliminates paralysis from a single Poké [ICEHEAL] Name = Ice Heal NamePlural = Ice Heals -Pocket = 2 +Pocket = Medicine Price = 200 FieldUse = OnPokemon BattleUse = OnPokemon @@ -3281,7 +1061,7 @@ Description = A spray-type medicine. It defrosts a Pokémon that has been frozen [FULLHEAL] Name = Full Heal NamePlural = Full Heals -Pocket = 2 +Pocket = Medicine Price = 400 FieldUse = OnPokemon BattleUse = OnPokemon @@ -3293,7 +1073,7 @@ Name = Pewter Crunchies NamePlural = Pewter Crunchies PortionName = bag of Pewter Crunchies PortionNamePlural = bags of Pewter Crunchies -Pocket = 2 +Pocket = Medicine Price = 250 FieldUse = OnPokemon BattleUse = OnPokemon @@ -3303,7 +1083,7 @@ Description = Pewter City's famous crunchy snack. They can be used to heal all s [RAGECANDYBAR] Name = Rage Candy Bar NamePlural = Rage Candy Bars -Pocket = 2 +Pocket = Medicine Price = 350 FieldUse = OnPokemon BattleUse = OnPokemon @@ -3313,7 +1093,7 @@ Description = Mahogany Town's famous candy. It can be used once to heal all the [LAVACOOKIE] Name = Lava Cookie NamePlural = Lava Cookies -Pocket = 2 +Pocket = Medicine Price = 350 FieldUse = OnPokemon BattleUse = OnPokemon @@ -3323,7 +1103,7 @@ Description = Lavaridge Town's local specialty. It heals all the status problems [OLDGATEAU] Name = Old Gateau NamePlural = Old Gateaux -Pocket = 2 +Pocket = Medicine Price = 350 FieldUse = OnPokemon BattleUse = OnPokemon @@ -3333,7 +1113,7 @@ Description = Old Chateau's hidden specialty. It heals all the status problems o [CASTELIACONE] Name = Casteliacone NamePlural = Casteliacones -Pocket = 2 +Pocket = Medicine Price = 350 FieldUse = OnPokemon BattleUse = OnPokemon @@ -3343,7 +1123,7 @@ Description = Castelia City's specialty, soft-serve ice cream. It heals all the [LUMIOSEGALETTE] Name = Lumiose Galette NamePlural = Lumiose Galettes -Pocket = 2 +Pocket = Medicine Price = 350 FieldUse = OnPokemon BattleUse = OnPokemon @@ -3353,7 +1133,7 @@ Description = A popular treat in Lumiose City. It can be used once to heal all t [SHALOURSABLE] Name = Shalour Sable NamePlural = Shalour Sables -Pocket = 2 +Pocket = Medicine Price = 350 FieldUse = OnPokemon BattleUse = OnPokemon @@ -3363,7 +1143,7 @@ Description = Shalour City's famous shortbread. It can be used once to heal all [BIGMALASADA] Name = Big Malasada NamePlural = Big Malasadas -Pocket = 2 +Pocket = Medicine Price = 350 FieldUse = OnPokemon BattleUse = OnPokemon @@ -3373,7 +1153,7 @@ Description = The Alola region's specialty--fried bread. It can be used once to [REVIVE] Name = Revive NamePlural = Revives -Pocket = 2 +Pocket = Medicine Price = 2000 FieldUse = OnPokemon BattleUse = OnPokemon @@ -3383,7 +1163,7 @@ Description = A medicine that revives a fainted Pokémon. It restores half the P [MAXREVIVE] Name = Max Revive NamePlural = Max Revives -Pocket = 2 +Pocket = Medicine Price = 4000 BPPrice = 20 FieldUse = OnPokemon @@ -3396,7 +1176,7 @@ Name = Berry Juice NamePlural = Berry Juices PortionName = cup of Berry Juice PortionNamePlural = cups of Berry Juice -Pocket = 2 +Pocket = Medicine Price = 100 FieldUse = OnPokemon BattleUse = OnPokemon @@ -3406,7 +1186,7 @@ Description = A 100% pure juice made of Berries. It restores the HP of one Poké [SWEETHEART] Name = Sweet Heart NamePlural = Sweet Hearts -Pocket = 2 +Pocket = Medicine Price = 3000 FieldUse = OnPokemon BattleUse = OnPokemon @@ -3418,7 +1198,7 @@ Name = Fresh Water NamePlural = Fresh Waters PortionName = bottle of Fresh Water PortionNamePlural = bottles of Fresh Water -Pocket = 2 +Pocket = Medicine Price = 200 FieldUse = OnPokemon BattleUse = OnPokemon @@ -3430,7 +1210,7 @@ Name = Soda Pop NamePlural = Soda Pops PortionName = bottle of Soda Pop PortionNamePlural = bottles of Soda Pop -Pocket = 2 +Pocket = Medicine Price = 300 FieldUse = OnPokemon BattleUse = OnPokemon @@ -3442,7 +1222,7 @@ Name = Lemonade NamePlural = Lemonades PortionName = can of Lemonade PortionNamePlural = cans of Lemonade -Pocket = 2 +Pocket = Medicine Price = 350 SellPrice = 200 FieldUse = OnPokemon @@ -3455,7 +1235,7 @@ Name = Moomoo Milk NamePlural = Moomoo Milks PortionName = bottle of Moomoo Milk PortionNamePlural = bottles of Moomoo Milk -Pocket = 2 +Pocket = Medicine Price = 600 FieldUse = OnPokemon BattleUse = OnPokemon @@ -3467,7 +1247,7 @@ Name = Energy Powder NamePlural = Energy Powders PortionName = dose of Energy Powder PortionNamePlural = doses of Energy Powder -Pocket = 2 +Pocket = Medicine Price = 500 FieldUse = OnPokemon BattleUse = OnPokemon @@ -3477,7 +1257,7 @@ Description = A very bitter medicinal powder. It can be used to restore 60 HP to [ENERGYROOT] Name = Energy Root NamePlural = Energy Roots -Pocket = 2 +Pocket = Medicine Price = 1200 FieldUse = OnPokemon BattleUse = OnPokemon @@ -3489,7 +1269,7 @@ Name = Heal Powder NamePlural = Heal Powders PortionName = dose of Heal Powder PortionNamePlural = doses of Heal Powder -Pocket = 2 +Pocket = Medicine Price = 300 FieldUse = OnPokemon BattleUse = OnPokemon @@ -3499,7 +1279,7 @@ Description = A very bitter medicine powder. It heals all the status problems of [REVIVALHERB] Name = Revival Herb NamePlural = Revival Herbs -Pocket = 2 +Pocket = Medicine Price = 2800 FieldUse = OnPokemon BattleUse = OnPokemon @@ -3511,7 +1291,7 @@ Name = Max Honey NamePlural = Max Honeys PortionName = comb of Max Honey PortionNamePlural = combs of Max Honey -Pocket = 2 +Pocket = Medicine Price = 8000 FieldUse = OnPokemon BattleUse = OnPokemon @@ -3521,7 +1301,7 @@ Description = Honey that Dynamax Vespiquen produces. It has the same effect as a [ETHER] Name = Ether NamePlural = Ethers -Pocket = 2 +Pocket = Medicine Price = 1200 BPPrice = 4 FieldUse = OnPokemon @@ -3532,7 +1312,7 @@ Description = It restores the PP of a Pokémon's selected move by a maximum of 1 [MAXETHER] Name = Max Ether NamePlural = Max Ethers -Pocket = 2 +Pocket = Medicine Price = 2000 FieldUse = OnPokemon BattleUse = OnMove @@ -3542,7 +1322,7 @@ Description = It fully restores the PP of a single selected move that has been l [ELIXIR] Name = Elixir NamePlural = Elixirs -Pocket = 2 +Pocket = Medicine Price = 3000 FieldUse = OnPokemon BattleUse = OnPokemon @@ -3552,7 +1332,7 @@ Description = It restores the PP of all the moves learned by the targeted Pokém [MAXELIXIR] Name = Max Elixir NamePlural = Max Elixirs -Pocket = 2 +Pocket = Medicine Price = 4500 FieldUse = OnPokemon BattleUse = OnPokemon @@ -3564,7 +1344,7 @@ Name = PP Up NamePlural = PP Ups PortionName = bottle of PP Up PortionNamePlural = bottles of PP Up -Pocket = 2 +Pocket = Medicine Price = 10000 BPPrice = 10 FieldUse = OnPokemon @@ -3576,7 +1356,7 @@ Name = PP Max NamePlural = PP Maxes PortionName = bottle of PP Max PortionNamePlural = bottles of PP Max -Pocket = 2 +Pocket = Medicine Price = 10000 FieldUse = OnPokemon Flags = Fling_30 @@ -3587,7 +1367,7 @@ Name = HP Up NamePlural = HP Ups PortionName = bottle of HP Up PortionNamePlural = bottles of HP Up -Pocket = 2 +Pocket = Medicine Price = 10000 FieldUse = OnPokemon Flags = Fling_30 @@ -3598,7 +1378,7 @@ Name = Protein NamePlural = Proteins PortionName = bottle of Protein PortionNamePlural = bottles of Protein -Pocket = 2 +Pocket = Medicine Price = 10000 FieldUse = OnPokemon Flags = Fling_30 @@ -3609,7 +1389,7 @@ Name = Iron NamePlural = Irons PortionName = bottle of Iron PortionNamePlural = bottles of Iron -Pocket = 2 +Pocket = Medicine Price = 10000 FieldUse = OnPokemon Flags = Fling_30 @@ -3620,7 +1400,7 @@ Name = Calcium NamePlural = Calciums PortionName = bottle of Calcium PortionNamePlural = bottles of Calcium -Pocket = 2 +Pocket = Medicine Price = 10000 FieldUse = OnPokemon Flags = Fling_30 @@ -3631,7 +1411,7 @@ Name = Zinc NamePlural = Zincs PortionName = bottle of Zinc PortionNamePlural = bottles of Zinc -Pocket = 2 +Pocket = Medicine Price = 10000 FieldUse = OnPokemon Flags = Fling_30 @@ -3642,7 +1422,7 @@ Name = Carbos NamePlural = Carbos PortionName = bottle of Carbos PortionNamePlural = bottles of Carbos -Pocket = 2 +Pocket = Medicine Price = 10000 FieldUse = OnPokemon Flags = Fling_30 @@ -3651,7 +1431,7 @@ Description = A nutritious drink for Pokémon. It raises the base Speed stat of [HEALTHFEATHER] Name = Health Feather NamePlural = Health Feathers -Pocket = 2 +Pocket = Medicine Price = 300 FieldUse = OnPokemon Flags = Fling_20 @@ -3660,7 +1440,7 @@ Description = An item for use on a Pokémon. It slightly increases the base HP o [MUSCLEFEATHER] Name = Muscle Feather NamePlural = Muscle Feathers -Pocket = 2 +Pocket = Medicine Price = 300 FieldUse = OnPokemon Flags = Fling_20 @@ -3669,7 +1449,7 @@ Description = An item for use on a Pokémon. It slightly increases the base Atta [RESISTFEATHER] Name = Resist Feather NamePlural = Resist Feathers -Pocket = 2 +Pocket = Medicine Price = 300 FieldUse = OnPokemon Flags = Fling_20 @@ -3678,7 +1458,7 @@ Description = An item for use on a Pokémon. It slightly increases the base Defe [GENIUSFEATHER] Name = Genius Feather NamePlural = Genius Feathers -Pocket = 2 +Pocket = Medicine Price = 300 FieldUse = OnPokemon Flags = Fling_20 @@ -3687,7 +1467,7 @@ Description = An item for use on a Pokémon. It slightly increases the base Sp. [CLEVERFEATHER] Name = Clever Feather NamePlural = Clever Feathers -Pocket = 2 +Pocket = Medicine Price = 300 FieldUse = OnPokemon Flags = Fling_20 @@ -3696,7 +1476,7 @@ Description = An item for use on a Pokémon. It slightly increases the base Sp. [SWIFTFEATHER] Name = Swift Feather NamePlural = Swift Feathers -Pocket = 2 +Pocket = Medicine Price = 300 FieldUse = OnPokemon Flags = Fling_20 @@ -3705,7 +1485,7 @@ Description = An item for use on a Pokémon. It slightly increases the base Spee [HEALTHMOCHI] Name = Health Mochi NamePlural = Health Mochis -Pocket = 2 +Pocket = Medicine Price = 500 FieldUse = OnPokemon Flags = Fling_20 @@ -3714,7 +1494,7 @@ Description = A mochi cake with Berries kneaded into its dough. It increases bas [MUSCLEMOCHI] Name = Muscle Mochi NamePlural = Muscle Mochis -Pocket = 2 +Pocket = Medicine Price = 500 FieldUse = OnPokemon Flags = Fling_20 @@ -3723,7 +1503,7 @@ Description = A mochi cake with Berries kneaded into its dough. It increases bas [RESISTMOCHI] Name = Resist Mochi NamePlural = Resist Mochis -Pocket = 2 +Pocket = Medicine Price = 500 FieldUse = OnPokemon Flags = Fling_20 @@ -3732,7 +1512,7 @@ Description = A mochi cake with Berries kneaded into its dough. It increases bas [GENIUSMOCHI] Name = Genius Mochi NamePlural = Genius Mochis -Pocket = 2 +Pocket = Medicine Price = 500 FieldUse = OnPokemon Flags = Fling_20 @@ -3741,7 +1521,7 @@ Description = A mochi cake with Berries kneaded into its dough. It increases bas [CLEVERMOCHI] Name = Clever Mochi NamePlural = Clever Mochis -Pocket = 2 +Pocket = Medicine Price = 500 FieldUse = OnPokemon Flags = Fling_20 @@ -3750,7 +1530,7 @@ Description = A mochi cake with Berries kneaded into its dough. It increases bas [SWIFTMOCHI] Name = Swift Mochi NamePlural = Swift Mochis -Pocket = 2 +Pocket = Medicine Price = 500 FieldUse = OnPokemon Flags = Fling_20 @@ -3759,7 +1539,7 @@ Description = A mochi cake with Berries kneaded into its dough. It increases bas [FRESHSTARTMOCHI] Name = Fresh-Start Mochi NamePlural = Fresh-Start Mochis -Pocket = 2 +Pocket = Medicine Price = 300 FieldUse = OnPokemon Flags = Fling_20 @@ -3770,7 +1550,7 @@ Name = Lonely Mint NamePlural = Lonely Mints PortionName = sprig of Lonely Mint PortionNamePlural = sprigs of Lonely Mint -Pocket = 2 +Pocket = Medicine Price = 20 BPPrice = 50 FieldUse = OnPokemon @@ -3782,7 +1562,7 @@ Name = Adamant Mint NamePlural = Adamant Mints PortionName = sprig of Adamant Mint PortionNamePlural = sprigs of Adamant Mint -Pocket = 2 +Pocket = Medicine Price = 20 BPPrice = 50 FieldUse = OnPokemon @@ -3794,7 +1574,7 @@ Name = Naughty Mint NamePlural = Naughty Mints PortionName = sprig of Naughty Mint PortionNamePlural = sprigs of Naughty Mint -Pocket = 2 +Pocket = Medicine Price = 20 BPPrice = 50 FieldUse = OnPokemon @@ -3806,7 +1586,7 @@ Name = Brave Mint NamePlural = Brave Mints PortionName = sprig of Brave Mint PortionNamePlural = sprigs of Brave Mint -Pocket = 2 +Pocket = Medicine Price = 20 BPPrice = 50 FieldUse = OnPokemon @@ -3818,7 +1598,7 @@ Name = Bold Mint NamePlural = Bold Mints PortionName = sprig of Bold Mint PortionNamePlural = sprigs of Bold Mint -Pocket = 2 +Pocket = Medicine Price = 20 BPPrice = 50 FieldUse = OnPokemon @@ -3830,7 +1610,7 @@ Name = Impish Mint NamePlural = Impish Mints PortionName = sprig of Impish Mint PortionNamePlural = sprigs of Impish Mint -Pocket = 2 +Pocket = Medicine Price = 20 BPPrice = 50 FieldUse = OnPokemon @@ -3842,7 +1622,7 @@ Name = Lax Mint NamePlural = Lax Mints PortionName = sprig of Lax Mint PortionNamePlural = sprigs of Lax Mint -Pocket = 2 +Pocket = Medicine Price = 20 BPPrice = 50 FieldUse = OnPokemon @@ -3854,7 +1634,7 @@ Name = Relaxed Mint NamePlural = Relaxed Mints PortionName = sprig of Relaxed Mint PortionNamePlural = sprigs of Relaxed Mint -Pocket = 2 +Pocket = Medicine Price = 20 BPPrice = 50 FieldUse = OnPokemon @@ -3866,7 +1646,7 @@ Name = Modest Mint NamePlural = Modest Mints PortionName = sprig of Modest Mint PortionNamePlural = sprigs of Modest Mint -Pocket = 2 +Pocket = Medicine Price = 20 BPPrice = 50 FieldUse = OnPokemon @@ -3878,7 +1658,7 @@ Name = Mild Mint NamePlural = Mild Mints PortionName = sprig of Mild Mint PortionNamePlural = sprigs of Mild Mint -Pocket = 2 +Pocket = Medicine Price = 20 BPPrice = 50 FieldUse = OnPokemon @@ -3890,7 +1670,7 @@ Name = Rash Mint NamePlural = Rash Mints PortionName = sprig of Rash Mint PortionNamePlural = sprigs of Rash Mint -Pocket = 2 +Pocket = Medicine Price = 20 BPPrice = 50 FieldUse = OnPokemon @@ -3902,7 +1682,7 @@ Name = Quiet Mint NamePlural = Quiet Mints PortionName = sprig of Quiet Mint PortionNamePlural = sprigs of Quiet Mint -Pocket = 2 +Pocket = Medicine Price = 20 BPPrice = 50 FieldUse = OnPokemon @@ -3914,7 +1694,7 @@ Name = Calm Mint NamePlural = Calm Mints PortionName = sprig of Calm Mint PortionNamePlural = sprigs of Calm Mint -Pocket = 2 +Pocket = Medicine Price = 20 BPPrice = 50 FieldUse = OnPokemon @@ -3926,7 +1706,7 @@ Name = Gentle Mint NamePlural = Gentle Mints PortionName = sprig of Gentle Mint PortionNamePlural = sprigs of Gentle Mint -Pocket = 2 +Pocket = Medicine Price = 20 BPPrice = 50 FieldUse = OnPokemon @@ -3938,7 +1718,7 @@ Name = Careful Mint NamePlural = Careful Mints PortionName = sprig of Careful Mint PortionNamePlural = sprigs of Careful Mint -Pocket = 2 +Pocket = Medicine Price = 20 BPPrice = 50 FieldUse = OnPokemon @@ -3950,7 +1730,7 @@ Name = Sassy Mint NamePlural = Sassy Mints PortionName = sprig of Sassy Mint PortionNamePlural = sprigs of Sassy Mint -Pocket = 2 +Pocket = Medicine Price = 20 BPPrice = 50 FieldUse = OnPokemon @@ -3962,7 +1742,7 @@ Name = Timid Mint NamePlural = Timid Mints PortionName = sprig of Timid Mint PortionNamePlural = sprigs of Timid Mint -Pocket = 2 +Pocket = Medicine Price = 20 BPPrice = 50 FieldUse = OnPokemon @@ -3974,7 +1754,7 @@ Name = Hasty Mint NamePlural = Hasty Mints PortionName = sprig of Hasty Mint PortionNamePlural = sprigs of Hasty Mint -Pocket = 2 +Pocket = Medicine Price = 20 BPPrice = 50 FieldUse = OnPokemon @@ -3986,7 +1766,7 @@ Name = Jolly Mint NamePlural = Jolly Mints PortionName = sprig of Jolly Mint PortionNamePlural = sprigs of Jolly Mint -Pocket = 2 +Pocket = Medicine Price = 20 BPPrice = 50 FieldUse = OnPokemon @@ -3998,7 +1778,7 @@ Name = Naive Mint NamePlural = Naive Mints PortionName = sprig of Naive Mint PortionNamePlural = sprigs of Naive Mint -Pocket = 2 +Pocket = Medicine Price = 20 BPPrice = 50 FieldUse = OnPokemon @@ -4010,7 +1790,7 @@ Name = Serious Mint NamePlural = Serious Mints PortionName = sprig of Serious Mint PortionNamePlural = sprigs of Serious Mint -Pocket = 2 +Pocket = Medicine Price = 20 BPPrice = 50 FieldUse = OnPokemon @@ -4020,7 +1800,7 @@ Description = When a Pokémon smells this mint, all of its stats will grow at an [ABILITYCAPSULE] Name = Ability Capsule NamePlural = Ability Capsule -Pocket = 2 +Pocket = Medicine Price = 10000 BPPrice = 50 FieldUse = OnPokemon @@ -4029,7 +1809,7 @@ Description = A capsule that allows a Pokémon with two Abilities to switch betw [ABILITYPATCH] Name = Ability Patch NamePlural = Ability Patches -Pocket = 2 +Pocket = Medicine Price = 10000 BPPrice = 200 FieldUse = OnPokemon @@ -4038,7 +1818,7 @@ Description = A patch that allows a Pokémon with a regular Ability to have a ra [EXPCANDYXS] Name = Exp. Candy XS NamePlural = Exp. Candy XSs -Pocket = 2 +Pocket = Medicine Price = 20 FieldUse = OnPokemon Flags = Fling_30 @@ -4047,7 +1827,7 @@ Description = A candy packed with energy. When consumed, it will grant a Pokémo [EXPCANDYS] Name = Exp. Candy S NamePlural = Exp. Candy Ss -Pocket = 2 +Pocket = Medicine Price = 240 FieldUse = OnPokemon Flags = Fling_30 @@ -4056,7 +1836,7 @@ Description = A candy packed with energy. When consumed, it will grant a Pokémo [EXPCANDYM] Name = Exp. Candy M NamePlural = Exp. Candy Ms -Pocket = 2 +Pocket = Medicine Price = 1000 FieldUse = OnPokemon Flags = Fling_30 @@ -4065,7 +1845,7 @@ Description = A candy packed with energy. When consumed, it will grant a Pokémo [EXPCANDYL] Name = Exp. Candy L NamePlural = Exp. Candy Ls -Pocket = 2 +Pocket = Medicine Price = 3000 FieldUse = OnPokemon Flags = Fling_30 @@ -4074,7 +1854,7 @@ Description = A candy packed with energy. When consumed, it will grant a Pokémo [EXPCANDYXL] Name = Exp. Candy XL NamePlural = Exp. Candy XLs -Pocket = 2 +Pocket = Medicine Price = 10000 FieldUse = OnPokemon Flags = Fling_30 @@ -4083,7 +1863,7 @@ Description = A candy packed with energy. When consumed, it will grant a Pokémo [RARECANDY] Name = Rare Candy NamePlural = Rare Candies -Pocket = 2 +Pocket = Medicine Price = 10000 BPPrice = 20 FieldUse = OnPokemon @@ -4093,7 +1873,7 @@ Description = A candy that is packed with energy. It raises the level of a singl [MASTERBALL] Name = Master Ball NamePlural = Master Balls -Pocket = 3 +Pocket = PokeBalls Price = 0 BattleUse = OnFoe Flags = PokeBall @@ -4102,7 +1882,7 @@ Description = The best Ball with the ultimate level of performance. It will catc [ULTRABALL] Name = Ultra Ball NamePlural = Ultra Balls -Pocket = 3 +Pocket = PokeBalls Price = 800 BattleUse = OnFoe Flags = PokeBall @@ -4111,7 +1891,7 @@ Description = An ultra-performance Ball that provides a higher Pokémon catch ra [GREATBALL] Name = Great Ball NamePlural = Great Balls -Pocket = 3 +Pocket = PokeBalls Price = 600 BattleUse = OnFoe Flags = PokeBall @@ -4120,7 +1900,7 @@ Description = A good, high-performance Ball that provides a higher Pokémon catc [POKEBALL] Name = Poké Ball NamePlural = Poké Balls -Pocket = 3 +Pocket = PokeBalls Price = 200 BattleUse = OnFoe Flags = PokeBall @@ -4129,7 +1909,7 @@ Description = A device for catching wild Pokémon. It is thrown like a ball at t [SAFARIBALL] Name = Safari Ball NamePlural = Safari Balls -Pocket = 3 +Pocket = PokeBalls Price = 0 BattleUse = OnFoe Flags = PokeBall @@ -4138,7 +1918,7 @@ Description = A special Poké Ball that is used only in the Safari Zone. It is d [SPORTBALL] Name = Sport Ball NamePlural = Sport Balls -Pocket = 3 +Pocket = PokeBalls Price = 300 BattleUse = OnFoe Flags = PokeBall @@ -4147,7 +1927,7 @@ Description = A special Poké Ball for the Bug-Catching Contest. [NETBALL] Name = Net Ball NamePlural = Net Balls -Pocket = 3 +Pocket = PokeBalls Price = 1000 BattleUse = OnFoe Flags = PokeBall @@ -4156,7 +1936,7 @@ Description = A somewhat different Poké Ball that works especially well on Wate [DIVEBALL] Name = Dive Ball NamePlural = Dive Balls -Pocket = 3 +Pocket = PokeBalls Price = 1000 BattleUse = OnFoe Flags = PokeBall @@ -4165,7 +1945,7 @@ Description = A somewhat different Poké Ball that works especially well on Pok [NESTBALL] Name = Nest Ball NamePlural = Nest Balls -Pocket = 3 +Pocket = PokeBalls Price = 1000 BattleUse = OnFoe Flags = PokeBall @@ -4174,7 +1954,7 @@ Description = A somewhat different Poké Ball that works especially well on weak [REPEATBALL] Name = Repeat Ball NamePlural = Repeat Balls -Pocket = 3 +Pocket = PokeBalls Price = 1000 BattleUse = OnFoe Flags = PokeBall @@ -4183,7 +1963,7 @@ Description = A somewhat different Poké Ball that works especially well on Pok [TIMERBALL] Name = Timer Ball NamePlural = Timer Balls -Pocket = 3 +Pocket = PokeBalls Price = 1000 BattleUse = OnFoe Flags = PokeBall @@ -4192,7 +1972,7 @@ Description = A somewhat different Ball that becomes progressively better the mo [LUXURYBALL] Name = Luxury Ball NamePlural = Luxury Balls -Pocket = 3 +Pocket = PokeBalls Price = 3000 BattleUse = OnFoe Flags = PokeBall @@ -4201,7 +1981,7 @@ Description = A comfortable Poké Ball that makes a caught wild Pokémon quickly [PREMIERBALL] Name = Premier Ball NamePlural = Premier Balls -Pocket = 3 +Pocket = PokeBalls Price = 200 SellPrice = 10 BattleUse = OnFoe @@ -4211,7 +1991,7 @@ Description = A somewhat rare Poké Ball that has been specially made to commemo [DUSKBALL] Name = Dusk Ball NamePlural = Dusk Balls -Pocket = 3 +Pocket = PokeBalls Price = 1000 BattleUse = OnFoe Flags = PokeBall @@ -4220,7 +2000,7 @@ Description = A somewhat different Poké Ball that makes it easier to catch wild [HEALBALL] Name = Heal Ball NamePlural = Heal Balls -Pocket = 3 +Pocket = PokeBalls Price = 300 BattleUse = OnFoe Flags = PokeBall @@ -4229,7 +2009,7 @@ Description = A remedial Poké Ball that restores the caught Pokémon's HP and e [QUICKBALL] Name = Quick Ball NamePlural = Quick Balls -Pocket = 3 +Pocket = PokeBalls Price = 1000 BattleUse = OnFoe Flags = PokeBall @@ -4238,7 +2018,7 @@ Description = A somewhat different Poké Ball that provides a better catch rate [CHERISHBALL] Name = Cherish Ball NamePlural = Cherish Balls -Pocket = 3 +Pocket = PokeBalls Price = 0 BattleUse = OnFoe Flags = PokeBall @@ -4247,7 +2027,7 @@ Description = A quite rare Poké Ball that has been specially crafted to commemo [FASTBALL] Name = Fast Ball NamePlural = Fast Balls -Pocket = 3 +Pocket = PokeBalls Price = 300 BattleUse = OnFoe Flags = PokeBall @@ -4256,7 +2036,7 @@ Description = A Poké Ball that makes it easier to catch fast Pokémon. [LEVELBALL] Name = Level Ball NamePlural = Level Balls -Pocket = 3 +Pocket = PokeBalls Price = 300 BattleUse = OnFoe Flags = PokeBall @@ -4265,7 +2045,7 @@ Description = A Poké Ball for catching Pokémon that are a lower level than you [LUREBALL] Name = Lure Ball NamePlural = Lure Balls -Pocket = 3 +Pocket = PokeBalls Price = 300 BattleUse = OnFoe Flags = PokeBall @@ -4274,7 +2054,7 @@ Description = A Poké Ball for catching Pokémon hooked by a Rod when fishing. [HEAVYBALL] Name = Heavy Ball NamePlural = Heavy Balls -Pocket = 3 +Pocket = PokeBalls Price = 300 BattleUse = OnFoe Flags = PokeBall @@ -4283,7 +2063,7 @@ Description = A Poké Ball for catching very heavy Pokémon. [LOVEBALL] Name = Love Ball NamePlural = Love Balls -Pocket = 3 +Pocket = PokeBalls Price = 300 BattleUse = OnFoe Flags = PokeBall @@ -4292,7 +2072,7 @@ Description = A Poké Ball for catching Pokémon that are the opposite gender of [FRIENDBALL] Name = Friend Ball NamePlural = Friend Balls -Pocket = 3 +Pocket = PokeBalls Price = 300 BattleUse = OnFoe Flags = PokeBall @@ -4301,7 +2081,7 @@ Description = A Poké Ball that makes caught Pokémon more friendly. [MOONBALL] Name = Moon Ball NamePlural = Moon Balls -Pocket = 3 +Pocket = PokeBalls Price = 300 BattleUse = OnFoe Flags = PokeBall @@ -4310,7 +2090,7 @@ Description = A Poké Ball for catching Pokémon that evolve using the Moon Ston [DREAMBALL] Name = Dream Ball NamePlural = Dream Balls -Pocket = 3 +Pocket = PokeBalls Price = 300 BattleUse = OnFoe Flags = PokeBall @@ -4319,1170 +2099,16 @@ Description = A somewhat different Poké Ball that makes it easier to catch wild [BEASTBALL] Name = Beast Ball NamePlural = Beast Balls -Pocket = 3 +Pocket = PokeBalls Price = 1000 BattleUse = OnFoe Flags = PokeBall Description = A special Poké Ball designed to catch Ultra Beasts. It has a low success rate for catching others. #------------------------------- -[TM01] -Name = TM01 -NamePlural = TM01s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_150 -Move = FOCUSPUNCH -Description = The user focuses its mind before launching a punch. This move fails if the user is hit before it is used. -#------------------------------- -[TM02] -Name = TM02 -NamePlural = TM02s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_80 -Move = DRAGONCLAW -Description = The user slashes the target with huge sharp claws. -#------------------------------- -[TM03] -Name = TM03 -NamePlural = TM03s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_60 -Move = WATERPULSE -Description = The user attacks the target with a pulsing blast of water. This may also confuse the target. -#------------------------------- -[TM04] -Name = TM04 -NamePlural = TM04s -Pocket = 4 -Price = 1500 -BPPrice = 48 -FieldUse = TR -Flags = Fling_10 -Move = CALMMIND -Description = The user quietly focuses its mind and calms its spirit to raise its Sp. Atk and Sp. Def stats. -#------------------------------- -[TM05] -Name = TM05 -NamePlural = TM05s -Pocket = 4 -Price = 1000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_10 -Move = ROAR -Description = The target is scared off, and a different Pokémon is dragged out. In the wild, this ends the battle. -#------------------------------- -[TM06] -Name = TM06 -NamePlural = TM06s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_10 -Move = TOXIC -Description = A move that leaves the target badly poisoned. Its poison damage worsens every turn. -#------------------------------- -[TM07] -Name = TM07 -NamePlural = TM07s -Pocket = 4 -Price = 2000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_10 -Move = HAIL -Description = The user summons a hailstorm lasting five turns. It damages all Pokémon except Ice types. -#------------------------------- -[TM08] -Name = TM08 -NamePlural = TM08s -Pocket = 4 -Price = 1500 -BPPrice = 48 -FieldUse = TR -Flags = Fling_10 -Move = BULKUP -Description = The user tenses its muscles to bulk up its body, raising both its Attack and Defense stats. -#------------------------------- -[TM09] -Name = TM09 -NamePlural = TM09s -Pocket = 4 -Price = 2000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_25 -Move = BULLETSEED -Description = The user forcefully shoots seeds at the target two to five times in a row. -#------------------------------- -[TM10] -Name = TM10 -NamePlural = TM10s -Pocket = 4 -Price = 1500 -BPPrice = 32 -FieldUse = TR -Flags = Fling_10 -Move = WORKUP -Description = The user is roused, and its Attack and Sp. Atk stats increase. -#------------------------------- -[TM11] -Name = TM11 -NamePlural = TM11s -Pocket = 4 -Price = 2000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_10 -Move = SUNNYDAY -Description = The user intensifies the sun for five turns, powering up Fire-type moves and weakening Water-type moves. -#------------------------------- -[TM12] -Name = TM12 -NamePlural = TM12s -Pocket = 4 -Price = 1500 -BPPrice = 32 -FieldUse = TR -Flags = Fling_10 -Move = TAUNT -Description = The target is taunted into a rage that allows it to use only attack moves for three turns. -#------------------------------- -[TM13] -Name = TM13 -NamePlural = TM13s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_90 -Move = ICEBEAM -Description = The target is struck with an icy-cold beam of energy. This may also leave the target frozen. -#------------------------------- -[TM14] -Name = TM14 -NamePlural = TM14s -Pocket = 4 -Price = 5500 -BPPrice = 32 -FieldUse = TR -Flags = Fling_110 -Move = BLIZZARD -Description = A howling blizzard is summoned to strike opposing Pokémon. This may also leave them frozen. -#------------------------------- -[TM15] -Name = TM15 -NamePlural = TM15s -Pocket = 4 -Price = 7500 -BPPrice = 32 -FieldUse = TR -Flags = Fling_150 -Move = HYPERBEAM -Description = The target is attacked with a powerful beam. The user can't move on the next turn. -#------------------------------- -[TM16] -Name = TM16 -NamePlural = TM16s -Pocket = 4 -Price = 2000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_10 -Move = LIGHTSCREEN -Description = A wondrous wall of light is put up to reduce damage from special attacks for five turns. -#------------------------------- -[TM17] -Name = TM17 -NamePlural = TM17s -Pocket = 4 -Price = 2000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_10 -Move = PROTECT -Description = The user protects itself from all attacks. Its chance of failing rises if it is used in succession. -#------------------------------- -[TM18] -Name = TM18 -NamePlural = TM18s -Pocket = 4 -Price = 2000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_10 -Move = RAINDANCE -Description = The user summons a heavy rain for five turns, powering up Water-type moves and weakening Fire-type ones. -#------------------------------- -[TM19] -Name = TM19 -NamePlural = TM19s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_75 -Move = GIGADRAIN -Description = A nutrient-draining attack. The user's HP is restored by half the damage taken by the target. -#------------------------------- -[TM20] -Name = TM20 -NamePlural = TM20s -Pocket = 4 -Price = 2000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_10 -Move = SAFEGUARD -Description = The user creates a protective field that prevents status conditions for five turns. -#------------------------------- -[TM21] -Name = TM21 -NamePlural = TM21s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_80 -Move = DAZZLINGGLEAM -Description = The user damages opposing Pokémon by emitting a powerful flash. -#------------------------------- -[TM22] -Name = TM22 -NamePlural = TM22s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_120 -Move = SOLARBEAM -Description = In this two-turn attack, the user gathers light, then blasts a bundled beam on the next turn. -#------------------------------- -[TM23] -Name = TM23 -NamePlural = TM23s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_100 -Move = IRONTAIL -Description = The target is slammed with a steel-hard tail. This may also lower the target's Defense stat. -#------------------------------- -[TM24] -Name = TM24 -NamePlural = TM24s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_90 -Move = THUNDERBOLT -Description = A strong electric blast crashes down on the target. This may also leave the target with paralysis. -#------------------------------- -[TM25] -Name = TM25 -NamePlural = TM25s -Pocket = 4 -Price = 5500 -BPPrice = 32 -FieldUse = TR -Flags = Fling_110 -Move = THUNDER -Description = A wicked thunderbolt is dropped on the target to inflict damage. This may also leave them with paralysis. -#------------------------------- -[TM26] -Name = TM26 -NamePlural = TM26s -Pocket = 4 -Price = 3000 -BPPrice = 80 -FieldUse = TR -Flags = Fling_100 -Move = EARTHQUAKE -Description = The user sets off an earthquake that strikes every Pokémon around it. -#------------------------------- -[TM27] -Name = TM27 -NamePlural = TM27s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_65 -Move = LOWSWEEP -Description = The user makes a swift attack on the target's legs, which lowers the target's Speed stat. -#------------------------------- -[TM28] -Name = TM28 -NamePlural = TM28s -Pocket = 4 -Price = 2000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_80 -Move = DIG -Description = The user burrows into the ground, then attacks on the next turn. It can also be used to exit dungeons. -#------------------------------- -[TM29] -Name = TM29 -NamePlural = TM29s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_90 -Move = PSYCHIC -Description = The target is hit by a strong telekinetic force. This may also lower the target's Sp. Def stat. -#------------------------------- -[TM30] -Name = TM30 -NamePlural = TM30s -Pocket = 4 -Price = 3000 -BPPrice = 64 -FieldUse = TR -Flags = Fling_80 -Move = SHADOWBALL -Description = The user hurls a shadowy blob at the target. This may also lower the target's Sp. Def stat. -#------------------------------- -[TM31] -Name = TM31 -NamePlural = TM31s -Pocket = 4 -Price = 3000 -BPPrice = 40 -FieldUse = TR -Flags = Fling_75 -Move = BRICKBREAK -Description = The user attacks with a swift chop. It can also break barriers, such as Light Screen and Reflect. -#------------------------------- -[TM32] -Name = TM32 -NamePlural = TM32s -Pocket = 4 -Price = 1000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_10 -Move = DOUBLETEAM -Description = By moving rapidly, the user makes illusory copies of itself to raise its evasiveness. -#------------------------------- -[TM33] -Name = TM33 -NamePlural = TM33s -Pocket = 4 -Price = 2000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_10 -Move = REFLECT -Description = A wondrous wall of light is put up to reduce damage from physical attacks for five turns. -#------------------------------- -[TM34] -Name = TM34 -NamePlural = TM34s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_60 -Move = SHOCKWAVE -Description = The user strikes the target with a quick jolt of electricity. This attack never misses. -#------------------------------- -[TM35] -Name = TM35 -NamePlural = TM35s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_90 -Move = FLAMETHROWER -Description = The target is scorched with an intense blast of fire. This may also leave the target with a burn. -#------------------------------- -[TM36] -Name = TM36 -NamePlural = TM36s -Pocket = 4 -Price = 3000 -BPPrice = 80 -FieldUse = TR -Flags = Fling_90 -Move = SLUDGEBOMB -Description = Unsanitary sludge is hurled at the target. This may also poison the target. -#------------------------------- -[TM37] -Name = TM37 -NamePlural = TM37s -Pocket = 4 -Price = 2000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_10 -Move = SANDSTORM -Description = A five-turn sandstorm is summoned to hurt all combatants except Rock, Ground, and Steel types. -#------------------------------- -[TM38] -Name = TM38 -NamePlural = TM38s -Pocket = 4 -Price = 5500 -BPPrice = 32 -FieldUse = TR -Flags = Fling_110 -Move = FIREBLAST -Description = The target is attacked with an intense blast of all-consuming fire. This may also leave them with a burn. -#------------------------------- -[TM39] -Name = TM39 -NamePlural = TM39s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_60 -Move = ROCKTOMB -Description = Boulders are hurled at the target. This also lowers the target's Speed stat by preventing its movement. -#------------------------------- -[TM40] -Name = TM40 -NamePlural = TM40s -Pocket = 4 -Price = 3000 -BPPrice = 40 -FieldUse = TR -Flags = Fling_60 -Move = AERIALACE -Description = The user confounds the target with speed, then slashes. This attack never misses. -#------------------------------- -[TM41] -Name = TM41 -NamePlural = TM41s -Pocket = 4 -Price = 1500 -BPPrice = 32 -FieldUse = TR -Flags = Fling_10 -Move = TORMENT -Description = The user torments and enrages the target, making it incapable of using the same move twice in a row. -#------------------------------- -[TM42] -Name = TM42 -NamePlural = TM42s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_70 -Move = FACADE -Description = This attack move doubles its power if the user is poisoned, burned, or paralyzed. -#------------------------------- -[TM43] -Name = TM43 -NamePlural = TM43s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_70 -Move = VOLTSWITCH -Description = After making its attack, the user rushes back to switch places with a party Pokémon in waiting. -#------------------------------- -[TM44] -Name = TM44 -NamePlural = TM44s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_10 -Move = REST -Description = The user goes to sleep for two turns. This fully restores the user's HP and heals any status conditions. -#------------------------------- -[TM45] -Name = TM45 -NamePlural = TM45s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_10 -Move = ATTRACT -Description = If it is the opposite gender of the user, the target becomes infatuated and less likely to attack. -#------------------------------- -[TM46] -Name = TM46 -NamePlural = TM46s -Pocket = 4 -Price = 2000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_60 -Move = THIEF -Description = The user attacks and steals the target's held item simultaneously. -#------------------------------- -[TM47] -Name = TM47 -NamePlural = TM47s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_70 -Move = STEELWING -Description = The target is hit with wings of steel. This may also raise the user's Defense stat. -#------------------------------- -[TM48] -Name = TM48 -NamePlural = TM48s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_10 -Move = SKILLSWAP -Description = The user employs its psychic power to exchange Abilities with the target. -#------------------------------- -[TM49] -Name = TM49 -NamePlural = TM49s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_80 -Move = SCALD -Description = The user shoots boiling hot water at its target. This may also leave the target with a burn. -#------------------------------- -[TM50] -Name = TM50 -NamePlural = TM50s -Pocket = 4 -Price = 5500 -BPPrice = 32 -FieldUse = TR -Flags = Fling_130 -Move = OVERHEAT -Description = The user attacks the target at full power. The attack's recoil harshly lowers the user's Sp. Atk stat. -#------------------------------- -[TM51] -Name = TM51 -NamePlural = TM51s -Pocket = 4 -Price = 2000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_10 -Move = ROOST -Description = The user lands and rests its body. This move restores the user's HP by up to half of its max HP. -#------------------------------- -[TM52] -Name = TM52 -NamePlural = TM52s -Pocket = 4 -Price = 5500 -BPPrice = 32 -FieldUse = TR -Flags = Fling_120 -Move = FOCUSBLAST -Description = The user heightens its mental focus and unleashes its power. This may also lower the target's Sp. Def stat. -#------------------------------- -[TM53] -Name = TM53 -NamePlural = TM53s -Pocket = 4 -Price = 3000 -BPPrice = 64 -FieldUse = TR -Flags = Fling_90 -Move = ENERGYBALL -Description = The user draws power from nature and fires it at the target. This may also lower the target's Sp. Def stat. -#------------------------------- -[TM54] -Name = TM54 -NamePlural = TM54s -Pocket = 4 -Price = 2000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_40 -Move = FALSESWIPE -Description = A restrained attack that prevents the target from fainting. The target is left with at least 1 HP. -#------------------------------- -[TM55] -Name = TM55 -NamePlural = TM55s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_65 -Move = BRINE -Description = If the target's HP is half or less, this attack will hit with double the power. -#------------------------------- -[TM56] -Name = TM56 -NamePlural = TM56s -Pocket = 4 -Price = 2000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_10 -Move = FLING -Description = The user flings its held item at the target to attack. This move's power and effects depend on the item. -#------------------------------- -[TM57] -Name = TM57 -NamePlural = TM57s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_50 -Move = CHARGEBEAM -Description = The user attacks the target with an electric charge. The user may use any remaining charge to raise its Sp. Atk. -#------------------------------- -[TM58] -Name = TM58 -NamePlural = TM58s -Pocket = 4 -Price = 2000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_10 -Move = ENDURE -Description = The user endures any attack with at least 1 HP. Its chance of failing rises if it is used in succession. -#------------------------------- -[TM59] -Name = TM59 -NamePlural = TM59s -Pocket = 4 -Price = 3000 -BPPrice = 80 -FieldUse = TR -Flags = Fling_85 -Move = DRAGONPULSE -Description = The target is attacked with a shock wave generated by the user's gaping mouth. -#------------------------------- -[TM60] -Name = TM60 -NamePlural = TM60s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_75 -Move = DRAINPUNCH -Description = An energy-draining punch. The user's HP is restored by half the damage taken by the target. -#------------------------------- -[TM61] -Name = TM61 -NamePlural = TM61s -Pocket = 4 -Price = 2000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_10 -Move = WILLOWISP -Description = The user shoots a sinister flame at the target to inflict a burn. -#------------------------------- -[TM62] -Name = TM62 -NamePlural = TM62s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_90 -Move = BUGBUZZ -Description = The user generates a damaging sound wave by vibration. This may also lower the target's Sp. Def stat. -#------------------------------- -[TM63] -Name = TM63 -NamePlural = TM63s -Pocket = 4 -Price = 2000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_10 -Move = NASTYPLOT -Description = The user stimulates its brain by thinking bad thoughts. This sharply raises the user's Sp. Atk stat. -#------------------------------- -[TM64] -Name = TM64 -NamePlural = TM64s -Pocket = 4 -Price = 7500 -BPPrice = 32 -FieldUse = TR -Flags = Fling_250 -Move = EXPLOSION -Description = The user attacks everything around it by causing a tremendous explosion. The user faints upon using this move. -#------------------------------- -[TM65] -Name = TM65 -NamePlural = TM65s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_70 -Move = SHADOWCLAW -Description = The user slashes with a sharp claw made from shadows. Critical hits land more easily. -#------------------------------- -[TM66] -Name = TM66 -NamePlural = TM66s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_50 -Move = PAYBACK -Description = The user stores power, then attacks. If the user moves after the target, this attack's power will be doubled. -#------------------------------- -[TM67] -Name = TM67 -NamePlural = TM67s -Pocket = 4 -Price = 1000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_10 -Move = RECYCLE -Description = The user recycles a held item that has been used in battle so it can be used again. -#------------------------------- -[TM68] -Name = TM68 -NamePlural = TM68s -Pocket = 4 -Price = 7500 -BPPrice = 32 -FieldUse = TR -Flags = Fling_150 -Move = GIGAIMPACT -Description = The user charges at the target using every bit of its power. The user can't move on the next turn. -#------------------------------- -[TM69] -Name = TM69 -NamePlural = TM69s -Pocket = 4 -Price = 1500 -BPPrice = 32 -FieldUse = TR -Flags = Fling_10 -Move = ROCKPOLISH -Description = The user polishes its body to reduce drag. This sharply raises the Speed stat. -#------------------------------- -[TM70] -Name = TM70 -NamePlural = TM70s -Pocket = 4 -Price = 1000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_10 -Move = FLASH -Description = The user flashes a light that lowers the target's accuracy. It can also be used to illuminate caves. -#------------------------------- -[TM71] -Name = TM71 -NamePlural = TM71s -Pocket = 4 -Price = 3000 -BPPrice = 80 -FieldUse = TR -Flags = Fling_100 -Move = STONEEDGE -Description = The user stabs the target from below with sharpened stones. Critical hits land more easily. -#------------------------------- -[TM72] -Name = TM72 -NamePlural = TM72s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_60 -Move = AVALANCHE -Description = The power of this attack move is doubled if the user has been hurt by the target in the same turn. -#------------------------------- -[TM73] -Name = TM73 -NamePlural = TM73s -Pocket = 4 -Price = 2000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_10 -Move = THUNDERWAVE -Description = The user launches a weak jolt of electricity that paralyzes the target. -#------------------------------- -[TM74] -Name = TM74 -NamePlural = TM74s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_10 -Move = GYROBALL -Description = The user tackles with a high-speed spin. This move is stronger the slower the user is than the target. -#------------------------------- -[TM75] -Name = TM75 -NamePlural = TM75s -Pocket = 4 -Price = 1500 -BPPrice = 32 -FieldUse = TR -Flags = Fling_10 -Move = SWORDSDANCE -Description = A frenetic dance to uplift the fighting spirit. This sharply raises the user's Attack stat. -#------------------------------- -[TM76] -Name = TM76 -NamePlural = TM76s -Pocket = 4 -Price = 2000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_10 -Move = STEALTHROCK -Description = The user lays a trap of levitating stones around the opposing team that hurt Pokémon that switch in. -#------------------------------- -[TM77] -Name = TM77 -NamePlural = TM77s -Pocket = 4 -Price = 1500 -BPPrice = 32 -FieldUse = TR -Flags = Fling_10 -Move = PSYCHUP -Description = The user hypnotizes itself into copying any stat change made by the target. -#------------------------------- -[TM78] -Name = TM78 -NamePlural = TM78s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_55 -Move = SNARL -Description = The user yells as if it's ranting about something, which lowers the Sp. Atk stats of opposing Pokémon. -#------------------------------- -[TM79] -Name = TM79 -NamePlural = TM79s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_80 -Move = DARKPULSE -Description = The user releases a horrible aura imbued with dark thoughts. This may also make the target flinch. -#------------------------------- -[TM80] -Name = TM80 -NamePlural = TM80s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_75 -Move = ROCKSLIDE -Description = Large boulders are hurled at opposing Pokémon to inflict damage. This may also make them flinch. -#------------------------------- -[TM81] -Name = TM81 -NamePlural = TM81s -Pocket = 4 -Price = 3000 -BPPrice = 64 -FieldUse = TR -Flags = Fling_80 -Move = XSCISSOR -Description = The user slashes at the target by crossing its scythes or claws as if they were a pair of scissors. -#------------------------------- -[TM82] -Name = TM82 -NamePlural = TM82s -Pocket = 4 -Price = 1000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_10 -Move = SLEEPTALK -Description = While it is asleep, the user randomly uses one of the moves it knows. -#------------------------------- -[TM83] -Name = TM83 -NamePlural = TM83s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_60 -Move = BULLDOZE -Description = The user strikes everything around it by stomping down on the ground. This lowers the Speed of those hit. -#------------------------------- -[TM84] -Name = TM84 -NamePlural = TM84s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_80 -Move = POISONJAB -Description = The target is stabbed with a tentacle, arm, or the like steeped in poison. This may also poison them. -#------------------------------- -[TM85] -Name = TM85 -NamePlural = TM85s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_100 -Move = DREAMEATER -Description = The user eats the dreams of a sleeping target. The user's HP is restored by half the damage dealt. -#------------------------------- -[TM86] -Name = TM86 -NamePlural = TM86s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_10 -Move = GRASSKNOT -Description = The user snares the target with grass and trips it. The heavier the target, the strong the move is. -#------------------------------- -[TM87] -Name = TM87 -NamePlural = TM87s -Pocket = 4 -Price = 1500 -BPPrice = 32 -FieldUse = TR -Flags = Fling_10 -Move = SWAGGER -Description = The user enrages and confuses the target. However, this also sharply raises the target's Attack stat. -#------------------------------- -[TM88] -Name = TM88 -NamePlural = TM88s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_60 -Move = PLUCK -Description = The user pecks the target. If the target is holding a Berry, the user eats it and gains its effect. -#------------------------------- -[TM89] -Name = TM89 -NamePlural = TM89s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_70 -Move = UTURN -Description = After making its attack, the user rushes back to switch places with a party Pokémon in waiting. -#------------------------------- -[TM90] -Name = TM90 -NamePlural = TM90s -Pocket = 4 -Price = 2000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_10 -Move = SUBSTITUTE -Description = The user creates a substitute for itself using some of its HP. The substitute serves as a decoy. -#------------------------------- -[TM91] -Name = TM91 -NamePlural = TM91s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_80 -Move = FLASHCANNON -Description = The user gathers all its light energy and releases it all at once. This may also lower the target's Sp. Def stat. -#------------------------------- -[TM92] -Name = TM92 -NamePlural = TM92s -Pocket = 4 -Price = 5500 -BPPrice = 32 -FieldUse = TR -Flags = Fling_10 -Move = TRICKROOM -Description = The user creates a bizarre area in which slower Pokémon get to move first for five turns. -#------------------------------- -[TM93] -Name = TM93 -NamePlural = TM93s -Pocket = 4 -Price = 2000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_50 -Move = CUT -Description = The target is cut with a scythe or claw. -#------------------------------- -[TM94] -Name = TM94 -NamePlural = TM94s -Pocket = 4 -Price = 2000 -BPPrice = 40 -FieldUse = TR -Flags = Fling_90 -Move = FLY -Description = The user flies up into the sky and then strikes its target on the next turn. -#------------------------------- -[TM95] -Name = TM95 -NamePlural = TM95s -Pocket = 4 -Price = 2500 -BPPrice = 64 -FieldUse = TR -Flags = Fling_90 -Move = SURF -Description = The user attacks everything around it by swamping its surroundings with a giant wave. -#------------------------------- -[TM96] -Name = TM96 -NamePlural = TM96s -Pocket = 4 -Price = 2000 -BPPrice = 40 -FieldUse = TR -Flags = Fling_80 -Move = STRENGTH -Description = The target is slugged with a punch thrown at maximum power. -#------------------------------- -[TM97] -Name = TM97 -NamePlural = TM97s -Pocket = 4 -Price = 2000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_10 -Move = DEFOG -Description = A strong wind blows away the target's barriers, such as Reflect, and lowers their evasiveness. -#------------------------------- -[TM98] -Name = TM98 -NamePlural = TM98s -Pocket = 4 -Price = 2000 -BPPrice = 40 -FieldUse = TR -Flags = Fling_40 -Move = ROCKSMASH -Description = The user attacks with a punch that may lower the target's Defense stat. -#------------------------------- -[TM99] -Name = TM99 -NamePlural = TM99s -Pocket = 4 -Price = 2500 -BPPrice = 64 -FieldUse = TR -Flags = Fling_80 -Move = WATERFALL -Description = The user charges at the target and may make it flinch. -#------------------------------- -[TM100] -Name = TM100 -NamePlural = TM100s -Pocket = 4 -Price = 2000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_90 -Move = ROCKCLIMB -Description = A charging attack that may also leave the foe confused. -#------------------------------- -[HM01] -Name = HM01 -NamePlural = HM01s -Pocket = 4 -Price = 0 -FieldUse = HM -Move = CUT -Description = The target is cut with a scythe or claw. This can also be used to cut down thin trees. -#------------------------------- -[HM02] -Name = HM02 -NamePlural = HM02s -Pocket = 4 -Price = 0 -FieldUse = HM -Move = FLY -Description = The user soars and then strikes on the next turn. This can also be used to fly to any familiar town. -#------------------------------- -[HM03] -Name = HM03 -NamePlural = HM03s -Pocket = 4 -Price = 0 -FieldUse = HM -Move = SURF -Description = Attacks everything by swamping the surroundings with a giant wave. This can also be used to cross water. -#------------------------------- -[HM04] -Name = HM04 -NamePlural = HM04s -Pocket = 4 -Price = 0 -FieldUse = HM -Move = STRENGTH -Description = The target is slugged with a punch thrown at maximum power. This can also be used to move heavy boulders. -#------------------------------- -[HM05] -Name = HM05 -NamePlural = HM05s -Pocket = 4 -Price = 0 -FieldUse = HM -Move = WATERFALL -Description = The user charges at the target and may make it flinch. It can also be used to climb a waterfall. -#------------------------------- -[HM06] -Name = HM06 -NamePlural = HM06s -Pocket = 4 -Price = 0 -FieldUse = HM -Move = DIVE -Description = Diving on the first turn, the user floats up and attacks on the second. It can be used to dive underwater. -#------------------------------- [CHERIBERRY] Name = Cheri Berry NamePlural = Cheri Berries -Pocket = 5 +Pocket = Berries Price = 20 FieldUse = OnPokemon BattleUse = OnPokemon @@ -5492,7 +2118,7 @@ Description = It may be used or held by a Pokémon to recover from paralysis. [CHESTOBERRY] Name = Chesto Berry NamePlural = Chesto Berries -Pocket = 5 +Pocket = Berries Price = 20 FieldUse = OnPokemon BattleUse = OnPokemon @@ -5502,7 +2128,7 @@ Description = It may be used or held by a Pokémon to recover from sleep. [PECHABERRY] Name = Pecha Berry NamePlural = Pecha Berries -Pocket = 5 +Pocket = Berries Price = 20 FieldUse = OnPokemon BattleUse = OnPokemon @@ -5512,7 +2138,7 @@ Description = It may be used or held by a Pokémon to recover from poison. [RAWSTBERRY] Name = Rawst Berry NamePlural = Rawst Berries -Pocket = 5 +Pocket = Berries Price = 20 FieldUse = OnPokemon BattleUse = OnPokemon @@ -5522,7 +2148,7 @@ Description = It may be used or held by a Pokémon to recover from a burn. [ASPEARBERRY] Name = Aspear Berry NamePlural = Aspear Berries -Pocket = 5 +Pocket = Berries Price = 20 FieldUse = OnPokemon BattleUse = OnPokemon @@ -5532,7 +2158,7 @@ Description = It may be used or held by a Pokémon to defrost it. [LEPPABERRY] Name = Leppa Berry NamePlural = Leppa Berries -Pocket = 5 +Pocket = Berries Price = 20 FieldUse = OnPokemon BattleUse = OnMove @@ -5542,7 +2168,7 @@ Description = It may be used or held by a Pokémon to restore a move's PP by 10. [ORANBERRY] Name = Oran Berry NamePlural = Oran Berries -Pocket = 5 +Pocket = Berries Price = 20 FieldUse = OnPokemon BattleUse = OnPokemon @@ -5552,7 +2178,7 @@ Description = It may be used or held by a Pokémon to heal the user by just 10 H [PERSIMBERRY] Name = Persim Berry NamePlural = Persim Berries -Pocket = 5 +Pocket = Berries Price = 20 BattleUse = OnBattler Flags = Berry,Fling_10,NaturalGift_GROUND_80 @@ -5561,7 +2187,7 @@ Description = It may be used or held by a Pokémon to recover from confusion. [LUMBERRY] Name = Lum Berry NamePlural = Lum Berries -Pocket = 5 +Pocket = Berries Price = 20 FieldUse = OnPokemon BattleUse = OnPokemon @@ -5571,7 +2197,7 @@ Description = It may be used or held by a Pokémon to recover from any status pr [SITRUSBERRY] Name = Sitrus Berry NamePlural = Sitrus Berries -Pocket = 5 +Pocket = Berries Price = 20 FieldUse = OnPokemon BattleUse = OnPokemon @@ -5581,7 +2207,7 @@ Description = It may be used or held by a Pokémon to heal the user's HP a littl [FIGYBERRY] Name = Figy Berry NamePlural = Figy Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_BUG_80 Description = If held by a Pokémon, it restores the user's HP in a pinch, but will cause confusion if it hates the taste. @@ -5589,7 +2215,7 @@ Description = If held by a Pokémon, it restores the user's HP in a pinch, but w [WIKIBERRY] Name = Wiki Berry NamePlural = Wiki Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_ROCK_80 Description = If held by a Pokémon, it restores the user's HP in a pinch, but will cause confusion if it hates the taste. @@ -5597,7 +2223,7 @@ Description = If held by a Pokémon, it restores the user's HP in a pinch, but w [MAGOBERRY] Name = Mago Berry NamePlural = Mago Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_GHOST_80 Description = If held by a Pokémon, it restores the user's HP in a pinch, but will cause confusion if it hates the taste. @@ -5605,7 +2231,7 @@ Description = If held by a Pokémon, it restores the user's HP in a pinch, but w [AGUAVBERRY] Name = Aguav Berry NamePlural = Aguav Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_DRAGON_80 Description = If held by a Pokémon, it restores the user's HP in a pinch, but will cause confusion if it hates the taste. @@ -5613,7 +2239,7 @@ Description = If held by a Pokémon, it restores the user's HP in a pinch, but w [IAPAPABERRY] Name = Iapapa Berry NamePlural = Iapapa Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_DARK_80 Description = If held by a Pokémon, it restores the user's HP in a pinch, but will cause confusion if it hates the taste. @@ -5621,7 +2247,7 @@ Description = If held by a Pokémon, it restores the user's HP in a pinch, but w [RAZZBERRY] Name = Razz Berry NamePlural = Razz Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_STEEL_80 Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry. @@ -5629,7 +2255,7 @@ Description = In the Sinnoh region, they like to make sweets known as Poffins wi [BLUKBERRY] Name = Bluk Berry NamePlural = Bluk Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_FIRE_90 Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry. @@ -5637,7 +2263,7 @@ Description = In the Sinnoh region, they like to make sweets known as Poffins wi [NANABBERRY] Name = Nanab Berry NamePlural = Nanab Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_WATER_90 Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry. @@ -5645,7 +2271,7 @@ Description = In the Sinnoh region, they like to make sweets known as Poffins wi [WEPEARBERRY] Name = Wepear Berry NamePlural = Wepear Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_ELECTRIC_90 Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry. @@ -5653,7 +2279,7 @@ Description = In the Sinnoh region, they like to make sweets known as Poffins wi [PINAPBERRY] Name = Pinap Berry NamePlural = Pinap Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_GRASS_90 Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry. @@ -5661,7 +2287,7 @@ Description = In the Sinnoh region, they like to make sweets known as Poffins wi [POMEGBERRY] Name = Pomeg Berry NamePlural = Pomeg Berries -Pocket = 5 +Pocket = Berries Price = 20 FieldUse = OnPokemon Flags = Berry,Fling_10,NaturalGift_ICE_90 @@ -5670,7 +2296,7 @@ Description = Using it on a Pokémon makes it more friendly, but it also lowers [KELPSYBERRY] Name = Kelpsy Berry NamePlural = Kelpsy Berries -Pocket = 5 +Pocket = Berries Price = 20 FieldUse = OnPokemon Flags = Berry,Fling_10,NaturalGift_FIGHTING_90 @@ -5679,7 +2305,7 @@ Description = Using it on a Pokémon makes it more friendly, but it also lowers [QUALOTBERRY] Name = Qualot Berry NamePlural = Qualot Berries -Pocket = 5 +Pocket = Berries Price = 20 FieldUse = OnPokemon Flags = Berry,Fling_10,NaturalGift_POISON_90 @@ -5688,7 +2314,7 @@ Description = Using it on a Pokémon makes it more friendly, but it also lowers [HONDEWBERRY] Name = Hondew Berry NamePlural = Hondew Berries -Pocket = 5 +Pocket = Berries Price = 20 FieldUse = OnPokemon Flags = Berry,Fling_10,NaturalGift_GROUND_90 @@ -5697,7 +2323,7 @@ Description = Using it on a Pokémon makes it more friendly, but it also lowers [GREPABERRY] Name = Grepa Berry NamePlural = Grepa Berries -Pocket = 5 +Pocket = Berries Price = 20 FieldUse = OnPokemon Flags = Berry,Fling_10,NaturalGift_FLYING_90 @@ -5706,7 +2332,7 @@ Description = Using it on a Pokémon makes it more friendly, but it also lowers [TAMATOBERRY] Name = Tamato Berry NamePlural = Tamato Berries -Pocket = 5 +Pocket = Berries Price = 20 FieldUse = OnPokemon Flags = Berry,Fling_10,NaturalGift_PSYCHIC_90 @@ -5715,7 +2341,7 @@ Description = Using it on a Pokémon makes it more friendly, but it also lowers [CORNNBERRY] Name = Cornn Berry NamePlural = Cornn Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_BUG_90 Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry. @@ -5723,7 +2349,7 @@ Description = In the Sinnoh region, they like to make sweets known as Poffins wi [MAGOSTBERRY] Name = Magost Berry NamePlural = Magost Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_ROCK_90 Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry. @@ -5731,7 +2357,7 @@ Description = In the Sinnoh region, they like to make sweets known as Poffins wi [RABUTABERRY] Name = Rabuta Berry NamePlural = Rabuta Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_GHOST_90 Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry. @@ -5739,7 +2365,7 @@ Description = In the Sinnoh region, they like to make sweets known as Poffins wi [NOMELBERRY] Name = Nomel Berry NamePlural = Nomel Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_DRAGON_90 Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry. @@ -5747,7 +2373,7 @@ Description = In the Sinnoh region, they like to make sweets known as Poffins wi [SPELONBERRY] Name = Spelon Berry NamePlural = Spelon Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_DARK_90 Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry. @@ -5755,7 +2381,7 @@ Description = In the Sinnoh region, they like to make sweets known as Poffins wi [PAMTREBERRY] Name = Pamtre Berry NamePlural = Pamtre Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_STEEL_90 Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry. @@ -5763,7 +2389,7 @@ Description = In the Sinnoh region, they like to make sweets known as Poffins wi [WATMELBERRY] Name = Watmel Berry NamePlural = Watmel Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_FIRE_100 Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry. @@ -5771,7 +2397,7 @@ Description = In the Sinnoh region, they like to make sweets known as Poffins wi [DURINBERRY] Name = Durin Berry NamePlural = Durin Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_WATER_100 Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry. @@ -5779,7 +2405,7 @@ Description = In the Sinnoh region, they like to make sweets known as Poffins wi [BELUEBERRY] Name = Belue Berry NamePlural = Belue Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_ELECTRIC_100 Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry. @@ -5787,7 +2413,7 @@ Description = In the Sinnoh region, they like to make sweets known as Poffins wi [OCCABERRY] Name = Occa Berry NamePlural = Occa Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_FIRE_80 Description = Weakens a supereffective Fire-type attack against the holding Pokémon. @@ -5795,7 +2421,7 @@ Description = Weakens a supereffective Fire-type attack against the holding Pok [PASSHOBERRY] Name = Passho Berry NamePlural = Passho Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_WATER_80 Description = Weakens a supereffective Water-type attack against the holding Pokémon. @@ -5803,7 +2429,7 @@ Description = Weakens a supereffective Water-type attack against the holding Pok [WACANBERRY] Name = Wacan Berry NamePlural = Wacan Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_ELECTRIC_80 Description = Weakens a supereffective Electric-type attack against the holding Pokémon. @@ -5811,7 +2437,7 @@ Description = Weakens a supereffective Electric-type attack against the holding [RINDOBERRY] Name = Rindo Berry NamePlural = Rindo Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_GRASS_80 Description = Weakens a supereffective Grass-type attack against the holding Pokémon. @@ -5819,7 +2445,7 @@ Description = Weakens a supereffective Grass-type attack against the holding Pok [YACHEBERRY] Name = Yache Berry NamePlural = Yache Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_ICE_80 Description = Weakens a supereffective Ice-type attack against the holding Pokémon. @@ -5827,7 +2453,7 @@ Description = Weakens a supereffective Ice-type attack against the holding Poké [CHOPLEBERRY] Name = Chople Berry NamePlural = Chople Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_FIGHTING_80 Description = Weakens a supereffective Fighting-type attack against the holding Pokémon. @@ -5835,7 +2461,7 @@ Description = Weakens a supereffective Fighting-type attack against the holding [KEBIABERRY] Name = Kebia Berry NamePlural = Kebia Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_POISON_80 Description = Weakens a supereffective Poison-type attack against the holding Pokémon. @@ -5843,7 +2469,7 @@ Description = Weakens a supereffective Poison-type attack against the holding Po [SHUCABERRY] Name = Shuca Berry NamePlural = Shuca Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_GROUND_80 Description = Weakens a supereffective Ground-type attack against the holding Pokémon. @@ -5851,7 +2477,7 @@ Description = Weakens a supereffective Ground-type attack against the holding Po [COBABERRY] Name = Coba Berry NamePlural = Coba Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_FLYING_80 Description = Weakens a supereffective Flying-type attack against the holding Pokémon. @@ -5859,7 +2485,7 @@ Description = Weakens a supereffective Flying-type attack against the holding Po [PAYAPABERRY] Name = Payapa Berry NamePlural = Payapa Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_PSYCHIC_80 Description = Weakens a supereffective Psychic-type attack against the holding Pokémon. @@ -5867,7 +2493,7 @@ Description = Weakens a supereffective Psychic-type attack against the holding P [TANGABERRY] Name = Tanga Berry NamePlural = Tanga Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_BUG_80 Description = Weakens a supereffective Bug-type attack against the holding Pokémon. @@ -5875,7 +2501,7 @@ Description = Weakens a supereffective Bug-type attack against the holding Poké [CHARTIBERRY] Name = Charti Berry NamePlural = Charti Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_ROCK_80 Description = Weakens a supereffective Rock-type attack against the holding Pokémon. @@ -5883,7 +2509,7 @@ Description = Weakens a supereffective Rock-type attack against the holding Pok [KASIBBERRY] Name = Kasib Berry NamePlural = Kasib Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_GHOST_80 Description = Weakens a supereffective Ghost-type attack against the holding Pokémon. @@ -5891,7 +2517,7 @@ Description = Weakens a supereffective Ghost-type attack against the holding Pok [HABANBERRY] Name = Haban Berry NamePlural = Haban Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_DRAGON_80 Description = Weakens a supereffective Dragon-type attack against the holding Pokémon. @@ -5899,7 +2525,7 @@ Description = Weakens a supereffective Dragon-type attack against the holding Po [COLBURBERRY] Name = Colbur Berry NamePlural = Colbur Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_DARK_80 Description = Weakens a supereffective Dark-type attack against the holding Pokémon. @@ -5907,7 +2533,7 @@ Description = Weakens a supereffective Dark-type attack against the holding Pok [BABIRIBERRY] Name = Babiri Berry NamePlural = Babiri Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_STEEL_80 Description = Weakens a supereffective Steel-type attack against the holding Pokémon. @@ -5915,7 +2541,7 @@ Description = Weakens a supereffective Steel-type attack against the holding Pok [ROSELIBERRY] Name = Roseli Berry NamePlural = Roseli Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_FAIRY_80 Description = If held by a Pokémon, this Berry will lessen the damage taken from one supereffective Fairy-type attack. @@ -5923,7 +2549,7 @@ Description = If held by a Pokémon, this Berry will lessen the damage taken fro [CHILANBERRY] Name = Chilan Berry NamePlural = Chilan Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_NORMAL_80 Description = Weakens a Normal-type attack against the Pokémon holding this berry. @@ -5931,7 +2557,7 @@ Description = Weakens a Normal-type attack against the Pokémon holding this ber [LIECHIBERRY] Name = Liechi Berry NamePlural = Liechi Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_GRASS_100 Description = If held by a Pokémon, it raises its Attack stat in a pinch. @@ -5939,7 +2565,7 @@ Description = If held by a Pokémon, it raises its Attack stat in a pinch. [GANLONBERRY] Name = Ganlon Berry NamePlural = Ganlon Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_ICE_100 Description = If held by a Pokémon, it raises its Defense stat in a pinch. @@ -5947,7 +2573,7 @@ Description = If held by a Pokémon, it raises its Defense stat in a pinch. [SALACBERRY] Name = Salac Berry NamePlural = Salac Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_FIGHTING_100 Description = If held by a Pokémon, it raises its Speed stat in a pinch. @@ -5955,7 +2581,7 @@ Description = If held by a Pokémon, it raises its Speed stat in a pinch. [PETAYABERRY] Name = Petaya Berry NamePlural = Petaya Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_POISON_100 Description = If held by a Pokémon, it raises its Sp. Atk stat in a pinch. @@ -5963,7 +2589,7 @@ Description = If held by a Pokémon, it raises its Sp. Atk stat in a pinch. [APICOTBERRY] Name = Apicot Berry NamePlural = Apicot Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_GROUND_100 Description = If held by a Pokémon, it raises its Sp. Def stat in a pinch. @@ -5971,7 +2597,7 @@ Description = If held by a Pokémon, it raises its Sp. Def stat in a pinch. [LANSATBERRY] Name = Lansat Berry NamePlural = Lansat Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_FLYING_100 Description = If held by a Pokémon, it raises its critical-hit ratio in a pinch. @@ -5979,7 +2605,7 @@ Description = If held by a Pokémon, it raises its critical-hit ratio in a pinch [STARFBERRY] Name = Starf Berry NamePlural = Starf Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_PSYCHIC_100 Description = If held by a Pokémon, it sharply raises one of its stats in a pinch. @@ -5987,7 +2613,7 @@ Description = If held by a Pokémon, it sharply raises one of its stats in a pin [ENIGMABERRY] Name = Enigma Berry NamePlural = Enigma Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_BUG_100 Description = If held by a Pokémon, it restores its HP if it is hit by any supereffective attack. @@ -5995,7 +2621,7 @@ Description = If held by a Pokémon, it restores its HP if it is hit by any supe [MICLEBERRY] Name = Micle Berry NamePlural = Micle Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_ROCK_100 Description = If held by a Pokémon, it raises the accuracy of a move just once in a pinch. @@ -6003,7 +2629,7 @@ Description = If held by a Pokémon, it raises the accuracy of a move just once [CUSTAPBERRY] Name = Custap Berry NamePlural = Custap Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_GHOST_100 Description = If held by a Pokémon, it gets to move first just once in a pinch. @@ -6011,7 +2637,7 @@ Description = If held by a Pokémon, it gets to move first just once in a pinch. [JABOCABERRY] Name = Jaboca Berry NamePlural = Jaboca Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_DRAGON_100 Description = If held by a Pokémon and a physical attack lands, the attacker also takes damage. @@ -6019,7 +2645,7 @@ Description = If held by a Pokémon and a physical attack lands, the attacker al [ROWAPBERRY] Name = Rowap Berry NamePlural = Rowap Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_DARK_100 Description = If held by a Pokémon and a special attack lands, the attacker also takes damage. @@ -6027,7 +2653,7 @@ Description = If held by a Pokémon and a special attack lands, the attacker als [KEEBERRY] Name = Kee Berry NamePlural = Kee Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_FAIRY_100 Description = If held by a Pokémon, this Berry will increase the holder's Defense if it's hit with a physical move. @@ -6035,135 +2661,2355 @@ Description = If held by a Pokémon, this Berry will increase the holder's Defen [MARANGABERRY] Name = Maranga Berry NamePlural = Maranga Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_DARK_100 Description = If held by a Pokémon, this Berry will increase the holder's Sp. Def if it's hit with a special move. #------------------------------- -[GRASSMAIL] -Name = Grass Mail -NamePlural = Grass Mail -PortionName = piece of Grass Mail -PortionNamePlural = pieces of Grass Mail -Pocket = 6 -Price = 50 -Flags = IconMail -Description = Stationery featuring a print of a refreshingly green field. Let a Pokémon hold it for delivery. +[AIRBALLOON] +Name = Air Balloon +NamePlural = Air Balloons +Pocket = HeldItems +Price = 3000 +SellPrice = 2000 +BPPrice = 15 +Flags = Fling_10 +Description = An item to be held by a Pokémon. The holder will float in the air until hit. Once hit, this item will burst. #------------------------------- -[FLAMEMAIL] -Name = Flame Mail -NamePlural = Flame Mail -PortionName = piece of Flame Mail -PortionNamePlural = pieces of Flame Mail -Pocket = 6 -Price = 50 -Flags = IconMail -Description = Stationery featuring a print of flames in blazing red. Let a Pokémon hold it for delivery. +[BRIGHTPOWDER] +Name = Bright Powder +NamePlural = Bright Powders +PortionName = bag of Bright Powder +PortionNamePlural = bags of Bright Powder +Pocket = HeldItems +Price = 3000 +SellPrice = 2000 +BPPrice = 48 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It casts a tricky glare that lowers the opponent's accuracy. #------------------------------- -[BUBBLEMAIL] -Name = Bubble Mail -NamePlural = Bubble Mail -PortionName = piece of Bubble Mail -PortionNamePlural = pieces of Bubble Mail -Pocket = 6 -Price = 50 -Flags = IconMail -Description = Stationery featuring a print of a blue world underwater. Let a Pokémon hold it for delivery. +[EVIOLITE] +Name = Eviolite +NamePlural = Eviolites +Pocket = HeldItems +Price = 3000 +SellPrice = 2000 +BPPrice = 25 +Flags = Fling_40 +Description = A mysterious evolutionary lump. When held, it raises the Defense and Sp. Def if the holder can still evolve. #------------------------------- -[BLOOMMAIL] -Name = Bloom Mail -NamePlural = Bloom Mail -PortionName = piece of Bloom Mail -PortionNamePlural = pieces of Bloom Mail -Pocket = 6 -Price = 50 -Flags = IconMail -Description = Stationery featuring a print of pretty floral patterns. Let a Pokémon hold it for delivery. +[FLOATSTONE] +Name = Float Stone +NamePlural = Float Stones +Pocket = HeldItems +Price = 3000 +SellPrice = 2000 +BPPrice = 10 +Flags = Fling_30 +Description = A very light stone. It reduces the weight of a Pokémon when held. #------------------------------- -[TUNNELMAIL] -Name = Tunnel Mail -NamePlural = Tunnel Mail -PortionName = piece of Tunnel Mail -PortionNamePlural = pieces of Tunnel Mail -Pocket = 6 -Price = 50 -Flags = IconMail -Description = Stationery featuring a print of a dimly lit coal mine. Let a Pokémon hold it for delivery. +[DESTINYKNOT] +Name = Destiny Knot +NamePlural = Destiny Knots +Pocket = HeldItems +Price = 3000 +SellPrice = 2000 +BPPrice = 10 +Flags = Fling_10 +Description = A long, thin, bright-red string to be held by a Pokémon. If the holder becomes infatuated, so does the foe. #------------------------------- -[STEELMAIL] -Name = Steel Mail -NamePlural = Steel Mail -PortionName = piece of Steel Mail -PortionNamePlural = pieces of Steel Mail -Pocket = 6 -Price = 50 -Flags = IconMail -Description = Stationery featuring a print of cool mechanical designs. Let a Pokémon hold it for delivery. +[ROCKYHELMET] +Name = Rocky Helmet +NamePlural = Rocky Helmets +Pocket = HeldItems +Price = 3000 +SellPrice = 2000 +BPPrice = 25 +Flags = Fling_60 +Description = If the holder of this item takes damage, the attacker will also be damaged upon contact. #------------------------------- -[HEARTMAIL] -Name = Heart Mail -NamePlural = Heart Mail -PortionName = piece of Heart Mail -PortionNamePlural = pieces of Heart Mail -Pocket = 6 -Price = 50 -Flags = IconMail -Description = Stationery featuring a print of giant heart patterns. Let a Pokémon hold it for delivery. +[ASSAULTVEST] +Name = Assault Vest +NamePlural = Assault Vests +Pocket = HeldItems +Price = 1000 +BPPrice = 25 +Flags = Fling_80 +Description = An item to be held by a Pokémon. This offensive vest raises Sp. Def but prevents the use of status moves. #------------------------------- -[SNOWMAIL] -Name = Snow Mail -NamePlural = Snow Mail -PortionName = piece of Snow Mail -PortionNamePlural = pieces of Snow Mail -Pocket = 6 -Price = 50 -Flags = IconMail -Description = Stationery featuring a print of a chilly, snow-covered world. Let a Pokémon hold it for delivery. +[SAFETYGOGGLES] +Name = Safety Goggles +NamePlural = Safety Goggles +PortionName = pair of Safety Goggles +PortionNamePlural = pairs of Safety Goggles +Pocket = HeldItems +Price = 3000 +SellPrice = 2000 +BPPrice = 25 +Flags = Fling_80 +Description = An item to be held by a Pokémon. They protect the holder from weather-related damage and powder. #------------------------------- -[SPACEMAIL] -Name = Space Mail -NamePlural = Space Mail -PortionName = piece of Space Mail -PortionNamePlural = pieces of Space Mail -Pocket = 6 -Price = 50 -Flags = IconMail -Description = Stationery featuring a print depicting the huge expanse of space. Let a Pokémon hold it for delivery. +[PROTECTIVEPADS] +Name = Protective Pads +NamePlural = Protective Pads +PortionName = set of Protective Pads +PortionNamePlural = sets of Protective Pads +Pocket = HeldItems +Price = 3000 +SellPrice = 2000 +BPPrice = 25 +Flags = Fling_30 +Description = An item to be held by a Pokémon. They protect the holder from effects caused by making contact. #------------------------------- -[AIRMAIL] -Name = Air Mail -NamePlural = Air Mail -PortionName = piece of Air Mail -PortionNamePlural = pieces of Air Mail -Pocket = 6 -Price = 50 -Flags = IconMail -Description = Stationery featuring a print of colorful letter sets. Let a Pokémon hold it for delivery. +[HEAVYDUTYBOOTS] +Name = Heavy-Duty Boots +NamePlural = Heavy-Duty Boots +PortionName = pair of Heavy-Duty Boots +PortionNamePlural = pairs of Heavy-Duty Boots +Pocket = HeldItems +Price = 3000 +SellPrice = 2000 +BPPrice = 25 +Flags = Fling_80 +Description = These boots prevent the effects of traps set on the battlefield. #------------------------------- -[MOSAICMAIL] -Name = Mosaic Mail -NamePlural = Mosaic Mail -PortionName = piece of Mosaic Mail -PortionNamePlural = pieces of Mosaic Mail -Pocket = 6 -Price = 50 -Flags = IconMail -Description = Stationery featuring a print of a vivid rainbow pattern. Let a Pokémon hold it for delivery. +[UTILITYUMBRELLA] +Name = Utility Umbrella +NamePlural = Utility Umbrellas +Pocket = HeldItems +Price = 3000 +SellPrice = 2000 +BPPrice = 25 +Flags = Fling_60 +Description = An item to be held by a Pokémon. This sturdy umbrella protects the holder from the effects of rain and sun. #------------------------------- -[BRICKMAIL] -Name = Brick Mail -NamePlural = Brick Mail -PortionName = piece of Brick Mail -PortionNamePlural = pieces of Brick Mail -Pocket = 6 -Price = 50 -Flags = IconMail -Description = Stationery featuring a print of a tough-looking brick pattern. Let a Pokémon hold it for delivery. +[ABILITYSHIELD] +Name = Ability Shield +NamePlural = Ability Shields +Pocket = HeldItems +Price = 20000 +Flags = Fling_30 +Description = An item to be held by a Pokémon. This cute shield protects the holder from having its Ability changed by others. +#------------------------------- +[CLEARAMULET] +Name = Clear Amulet +NamePlural = Clear Amulets +Pocket = HeldItems +Price = 30000 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It protects the holder from having its stats lowered by other Pokémon. +#------------------------------- +[COVERTCLOAK] +Name = Covert Cloak +NamePlural = Covert Cloaks +Pocket = HeldItems +Price = 20000 +SellPrice = 5000 +Flags = Fling_30 +Description = An item to be held by a Pokémon. This hooded cloak protects the holder from moves' additional effects. +#------------------------------- +[EJECTBUTTON] +Name = Eject Button +NamePlural = Eject Buttons +Pocket = HeldItems +Price = 3000 +SellPrice = 2000 +BPPrice = 20 +Flags = Fling_30 +Description = If the holder is hit by an attack, it will switch with another Pokémon in your party. +#------------------------------- +[EJECTPACK] +Name = Eject Pack +NamePlural = Eject Packs +Pocket = HeldItems +Price = 3000 +SellPrice = 2000 +BPPrice = 20 +Flags = Fling_50 +Description = An item to be held by a Pokémon. When the holder's stats are lowered, it will be switched out of battle. +#------------------------------- +[REDCARD] +Name = Red Card +NamePlural = Red Cards +Pocket = HeldItems +Price = 3000 +SellPrice = 2000 +BPPrice = 20 +Flags = Fling_10 +Description = A card with a mysterious power. When the holder is struck by a foe, the attacker is removed from battle. +#------------------------------- +[SHEDSHELL] +Name = Shed Shell +NamePlural = Shed Shells +Pocket = HeldItems +Price = 3000 +SellPrice = 2000 +Flags = Fling_10 +Description = An item to be held by a Pokémon. This discarded carapace lets the holder switch out of battle without fail. +#------------------------------- +[SMOKEBALL] +Name = Smoke Ball +NamePlural = Smoke Balls +Pocket = HeldItems +Price = 3000 +SellPrice = 2000 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It enables the holder to flee from any wild Pokémon without fail. +#------------------------------- +[LUCKYEGG] +Name = Lucky Egg +NamePlural = Lucky Eggs +Pocket = HeldItems +Price = 10000 +BPPrice = 77 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It is an egg filled with happiness that earns extra Exp. Points in battle. +#------------------------------- +[EXPSHARE] +Name = Exp. Share +NamePlural = Exp. Shares +Pocket = HeldItems +Price = 3000 +Flags = Fling_30 +Description = An item to be held by a Pokémon. The holder gets a share of a battle's Exp. Points without battling. +#------------------------------- +[AMULETCOIN] +Name = Amulet Coin +NamePlural = Amulet Coins +Pocket = HeldItems +Price = 10000 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It doubles a battle's prize money if the holding Pokémon joins in. +#------------------------------- +[SOOTHEBELL] +Name = Soothe Bell +NamePlural = Soothe Bells +Pocket = HeldItems +Price = 4000 +BPPrice = 15 +Flags = Fling_10 +Description = An item to be held by a Pokémon. The comforting chime of this bell calms the holder, making it friendly. +#------------------------------- +[CLEANSETAG] +Name = Cleanse Tag +NamePlural = Cleanse Tags +Pocket = HeldItems +Price = 5000 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It helps keep wild Pokémon away if the holder is the first one in the party. +#------------------------------- +[CHOICEBAND] +Name = Choice Band +NamePlural = Choice Bands +Pocket = HeldItems +Price = 4000 +BPPrice = 25 +Flags = Fling_10 +Description = An item to be held by a Pokémon. This headband ups Attack, but allows the use of only one move. +#------------------------------- +[CHOICESPECS] +Name = Choice Specs +NamePlural = Choice Specs +PortionName = pair of Choice Specs +PortionNamePlural = pairs of Choice Specs +Pocket = HeldItems +Price = 4000 +BPPrice = 25 +Flags = Fling_10 +Description = An item to be held by a Pokémon. These curious glasses boost Sp. Atk but allows the use of only one move. +#------------------------------- +[CHOICESCARF] +Name = Choice Scarf +NamePlural = Choice Scarves +Pocket = HeldItems +Price = 4000 +BPPrice = 25 +Flags = Fling_10 +Description = An item to be held by a Pokémon. This scarf boosts Speed but allows the use of only one move. +#------------------------------- +[HEATROCK] +Name = Heat Rock +NamePlural = Heat Rocks +Pocket = HeldItems +Price = 4000 +BPPrice = 15 +Flags = Fling_60 +Description = A Pokémon held item that extends the duration of the move Sunny Day used by the holder. +#------------------------------- +[DAMPROCK] +Name = Damp Rock +NamePlural = Damp Rocks +Pocket = HeldItems +Price = 4000 +BPPrice = 15 +Flags = Fling_60 +Description = A Pokémon held item that extends the duration of the move Rain Dance used by the holder. +#------------------------------- +[SMOOTHROCK] +Name = Smooth Rock +NamePlural = Smooth Rocks +Pocket = HeldItems +Price = 4000 +BPPrice = 15 +Flags = Fling_10 +Description = A Pokémon held item that extends the duration of the move Sandstorm used by the holder. +#------------------------------- +[ICYROCK] +Name = Icy Rock +NamePlural = Icy Rocks +Pocket = HeldItems +Price = 4000 +BPPrice = 15 +Flags = Fling_40 +Description = A Pokémon held item that extends the duration of the move Hail used by the holder. +#------------------------------- +[TERRAINEXTENDER] +Name = Terrain Extender +NamePlural = Terrain Extenders +Pocket = HeldItems +Price = 4000 +BPPrice = 15 +Flags = Fling_60 +Description = An item to be held by a Pokémon. It extends the duration of the terrain caused by the holder. +#------------------------------- +[LIGHTCLAY] +Name = Light Clay +NamePlural = Light Clays +PortionName = lump of Light Clay +PortionNamePlural = lumps of Light Clay +Pocket = HeldItems +Price = 4000 +BPPrice = 15 +Flags = Fling_30 +Description = An item to be held by a Pokémon. Protective moves like Light Screen and Reflect will be effective longer. +#------------------------------- +[GRIPCLAW] +Name = Grip Claw +NamePlural = Grip Claws +Pocket = HeldItems +Price = 4000 +BPPrice = 15 +Flags = Fling_90 +Description = A Pokémon held item that extends the duration of multiturn attacks like Bind and Wrap. +#------------------------------- +[LOADEDDICE] +Name = Loaded Dice +NamePlural = Loaded Dice +PortionName = set of Loaded Dice +PortionNamePlural = sets of Loaded Dice +Pocket = HeldItems +Price = 20000 +SellPrice = 5000 +Flags = Fling_30 +Description = An item to be held by a Pokémon. This dice ensures that the holder's multistrike moves hit more times. +#------------------------------- +[BINDINGBAND] +Name = Binding Band +NamePlural = Binding Bands +Pocket = HeldItems +Price = 3000 +SellPrice = 2000 +BPPrice = 15 +Flags = Fling_30 +Description = A band that increases the power of binding moves when held. +#------------------------------- +[BIGROOT] +Name = Big Root +NamePlural = Big Roots +Pocket = HeldItems +Price = 4000 +BPPrice = 15 +Flags = Fling_10 +Description = A Pokémon held item that boosts the power of HP-stealing moves to let the holder recover more HP. +#------------------------------- +[BLACKSLUDGE] +Name = Black Sludge +NamePlural = Black Sludges +PortionName = blob of Black Sludge +PortionNamePlural = blobs of Black Sludge +Pocket = HeldItems +Price = 3000 +SellPrice = 2000 +BPPrice = 25 +Flags = Fling_30 +Description = A held item that gradually restores the HP of Poison-type Pokémon. It inflicts damage on all other types. +#------------------------------- +[LEFTOVERS] +Name = Leftovers +NamePlural = Leftovers +PortionName = serving of Leftovers +PortionNamePlural = servings of Leftovers +Pocket = HeldItems +Price = 4000 +BPPrice = 25 +Flags = Fling_10 +Description = An item to be held by a Pokémon. The holder's HP is gradually restored during battle. +#------------------------------- +[SHELLBELL] +Name = Shell Bell +NamePlural = Shell Bells +Pocket = HeldItems +Price = 4000 +BPPrice = 25 +Flags = Fling_30 +Description = An item to be held by a Pokémon. The holder's HP is restored a little every time it inflicts damage. +#------------------------------- +[MENTALHERB] +Name = Mental Herb +NamePlural = Mental Herbs +Pocket = HeldItems +Price = 4000 +BPPrice = 15 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It snaps the holder out of infatuation. It can be used only once. +#------------------------------- +[WHITEHERB] +Name = White Herb +NamePlural = White Herbs +Pocket = HeldItems +Price = 4000 +BPPrice = 15 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It restores any lowered stat in battle. It can be used only once. +#------------------------------- +[POWERHERB] +Name = Power Herb +NamePlural = Power Herbs +Pocket = HeldItems +Price = 4000 +BPPrice = 15 +Flags = Fling_10 +Description = A single-use item to be held by a Pokémon. It allows the immediate use of a move that charges up first. +#------------------------------- +[MIRRORHERB] +Name = Mirror Herb +NamePlural = Mirror Herbs +Pocket = HeldItems +Price = 30000 +SellPrice = 7500 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It allows the holder to copy an opponent's stat increases once. +#------------------------------- +[ABSORBBULB] +Name = Absorb Bulb +NamePlural = Absorb Bulbs +Pocket = HeldItems +Price = 4000 +BPPrice = 10 +Flags = Fling_30 +Description = A consumable bulb. If the holder is hit by a Water-type move, its Sp. Atk will rise. +#------------------------------- +[CELLBATTERY] +Name = Cell Battery +NamePlural = Cell Batteries +Pocket = HeldItems +Price = 4000 +BPPrice = 10 +Flags = Fling_30 +Description = A consumable battery. If the holder is hit by an Electric-type move, its Attack will rise. +#------------------------------- +[LUMINOUSMOSS] +Name = Luminous Moss +NamePlural = Luminous Moss +PortionName = clump of Luminous Moss +PortionNamePlural = clumps of Luminous Moss +Pocket = HeldItems +Price = 4000 +BPPrice = 10 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It boosts Sp. Def if hit by a Water-type attack. It can only be used once. +#------------------------------- +[SNOWBALL] +Name = Snowball +NamePlural = Snowballs +Pocket = HeldItems +Price = 4000 +BPPrice = 10 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It boosts Attack if hit by an Ice-type attack. It can only be used once. +#------------------------------- +[WEAKNESSPOLICY] +Name = Weakness Policy +NamePlural = Weakness Policies +Pocket = HeldItems +Price = 1000 +BPPrice = 20 +Flags = Fling_80 +Description = An item to be held by a Pokémon. The holder's Attack and Sp. Atk sharply increase if hit by a move it's weak to. +#------------------------------- +[BLUNDERPOLICY] +Name = Blunder Policy +NamePlural = Blunder Policies +Pocket = HeldItems +Price = 4000 +BPPrice = 20 +Flags = Fling_80 +Description = Raises Speed sharply when a Pokémon misses with a move because of accuracy. +#------------------------------- +[THROATSPRAY] +Name = Throat Spray +NamePlural = Throat Sprays +PortionName = bottle of Throat Spray +PortionNamePlural = bottles of Throat Spray +Pocket = HeldItems +Price = 4000 +BPPrice = 10 +Flags = Fling_30 +Description = Raises Sp. Atk when a Pokémon uses a sound-based move. +#------------------------------- +[ADRENALINEORB] +Name = Adrenaline Orb +NamePlural = Adrenaline Orbs +Pocket = HeldItems +Price = 300 +BPPrice = 10 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It boosts Speed when intimidated. It can be used only once. +#------------------------------- +[BOOSTERENERGY] +Name = Booster Energy +NamePlural = Booster Energies +PortionName = capsule of Booster Energy +PortionNamePlural = capsules of Booster Energy +Pocket = HeldItems +Price = 0 +Flags = Fling_30 +Description = An item to be held by Pokémon with certain Abilities. Its energy boosts the strength of the Pokémon. +#------------------------------- +[ROOMSERVICE] +Name = Room Service +NamePlural = Room Services +PortionName = voucher for Room Service +PortionNamePlural = vouchers for Room Service +Pocket = HeldItems +Price = 4000 +BPPrice = 15 +Flags = Fling_100 +Description = An item to be held by a Pokémon. Lowers Speed when Trick Room takes effect. +#------------------------------- +[ELECTRICSEED] +Name = Electric Seed +NamePlural = Electric Seeds +Pocket = HeldItems +Price = 3000 +SellPrice = 2000 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It boosts Defense on Electric Terrain. It can only be used once. +#------------------------------- +[GRASSYSEED] +Name = Grassy Seed +NamePlural = Grassy Seeds +Pocket = HeldItems +Price = 3000 +SellPrice = 2000 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It boosts Defense on Grassy Terrain. It can only be used once. +#------------------------------- +[MISTYSEED] +Name = Misty Seed +NamePlural = Misty Seeds +Pocket = HeldItems +Price = 3000 +SellPrice = 2000 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It boosts Sp. Def on Misty Terrain. It can only be used once. +#------------------------------- +[PSYCHICSEED] +Name = Psychic Seed +NamePlural = Psychic Seeds +Pocket = HeldItems +Price = 3000 +SellPrice = 2000 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It boosts Sp. Def on Psychic Terrain. It can only be used once. +#------------------------------- +[LIFEORB] +Name = Life Orb +NamePlural = Life Orbs +Pocket = HeldItems +Price = 4000 +BPPrice = 25 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It boosts the power of moves, but at the cost of some HP on each hit. +#------------------------------- +[EXPERTBELT] +Name = Expert Belt +NamePlural = Expert Belts +Pocket = HeldItems +Price = 4000 +BPPrice = 25 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It is a well-worn belt that slightly boosts the power of supereffective moves. +#------------------------------- +[METRONOME] +Name = Metronome +NamePlural = Metronomes +Pocket = HeldItems +Price = 3000 +SellPrice = 2000 +BPPrice = 25 +Flags = Fling_30 +Description = A Pokémon held item that boosts a move used consecutively. Its effect is reset if another move is used. +#------------------------------- +[PUNCHINGGLOVE] +Name = Punching Glove +NamePlural = Punching Gloves +Pocket = HeldItems +Price = 15000 +SellPrice = 3750 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It powers up the holder's punching moves and prevents direct contact. +#------------------------------- +[MUSCLEBAND] +Name = Muscle Band +NamePlural = Muscle Bands +Pocket = HeldItems +Price = 4000 +BPPrice = 48 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It is a headband that slightly boosts the power of physical moves. +#------------------------------- +[WISEGLASSES] +Name = Wise Glasses +NamePlural = Wise Glasses +PortionName = pair of Wise Glasses +PortionNamePlural = pairs of Wise Glasses +Pocket = HeldItems +Price = 4000 +BPPrice = 48 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It is a thick pair of glasses that slightly boosts the power of special moves. +#------------------------------- +[RAZORCLAW] +Name = Razor Claw +NamePlural = Razor Claws +Pocket = HeldItems +Price = 3000 +SellPrice = 2500 +BPPrice = 5 +Flags = Fling_80 +Description = An item to be held by a Pokémon. It is a sharply hooked claw that ups the holder's critical-hit ratio. +#------------------------------- +[SCOPELENS] +Name = Scope Lens +NamePlural = Scope Lenses +Pocket = HeldItems +Price = 4000 +BPPrice = 48 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It is a lens that boosts the holder's critical-hit ratio. +#------------------------------- +[WIDELENS] +Name = Wide Lens +NamePlural = Wide Lenses +Pocket = HeldItems +Price = 4000 +BPPrice = 48 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It is a magnifying lens that slightly boosts the accuracy of moves. +#------------------------------- +[ZOOMLENS] +Name = Zoom Lens +NamePlural = Zoom Lenses +Pocket = HeldItems +Price = 4000 +BPPrice = 48 +Flags = Fling_10 +Description = An item to be held by a Pokémon. If the holder moves after its target, its accuracy will be boosted. +#------------------------------- +[KINGSROCK] +Name = King's Rock +NamePlural = King's Rocks +Pocket = HeldItems +Price = 5000 +BPPrice = 5 +Flags = Fling_30 +Description = An item to be held by a Pokémon. When the holder inflicts damage, the target may flinch. +#------------------------------- +[RAZORFANG] +Name = Razor Fang +NamePlural = Razor Fangs +Pocket = HeldItems +Price = 5000 +BPPrice = 5 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It may make foes and allies flinch when the holder inflicts damage. +#------------------------------- +[LAGGINGTAIL] +Name = Lagging Tail +NamePlural = Lagging Tails +Pocket = HeldItems +Price = 4000 +BPPrice = 25 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It is tremendously heavy and makes the holder move slower than usual. +#------------------------------- +[QUICKCLAW] +Name = Quick Claw +NamePlural = Quick Claws +Pocket = HeldItems +Price = 3000 +SellPrice = 2000 +BPPrice = 25 +Flags = Fling_80 +Description = An item to be held by a Pokémon. A light, sharp claw that lets the bearer move first occasionally. +#------------------------------- +[FOCUSBAND] +Name = Focus Band +NamePlural = Focus Bands +Pocket = HeldItems +Price = 3000 +SellPrice = 2000 +BPPrice = 48 +Flags = Fling_10 +Description = An item to be held by a Pokémon. The holder may endure a potential KO attack, leaving it with just 1 HP. +#------------------------------- +[FOCUSSASH] +Name = Focus Sash +NamePlural = Focus Sashes +Pocket = HeldItems +Price = 3000 +SellPrice = 2000 +BPPrice = 15 +Flags = Fling_10 +Description = An item to be held by a Pokémon. If it has full HP, the holder will endure one potential KO attack, leaving 1 HP. +#------------------------------- +[FLAMEORB] +Name = Flame Orb +NamePlural = Flame Orbs +Pocket = HeldItems +Price = 4000 +BPPrice = 16 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It is a bizarre orb that inflicts a burn on the holder in battle. +#------------------------------- +[TOXICORB] +Name = Toxic Orb +NamePlural = Toxic Orbs +Pocket = HeldItems +Price = 4000 +BPPrice = 16 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It is a bizarre orb that badly poisons the holder in battle. +#------------------------------- +[STICKYBARB] +Name = Sticky Barb +NamePlural = Sticky Barbs +Pocket = HeldItems +Price = 4000 +BPPrice = 16 +Flags = Fling_80 +Description = A held item that damages the holder on every turn. It may latch on to Pokémon that touch the holder. +#------------------------------- +[IRONBALL] +Name = Iron Ball +NamePlural = Iron Balls +Pocket = HeldItems +Price = 4000 +BPPrice = 10 +Flags = Fling_130 +Description = A Pokémon held item that cuts Speed. It makes Flying-type and levitating holders susceptible to Ground moves. +#------------------------------- +[RINGTARGET] +Name = Ring Target +NamePlural = Ring Targets +Pocket = HeldItems +Price = 3000 +SellPrice = 2000 +BPPrice = 10 +Flags = Fling_10 +Description = Moves that would otherwise have no effect will land on the Pokémon that holds it. +#------------------------------- +[MACHOBRACE] +Name = Macho Brace +NamePlural = Macho Braces +Pocket = HeldItems +Price = 3000 +BPPrice = 10 +Flags = Fling_60 +Description = An item to be held by a Pokémon. It is a stiff, heavy brace that promotes strong growth but lowers Speed. +#------------------------------- +[POWERWEIGHT] +Name = Power Weight +NamePlural = Power Weights +Pocket = HeldItems +Price = 3000 +BPPrice = 10 +Flags = Fling_70 +Description = A Pokémon held item that promotes HP gain on leveling, but reduces the Speed stat. +#------------------------------- +[POWERBRACER] +Name = Power Bracer +NamePlural = Power Bracers +Pocket = HeldItems +Price = 3000 +BPPrice = 10 +Flags = Fling_70 +Description = A Pokémon held item that promotes Attack gain on leveling, but reduces the Speed stat. +#------------------------------- +[POWERBELT] +Name = Power Belt +NamePlural = Power Belts +Pocket = HeldItems +Price = 3000 +BPPrice = 10 +Flags = Fling_70 +Description = A Pokémon held item that promotes Defense gain on leveling, but reduces the Speed stat. +#------------------------------- +[POWERLENS] +Name = Power Lens +NamePlural = Power Lenses +Pocket = HeldItems +Price = 3000 +BPPrice = 10 +Flags = Fling_70 +Description = A Pokémon held item that promotes Sp. Atk gain on leveling, but reduces the Speed stat. +#------------------------------- +[POWERBAND] +Name = Power Band +NamePlural = Power Bands +Pocket = HeldItems +Price = 3000 +BPPrice = 10 +Flags = Fling_70 +Description = A Pokémon held item that promotes Sp. Def gain on leveling, but reduces the Speed stat. +#------------------------------- +[POWERANKLET] +Name = Power Anklet +NamePlural = Power Anklets +Pocket = HeldItems +Price = 3000 +BPPrice = 10 +Flags = Fling_70 +Description = A Pokémon held item that promotes Speed gain on leveling, but reduces the Speed stat. +#------------------------------- +[LAXINCENSE] +Name = Lax Incense +NamePlural = Lax Incenses +PortionName = jar of Lax Incense +PortionNamePlural = jars of Lax Incense +Pocket = HeldItems +Price = 5000 +Flags = Fling_10 +Description = An item to be held by a Pokémon. The tricky aroma of this incense may make attacks miss the holder. +#------------------------------- +[FULLINCENSE] +Name = Full Incense +NamePlural = Full Incenses +PortionName = jar of Full Incense +PortionNamePlural = jars of Full Incense +Pocket = HeldItems +Price = 5000 +Flags = Fling_10 +Description = An item to be held by a Pokémon. This exotic-smelling incense makes the holder bloated and slow moving. +#------------------------------- +[LUCKINCENSE] +Name = Luck Incense +NamePlural = Luck Incenses +PortionName = jar of Luck Incense +PortionNamePlural = jars of Luck Incense +Pocket = HeldItems +Price = 11000 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It doubles a battle's prize money if the holding Pokémon joins in. +#------------------------------- +[PUREINCENSE] +Name = Pure Incense +NamePlural = Pure Incenses +PortionName = jar of Pure Incense +PortionNamePlural = jars of Pure Incense +Pocket = HeldItems +Price = 6000 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It helps keep wild Pokémon away if the holder is the first one in the party. +#------------------------------- +[SEAINCENSE] +Name = Sea Incense +NamePlural = Sea Incenses +PortionName = jar of Sea Incense +PortionNamePlural = jars of Sea Incense +Pocket = HeldItems +Price = 2000 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It has a curious aroma that boosts the power of Water-type moves. +#------------------------------- +[WAVEINCENSE] +Name = Wave Incense +NamePlural = Wave Incenses +PortionName = jar of Wave Incense +PortionNamePlural = jars of Wave Incense +Pocket = HeldItems +Price = 2000 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It has a curious aroma that boosts the power of Water-type moves. +#------------------------------- +[ROSEINCENSE] +Name = Rose Incense +NamePlural = Rose Incenses +PortionName = jar of Rose Incense +PortionNamePlural = jars of Rose Incense +Pocket = HeldItems +Price = 2000 +Flags = Fling_10 +Description = An item to be held by a Pokémon. This exotic-smelling incense boosts the power of Grass-type moves. +#------------------------------- +[ODDINCENSE] +Name = Odd Incense +NamePlural = Odd Incenses +PortionName = jar of Odd Incense +PortionNamePlural = jars of Odd Incense +Pocket = HeldItems +Price = 2000 +Flags = Fling_10 +Description = An item to be held by a Pokémon. This exotic-smelling incense boosts the power of Psychic-type moves. +#------------------------------- +[ROCKINCENSE] +Name = Rock Incense +NamePlural = Rock Incenses +PortionName = jar of Rock Incense +PortionNamePlural = jars of Rock Incense +Pocket = HeldItems +Price = 2000 +Flags = Fling_10 +Description = An item to be held by a Pokémon. This exotic-smelling incense boosts the power of Rock-type moves. +#------------------------------- +[CHARCOAL] +Name = Charcoal +NamePlural = Charcoals +PortionName = piece of Charcoal +PortionNamePlural = pieces of Charcoal +Pocket = HeldItems +Price = 3000 +SellPrice = 500 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It is a combustible fuel that boosts the power of Fire-type moves. +#------------------------------- +[MYSTICWATER] +Name = Mystic Water +NamePlural = Mystic Waters +Pocket = HeldItems +Price = 3000 +SellPrice = 500 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It is a teardrop-shaped gem that ups the power of Water-type moves. +#------------------------------- +[MAGNET] +Name = Magnet +NamePlural = Magnets +Pocket = HeldItems +Price = 3000 +SellPrice = 500 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It is a powerful magnet that boosts the power of Electric-type moves. +#------------------------------- +[MIRACLESEED] +Name = Miracle Seed +NamePlural = Miracle Seeds +Pocket = HeldItems +Price = 3000 +SellPrice = 500 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It is a seed imbued with life that ups the power of Grass-type moves. +#------------------------------- +[NEVERMELTICE] +Name = Never-Melt Ice +NamePlural = Never-Melt Ices +PortionName = piece of Never-Melt Ice +PortionNamePlural = pieces of Never-Melt Ice +Pocket = HeldItems +Price = 3000 +SellPrice = 500 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It is a piece of ice that repels heat and boosts Ice-type moves. +#------------------------------- +[BLACKBELT] +Name = Black Belt +NamePlural = Black Belts +Pocket = HeldItems +Price = 3000 +SellPrice = 500 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It is a belt that boosts determination and Fighting-type moves. +#------------------------------- +[POISONBARB] +Name = Poison Barb +NamePlural = Poison Barbs +Pocket = HeldItems +Price = 3000 +SellPrice = 500 +Flags = Fling_70 +Description = An item to be held by a Pokémon. It is a small, poisonous barb that ups the power of Poison-type moves. +#------------------------------- +[SOFTSAND] +Name = Soft Sand +NamePlural = Soft Sand +PortionName = bag of Soft Sand +PortionNamePlural = bags of Soft Sand +Pocket = HeldItems +Price = 3000 +SellPrice = 500 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It is a loose, silky sand that boosts the power of Ground-type moves. +#------------------------------- +[SHARPBEAK] +Name = Sharp Beak +NamePlural = Sharp Beaks +Pocket = HeldItems +Price = 3000 +SellPrice = 500 +Flags = Fling_50 +Description = An item to be held by a Pokémon. It is a long, sharp beak that boosts the power of Flying-type moves. +#------------------------------- +[TWISTEDSPOON] +Name = Twisted Spoon +NamePlural = Twisted Spoons +Pocket = HeldItems +Price = 3000 +SellPrice = 500 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It is a spoon imbued with telekinetic power that boosts Psychic-type moves. +#------------------------------- +[SILVERPOWDER] +Name = Silver Powder +NamePlural = Silver Powders +PortionName = pile of Silver Powder +PortionNamePlural = piles of Silver Powder +Pocket = HeldItems +Price = 3000 +SellPrice = 500 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It is a shiny, silver powder that ups the power of Bug-type moves. +#------------------------------- +[HARDSTONE] +Name = Hard Stone +NamePlural = Hard Stones +Pocket = HeldItems +Price = 3000 +SellPrice = 500 +Flags = Fling_100 +Description = An item to be held by a Pokémon. It is an unbreakable stone that ups the power of Rock-type moves. +#------------------------------- +[SPELLTAG] +Name = Spell Tag +NamePlural = Spell Tags +Pocket = HeldItems +Price = 3000 +SellPrice = 500 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It is a sinister, eerie tag that boosts the power of Ghost-type moves. +#------------------------------- +[DRAGONFANG] +Name = Dragon Fang +NamePlural = Dragon Fangs +Pocket = HeldItems +Price = 3000 +SellPrice = 500 +Flags = Fling_70 +Description = An item to be held by a Pokémon. It is a hard and sharp fang that ups the power of Dragon-type moves. +#------------------------------- +[BLACKGLASSES] +Name = Black Glasses +NamePlural = Black Glasses +PortionName = pair of Black Glasses +PortionNamePlural = pairs of Black Glasses +Pocket = HeldItems +Price = 3000 +SellPrice = 500 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It is a shady-looking pair of glasses that boosts Dark-type moves. +#------------------------------- +[METALCOAT] +Name = Metal Coat +NamePlural = Metal Coats +Pocket = HeldItems +Price = 3000 +SellPrice = 1000 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It is a special metallic film that ups the power of Steel-type moves. +#------------------------------- +[FAIRYFEATHER] +Name = Fairy Feather +NamePlural = Fairy Feathers +Pocket = HeldItems +Price = 3000 +Flags = Fling_10 +Description = An item to be held by a Pokémon. This gleaming feather boosts the power of the holder's Fairy-type moves. +#------------------------------- +[SILKSCARF] +Name = Silk Scarf +NamePlural = Silk Scarves +Pocket = HeldItems +Price = 3000 +SellPrice = 500 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It is a sumptuous scarf that boosts the power of Normal-type moves. +#------------------------------- +[FLAMEPLATE] +Name = Flame Plate +NamePlural = Flame Plates +Pocket = HeldItems +Price = 10000 +SellPrice = 500 +Flags = Fling_90 +Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Fire-type moves. +#------------------------------- +[SPLASHPLATE] +Name = Splash Plate +NamePlural = Splash Plates +Pocket = HeldItems +Price = 10000 +SellPrice = 500 +Flags = Fling_90 +Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Water-type moves. +#------------------------------- +[ZAPPLATE] +Name = Zap Plate +NamePlural = Zap Plates +Pocket = HeldItems +Price = 10000 +SellPrice = 500 +Flags = Fling_90 +Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Electric-type moves. +#------------------------------- +[MEADOWPLATE] +Name = Meadow Plate +NamePlural = Meadow Plates +Pocket = HeldItems +Price = 10000 +SellPrice = 500 +Flags = Fling_90 +Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Grass-type moves. +#------------------------------- +[ICICLEPLATE] +Name = Icicle Plate +NamePlural = Icicle Plates +Pocket = HeldItems +Price = 10000 +SellPrice = 500 +Flags = Fling_90 +Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Ice-type moves. +#------------------------------- +[FISTPLATE] +Name = Fist Plate +NamePlural = Fist Plates +Pocket = HeldItems +Price = 10000 +SellPrice = 500 +Flags = Fling_90 +Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Fighting-type moves. +#------------------------------- +[TOXICPLATE] +Name = Toxic Plate +NamePlural = Toxic Plates +Pocket = HeldItems +Price = 10000 +SellPrice = 500 +Flags = Fling_90 +Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Poison-type moves. +#------------------------------- +[EARTHPLATE] +Name = Earth Plate +NamePlural = Earth Plates +Pocket = HeldItems +Price = 10000 +SellPrice = 500 +Flags = Fling_90 +Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Ground-type moves. +#------------------------------- +[SKYPLATE] +Name = Sky Plate +NamePlural = Sky Plates +Pocket = HeldItems +Price = 10000 +SellPrice = 500 +Flags = Fling_90 +Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Flying-type moves. +#------------------------------- +[MINDPLATE] +Name = Mind Plate +NamePlural = Mind Plates +Pocket = HeldItems +Price = 10000 +SellPrice = 500 +Flags = Fling_90 +Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Psychic-type moves. +#------------------------------- +[INSECTPLATE] +Name = Insect Plate +NamePlural = Insect Plates +Pocket = HeldItems +Price = 10000 +SellPrice = 500 +Flags = Fling_90 +Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Bug-type moves. +#------------------------------- +[STONEPLATE] +Name = Stone Plate +NamePlural = Stone Plates +Pocket = HeldItems +Price = 10000 +SellPrice = 500 +Flags = Fling_90 +Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Rock-type moves. +#------------------------------- +[SPOOKYPLATE] +Name = Spooky Plate +NamePlural = Spooky Plates +Pocket = HeldItems +Price = 10000 +SellPrice = 500 +Flags = Fling_90 +Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Ghost-type moves. +#------------------------------- +[DRACOPLATE] +Name = Draco Plate +NamePlural = Draco Plates +Pocket = HeldItems +Price = 10000 +SellPrice = 500 +Flags = Fling_90 +Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Dragon-type moves. +#------------------------------- +[DREADPLATE] +Name = Dread Plate +NamePlural = Dread Plates +Pocket = HeldItems +Price = 10000 +SellPrice = 500 +Flags = Fling_90 +Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Dark-type moves. +#------------------------------- +[IRONPLATE] +Name = Iron Plate +NamePlural = Iron Plates +Pocket = HeldItems +Price = 10000 +SellPrice = 500 +Flags = Fling_90 +Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Steel-type moves. +#------------------------------- +[PIXIEPLATE] +Name = Pixie Plate +NamePlural = Pixie Plates +Pocket = HeldItems +Price = 10000 +SellPrice = 500 +Flags = Fling_90 +Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Fairy-type moves. +#------------------------------- +[FIREGEM] +Name = Fire Gem +NamePlural = Fire Gems +Pocket = HeldItems +Price = 4000 +Flags = TypeGem +Description = A gem with an essence of fire. When held, it strengthens the power of a Fire-type move only once. +#------------------------------- +[WATERGEM] +Name = Water Gem +NamePlural = Water Gems +Pocket = HeldItems +Price = 4000 +Flags = TypeGem +Description = A gem with an essence of water. When held, it strengthens the power of a Water-type move only once. +#------------------------------- +[ELECTRICGEM] +Name = Electric Gem +NamePlural = Electric Gems +Pocket = HeldItems +Price = 4000 +Flags = TypeGem +Description = A gem with an essence of electricity. When held, it strengthens the power of an Electric-type move only once. +#------------------------------- +[GRASSGEM] +Name = Grass Gem +NamePlural = Grass Gems +Pocket = HeldItems +Price = 4000 +Flags = TypeGem +Description = A gem with an essence of nature. When held, it strengthens the power of a Grass-type move only once. +#------------------------------- +[ICEGEM] +Name = Ice Gem +NamePlural = Ice Gems +Pocket = HeldItems +Price = 4000 +Flags = TypeGem +Description = A gem with an essence of ice. When held, it strengthens the power of an Ice-type move only once. +#------------------------------- +[FIGHTINGGEM] +Name = Fighting Gem +NamePlural = Fighting Gems +Pocket = HeldItems +Price = 4000 +Flags = TypeGem +Description = A gem with an essence of combat. When held, it strengthens the power of a Fighting-type move only once. +#------------------------------- +[POISONGEM] +Name = Poison Gem +NamePlural = Poison Gems +Pocket = HeldItems +Price = 4000 +Flags = TypeGem +Description = A gem with an essence of poison. When held, it strengthens the power of a Poison-type move only once. +#------------------------------- +[GROUNDGEM] +Name = Ground Gem +NamePlural = Ground Gems +Pocket = HeldItems +Price = 4000 +Flags = TypeGem +Description = A gem with an essence of land. When held, it strengthens the power of a Ground-type move only once. +#------------------------------- +[FLYINGGEM] +Name = Flying Gem +NamePlural = Flying Gems +Pocket = HeldItems +Price = 4000 +Flags = TypeGem +Description = A gem with an essence of air. When held, it strengthens the power of a Flying-type move only once. +#------------------------------- +[PSYCHICGEM] +Name = Psychic Gem +NamePlural = Psychic Gems +Pocket = HeldItems +Price = 4000 +Flags = TypeGem +Description = A gem with an essence of the mind. When held, it strengthens the power of a Psychic-type move only once. +#------------------------------- +[BUGGEM] +Name = Bug Gem +NamePlural = Bug Gems +Pocket = HeldItems +Price = 4000 +Flags = TypeGem +Description = A gem with an insect-like essence. When held, it strengthens the power of a Bug-type move only once. +#------------------------------- +[ROCKGEM] +Name = Rock Gem +NamePlural = Rock Gems +Pocket = HeldItems +Price = 4000 +Flags = TypeGem +Description = A gem with an essence of rock. When held, it strengthens the power of a Rock-type move only once. +#------------------------------- +[GHOSTGEM] +Name = Ghost Gem +NamePlural = Ghost Gems +Pocket = HeldItems +Price = 4000 +Flags = TypeGem +Description = A gem with a spectral essence. When held, it strengthens the power of a Ghost-type move only once. +#------------------------------- +[DRAGONGEM] +Name = Dragon Gem +NamePlural = Dragon Gems +Pocket = HeldItems +Price = 4000 +Flags = TypeGem +Description = A gem with a draconic essence. When held, it strengthens the power of a Dragon-type move only once. +#------------------------------- +[DARKGEM] +Name = Dark Gem +NamePlural = Dark Gems +Pocket = HeldItems +Price = 4000 +Flags = TypeGem +Description = A gem with an essence of darkness. When held, it strengthens the power of a Dark-type move only once. +#------------------------------- +[STEELGEM] +Name = Steel Gem +NamePlural = Steel Gems +Pocket = HeldItems +Price = 4000 +Flags = TypeGem +Description = A gem with an essence of steel. When held, it strengthens the power of a Steel-type move only once. +#------------------------------- +[FAIRYGEM] +Name = Fairy Gem +NamePlural = Fairy Gems +Pocket = HeldItems +Price = 4000 +Flags = TypeGem +Description = A gem with an essence of the fey. When held, it strengthens the power of a Fairy-type move only once. +#------------------------------- +[NORMALGEM] +Name = Normal Gem +NamePlural = Normal Gems +Pocket = HeldItems +Price = 4000 +Flags = TypeGem +Description = A gem with an ordinary essence. When held, it strengthens the power of a Normal-type move only once. +#------------------------------- +[LIGHTBALL] +Name = Light Ball +NamePlural = Light Balls +Pocket = HeldItems +Price = 1000 +Flags = Fling_30 +Description = An item to be held by Pikachu. It is a puzzling orb that raises the Attack and Sp. Atk stat. +#------------------------------- +[LUCKYPUNCH] +Name = Lucky Punch +NamePlural = Lucky Punches +Pocket = HeldItems +Price = 1000 +BPPrice = 7 +Flags = Fling_40 +Description = An item to be held by Chansey. It is a pair of gloves that boosts Chansey's critical-hit ratio. +#------------------------------- +[METALPOWDER] +Name = Metal Powder +NamePlural = Metal Powders +PortionName = bag of Metal Powder +PortionNamePlural = bags of Metal Powder +Pocket = HeldItems +Price = 1000 +Flags = Fling_10 +Description = An item to be held by Ditto. Extremely fine yet hard, this odd powder boosts the Defense stat. +#------------------------------- +[QUICKPOWDER] +Name = Quick Powder +NamePlural = Quick Powders +PortionName = bag of Quick Powder +PortionNamePlural = bags of Quick Powder +Pocket = HeldItems +Price = 1000 +Flags = Fling_10 +Description = An item to be held by Ditto. Extremely fine yet hard, this odd powder boosts the Speed stat. +#------------------------------- +[THICKCLUB] +Name = Thick Club +NamePlural = Thick Clubs +Pocket = HeldItems +Price = 1000 +Flags = Fling_90 +Description = An item to be held by Cubone or Marowak. It is a hard bone of some sort that boosts the Attack stat. +#------------------------------- +[LEEK] +Name = Leek +NamePlural = Leeks +Pocket = HeldItems +Price = 1000 +Flags = Fling_60 +Description = An item to be held by Farfetch'd. It is a very long and stiff stalk of leek that boosts the critical-hit ratio. +#------------------------------- +[SOULDEW] +Name = Soul Dew +NamePlural = Soul Dews +Pocket = HeldItems +Price = 0 +Flags = Fling_30 +Description = A wondrous orb to be held by either Latios or Latias. It raises the power of Psychic- and Dragon-type moves. +#------------------------------- +[DEEPSEATOOTH] +Name = Deep Sea Tooth +NamePlural = Deep Sea Teeth +Pocket = HeldItems +Price = 2000 +BPPrice = 5 +Flags = Fling_90 +Description = An item to be held by Clamperl. A fang that gleams a sharp silver, it raises the Sp. Atk stat. +#------------------------------- +[DEEPSEASCALE] +Name = Deep Sea Scale +NamePlural = Deep Sea Scales +Pocket = HeldItems +Price = 2000 +BPPrice = 5 +Flags = Fling_30 +Description = An item to be held by Clamperl. A scale that shines a faint pink, it raises the Sp. Def stat. +#------------------------------- +[ADAMANTORB] +Name = Adamant Orb +NamePlural = Adamant Orbs +Pocket = HeldItems +Price = 10000 +SellPrice = 0 +Flags = Fling_60 +Description = A brightly gleaming orb to be held by Dialga. It boosts the power of Dragon- and Steel-type moves. +#------------------------------- +[LUSTROUSORB] +Name = Lustrous Orb +NamePlural = Lustrous Orbs +Pocket = HeldItems +Price = 10000 +SellPrice = 0 +Flags = Fling_60 +Description = A beautifully glowing orb to be held by Palkia. It boosts the power of Dragon- and Water-type moves. +#------------------------------- +[GRISEOUSORB] +Name = Griseous Orb +NamePlural = Griseous Orbs +Pocket = HeldItems +Price = 10000 +SellPrice = 0 +Flags = Fling_60 +Description = A glowing orb to be held by Giratina. It boosts the power of Dragon- and Ghost-type moves. +#------------------------------- +[ADAMANTCRYSTAL] +Name = Adamant Crystal +NamePlural = Adamant Crystals +Pocket = HeldItems +Price = 4000 +SellPrice = 0 +Flags = Fling_60 +Description = A large, glowing gem to be held by Dialga. It wells with power and allows the Pokémon to change form. +#------------------------------- +[LUSTROUSGLOBE] +Name = Lustrous Globe +NamePlural = Lustrous Globes +Pocket = HeldItems +Price = 4000 +SellPrice = 0 +Flags = Fling_60 +Description = A large, glowing orb to be held by Palkia. It wells with power and allows the Pokémon to change form. +#------------------------------- +[GRISEOUSCORE] +Name = Griseous Core +NamePlural = Griseous Cores +Pocket = HeldItems +Price = 4000 +SellPrice = 0 +Flags = Fling_60 +Description = A large, glowing gem to be held by Giratina. It wells with power and allows the Pokémon to change form. +#------------------------------- +[RUSTEDSWORD] +Name = Rusted Sword +NamePlural = Rusted Swords +Pocket = HeldItems +Price = 0 +Description = It is said that a hero used this sword to halt a disaster in ancient times. But it's grown rusty and worn. +#------------------------------- +[RUSTEDSHIELD] +Name = Rusted Shield +NamePlural = Rusted Shields +Pocket = HeldItems +Price = 0 +Description = It is said that a hero used this shield to halt a disaster in ancient times. But it's grown rusty and worn. +#------------------------------- +[WELLSPRINGMASK] +Name = Wellspring Mask +NamePlural = Wellspring Masks +Pocket = HeldItems +Flags = Fling_60 +Description = An item to be held by Ogerpon. This carved wooden mask allows Ogerpon to wield the Water type in battle. +#------------------------------- +[HEARTHFLAMEMASK] +Name = Hearthflame Mask +NamePlural = Hearthflame Masks +Pocket = HeldItems +Price = 0 +Flags = Fling_60 +Description = An item to be held by Ogerpon. This carved wooden mask allows Ogerpon to wield the Fire type in battle. +#------------------------------- +[CORNERSTONEMASK] +Name = Cornerstone Mask +NamePlural = Cornerstone Masks +Pocket = HeldItems +Price = 0 +Flags = Fling_60 +Description = An item to be held by Ogerpon. This carved wooden mask allows Ogerpon to wield the Rock type in battle. +#------------------------------- +[DOUSEDRIVE] +Name = Douse Drive +NamePlural = Douse Drives +Pocket = HeldItems +Price = 0 +Flags = Fling_70 +Description = A cassette to be held by Genesect. It changes Techno Blast to a Water-type move. +#------------------------------- +[SHOCKDRIVE] +Name = Shock Drive +NamePlural = Shock Drives +Pocket = HeldItems +Price = 0 +Flags = Fling_70 +Description = A cassette to be held by Genesect. It changes Techno Blast to an Electric-type move. +#------------------------------- +[BURNDRIVE] +Name = Burn Drive +NamePlural = Burn Drives +Pocket = HeldItems +Price = 0 +Flags = Fling_70 +Description = A cassette to be held by Genesect. It changes Techno Blast to a Fire-type move. +#------------------------------- +[CHILLDRIVE] +Name = Chill Drive +NamePlural = Chill Drives +Pocket = HeldItems +Price = 0 +Flags = Fling_70 +Description = A cassette to be held by Genesect. It changes Techno Blast to an Ice-type move. +#------------------------------- +[FIREMEMORY] +Name = Fire Memory +NamePlural = Fire Memories +Pocket = HeldItems +Price = 1000 +Flags = Fling_50 +Description = A memory disc containing Fire-type data. It changes the holder's type if held by a certain Pokémon. +#------------------------------- +[WATERMEMORY] +Name = Water Memory +NamePlural = Water Memories +Pocket = HeldItems +Price = 1000 +Flags = Fling_50 +Description = A memory disc containing Water-type data. It changes the holder's type if held by a certain Pokémon. +#------------------------------- +[ELECTRICMEMORY] +Name = Electric Memory +NamePlural = Electric Memories +Pocket = HeldItems +Price = 1000 +Flags = Fling_50 +Description = A memory disc containing Electric-type data. It changes the holder's type if held by a certain Pokémon. +#------------------------------- +[GRASSMEMORY] +Name = Grass Memory +NamePlural = Grass Memories +Pocket = HeldItems +Price = 1000 +Flags = Fling_50 +Description = A memory disc containing Grass-type data. It changes the holder's type if held by a certain Pokémon. +#------------------------------- +[ICEMEMORY] +Name = Ice Memory +NamePlural = Ice Memories +Pocket = HeldItems +Price = 1000 +Flags = Fling_50 +Description = A memory disc containing Ice-type data. It changes the holder's type if held by a certain Pokémon. +#------------------------------- +[FIGHTINGMEMORY] +Name = Fighting Memory +NamePlural = Fighting Memories +Pocket = HeldItems +Price = 1000 +Flags = Fling_50 +Description = A memory disc containing Fighting-type data. It changes the holder's type if held by a certain Pokémon. +#------------------------------- +[POISONMEMORY] +Name = Poison Memory +NamePlural = Poison Memories +Pocket = HeldItems +Price = 1000 +Flags = Fling_50 +Description = A memory disc containing Poison-type data. It changes the holder's type if held by a certain Pokémon. +#------------------------------- +[GROUNDMEMORY] +Name = Ground Memory +NamePlural = Ground Memories +Pocket = HeldItems +Price = 1000 +Flags = Fling_50 +Description = A memory disc containing Ground-type data. It changes the holder's type if held by a certain Pokémon. +#------------------------------- +[FLYINGMEMORY] +Name = Flying Memory +NamePlural = Flying Memories +Pocket = HeldItems +Price = 1000 +Flags = Fling_50 +Description = A memory disc containing Flying-type data. It changes the holder's type if held by a certain Pokémon. +#------------------------------- +[PSYCHICMEMORY] +Name = Psychic Memory +NamePlural = Psychic Memories +Pocket = HeldItems +Price = 1000 +Flags = Fling_50 +Description = A memory disc containing Psychic-type data. It changes the holder's type if held by a certain Pokémon. +#------------------------------- +[BUGMEMORY] +Name = Bug Memory +NamePlural = Bug Memories +Pocket = HeldItems +Price = 1000 +Flags = Fling_50 +Description = A memory disc containing Bug-type data. It changes the holder's type if held by a certain Pokémon. +#------------------------------- +[ROCKMEMORY] +Name = Rock Memory +NamePlural = Rock Memories +Pocket = HeldItems +Price = 1000 +Flags = Fling_50 +Description = A memory disc containing Rock-type data. It changes the holder's type if held by a certain Pokémon. +#------------------------------- +[GHOSTMEMORY] +Name = Ghost Memory +NamePlural = Ghost Memories +Pocket = HeldItems +Price = 1000 +Flags = Fling_50 +Description = A memory disc containing Ghost-type data. It changes the holder's type if held by a certain Pokémon. +#------------------------------- +[DRAGONMEMORY] +Name = Dragon Memory +NamePlural = Dragon Memories +Pocket = HeldItems +Price = 1000 +Flags = Fling_50 +Description = A memory disc containing Dragon-type data. It changes the holder's type if held by a certain Pokémon. +#------------------------------- +[DARKMEMORY] +Name = Dark Memory +NamePlural = Dark Memories +Pocket = HeldItems +Price = 1000 +Flags = Fling_50 +Description = A memory disc containing Dark-type data. It changes the holder's type if held by a certain Pokémon. +#------------------------------- +[STEELMEMORY] +Name = Steel Memory +NamePlural = Steel Memories +Pocket = HeldItems +Price = 1000 +Flags = Fling_50 +Description = A memory disc containing Steel-type data. It changes the holder's type if held by a certain Pokémon. +#------------------------------- +[FAIRYMEMORY] +Name = Fairy Memory +NamePlural = Fairy Memories +Pocket = HeldItems +Price = 1000 +Flags = Fling_50 +Description = A memory disc containing Fairy-type data. It changes the holder's type if held by a certain Pokémon. +#------------------------------- +[EVERSTONE] +Name = Everstone +NamePlural = Everstones +Pocket = HeldItems +Price = 3000 +BPPrice = 5 +Flags = Fling_30 +Description = An item to be held by a Pokémon. The Pokémon holding this peculiar stone is prevented from evolving. +#------------------------------- +[DRAGONSCALE] +Name = Dragon Scale +NamePlural = Dragon Scales +Pocket = HeldItems +Price = 3000 +SellPrice = 1000 +BPPrice = 5 +Flags = Fling_30 +Description = A thick and tough scale. Dragon-type Pokémon may be holding this item when caught. +#------------------------------- +[UPGRADE] +Name = Upgrade +NamePlural = Upgrades +Pocket = HeldItems +Price = 3000 +SellPrice = 1000 +BPPrice = 5 +Flags = Fling_30 +Description = A transparent device filled with all sorts of data. It was produced by Silph Co. +#------------------------------- +[DUBIOUSDISC] +Name = Dubious Disc +NamePlural = Dubious Discs +Pocket = HeldItems +Price = 3000 +SellPrice = 1000 +BPPrice = 5 +Flags = Fling_50 +Description = A transparent device overflowing with dubious data. Its producer is unknown. +#------------------------------- +[PROTECTOR] +Name = Protector +NamePlural = Protectors +Pocket = HeldItems +Price = 3000 +SellPrice = 1000 +BPPrice = 5 +Flags = Fling_80 +Description = A protective item of some sort. It is extremely stiff and heavy. It is loved by a certain Pokémon. +#------------------------------- +[ELECTIRIZER] +Name = Electirizer +NamePlural = Electirizers +Pocket = HeldItems +Price = 3000 +SellPrice = 1000 +BPPrice = 5 +Flags = Fling_80 +Description = A box packed with a tremendous amount of electric energy. It is loved by a certain Pokémon. +#------------------------------- +[MAGMARIZER] +Name = Magmarizer +NamePlural = Magmarizers +Pocket = HeldItems +Price = 3000 +SellPrice = 1000 +BPPrice = 5 +Flags = Fling_80 +Description = A box packed with a tremendous amount of magma energy. It is loved by a certain Pokémon. +#------------------------------- +[REAPERCLOTH] +Name = Reaper Cloth +NamePlural = Reaper Cloths +PortionName = scrap of Reaper Cloth +PortionNamePlural = scraps of Reaper Cloth +Pocket = HeldItems +Price = 3000 +SellPrice = 1000 +BPPrice = 5 +Flags = Fling_10 +Description = A cloth imbued with horrifyingly strong spiritual energy. It is loved by a certain Pokémon. +#------------------------------- +[PRISMSCALE] +Name = Prism Scale +NamePlural = Prism Scales +Pocket = HeldItems +Price = 3000 +SellPrice = 1000 +BPPrice = 10 +Flags = Fling_30 +Description = A mysterious scale that evolves certain Pokémon. It shines in rainbow colors. +#------------------------------- +[OVALSTONE] +Name = Oval Stone +NamePlural = Oval Stones +Pocket = HeldItems +Price = 3000 +SellPrice = 1000 +BPPrice = 5 +Flags = Fling_80 +Description = A peculiar stone that makes certain species of Pokémon evolve. It is shaped like an egg. +#------------------------------- +[WHIPPEDDREAM] +Name = Whipped Dream +NamePlural = Whipped Dreams +PortionName = dollop of Whipped Dream +PortionNamePlural = dollops of Whipped Dream +Pocket = HeldItems +Price = 3000 +SellPrice = 1000 +BPPrice = 5 +Flags = Fling_80 +Description = A soft and sweet treat made of fluffy, puffy and whirled cream. It's loved by a certain Pokémon. +#------------------------------- +[SACHET] +Name = Sachet +NamePlural = Sachets +Pocket = HeldItems +Price = 3000 +SellPrice = 1000 +BPPrice = 5 +Flags = Fling_80 +Description = A sachet filled with slightly overwhelming fragrant perfumes. Yet it's loved by a certain Pokémon. +#------------------------------- +[STRAWBERRYSWEET] +Name = Strawberry Sweet +NamePlural = Strawberry Sweets +Pocket = HeldItems +Price = 500 +BPPrice = 5 +Flags = Fling_10 +Description = A strawberry-shaped sweet. When a Milcery holds this, it will spin around happily. +#------------------------------- +[LOVESWEET] +Name = Love Sweet +NamePlural = Love Sweets +Pocket = HeldItems +Price = 500 +BPPrice = 5 +Flags = Fling_10 +Description = A heart-shaped sweet. When a Milcery holds this, it spins around happily. +#------------------------------- +[BERRYSWEET] +Name = Berry Sweet +NamePlural = Berry Sweets +Pocket = HeldItems +Price = 500 +BPPrice = 5 +Flags = Fling_10 +Description = A berry-shaped sweet. When a Milcery holds this, it spins around happily. +#------------------------------- +[CLOVERSWEET] +Name = Clover Sweet +NamePlural = Clover Sweets +Pocket = HeldItems +Price = 500 +BPPrice = 5 +Flags = Fling_10 +Description = A clover-shaped sweet. When a Milcery holds this, it spins around happily. +#------------------------------- +[FLOWERSWEET] +Name = Flower Sweet +NamePlural = Flower Sweets +Pocket = HeldItems +Price = 500 +BPPrice = 5 +Flags = Fling_10 +Description = A flower-shaped sweet. When a Milcery holds this, it spins around happily. +#------------------------------- +[STARSWEET] +Name = Star Sweet +NamePlural = Star Sweets +Pocket = HeldItems +Price = 500 +BPPrice = 5 +Flags = Fling_10 +Description = A star-shaped sweet. When a Milcery holds this, it spins around happily. +#------------------------------- +[RIBBONSWEET] +Name = Ribbon Sweet +NamePlural = Ribbon Sweets +Pocket = HeldItems +Price = 500 +BPPrice = 5 +Flags = Fling_10 +Description = A ribbon-shaped sweet. When a Milcery holds this, it spins around happily. +#------------------------------- +[VENUSAURITE] +Name = Venusaurite +NamePlural = Venusaurites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Venusaur hold it, and it will be able to Mega Evolve. +#------------------------------- +[CHARIZARDITEX] +Name = Charizardite X +NamePlural = Charizardite Xs +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Charizard hold it, and it will be able to Mega Evolve. +#------------------------------- +[CHARIZARDITEY] +Name = Charizardite Y +NamePlural = Charizardite Ys +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Charizard hold it, and it will be able to Mega Evolve. +#------------------------------- +[BLASTOISINITE] +Name = Blastoisinite +NamePlural = Blastoisinites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Blastoise hold it, and it will be able to Mega Evolve. +#------------------------------- +[BEEDRILLITE] +Name = Beedrillite +NamePlural = Beedrillites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Beedrill hold it, and it will be able to Mega Evolve. +#------------------------------- +[PIDGEOTITE] +Name = Pidgeotite +NamePlural = Pidgeotites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Pidgeot hold it, and it will be able to Mega Evolve. +#------------------------------- +[ALAKAZITE] +Name = Alakazite +NamePlural = Alakazites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Alakazam hold it, and it will be able to Mega Evolve. +#------------------------------- +[SLOWBRONITE] +Name = Slowbronite +NamePlural = Slowbronites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Slowbro hold it, and it will be able to Mega Evolve. +#------------------------------- +[GENGARITE] +Name = Gengarite +NamePlural = Gengarites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Gengar hold it, and it will be able to Mega Evolve. +#------------------------------- +[KANGASKHANITE] +Name = Kangaskhanite +NamePlural = Kangaskhanites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Kangaskhan hold it, and it will be able to Mega Evolve. +#------------------------------- +[PINSIRITE] +Name = Pinsirite +NamePlural = Pinsirites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Pinsir hold it, and it will be able to Mega Evolve. +#------------------------------- +[GYARADOSITE] +Name = Gyaradosite +NamePlural = Gyaradosites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Gyarados hold it, and it will be able to Mega Evolve. +#------------------------------- +[AERODACTYLITE] +Name = Aerodactylite +NamePlural = Aerodactylites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Aerodactyl hold it, and it will be able to Mega Evolve. +#------------------------------- +[MEWTWONITEX] +Name = Mewtwonite X +NamePlural = Mewtwonite Xs +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Mewtwo hold it, and it will be able to Mega Evolve. +#------------------------------- +[MEWTWONITEY] +Name = Mewtwonite Y +NamePlural = Mewtwonite Ys +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Mewtwo hold it, and it will be able to Mega Evolve. +#------------------------------- +[AMPHAROSITE] +Name = Ampharosite +NamePlural = Ampharosites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Ampharos hold it, and it will be able to Mega Evolve. +#------------------------------- +[STEELIXITE] +Name = Steelixite +NamePlural = Steelixites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Steelix hold it, and it will be able to Mega Evolve. +#------------------------------- +[SCIZORITE] +Name = Scizorite +NamePlural = Scizorites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Scizor hold it, and it will be able to Mega Evolve. +#------------------------------- +[HERACRONITE] +Name = Heracronite +NamePlural = Heracronites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Heracross hold it, and it will be able to Mega Evolve. +#------------------------------- +[HOUNDOOMINITE] +Name = Houndoominite +NamePlural = Houndoominites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Houndoom hold it, and it will be able to Mega Evolve. +#------------------------------- +[TYRANITARITE] +Name = Tyranitarite +NamePlural = Tyranitarites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Tyranitar hold it, and it will be able to Mega Evolve. +#------------------------------- +[SCEPTILITE] +Name = Sceptilite +NamePlural = Sceptilites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Sceptile hold it, and it will be able to Mega Evolve. +#------------------------------- +[BLAZIKENITE] +Name = Blazikenite +NamePlural = Blazikenites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Blaziken hold it, and it will be able to Mega Evolve. +#------------------------------- +[SWAMPERTITE] +Name = Swampertite +NamePlural = Swampertites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Swampert hold it, and it will be able to Mega Evolve. +#------------------------------- +[GARDEVOIRITE] +Name = Gardevoirite +NamePlural = Gardevoirites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Gardevoir hold it, and it will be able to Mega Evolve. +#------------------------------- +[SABLENITE] +Name = Sablenite +NamePlural = Sablenites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Sableye hold it, and it will be able to Mega Evolve. +#------------------------------- +[MAWILITE] +Name = Mawilite +NamePlural = Mawilites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Mawile hold it, and it will be able to Mega Evolve. +#------------------------------- +[AGGRONITE] +Name = Aggronite +NamePlural = Aggronites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Aggron hold it, and it will be able to Mega Evolve. +#------------------------------- +[MEDICHAMITE] +Name = Medichamite +NamePlural = Medichamites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Medicham hold it, and it will be able to Mega Evolve. +#------------------------------- +[MANECTITE] +Name = Manectite +NamePlural = Manectites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Manectric hold it, and it will be able to Mega Evolve. +#------------------------------- +[SHARPEDONITE] +Name = Sharpedonite +NamePlural = Sharpedonites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Sharpedo hold it, and it will be able to Mega Evolve. +#------------------------------- +[CAMERUPTITE] +Name = Cameruptite +NamePlural = Cameruptites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Camerupt hold it, and it will be able to Mega Evolve. +#------------------------------- +[ALTARIANITE] +Name = Altarianite +NamePlural = Altarianites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Altaria hold it, and it will be able to Mega Evolve. +#------------------------------- +[BANETTITE] +Name = Banettite +NamePlural = Banettites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Banette hold it, and it will be able to Mega Evolve. +#------------------------------- +[ABSOLITE] +Name = Absolite +NamePlural = Absolites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Absol hold it, and it will be able to Mega Evolve. +#------------------------------- +[GLALITITE] +Name = Glalitite +NamePlural = Glalitites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Glalie hold it, and it will be able to Mega Evolve. +#------------------------------- +[SALAMENCITE] +Name = Salamencite +NamePlural = Salamencites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Salamence hold it, and it will be able to Mega Evolve. +#------------------------------- +[METAGROSSITE] +Name = Metagrossite +NamePlural = Metagrossites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Metagross hold it, and it will be able to Mega Evolve. +#------------------------------- +[LATIASITE] +Name = Latiasite +NamePlural = Latiasites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Latias hold it, and it will be able to Mega Evolve. +#------------------------------- +[LATIOSITE] +Name = Latiosite +NamePlural = Latiosites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Latios hold it, and it will be able to Mega Evolve. +#------------------------------- +[LOPUNNITE] +Name = Lopunnite +NamePlural = Lopunnites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Lopunny hold it, and it will be able to Mega Evolve. +#------------------------------- +[GARCHOMPITE] +Name = Garchompite +NamePlural = Garchompites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Garchomp hold it, and it will be able to Mega Evolve. +#------------------------------- +[LUCARIONITE] +Name = Lucarionite +NamePlural = Lucarionites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Lucario hold it, and it will be able to Mega Evolve. +#------------------------------- +[ABOMASITE] +Name = Abomasite +NamePlural = Abomasites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Abomasnow hold it, and it will be able to Mega Evolve. +#------------------------------- +[GALLADITE] +Name = Galladite +NamePlural = Galladites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Gallade hold it, and it will be able to Mega Evolve. +#------------------------------- +[AUDINITE] +Name = Audinite +NamePlural = Audinites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Audino hold it, and it will be able to Mega Evolve. +#------------------------------- +[DIANCITE] +Name = Diancite +NamePlural = Diancites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Diancie hold it, and it will be able to Mega Evolve. +#------------------------------- +[REDORB] +Name = Red Orb +NamePlural = Red Orbs +Pocket = HeldItems +Price = 10000 +SellPrice = 0 +BPPrice = 50 +Description = A shiny red orb that is said to have a legend tied to it. It's known to be connected with the Hoenn region. +#------------------------------- +[BLUEORB] +Name = Blue Orb +NamePlural = Blue Orbs +Pocket = HeldItems +Price = 10000 +SellPrice = 0 +BPPrice = 50 +Description = A shiny blue orb that is said to have a legend tied to it. It's known to be connected with the Hoenn region. #------------------------------- [XATTACK] Name = X Attack NamePlural = X Attacks -Pocket = 7 +Pocket = BattleItems Price = 1000 BattleUse = OnBattler Flags = Fling_30 @@ -6172,7 +5018,7 @@ Description = An item that sharply boosts the Attack stat of a Pokémon while it [XATTACK2] Name = X Attack 2 NamePlural = X Attack 2s -Pocket = 7 +Pocket = BattleItems Price = 0 BattleUse = OnBattler Flags = Fling_30 @@ -6181,7 +5027,7 @@ Description = It sharply raises the Attack stat of a Pokémon in battle. It wear [XATTACK3] Name = X Attack 3 NamePlural = X Attack 3s -Pocket = 7 +Pocket = BattleItems Price = 0 BattleUse = OnBattler Flags = Fling_30 @@ -6190,7 +5036,7 @@ Description = It drastically raises the Attack stat of a Pokémon in battle. It [XATTACK6] Name = X Attack 6 NamePlural = X Attack 6s -Pocket = 7 +Pocket = BattleItems Price = 0 BattleUse = OnBattler Flags = Fling_30 @@ -6199,7 +5045,7 @@ Description = It raises the Attack stat of a Pokémon in battle immensely. It we [XDEFENSE] Name = X Defense NamePlural = X Defenses -Pocket = 7 +Pocket = BattleItems Price = 2000 BattleUse = OnBattler Flags = Fling_30 @@ -6208,7 +5054,7 @@ Description = An item that sharply boosts the Defense of a Pokémon while it rem [XDEFENSE2] Name = X Defense 2 NamePlural = X Defense 2s -Pocket = 7 +Pocket = BattleItems Price = 0 BattleUse = OnBattler Flags = Fling_30 @@ -6217,7 +5063,7 @@ Description = It sharply raises the Defense stat of a Pokémon in battle. It wea [XDEFENSE3] Name = X Defense 3 NamePlural = X Defense 3s -Pocket = 7 +Pocket = BattleItems Price = 0 BattleUse = OnBattler Flags = Fling_30 @@ -6226,7 +5072,7 @@ Description = It drastically raises the Defense stat of a Pokémon in battle. It [XDEFENSE6] Name = X Defense 6 NamePlural = X Defense 6s -Pocket = 7 +Pocket = BattleItems Price = 0 BattleUse = OnBattler Flags = Fling_30 @@ -6235,7 +5081,7 @@ Description = It raises the Defense stat of a Pokémon in battle immensely. It w [XSPATK] Name = X Sp. Atk NamePlural = X Sp. Atks -Pocket = 7 +Pocket = BattleItems Price = 1000 BattleUse = OnBattler Flags = Fling_30 @@ -6244,7 +5090,7 @@ Description = An item that sharply boosts the Sp. Atk stat of a Pokémon while i [XSPATK2] Name = X Sp. Atk 2 NamePlural = X Sp. Atk 2s -Pocket = 7 +Pocket = BattleItems Price = 0 BattleUse = OnBattler Flags = Fling_30 @@ -6253,7 +5099,7 @@ Description = It sharply raises the Sp. Atk stat of a Pokémon in battle. It wea [XSPATK3] Name = X Sp. Atk 3 NamePlural = X Sp. Atk 3s -Pocket = 7 +Pocket = BattleItems Price = 0 BattleUse = OnBattler Flags = Fling_30 @@ -6262,7 +5108,7 @@ Description = It drastically raises the Sp. Atk stat of a Pokémon in battle. It [XSPATK6] Name = X Sp. Atk 6 NamePlural = X Sp. Atk 6s -Pocket = 7 +Pocket = BattleItems Price = 0 BattleUse = OnBattler Flags = Fling_30 @@ -6271,7 +5117,7 @@ Description = It raises the Sp. Atk stat of a Pokémon in battle immensely. It w [XSPDEF] Name = X Sp. Def NamePlural = X Sp. Defs -Pocket = 7 +Pocket = BattleItems Price = 2000 BattleUse = OnBattler Flags = Fling_30 @@ -6280,7 +5126,7 @@ Description = An item that sharply boosts the Sp. Def stat of a Pokémon while i [XSPDEF2] Name = X Sp. Def 2 NamePlural = X Sp. Def 2s -Pocket = 7 +Pocket = BattleItems Price = 0 BattleUse = OnBattler Flags = Fling_30 @@ -6289,7 +5135,7 @@ Description = It sharply raises the Sp. Def stat of a Pokémon in battle. It wea [XSPDEF3] Name = X Sp. Def 3 NamePlural = X Sp. Def 3s -Pocket = 7 +Pocket = BattleItems Price = 0 BattleUse = OnBattler Flags = Fling_30 @@ -6298,7 +5144,7 @@ Description = It drastically raises the Sp. Def stat of a Pokémon in battle. It [XSPDEF6] Name = X Sp. Def 6 NamePlural = X Sp. Def 6s -Pocket = 7 +Pocket = BattleItems Price = 0 BattleUse = OnBattler Flags = Fling_30 @@ -6307,7 +5153,7 @@ Description = It raises the Sp. Def stat of a Pokémon in battle immensely. It w [XSPEED] Name = X Speed NamePlural = X Speeds -Pocket = 7 +Pocket = BattleItems Price = 1000 BattleUse = OnBattler Flags = Fling_30 @@ -6316,7 +5162,7 @@ Description = An item that sharply boosts the Speed stat of a Pokémon while it [XSPEED2] Name = X Speed 2 NamePlural = X Speed 2s -Pocket = 7 +Pocket = BattleItems Price = 0 BattleUse = OnBattler Flags = Fling_30 @@ -6325,7 +5171,7 @@ Description = It sharply raises the Speed stat of a Pokémon in battle. It wears [XSPEED3] Name = X Speed 3 NamePlural = X Speed 3s -Pocket = 7 +Pocket = BattleItems Price = 0 BattleUse = OnBattler Flags = Fling_30 @@ -6334,7 +5180,7 @@ Description = It drastically raises the Speed stat of a Pokémon in battle. It w [XSPEED6] Name = X Speed 6 NamePlural = X Speed 6s -Pocket = 7 +Pocket = BattleItems Price = 0 BattleUse = OnBattler Flags = Fling_30 @@ -6343,7 +5189,7 @@ Description = It raises the Speed stat of a Pokémon in battle immensely. It wea [XACCURACY] Name = X Accuracy NamePlural = X Accuracies -Pocket = 7 +Pocket = BattleItems Price = 1000 BattleUse = OnBattler Flags = Fling_30 @@ -6352,7 +5198,7 @@ Description = An item that sharply boosts the accuracy of a Pokémon while it re [XACCURACY2] Name = X Accuracy 2 NamePlural = X Accuracy 2s -Pocket = 7 +Pocket = BattleItems Price = 0 BattleUse = OnBattler Flags = Fling_30 @@ -6361,7 +5207,7 @@ Description = It sharply raises the accuracy of a Pokémon in battle. It wears o [XACCURACY3] Name = X Accuracy 3 NamePlural = X Accuracy 3s -Pocket = 7 +Pocket = BattleItems Price = 0 BattleUse = OnBattler Flags = Fling_30 @@ -6370,7 +5216,7 @@ Description = It drastically raises the accuracy of a Pokémon in battle. It wea [XACCURACY6] Name = X Accuracy 6 NamePlural = X Accuracy 6s -Pocket = 7 +Pocket = BattleItems Price = 0 BattleUse = OnBattler Flags = Fling_30 @@ -6381,7 +5227,7 @@ Name = Max Mushrooms NamePlural = Max Mushrooms PortionName = cluster of Max Mushrooms PortionNamePlural = clusters of Max Mushrooms -Pocket = 7 +Pocket = BattleItems Price = 8000 BattleUse = OnBattler Flags = Fling_30 @@ -6390,7 +5236,7 @@ Description = Mushrooms that boost all stats of a Pokémon during battle. [DIREHIT] Name = Dire Hit NamePlural = Dire Hits -Pocket = 7 +Pocket = BattleItems Price = 1000 BattleUse = OnBattler Flags = Fling_30 @@ -6399,7 +5245,7 @@ Description = An item that raises the critical-hit ratio greatly. It wears off i [DIREHIT2] Name = Dire Hit 2 NamePlural = Dire Hit 2s -Pocket = 7 +Pocket = BattleItems Price = 0 BattleUse = OnBattler Flags = Fling_30 @@ -6408,7 +5254,7 @@ Description = It sharply raises the critical-hit ratio. It wears off if the Pok [DIREHIT3] Name = Dire Hit 3 NamePlural = Dire Hit 3s -Pocket = 7 +Pocket = BattleItems Price = 0 BattleUse = OnBattler Flags = Fling_30 @@ -6417,7 +5263,7 @@ Description = It greatly raises the critical-hit ratio. It wears off if the Pok [GUARDSPEC] Name = Guard Spec. NamePlural = Guard Specs. -Pocket = 7 +Pocket = BattleItems Price = 1500 BattleUse = Direct Flags = Fling_30 @@ -6426,7 +5272,7 @@ Description = An item that prevents stat reduction among the Trainer's party Pok [RESETURGE] Name = Reset Urge NamePlural = Reset Urges -Pocket = 7 +Pocket = BattleItems Price = 0 Flags = Fling_30 Description = When used, it restores any stat changes of an ally Pokémon. @@ -6434,7 +5280,7 @@ Description = When used, it restores any stat changes of an ally Pokémon. [ABILITYURGE] Name = Ability Urge NamePlural = Ability Urges -Pocket = 7 +Pocket = BattleItems Price = 0 Flags = Fling_30 Description = When used, it activates the Ability of an ally Pokémon. @@ -6442,7 +5288,7 @@ Description = When used, it activates the Ability of an ally Pokémon. [ITEMURGE] Name = Item Urge NamePlural = Item Urges -Pocket = 7 +Pocket = BattleItems Price = 0 Flags = Fling_30 Description = When used, it causes an ally Pokémon to use its held item. @@ -6450,7 +5296,7 @@ Description = When used, it causes an ally Pokémon to use its held item. [ITEMDROP] Name = Item Drop NamePlural = Item Drops -Pocket = 7 +Pocket = BattleItems Price = 0 Flags = Fling_30 Description = When used, it causes an ally Pokémon to drop a held item. @@ -6458,7 +5304,7 @@ Description = When used, it causes an ally Pokémon to drop a held item. [BLUEFLUTE] Name = Blue Flute NamePlural = Blue Flutes -Pocket = 7 +Pocket = BattleItems Price = 20 FieldUse = OnPokemon BattleUse = OnPokemon @@ -6469,7 +5315,7 @@ Description = A blue flute made from blown glass. Its melody awakens a single Po [YELLOWFLUTE] Name = Yellow Flute NamePlural = Yellow Flutes -Pocket = 7 +Pocket = BattleItems Price = 20 BattleUse = OnBattler Flags = Fling_30 @@ -6479,7 +5325,7 @@ Description = A yellow flute made from blown glass. Its melody snaps a single Po [REDFLUTE] Name = Red Flute NamePlural = Red Flutes -Pocket = 7 +Pocket = BattleItems Price = 20 BattleUse = OnBattler Flags = Fling_30 @@ -6489,7 +5335,7 @@ Description = A red flute made from blown glass. Its melody snaps a single Poké [POKEDOLL] Name = Poké Doll NamePlural = Poké Dolls -Pocket = 7 +Pocket = BattleItems Price = 300 BattleUse = Direct Flags = Fling_30 @@ -6498,7 +5344,7 @@ Description = A doll that attracts Pokémon. Use it to flee from any battle with [FLUFFYTAIL] Name = Fluffy Tail NamePlural = Fluffy Tails -Pocket = 7 +Pocket = BattleItems Price = 300 BattleUse = Direct Flags = Fling_30 @@ -6507,16 +5353,1170 @@ Description = An item that attracts Pokémon. Use it to flee from any battle wit [POKETOY] Name = Poké Toy NamePlural = Poké Toys -Pocket = 7 +Pocket = BattleItems Price = 300 BattleUse = Direct Flags = Fling_30 Description = An item that attracts Pokémon. Use it to flee from any battle with a wild Pokémon. #------------------------------- +[TM01] +Name = TM01 +NamePlural = TM01s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_150 +Move = FOCUSPUNCH +Description = The user focuses its mind before launching a punch. This move fails if the user is hit before it is used. +#------------------------------- +[TM02] +Name = TM02 +NamePlural = TM02s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_80 +Move = DRAGONCLAW +Description = The user slashes the target with huge sharp claws. +#------------------------------- +[TM03] +Name = TM03 +NamePlural = TM03s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_60 +Move = WATERPULSE +Description = The user attacks the target with a pulsing blast of water. This may also confuse the target. +#------------------------------- +[TM04] +Name = TM04 +NamePlural = TM04s +Pocket = Machines +Price = 1500 +BPPrice = 48 +FieldUse = TR +Flags = Fling_10 +Move = CALMMIND +Description = The user quietly focuses its mind and calms its spirit to raise its Sp. Atk and Sp. Def stats. +#------------------------------- +[TM05] +Name = TM05 +NamePlural = TM05s +Pocket = Machines +Price = 1000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_10 +Move = ROAR +Description = The target is scared off, and a different Pokémon is dragged out. In the wild, this ends the battle. +#------------------------------- +[TM06] +Name = TM06 +NamePlural = TM06s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_10 +Move = TOXIC +Description = A move that leaves the target badly poisoned. Its poison damage worsens every turn. +#------------------------------- +[TM07] +Name = TM07 +NamePlural = TM07s +Pocket = Machines +Price = 2000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_10 +Move = HAIL +Description = The user summons a hailstorm lasting five turns. It damages all Pokémon except Ice types. +#------------------------------- +[TM08] +Name = TM08 +NamePlural = TM08s +Pocket = Machines +Price = 1500 +BPPrice = 48 +FieldUse = TR +Flags = Fling_10 +Move = BULKUP +Description = The user tenses its muscles to bulk up its body, raising both its Attack and Defense stats. +#------------------------------- +[TM09] +Name = TM09 +NamePlural = TM09s +Pocket = Machines +Price = 2000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_25 +Move = BULLETSEED +Description = The user forcefully shoots seeds at the target two to five times in a row. +#------------------------------- +[TM10] +Name = TM10 +NamePlural = TM10s +Pocket = Machines +Price = 1500 +BPPrice = 32 +FieldUse = TR +Flags = Fling_10 +Move = WORKUP +Description = The user is roused, and its Attack and Sp. Atk stats increase. +#------------------------------- +[TM11] +Name = TM11 +NamePlural = TM11s +Pocket = Machines +Price = 2000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_10 +Move = SUNNYDAY +Description = The user intensifies the sun for five turns, powering up Fire-type moves and weakening Water-type moves. +#------------------------------- +[TM12] +Name = TM12 +NamePlural = TM12s +Pocket = Machines +Price = 1500 +BPPrice = 32 +FieldUse = TR +Flags = Fling_10 +Move = TAUNT +Description = The target is taunted into a rage that allows it to use only attack moves for three turns. +#------------------------------- +[TM13] +Name = TM13 +NamePlural = TM13s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_90 +Move = ICEBEAM +Description = The target is struck with an icy-cold beam of energy. This may also leave the target frozen. +#------------------------------- +[TM14] +Name = TM14 +NamePlural = TM14s +Pocket = Machines +Price = 5500 +BPPrice = 32 +FieldUse = TR +Flags = Fling_110 +Move = BLIZZARD +Description = A howling blizzard is summoned to strike opposing Pokémon. This may also leave them frozen. +#------------------------------- +[TM15] +Name = TM15 +NamePlural = TM15s +Pocket = Machines +Price = 7500 +BPPrice = 32 +FieldUse = TR +Flags = Fling_150 +Move = HYPERBEAM +Description = The target is attacked with a powerful beam. The user can't move on the next turn. +#------------------------------- +[TM16] +Name = TM16 +NamePlural = TM16s +Pocket = Machines +Price = 2000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_10 +Move = LIGHTSCREEN +Description = A wondrous wall of light is put up to reduce damage from special attacks for five turns. +#------------------------------- +[TM17] +Name = TM17 +NamePlural = TM17s +Pocket = Machines +Price = 2000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_10 +Move = PROTECT +Description = The user protects itself from all attacks. Its chance of failing rises if it is used in succession. +#------------------------------- +[TM18] +Name = TM18 +NamePlural = TM18s +Pocket = Machines +Price = 2000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_10 +Move = RAINDANCE +Description = The user summons a heavy rain for five turns, powering up Water-type moves and weakening Fire-type ones. +#------------------------------- +[TM19] +Name = TM19 +NamePlural = TM19s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_75 +Move = GIGADRAIN +Description = A nutrient-draining attack. The user's HP is restored by half the damage taken by the target. +#------------------------------- +[TM20] +Name = TM20 +NamePlural = TM20s +Pocket = Machines +Price = 2000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_10 +Move = SAFEGUARD +Description = The user creates a protective field that prevents status conditions for five turns. +#------------------------------- +[TM21] +Name = TM21 +NamePlural = TM21s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_80 +Move = DAZZLINGGLEAM +Description = The user damages opposing Pokémon by emitting a powerful flash. +#------------------------------- +[TM22] +Name = TM22 +NamePlural = TM22s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_120 +Move = SOLARBEAM +Description = In this two-turn attack, the user gathers light, then blasts a bundled beam on the next turn. +#------------------------------- +[TM23] +Name = TM23 +NamePlural = TM23s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_100 +Move = IRONTAIL +Description = The target is slammed with a steel-hard tail. This may also lower the target's Defense stat. +#------------------------------- +[TM24] +Name = TM24 +NamePlural = TM24s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_90 +Move = THUNDERBOLT +Description = A strong electric blast crashes down on the target. This may also leave the target with paralysis. +#------------------------------- +[TM25] +Name = TM25 +NamePlural = TM25s +Pocket = Machines +Price = 5500 +BPPrice = 32 +FieldUse = TR +Flags = Fling_110 +Move = THUNDER +Description = A wicked thunderbolt is dropped on the target to inflict damage. This may also leave them with paralysis. +#------------------------------- +[TM26] +Name = TM26 +NamePlural = TM26s +Pocket = Machines +Price = 3000 +BPPrice = 80 +FieldUse = TR +Flags = Fling_100 +Move = EARTHQUAKE +Description = The user sets off an earthquake that strikes every Pokémon around it. +#------------------------------- +[TM27] +Name = TM27 +NamePlural = TM27s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_65 +Move = LOWSWEEP +Description = The user makes a swift attack on the target's legs, which lowers the target's Speed stat. +#------------------------------- +[TM28] +Name = TM28 +NamePlural = TM28s +Pocket = Machines +Price = 2000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_80 +Move = DIG +Description = The user burrows into the ground, then attacks on the next turn. It can also be used to exit dungeons. +#------------------------------- +[TM29] +Name = TM29 +NamePlural = TM29s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_90 +Move = PSYCHIC +Description = The target is hit by a strong telekinetic force. This may also lower the target's Sp. Def stat. +#------------------------------- +[TM30] +Name = TM30 +NamePlural = TM30s +Pocket = Machines +Price = 3000 +BPPrice = 64 +FieldUse = TR +Flags = Fling_80 +Move = SHADOWBALL +Description = The user hurls a shadowy blob at the target. This may also lower the target's Sp. Def stat. +#------------------------------- +[TM31] +Name = TM31 +NamePlural = TM31s +Pocket = Machines +Price = 3000 +BPPrice = 40 +FieldUse = TR +Flags = Fling_75 +Move = BRICKBREAK +Description = The user attacks with a swift chop. It can also break barriers, such as Light Screen and Reflect. +#------------------------------- +[TM32] +Name = TM32 +NamePlural = TM32s +Pocket = Machines +Price = 1000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_10 +Move = DOUBLETEAM +Description = By moving rapidly, the user makes illusory copies of itself to raise its evasiveness. +#------------------------------- +[TM33] +Name = TM33 +NamePlural = TM33s +Pocket = Machines +Price = 2000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_10 +Move = REFLECT +Description = A wondrous wall of light is put up to reduce damage from physical attacks for five turns. +#------------------------------- +[TM34] +Name = TM34 +NamePlural = TM34s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_60 +Move = SHOCKWAVE +Description = The user strikes the target with a quick jolt of electricity. This attack never misses. +#------------------------------- +[TM35] +Name = TM35 +NamePlural = TM35s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_90 +Move = FLAMETHROWER +Description = The target is scorched with an intense blast of fire. This may also leave the target with a burn. +#------------------------------- +[TM36] +Name = TM36 +NamePlural = TM36s +Pocket = Machines +Price = 3000 +BPPrice = 80 +FieldUse = TR +Flags = Fling_90 +Move = SLUDGEBOMB +Description = Unsanitary sludge is hurled at the target. This may also poison the target. +#------------------------------- +[TM37] +Name = TM37 +NamePlural = TM37s +Pocket = Machines +Price = 2000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_10 +Move = SANDSTORM +Description = A five-turn sandstorm is summoned to hurt all combatants except Rock, Ground, and Steel types. +#------------------------------- +[TM38] +Name = TM38 +NamePlural = TM38s +Pocket = Machines +Price = 5500 +BPPrice = 32 +FieldUse = TR +Flags = Fling_110 +Move = FIREBLAST +Description = The target is attacked with an intense blast of all-consuming fire. This may also leave them with a burn. +#------------------------------- +[TM39] +Name = TM39 +NamePlural = TM39s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_60 +Move = ROCKTOMB +Description = Boulders are hurled at the target. This also lowers the target's Speed stat by preventing its movement. +#------------------------------- +[TM40] +Name = TM40 +NamePlural = TM40s +Pocket = Machines +Price = 3000 +BPPrice = 40 +FieldUse = TR +Flags = Fling_60 +Move = AERIALACE +Description = The user confounds the target with speed, then slashes. This attack never misses. +#------------------------------- +[TM41] +Name = TM41 +NamePlural = TM41s +Pocket = Machines +Price = 1500 +BPPrice = 32 +FieldUse = TR +Flags = Fling_10 +Move = TORMENT +Description = The user torments and enrages the target, making it incapable of using the same move twice in a row. +#------------------------------- +[TM42] +Name = TM42 +NamePlural = TM42s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_70 +Move = FACADE +Description = This attack move doubles its power if the user is poisoned, burned, or paralyzed. +#------------------------------- +[TM43] +Name = TM43 +NamePlural = TM43s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_70 +Move = VOLTSWITCH +Description = After making its attack, the user rushes back to switch places with a party Pokémon in waiting. +#------------------------------- +[TM44] +Name = TM44 +NamePlural = TM44s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_10 +Move = REST +Description = The user goes to sleep for two turns. This fully restores the user's HP and heals any status conditions. +#------------------------------- +[TM45] +Name = TM45 +NamePlural = TM45s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_10 +Move = ATTRACT +Description = If it is the opposite gender of the user, the target becomes infatuated and less likely to attack. +#------------------------------- +[TM46] +Name = TM46 +NamePlural = TM46s +Pocket = Machines +Price = 2000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_60 +Move = THIEF +Description = The user attacks and steals the target's held item simultaneously. +#------------------------------- +[TM47] +Name = TM47 +NamePlural = TM47s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_70 +Move = STEELWING +Description = The target is hit with wings of steel. This may also raise the user's Defense stat. +#------------------------------- +[TM48] +Name = TM48 +NamePlural = TM48s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_10 +Move = SKILLSWAP +Description = The user employs its psychic power to exchange Abilities with the target. +#------------------------------- +[TM49] +Name = TM49 +NamePlural = TM49s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_80 +Move = SCALD +Description = The user shoots boiling hot water at its target. This may also leave the target with a burn. +#------------------------------- +[TM50] +Name = TM50 +NamePlural = TM50s +Pocket = Machines +Price = 5500 +BPPrice = 32 +FieldUse = TR +Flags = Fling_130 +Move = OVERHEAT +Description = The user attacks the target at full power. The attack's recoil harshly lowers the user's Sp. Atk stat. +#------------------------------- +[TM51] +Name = TM51 +NamePlural = TM51s +Pocket = Machines +Price = 2000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_10 +Move = ROOST +Description = The user lands and rests its body. This move restores the user's HP by up to half of its max HP. +#------------------------------- +[TM52] +Name = TM52 +NamePlural = TM52s +Pocket = Machines +Price = 5500 +BPPrice = 32 +FieldUse = TR +Flags = Fling_120 +Move = FOCUSBLAST +Description = The user heightens its mental focus and unleashes its power. This may also lower the target's Sp. Def stat. +#------------------------------- +[TM53] +Name = TM53 +NamePlural = TM53s +Pocket = Machines +Price = 3000 +BPPrice = 64 +FieldUse = TR +Flags = Fling_90 +Move = ENERGYBALL +Description = The user draws power from nature and fires it at the target. This may also lower the target's Sp. Def stat. +#------------------------------- +[TM54] +Name = TM54 +NamePlural = TM54s +Pocket = Machines +Price = 2000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_40 +Move = FALSESWIPE +Description = A restrained attack that prevents the target from fainting. The target is left with at least 1 HP. +#------------------------------- +[TM55] +Name = TM55 +NamePlural = TM55s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_65 +Move = BRINE +Description = If the target's HP is half or less, this attack will hit with double the power. +#------------------------------- +[TM56] +Name = TM56 +NamePlural = TM56s +Pocket = Machines +Price = 2000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_10 +Move = FLING +Description = The user flings its held item at the target to attack. This move's power and effects depend on the item. +#------------------------------- +[TM57] +Name = TM57 +NamePlural = TM57s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_50 +Move = CHARGEBEAM +Description = The user attacks the target with an electric charge. The user may use any remaining charge to raise its Sp. Atk. +#------------------------------- +[TM58] +Name = TM58 +NamePlural = TM58s +Pocket = Machines +Price = 2000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_10 +Move = ENDURE +Description = The user endures any attack with at least 1 HP. Its chance of failing rises if it is used in succession. +#------------------------------- +[TM59] +Name = TM59 +NamePlural = TM59s +Pocket = Machines +Price = 3000 +BPPrice = 80 +FieldUse = TR +Flags = Fling_85 +Move = DRAGONPULSE +Description = The target is attacked with a shock wave generated by the user's gaping mouth. +#------------------------------- +[TM60] +Name = TM60 +NamePlural = TM60s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_75 +Move = DRAINPUNCH +Description = An energy-draining punch. The user's HP is restored by half the damage taken by the target. +#------------------------------- +[TM61] +Name = TM61 +NamePlural = TM61s +Pocket = Machines +Price = 2000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_10 +Move = WILLOWISP +Description = The user shoots a sinister flame at the target to inflict a burn. +#------------------------------- +[TM62] +Name = TM62 +NamePlural = TM62s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_90 +Move = BUGBUZZ +Description = The user generates a damaging sound wave by vibration. This may also lower the target's Sp. Def stat. +#------------------------------- +[TM63] +Name = TM63 +NamePlural = TM63s +Pocket = Machines +Price = 2000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_10 +Move = NASTYPLOT +Description = The user stimulates its brain by thinking bad thoughts. This sharply raises the user's Sp. Atk stat. +#------------------------------- +[TM64] +Name = TM64 +NamePlural = TM64s +Pocket = Machines +Price = 7500 +BPPrice = 32 +FieldUse = TR +Flags = Fling_250 +Move = EXPLOSION +Description = The user attacks everything around it by causing a tremendous explosion. The user faints upon using this move. +#------------------------------- +[TM65] +Name = TM65 +NamePlural = TM65s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_70 +Move = SHADOWCLAW +Description = The user slashes with a sharp claw made from shadows. Critical hits land more easily. +#------------------------------- +[TM66] +Name = TM66 +NamePlural = TM66s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_50 +Move = PAYBACK +Description = The user stores power, then attacks. If the user moves after the target, this attack's power will be doubled. +#------------------------------- +[TM67] +Name = TM67 +NamePlural = TM67s +Pocket = Machines +Price = 1000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_10 +Move = RECYCLE +Description = The user recycles a held item that has been used in battle so it can be used again. +#------------------------------- +[TM68] +Name = TM68 +NamePlural = TM68s +Pocket = Machines +Price = 7500 +BPPrice = 32 +FieldUse = TR +Flags = Fling_150 +Move = GIGAIMPACT +Description = The user charges at the target using every bit of its power. The user can't move on the next turn. +#------------------------------- +[TM69] +Name = TM69 +NamePlural = TM69s +Pocket = Machines +Price = 1500 +BPPrice = 32 +FieldUse = TR +Flags = Fling_10 +Move = ROCKPOLISH +Description = The user polishes its body to reduce drag. This sharply raises the Speed stat. +#------------------------------- +[TM70] +Name = TM70 +NamePlural = TM70s +Pocket = Machines +Price = 1000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_10 +Move = FLASH +Description = The user flashes a light that lowers the target's accuracy. It can also be used to illuminate caves. +#------------------------------- +[TM71] +Name = TM71 +NamePlural = TM71s +Pocket = Machines +Price = 3000 +BPPrice = 80 +FieldUse = TR +Flags = Fling_100 +Move = STONEEDGE +Description = The user stabs the target from below with sharpened stones. Critical hits land more easily. +#------------------------------- +[TM72] +Name = TM72 +NamePlural = TM72s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_60 +Move = AVALANCHE +Description = The power of this attack move is doubled if the user has been hurt by the target in the same turn. +#------------------------------- +[TM73] +Name = TM73 +NamePlural = TM73s +Pocket = Machines +Price = 2000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_10 +Move = THUNDERWAVE +Description = The user launches a weak jolt of electricity that paralyzes the target. +#------------------------------- +[TM74] +Name = TM74 +NamePlural = TM74s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_10 +Move = GYROBALL +Description = The user tackles with a high-speed spin. This move is stronger the slower the user is than the target. +#------------------------------- +[TM75] +Name = TM75 +NamePlural = TM75s +Pocket = Machines +Price = 1500 +BPPrice = 32 +FieldUse = TR +Flags = Fling_10 +Move = SWORDSDANCE +Description = A frenetic dance to uplift the fighting spirit. This sharply raises the user's Attack stat. +#------------------------------- +[TM76] +Name = TM76 +NamePlural = TM76s +Pocket = Machines +Price = 2000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_10 +Move = STEALTHROCK +Description = The user lays a trap of levitating stones around the opposing team that hurt Pokémon that switch in. +#------------------------------- +[TM77] +Name = TM77 +NamePlural = TM77s +Pocket = Machines +Price = 1500 +BPPrice = 32 +FieldUse = TR +Flags = Fling_10 +Move = PSYCHUP +Description = The user hypnotizes itself into copying any stat change made by the target. +#------------------------------- +[TM78] +Name = TM78 +NamePlural = TM78s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_55 +Move = SNARL +Description = The user yells as if it's ranting about something, which lowers the Sp. Atk stats of opposing Pokémon. +#------------------------------- +[TM79] +Name = TM79 +NamePlural = TM79s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_80 +Move = DARKPULSE +Description = The user releases a horrible aura imbued with dark thoughts. This may also make the target flinch. +#------------------------------- +[TM80] +Name = TM80 +NamePlural = TM80s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_75 +Move = ROCKSLIDE +Description = Large boulders are hurled at opposing Pokémon to inflict damage. This may also make them flinch. +#------------------------------- +[TM81] +Name = TM81 +NamePlural = TM81s +Pocket = Machines +Price = 3000 +BPPrice = 64 +FieldUse = TR +Flags = Fling_80 +Move = XSCISSOR +Description = The user slashes at the target by crossing its scythes or claws as if they were a pair of scissors. +#------------------------------- +[TM82] +Name = TM82 +NamePlural = TM82s +Pocket = Machines +Price = 1000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_10 +Move = SLEEPTALK +Description = While it is asleep, the user randomly uses one of the moves it knows. +#------------------------------- +[TM83] +Name = TM83 +NamePlural = TM83s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_60 +Move = BULLDOZE +Description = The user strikes everything around it by stomping down on the ground. This lowers the Speed of those hit. +#------------------------------- +[TM84] +Name = TM84 +NamePlural = TM84s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_80 +Move = POISONJAB +Description = The target is stabbed with a tentacle, arm, or the like steeped in poison. This may also poison them. +#------------------------------- +[TM85] +Name = TM85 +NamePlural = TM85s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_100 +Move = DREAMEATER +Description = The user eats the dreams of a sleeping target. The user's HP is restored by half the damage dealt. +#------------------------------- +[TM86] +Name = TM86 +NamePlural = TM86s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_10 +Move = GRASSKNOT +Description = The user snares the target with grass and trips it. The heavier the target, the strong the move is. +#------------------------------- +[TM87] +Name = TM87 +NamePlural = TM87s +Pocket = Machines +Price = 1500 +BPPrice = 32 +FieldUse = TR +Flags = Fling_10 +Move = SWAGGER +Description = The user enrages and confuses the target. However, this also sharply raises the target's Attack stat. +#------------------------------- +[TM88] +Name = TM88 +NamePlural = TM88s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_60 +Move = PLUCK +Description = The user pecks the target. If the target is holding a Berry, the user eats it and gains its effect. +#------------------------------- +[TM89] +Name = TM89 +NamePlural = TM89s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_70 +Move = UTURN +Description = After making its attack, the user rushes back to switch places with a party Pokémon in waiting. +#------------------------------- +[TM90] +Name = TM90 +NamePlural = TM90s +Pocket = Machines +Price = 2000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_10 +Move = SUBSTITUTE +Description = The user creates a substitute for itself using some of its HP. The substitute serves as a decoy. +#------------------------------- +[TM91] +Name = TM91 +NamePlural = TM91s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_80 +Move = FLASHCANNON +Description = The user gathers all its light energy and releases it all at once. This may also lower the target's Sp. Def stat. +#------------------------------- +[TM92] +Name = TM92 +NamePlural = TM92s +Pocket = Machines +Price = 5500 +BPPrice = 32 +FieldUse = TR +Flags = Fling_10 +Move = TRICKROOM +Description = The user creates a bizarre area in which slower Pokémon get to move first for five turns. +#------------------------------- +[TM93] +Name = TM93 +NamePlural = TM93s +Pocket = Machines +Price = 2000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_50 +Move = CUT +Description = The target is cut with a scythe or claw. +#------------------------------- +[TM94] +Name = TM94 +NamePlural = TM94s +Pocket = Machines +Price = 2000 +BPPrice = 40 +FieldUse = TR +Flags = Fling_90 +Move = FLY +Description = The user flies up into the sky and then strikes its target on the next turn. +#------------------------------- +[TM95] +Name = TM95 +NamePlural = TM95s +Pocket = Machines +Price = 2500 +BPPrice = 64 +FieldUse = TR +Flags = Fling_90 +Move = SURF +Description = The user attacks everything around it by swamping its surroundings with a giant wave. +#------------------------------- +[TM96] +Name = TM96 +NamePlural = TM96s +Pocket = Machines +Price = 2000 +BPPrice = 40 +FieldUse = TR +Flags = Fling_80 +Move = STRENGTH +Description = The target is slugged with a punch thrown at maximum power. +#------------------------------- +[TM97] +Name = TM97 +NamePlural = TM97s +Pocket = Machines +Price = 2000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_10 +Move = DEFOG +Description = A strong wind blows away the target's barriers, such as Reflect, and lowers their evasiveness. +#------------------------------- +[TM98] +Name = TM98 +NamePlural = TM98s +Pocket = Machines +Price = 2000 +BPPrice = 40 +FieldUse = TR +Flags = Fling_40 +Move = ROCKSMASH +Description = The user attacks with a punch that may lower the target's Defense stat. +#------------------------------- +[TM99] +Name = TM99 +NamePlural = TM99s +Pocket = Machines +Price = 2500 +BPPrice = 64 +FieldUse = TR +Flags = Fling_80 +Move = WATERFALL +Description = The user charges at the target and may make it flinch. +#------------------------------- +[TM100] +Name = TM100 +NamePlural = TM100s +Pocket = Machines +Price = 2000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_90 +Move = ROCKCLIMB +Description = A charging attack that may also leave the foe confused. +#------------------------------- +[HM01] +Name = HM01 +NamePlural = HM01s +Pocket = Machines +Price = 0 +FieldUse = HM +Move = CUT +Description = The target is cut with a scythe or claw. This can also be used to cut down thin trees. +#------------------------------- +[HM02] +Name = HM02 +NamePlural = HM02s +Pocket = Machines +Price = 0 +FieldUse = HM +Move = FLY +Description = The user soars and then strikes on the next turn. This can also be used to fly to any familiar town. +#------------------------------- +[HM03] +Name = HM03 +NamePlural = HM03s +Pocket = Machines +Price = 0 +FieldUse = HM +Move = SURF +Description = Attacks everything by swamping the surroundings with a giant wave. This can also be used to cross water. +#------------------------------- +[HM04] +Name = HM04 +NamePlural = HM04s +Pocket = Machines +Price = 0 +FieldUse = HM +Move = STRENGTH +Description = The target is slugged with a punch thrown at maximum power. This can also be used to move heavy boulders. +#------------------------------- +[HM05] +Name = HM05 +NamePlural = HM05s +Pocket = Machines +Price = 0 +FieldUse = HM +Move = WATERFALL +Description = The user charges at the target and may make it flinch. It can also be used to climb a waterfall. +#------------------------------- +[HM06] +Name = HM06 +NamePlural = HM06s +Pocket = Machines +Price = 0 +FieldUse = HM +Move = DIVE +Description = Diving on the first turn, the user floats up and attacks on the second. It can be used to dive underwater. +#------------------------------- [BICYCLE] Name = Bicycle NamePlural = Bicycles -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = Direct Flags = KeyItem @@ -6525,7 +6525,7 @@ Description = A folding Bicycle that enables much faster movement than the Runni [OLDROD] Name = Old Rod NamePlural = Old Rods -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = Direct Flags = KeyItem @@ -6534,7 +6534,7 @@ Description = An old and beat-up fishing rod. Use it by any body of water to fis [GOODROD] Name = Good Rod NamePlural = Good Rods -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = Direct Flags = KeyItem @@ -6543,7 +6543,7 @@ Description = A new, good-quality fishing rod. Use it by any body of water to fi [SUPERROD] Name = Super Rod NamePlural = Super Rods -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = Direct Flags = KeyItem @@ -6552,7 +6552,7 @@ Description = An awesome, high-tech fishing rod. Use it by any body of water to [ITEMFINDER] Name = Itemfinder NamePlural = Itemfinders -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = Direct Flags = KeyItem @@ -6561,7 +6561,7 @@ Description = A device used for finding items. If there is a hidden item nearby [DOWSINGMACHINE] Name = Dowsing Machine NamePlural = Dowsing Machines -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = Direct Flags = KeyItem @@ -6570,7 +6570,7 @@ Description = It checks for unseen items in the area and makes noise and lights [POKERADAR] Name = Poké Radar NamePlural = Poké Radars -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = Direct Flags = KeyItem @@ -6579,7 +6579,7 @@ Description = A tool that can search out Pokémon that are hiding in grass. Its [TOWNMAP] Name = Town Map NamePlural = Town Maps -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = Direct Flags = KeyItem @@ -6588,7 +6588,7 @@ Description = A very convenient map that can be viewed anytime. It even shows yo [ESCAPEROPE] Name = Escape Rope NamePlural = Escape Ropes -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = Direct Flags = KeyItem @@ -6597,7 +6597,7 @@ Description = A long, durable rope. Use it to escape instantly from a cave or a [COINCASE] Name = Coin Case NamePlural = Coin Cases -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = Direct Flags = KeyItem @@ -6606,7 +6606,7 @@ Description = A case for holding coins obtained at the Game Corner. It holds up [POKEFLUTE] Name = Poké Flute NamePlural = Poké Flutes -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = OnPokemon BattleUse = Direct @@ -6616,7 +6616,7 @@ Description = A flute that is said to instantly awaken any Pokémon. It has a lo [SOOTSACK] Name = Soot Sack NamePlural = Soot Sacks -Pocket = 8 +Pocket = KeyItems Price = 0 Flags = KeyItem Description = A sack used to gather and hold volcanic ash. @@ -6624,7 +6624,7 @@ Description = A sack used to gather and hold volcanic ash. [SILPHSCOPE] Name = Silph Scope NamePlural = Silph Scopes -Pocket = 8 +Pocket = KeyItems Price = 0 Flags = KeyItem Description = A scope that makes unseeable Pokémon visible. It is made by Silph Co. @@ -6632,7 +6632,7 @@ Description = A scope that makes unseeable Pokémon visible. It is made by Silph [DEVONSCOPE] Name = Devon Scope NamePlural = Devon Scopes -Pocket = 8 +Pocket = KeyItems Price = 0 Flags = KeyItem Description = A device by Devon that signals any unseeable Pokémon. @@ -6640,7 +6640,7 @@ Description = A device by Devon that signals any unseeable Pokémon. [SQUIRTBOTTLE] Name = Squirt Bottle NamePlural = Squirt Bottles -Pocket = 8 +Pocket = KeyItems Price = 0 Flags = KeyItem Description = A watering can shaped like a Squirtle. It helps promote healthy growth of Berries planted in soft soil. @@ -6648,7 +6648,7 @@ Description = A watering can shaped like a Squirtle. It helps promote healthy gr [SPRAYDUCK] Name = Sprayduck NamePlural = Sprayducks -Pocket = 8 +Pocket = KeyItems Price = 0 Flags = KeyItem Description = A watering can shaped like a Psyduck. It helps promote healthy growth of Berries planted in soft soil. @@ -6656,7 +6656,7 @@ Description = A watering can shaped like a Psyduck. It helps promote healthy gro [WAILMERPAIL] Name = Wailmer Pail NamePlural = Wailmer Pails -Pocket = 8 +Pocket = KeyItems Price = 0 Flags = KeyItem Description = A nifty watering pail. Use it to promote strong growth in Berries planted in soft soil. @@ -6664,7 +6664,7 @@ Description = A nifty watering pail. Use it to promote strong growth in Berries [SPRINKLOTAD] Name = Sprinklotad NamePlural = Sprinklotads -Pocket = 8 +Pocket = KeyItems Price = 0 Flags = KeyItem Description = A watering can shaped like a Lotad. It helps promote the healthy growth of any Berries planted in soft soil. @@ -6672,7 +6672,7 @@ Description = A watering can shaped like a Lotad. It helps promote the healthy g [GRACIDEA] Name = Gracidea NamePlural = Gracideas -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = OnPokemon Flags = KeyItem @@ -6681,7 +6681,7 @@ Description = A flower sometimes bundled in bouquets to convey gratitude on spec [REVEALGLASS] Name = Reveal Glass NamePlural = Reveal Glasses -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = OnPokemon Flags = KeyItem @@ -6690,7 +6690,7 @@ Description = A glass that reveals the truth. It is a mysterious glass that retu [PRISONBOTTLE] Name = Prison Bottle NamePlural = Prison Bottles -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = OnPokemon Flags = KeyItem @@ -6699,7 +6699,7 @@ Description = A bottle believed to have been used to seal away the power of a ce [ROTOMCATALOG] Name = Rotom Catalog NamePlural = Rotom Catalogs -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = OnPokemon Flags = KeyItem @@ -6708,7 +6708,7 @@ Description = A catalog of devices that Rotom like. Use the catalog to have Roto [ZYGARDECUBE] Name = Zygarde Cube NamePlural = Zygarde Cubes -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = OnPokemon Flags = KeyItem @@ -6717,7 +6717,7 @@ Description = An item in which Zygarde Cores and Cells are gathered. You can als [DNASPLICERS] Name = DNA Splicers NamePlural = DNA Splicers -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = OnPokemon Flags = KeyItem @@ -6726,7 +6726,7 @@ Description = A splicer that fuses Kyurem and a certain Pokémon. They are said [DNASPLICERSUSED] Name = DNA Splicers NamePlural = DNA Splicers -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = OnPokemon Flags = KeyItem @@ -6735,7 +6735,7 @@ Description = A splicer that separates Kyurem and a certain Pokémon when they h [NSOLARIZER] Name = N-Solarizer NamePlural = N-Solarizers -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = OnPokemon Flags = KeyItem @@ -6744,7 +6744,7 @@ Description = A machine to fuse Necrozma, which needs light, and Solgaleo. [NSOLARIZERUSED] Name = N-Solarizer NamePlural = N-Solarizers -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = OnPokemon Flags = KeyItem @@ -6753,7 +6753,7 @@ Description = A machine to separate Necrozma, which needed light, from Solgaleo. [NLUNARIZER] Name = N-Lunarizer NamePlural = N-Lunarizers -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = OnPokemon Flags = KeyItem @@ -6762,7 +6762,7 @@ Description = A machine to fuse Necrozma, which needs light, and Lunala. [NLUNARIZERUSED] Name = N-Lunarizer NamePlural = N-Lunarizers -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = OnPokemon Flags = KeyItem @@ -6773,7 +6773,7 @@ Name = Reins of Unity NamePlural = Reins of Unity PortionName = set of Reins of Unity PortionNamePlural = sets of Reins of Unity -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = OnPokemon Flags = KeyItem @@ -6784,7 +6784,7 @@ Name = Reins of Unity NamePlural = Reins of Unity PortionName = set of Reins of Unity PortionNamePlural = sets of Reins of Unity -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = OnPokemon Flags = KeyItem @@ -6793,7 +6793,7 @@ Description = Reins that people presented to the king. They separate Calyrex and [METEORITE] Name = Meteorite NamePlural = Meteorites -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = OnPokemon Flags = KeyItem @@ -6802,7 +6802,7 @@ Description = A slightly warm rock that fell to earth from space. It allows a ce [SCROLLOFDARKNESS] Name = Scroll of Darkness NamePlural = Scrolls of Darkness -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = OnPokemon Flags = KeyItem @@ -6811,7 +6811,7 @@ Description = A scroll containing the true secrets of the path of darkness. It c [SCROLLOFWATERS] Name = Scroll of Waters NamePlural = Scrolls of Waters -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = OnPokemon Flags = KeyItem @@ -6820,7 +6820,7 @@ Description = A scroll containing the true secrets of the path of water. It can [OVALCHARM] Name = Oval Charm NamePlural = Oval Charms -Pocket = 8 +Pocket = KeyItems Price = 0 Flags = KeyItem Description = An oval charm said to increase the chance of Eggs being found at the Day Care. @@ -6828,7 +6828,7 @@ Description = An oval charm said to increase the chance of Eggs being found at t [SHINYCHARM] Name = Shiny Charm NamePlural = Shiny Charms -Pocket = 8 +Pocket = KeyItems Price = 0 Flags = KeyItem Description = A shiny charm said to increase the chance of finding a Shiny Pokémon. @@ -6836,7 +6836,7 @@ Description = A shiny charm said to increase the chance of finding a Shiny Poké [CATCHINGCHARM] Name = Catching Charm NamePlural = Catching Charms -Pocket = 8 +Pocket = KeyItems Price = 0 Flags = KeyItem Description = A charm said to increase the chance of getting a critical catch. The charm doesn't shake much. @@ -6844,7 +6844,7 @@ Description = A charm said to increase the chance of getting a critical catch. T [EXPCHARM] Name = Exp. Charm NamePlural = Exp. Charms -Pocket = 8 +Pocket = KeyItems Price = 0 Flags = KeyItem Description = A charm that increases the Exp. Points that Pokémon can get. A machine-like object is inside it. @@ -6852,7 +6852,7 @@ Description = A charm that increases the Exp. Points that Pokémon can get. A ma [MEGARING] Name = Mega Ring NamePlural = Mega Rings -Pocket = 8 +Pocket = KeyItems Price = 0 Flags = KeyItem,MegaRing Description = This ring contains an untold power that somehow enables Pokémon carrying Mega Stones to Mega Evolve. @@ -6860,7 +6860,7 @@ Description = This ring contains an untold power that somehow enables Pokémon c [POKEMONBOXLINK] Name = Pokémon Box Link NamePlural = Pokémon Box Links -Pocket = 8 +Pocket = KeyItems Price = 0 Flags = KeyItem Description = A device that allows you to access the Pokémon storage system. There are some places where it won't work. @@ -6868,7 +6868,7 @@ Description = A device that allows you to access the Pokémon storage system. Th [AURORATICKET] Name = Aurora Ticket NamePlural = Aurora Tickets -Pocket = 8 +Pocket = KeyItems Price = 0 Flags = KeyItem Description = A ticket required to board the ship to Berth Island. It glows beautifully. @@ -6876,7 +6876,7 @@ Description = A ticket required to board the ship to Berth Island. It glows beau [OLDSEAMAP] Name = Old Sea Map NamePlural = Old Sea Maps -Pocket = 8 +Pocket = KeyItems Price = 0 Flags = KeyItem -Description = A faded sea chart that shows the way to a certain island. +Description = A faded sea chart that shows the way to a certain island. \ No newline at end of file diff --git a/PBS/items.txt b/PBS/items.txt index cd245a85e..b0cc70513 100644 --- a/PBS/items.txt +++ b/PBS/items.txt @@ -3,7 +3,7 @@ [REPEL] Name = Repel NamePlural = Repels -Pocket = 1 +Pocket = Items Price = 400 FieldUse = Direct Flags = Repel,Fling_30 @@ -12,7 +12,7 @@ Description = An item that prevents weak wild Pokémon from appearing for 100 st [SUPERREPEL] Name = Super Repel NamePlural = Super Repels -Pocket = 1 +Pocket = Items Price = 700 FieldUse = Direct Flags = Repel,Fling_30 @@ -21,7 +21,7 @@ Description = An item that prevents weak wild Pokémon from appearing for 200 st [MAXREPEL] Name = Max Repel NamePlural = Max Repels -Pocket = 1 +Pocket = Items Price = 900 FieldUse = Direct Flags = Repel,Fling_30 @@ -30,7 +30,7 @@ Description = An item that prevents weak wild Pokémon from appearing for 250 st [BLACKFLUTE] Name = Black Flute NamePlural = Black Flutes -Pocket = 1 +Pocket = Items Price = 20 FieldUse = Direct Flags = Fling_30 @@ -40,7 +40,7 @@ Description = A black flute made from blown glass. Its melody makes wild Pokémo [WHITEFLUTE] Name = White Flute NamePlural = White Flutes -Pocket = 1 +Pocket = Items Price = 20 FieldUse = Direct Flags = Fling_30 @@ -52,7 +52,7 @@ Name = Honey NamePlural = Honey PortionName = jar of Honey PortionNamePlural = jars of Honey -Pocket = 1 +Pocket = Items Price = 900 FieldUse = Direct Flags = Fling_30 @@ -61,7 +61,7 @@ Description = A sweet honey with a lush aroma that attracts wild Pokémon when u [REDSHARD] Name = Red Shard NamePlural = Red Shards -Pocket = 1 +Pocket = Items Price = 1000 Flags = Fling_30 Description = A small red shard. It appears to be from some sort of implement made long ago. @@ -69,7 +69,7 @@ Description = A small red shard. It appears to be from some sort of implement ma [YELLOWSHARD] Name = Yellow Shard NamePlural = Yellow Shards -Pocket = 1 +Pocket = Items Price = 1000 Flags = Fling_30 Description = A small yellow shard. It appears to be from some sort of implement made long ago. @@ -77,7 +77,7 @@ Description = A small yellow shard. It appears to be from some sort of implement [BLUESHARD] Name = Blue Shard NamePlural = Blue Shards -Pocket = 1 +Pocket = Items Price = 1000 Flags = Fling_30 Description = A small blue shard. It appears to be from some sort of implement made long ago. @@ -85,7 +85,7 @@ Description = A small blue shard. It appears to be from some sort of implement m [GREENSHARD] Name = Green Shard NamePlural = Green Shards -Pocket = 1 +Pocket = Items Price = 1000 Flags = Fling_30 Description = A small green shard. It appears to be from some sort of implement made long ago. @@ -93,7 +93,7 @@ Description = A small green shard. It appears to be from some sort of implement [FIRESTONE] Name = Fire Stone NamePlural = Fire Stones -Pocket = 1 +Pocket = Items Price = 3000 BPPrice = 5 FieldUse = OnPokemon @@ -103,7 +103,7 @@ Description = A peculiar stone that makes certain species of Pokémon evolve. It [THUNDERSTONE] Name = Thunder Stone NamePlural = Thunder Stones -Pocket = 1 +Pocket = Items Price = 3000 BPPrice = 5 FieldUse = OnPokemon @@ -113,7 +113,7 @@ Description = A peculiar stone that makes certain species of Pokémon evolve. It [WATERSTONE] Name = Water Stone NamePlural = Water Stones -Pocket = 1 +Pocket = Items Price = 3000 BPPrice = 5 FieldUse = OnPokemon @@ -123,7 +123,7 @@ Description = A peculiar stone that makes certain species of Pokémon evolve. It [LEAFSTONE] Name = Leaf Stone NamePlural = Leaf Stones -Pocket = 1 +Pocket = Items Price = 3000 BPPrice = 5 FieldUse = OnPokemon @@ -133,7 +133,7 @@ Description = A peculiar stone that makes certain species of Pokémon evolve. It [MOONSTONE] Name = Moon Stone NamePlural = Moon Stones -Pocket = 1 +Pocket = Items Price = 3000 BPPrice = 5 FieldUse = OnPokemon @@ -143,7 +143,7 @@ Description = A peculiar stone that makes certain species of Pokémon evolve. It [SUNSTONE] Name = Sun Stone NamePlural = Sun Stones -Pocket = 1 +Pocket = Items Price = 3000 BPPrice = 5 FieldUse = OnPokemon @@ -153,7 +153,7 @@ Description = A peculiar stone that makes certain species of Pokémon evolve. It [DUSKSTONE] Name = Dusk Stone NamePlural = Dusk Stones -Pocket = 1 +Pocket = Items Price = 3000 BPPrice = 5 FieldUse = OnPokemon @@ -163,7 +163,7 @@ Description = A peculiar stone that makes certain species of Pokémon evolve. It [DAWNSTONE] Name = Dawn Stone NamePlural = Dawn Stones -Pocket = 1 +Pocket = Items Price = 3000 BPPrice = 5 FieldUse = OnPokemon @@ -173,7 +173,7 @@ Description = A peculiar stone that makes certain species of Pokémon evolve. It [SHINYSTONE] Name = Shiny Stone NamePlural = Shiny Stones -Pocket = 1 +Pocket = Items Price = 3000 BPPrice = 5 FieldUse = OnPokemon @@ -183,7 +183,7 @@ Description = A peculiar stone that makes certain species of Pokémon evolve. It [ICESTONE] Name = Ice Stone NamePlural = Ice Stones -Pocket = 1 +Pocket = Items Price = 3000 BPPrice = 5 FieldUse = OnPokemon @@ -193,7 +193,7 @@ Description = A peculiar stone that makes certain species of Pokémon evolve. It [SWEETAPPLE] Name = Sweet Apple NamePlural = Sweet Apples -Pocket = 1 +Pocket = Items Price = 2200 BPPrice = 5 FieldUse = OnPokemon @@ -203,7 +203,7 @@ Description = A peculiar apple that can make a certain species of Pokémon evolv [TARTAPPLE] Name = Tart Apple NamePlural = Tart Apples -Pocket = 1 +Pocket = Items Price = 2200 BPPrice = 5 FieldUse = OnPokemon @@ -213,7 +213,7 @@ Description = A peculiar apple that can make a certain species of Pokémon evolv [CRACKEDPOT] Name = Cracked Pot NamePlural = Cracked Pots -Pocket = 1 +Pocket = Items Price = 3000 SellPrice = 800 BPPrice = 5 @@ -224,7 +224,7 @@ Description = A peculiar cracked teapot that can make a certain species of Poké [CHIPPEDPOT] Name = Chipped Pot NamePlural = Chipped Pots -Pocket = 1 +Pocket = Items Price = 3000 SellPrice = 19000 BPPrice = 5 @@ -235,7 +235,7 @@ Description = A peculiar chipped teapot that can make a certain species of Poké [GALARICACUFF] Name = Galarica Cuff NamePlural = Galarica Cuffs -Pocket = 1 +Pocket = Items Price = 6000 BPPrice = 5 FieldUse = OnPokemon @@ -245,7 +245,7 @@ Description = A cuff made from woven-together Galarica Twigs. Giving it to a Gal [GALARICAWREATH] Name = Galarica Wreath NamePlural = Galarica Wreaths -Pocket = 1 +Pocket = Items Price = 6000 BPPrice = 5 FieldUse = OnPokemon @@ -257,7 +257,7 @@ Name = Black Augurite NamePlural = Black Augurites PortionName = piece of Black Augurite PortionNamePlural = pieces of Black Augurite -Pocket = 1 +Pocket = Items Price = 8000 SellPrice = 500 BPPrice = 5 @@ -268,7 +268,7 @@ Description = A glassy black stone that produces a sharp cutting edge when split [PEATBLOCK] Name = Peat Block NamePlural = Peat Blocks -Pocket = 1 +Pocket = Items Price = 10000 SellPrice = 500 BPPrice = 5 @@ -279,7 +279,7 @@ Description = A block of muddy material that can be used as fuel when it is drie [SYRUPYAPPLE] Name = Syrupy Apple NamePlural = Syrupy Apples -Pocket = 1 +Pocket = Items Price = 500 SellPrice = 550 BPPrice = 5 @@ -290,7 +290,7 @@ Description = A peculiar apple that can make a certain species of Pokémon evolv [UNREMARKABLETEACUP] Name = Unremarkable Teacup NamePlural = Unremarkable Teacups -Pocket = 1 +Pocket = Items Price = 1600 BPPrice = 5 FieldUse = OnPokemon @@ -300,7 +300,7 @@ Description = A peculiar cracked teacup that can make a certain species of Poké [MASTERPIECETEACUP] Name = Masterpiece Teacup NamePlural = Masterpiece Teacups -Pocket = 1 +Pocket = Items Price = 38000 BPPrice = 5 FieldUse = OnPokemon @@ -312,7 +312,7 @@ Name = Metal Alloy NamePlural = Metal Alloys PortionName = hunk of Metal Alloy PortionNamePlural = hunks of Metal Alloy -Pocket = 1 +Pocket = Items Price = 6000 BPPrice = 5 FieldUse = OnPokemon @@ -324,7 +324,7 @@ Name = Malicious Armor NamePlural = Malicious Armors PortionName = set of Malicious Armor PortionNamePlural = sets of Malicious Armor -Pocket = 1 +Pocket = Items Price = 3000 FieldUse = OnPokemon Flags = EvolutionStone,Fling_30 @@ -335,7 +335,7 @@ Name = Auspicious Armor NamePlural = Auspicious Armors PortionName = set of Auspicious Armor PortionNamePlural = sets of Auspicious Armor -Pocket = 1 +Pocket = Items Price = 3000 FieldUse = OnPokemon Flags = EvolutionStone,Fling_30 @@ -344,7 +344,7 @@ Description = A peculiar set of armor that can make a certain species of Pokémo [REDAPRICORN] Name = Red Apricorn NamePlural = Red Apricorns -Pocket = 1 +Pocket = Items Price = 200 Flags = Apricorn Description = A red Apricorn. It assails your nostrils. @@ -352,7 +352,7 @@ Description = A red Apricorn. It assails your nostrils. [YELLOWAPRICORN] Name = Yellow Apricorn NamePlural = Yellow Apricorns -Pocket = 1 +Pocket = Items Price = 200 Flags = Apricorn Description = A yellow Apricorn. It has an invigorating scent. @@ -360,7 +360,7 @@ Description = A yellow Apricorn. It has an invigorating scent. [BLUEAPRICORN] Name = Blue Apricorn NamePlural = Blue Apricorns -Pocket = 1 +Pocket = Items Price = 200 Flags = Apricorn Description = A blue Apricorn. It smells a bit like grass. @@ -368,7 +368,7 @@ Description = A blue Apricorn. It smells a bit like grass. [GREENAPRICORN] Name = Green Apricorn NamePlural = Green Apricorns -Pocket = 1 +Pocket = Items Price = 200 Flags = Apricorn Description = A green Apricorn. It has a mysterious, aromatic scent. @@ -376,7 +376,7 @@ Description = A green Apricorn. It has a mysterious, aromatic scent. [PINKAPRICORN] Name = Pink Apricorn NamePlural = Pink Apricorns -Pocket = 1 +Pocket = Items Price = 200 Flags = Apricorn Description = A pink Apricorn. It has a nice, sweet scent. @@ -384,7 +384,7 @@ Description = A pink Apricorn. It has a nice, sweet scent. [WHITEAPRICORN] Name = White Apricorn NamePlural = White Apricorns -Pocket = 1 +Pocket = Items Price = 200 Flags = Apricorn Description = A white Apricorn. It doesn't smell like anything. @@ -392,7 +392,7 @@ Description = A white Apricorn. It doesn't smell like anything. [BLACKAPRICORN] Name = Black Apricorn NamePlural = Black Apricorns -Pocket = 1 +Pocket = Items Price = 200 Flags = Apricorn Description = A black Apricorn. It has an indescribable scent. @@ -400,7 +400,7 @@ Description = A black Apricorn. It has an indescribable scent. [HELIXFOSSIL] Name = Helix Fossil NamePlural = Helix Fossils -Pocket = 1 +Pocket = Items Price = 7000 Flags = Fossil,Fling_100 Description = A fossil of an ancient Pokémon that lived in the sea. It appears to be part of a seashell. @@ -408,7 +408,7 @@ Description = A fossil of an ancient Pokémon that lived in the sea. It appears [DOMEFOSSIL] Name = Dome Fossil NamePlural = Dome Fossils -Pocket = 1 +Pocket = Items Price = 7000 Flags = Fossil,Fling_100 Description = A fossil of an ancient Pokémon that lived in the sea. It appears to be part of a shell. @@ -416,7 +416,7 @@ Description = A fossil of an ancient Pokémon that lived in the sea. It appears [OLDAMBER] Name = Old Amber NamePlural = Old Ambers -Pocket = 1 +Pocket = Items Price = 1000 Flags = Fossil,Fling_100 Description = A piece of amber that contains the genes of an ancient Pokémon. It is clear with a reddish tint. @@ -424,7 +424,7 @@ Description = A piece of amber that contains the genes of an ancient Pokémon. I [ROOTFOSSIL] Name = Root Fossil NamePlural = Root Fossils -Pocket = 1 +Pocket = Items Price = 7000 Flags = Fossil,Fling_100 Description = A fossil of an ancient Pokémon that lived in the sea. It appears to be part of a plant root. @@ -432,7 +432,7 @@ Description = A fossil of an ancient Pokémon that lived in the sea. It appears [CLAWFOSSIL] Name = Claw Fossil NamePlural = Claw Fossils -Pocket = 1 +Pocket = Items Price = 7000 Flags = Fossil,Fling_100 Description = A fossil of an ancient Pokémon that lived in the sea. It appears to be part of a claw. @@ -440,7 +440,7 @@ Description = A fossil of an ancient Pokémon that lived in the sea. It appears [SKULLFOSSIL] Name = Skull Fossil NamePlural = Skull Fossils -Pocket = 1 +Pocket = Items Price = 7000 Flags = Fossil,Fling_100 Description = A fossil from a prehistoric Pokémon that lived on the land. It appears to be part of a head. @@ -448,7 +448,7 @@ Description = A fossil from a prehistoric Pokémon that lived on the land. It ap [ARMORFOSSIL] Name = Armor Fossil NamePlural = Armor Fossils -Pocket = 1 +Pocket = Items Price = 7000 Flags = Fossil,Fling_100 Description = A fossil from a prehistoric Pokémon that lived on the land. It appears to be part of a collar. @@ -456,7 +456,7 @@ Description = A fossil from a prehistoric Pokémon that lived on the land. It ap [COVERFOSSIL] Name = Cover Fossil NamePlural = Cover Fossils -Pocket = 1 +Pocket = Items Price = 7000 Flags = Fossil,Fling_100 Description = A fossil of an ancient Pokémon that lived in the sea in ancient times. It appears to be part of its back. @@ -464,7 +464,7 @@ Description = A fossil of an ancient Pokémon that lived in the sea in ancient t [PLUMEFOSSIL] Name = Plume Fossil NamePlural = Plume Fossils -Pocket = 1 +Pocket = Items Price = 7000 Flags = Fossil,Fling_100 Description = A fossil of an ancient Pokémon that flew in the sky in ancient times. It appears to be part of its wing. @@ -472,7 +472,7 @@ Description = A fossil of an ancient Pokémon that flew in the sky in ancient ti [JAWFOSSIL] Name = Jaw Fossil NamePlural = Jaw Fossils -Pocket = 1 +Pocket = Items Price = 7000 Flags = Fossil,Fling_100 Description = A fossil from a prehistoric Pokémon that once lived on the land. It appears to be part of a large jaw. @@ -480,7 +480,7 @@ Description = A fossil from a prehistoric Pokémon that once lived on the land. [SAILFOSSIL] Name = Sail Fossil NamePlural = Sail Fossils -Pocket = 1 +Pocket = Items Price = 7000 Flags = Fossil,Fling_100 Description = A fossil from a prehistoric Pokémon that once lived on the land. It looks like the impression from a skin sail. @@ -488,7 +488,7 @@ Description = A fossil from a prehistoric Pokémon that once lived on the land. [FOSSILIZEDBIRD] Name = Fossilized Bird NamePlural = Fossilized Birds -Pocket = 1 +Pocket = Items Price = 5000 Flags = Fling_100 Description = The fossil of an ancient Pokémon that once soared through the sky. What it looked like is a mystery. @@ -496,7 +496,7 @@ Description = The fossil of an ancient Pokémon that once soared through the sky [FOSSILIZEDFISH] Name = Fossilized Fish NamePlural = Fossilized Fish -Pocket = 1 +Pocket = Items Price = 5000 Flags = Fling_100 Description = The fossil of an ancient Pokémon that once lived in the sea. What it looked like is a mystery. @@ -504,7 +504,7 @@ Description = The fossil of an ancient Pokémon that once lived in the sea. What [FOSSILIZEDDRAKE] Name = Fossilized Drake NamePlural = Fossilized Drakes -Pocket = 1 +Pocket = Items Price = 5000 Flags = Fling_100 Description = The fossil of an ancient Pokémon that once roamed the land. What it looked like is a mystery. @@ -512,7 +512,7 @@ Description = The fossil of an ancient Pokémon that once roamed the land. What [FOSSILIZEDDINO] Name = Fossilized Dino NamePlural = Fossilized Dinos -Pocket = 1 +Pocket = Items Price = 5000 Flags = Fling_100 Description = The fossil of an ancient Pokémon that once lived in the sea. What it looked like is a mystery. @@ -520,7 +520,7 @@ Description = The fossil of an ancient Pokémon that once lived in the sea. What [PRETTYFEATHER] Name = Pretty Feather NamePlural = Pretty Feathers -Pocket = 1 +Pocket = Items Price = 1000 Flags = Fling_20 Description = Though this feather is beautiful, it's just a regular feather and has no effect on Pokémon. @@ -528,7 +528,7 @@ Description = Though this feather is beautiful, it's just a regular feather and [TINYMUSHROOM] Name = Tiny Mushroom NamePlural = Tiny Mushrooms -Pocket = 1 +Pocket = Items Price = 500 Flags = Fling_30 Description = A small and rare mushroom. It is sought after by collectors. @@ -536,7 +536,7 @@ Description = A small and rare mushroom. It is sought after by collectors. [BIGMUSHROOM] Name = Big Mushroom NamePlural = Big Mushrooms -Pocket = 1 +Pocket = Items Price = 5000 Flags = Fling_30 Description = A large and rare mushroom. It is sought after by collectors. @@ -544,7 +544,7 @@ Description = A large and rare mushroom. It is sought after by collectors. [BALMMUSHROOM] Name = Balm Mushroom NamePlural = Balm Mushrooms -Pocket = 1 +Pocket = Items Price = 15000 Flags = Fling_30 Description = A rare mushroom which gives off a nice fragrance. A maniac will buy it for a high price. @@ -552,7 +552,7 @@ Description = A rare mushroom which gives off a nice fragrance. A maniac will bu [PEARL] Name = Pearl NamePlural = Pearls -Pocket = 1 +Pocket = Items Price = 2000 Flags = Fling_30 Description = A somewhat-small pearl that sparkles in a pretty silver color. It can be sold cheaply to shops. @@ -560,7 +560,7 @@ Description = A somewhat-small pearl that sparkles in a pretty silver color. It [BIGPEARL] Name = Big Pearl NamePlural = Big Pearls -Pocket = 1 +Pocket = Items Price = 8000 Flags = Fling_30 Description = A quite-large pearl that sparkles in a pretty silver color. It can be sold at a high price to shops. @@ -568,7 +568,7 @@ Description = A quite-large pearl that sparkles in a pretty silver color. It can [PEARLSTRING] Name = Pearl String NamePlural = Pearl Strings -Pocket = 1 +Pocket = Items Price = 20000 Flags = Fling_30 Description = Very large pearls that sparkle in a pretty silver color. A maniac will buy them for a high price. @@ -578,7 +578,7 @@ Name = Stardust NamePlural = Stardusts PortionName = bag of Stardust PortionNamePlural = bags of Stardust -Pocket = 1 +Pocket = Items Price = 3000 Flags = Fling_30 Description = Lovely, red-colored sand with a loose, silky feel. It can be sold at a high price to shops. @@ -586,7 +586,7 @@ Description = Lovely, red-colored sand with a loose, silky feel. It can be sold [STARPIECE] Name = Star Piece NamePlural = Star Pieces -Pocket = 1 +Pocket = Items Price = 12000 Flags = Fling_30 Description = A shard of a pretty gem that sparkles in a red color. It can be sold at a high price to shops. @@ -594,7 +594,7 @@ Description = A shard of a pretty gem that sparkles in a red color. It can be so [COMETSHARD] Name = Comet Shard NamePlural = Comet Shards -Pocket = 1 +Pocket = Items Price = 25000 Flags = Fling_30 Description = A shard which fell to the ground when a comet approached. A maniac will buy it for a high price. @@ -602,7 +602,7 @@ Description = A shard which fell to the ground when a comet approached. A maniac [NUGGET] Name = Nugget NamePlural = Nuggets -Pocket = 1 +Pocket = Items Price = 10000 Flags = Fling_30 Description = A nugget of pure gold that gives off a lustrous gleam. It can be sold at a high price to shops. @@ -610,7 +610,7 @@ Description = A nugget of pure gold that gives off a lustrous gleam. It can be s [BIGNUGGET] Name = Big Nugget NamePlural = Big Nuggets -Pocket = 1 +Pocket = Items Price = 40000 Flags = Fling_130 Description = A big nugget of pure gold that gives off a lustrous gleam. A maniac will buy it for a high price. @@ -618,7 +618,7 @@ Description = A big nugget of pure gold that gives off a lustrous gleam. A mania [HEARTSCALE] Name = Heart Scale NamePlural = Heart Scales -Pocket = 1 +Pocket = Items Price = 100 Flags = Fling_30 Description = A pretty, heart-shaped scale that is extremely rare. It glows faintly in the colors of the rainbow. @@ -626,14 +626,14 @@ Description = A pretty, heart-shaped scale that is extremely rare. It glows fain [SLOWPOKETAIL] Name = Slowpoke Tail NamePlural = Slowpoke Tails -Pocket = 1 +Pocket = Items Price = 10000 Description = A very tasty tail of something. It can be sold at a high price to shops. #------------------------------- [RAREBONE] Name = Rare Bone NamePlural = Rare Bones -Pocket = 1 +Pocket = Items Price = 5000 Flags = Fling_100 Description = A bone that is extremely valuable for Pokémon archaeology. It can be sold for a high price to shops. @@ -643,7 +643,7 @@ Name = Relic Copper NamePlural = Relic Coppers PortionName = Relic Copper coin PortionNamePlural = Relic Copper coins -Pocket = 1 +Pocket = Items Price = 0 Flags = Fling_30 Description = A copper coin used in a civilization about 3,000 years ago. A maniac will buy it for a high price. @@ -653,7 +653,7 @@ Name = Relic Silver NamePlural = Relic Silvers PortionName = Relic Silver coin PortionNamePlural = Relic Silver coins -Pocket = 1 +Pocket = Items Price = 0 Flags = Fling_30 Description = A silver coin used in a civilization about 3,000 years ago. A maniac will buy it for a high price. @@ -663,7 +663,7 @@ Name = Relic Gold NamePlural = Relic Golds PortionName = Relic Gold coin PortionNamePlural = Relic Gold coins -Pocket = 1 +Pocket = Items Price = 60000 Flags = Fling_30 Description = A gold coin used in a civilization about 3,000 years ago. A maniac will buy it for a high price. @@ -671,7 +671,7 @@ Description = A gold coin used in a civilization about 3,000 years ago. A maniac [RELICVASE] Name = Relic Vase NamePlural = Relic Vases -Pocket = 1 +Pocket = Items Price = 0 Flags = Fling_30 Description = A vase made in a civilization about 3,000 years ago. A maniac will buy it for a high price. @@ -679,7 +679,7 @@ Description = A vase made in a civilization about 3,000 years ago. A maniac will [RELICBAND] Name = Relic Band NamePlural = Relic Bands -Pocket = 1 +Pocket = Items Price = 0 Flags = Fling_30 Description = A bracelet made in a civilization about 3,000 years ago. A maniac will buy it for a high price. @@ -687,7 +687,7 @@ Description = A bracelet made in a civilization about 3,000 years ago. A maniac [RELICSTATUE] Name = Relic Statue NamePlural = Relic Statues -Pocket = 1 +Pocket = Items Price = 0 Flags = Fling_30 Description = A stone figure made in a civilization about 3,000 years ago. A maniac will buy it for a high price. @@ -695,7 +695,7 @@ Description = A stone figure made in a civilization about 3,000 years ago. A man [RELICCROWN] Name = Relic Crown NamePlural = Relic Crowns -Pocket = 1 +Pocket = Items Price = 0 Flags = Fling_30 Description = A crown made in a civilization about 3,000 years ago. A maniac will buy it for a high price. @@ -703,7 +703,7 @@ Description = A crown made in a civilization about 3,000 years ago. A maniac wil [TINYBAMBOOSHOOT] Name = Tiny Bamboo Shoot NamePlural = Tiny Bamboo Shoots -Pocket = 1 +Pocket = Items Price = 1500 Flags = Fling_30 Description = A small and rare bamboo shoot. It's quite popular with a certain class of gourmands. @@ -711,7 +711,7 @@ Description = A small and rare bamboo shoot. It's quite popular with a certain c [BIGBAMBOOSHOOT] Name = Big Bamboo Shoot NamePlural = Big Bamboo Shoots -Pocket = 1 +Pocket = Items Price = 6000 Flags = Fling_30 Description = A large and rare bamboo shoot. It's extremely popular with a certain class of gourmands. @@ -721,7 +721,7 @@ Name = Growth Mulch NamePlural = Growth Mulch PortionName = bag of Growth Mulch PortionNamePlural = bags of Growth Mulch -Pocket = 1 +Pocket = Items Price = 200 Flags = Mulch,Fling_30 Description = A fertilizer to be spread on soft soil in regions where Berries are grown. A maniac will buy it for a high price. @@ -731,7 +731,7 @@ Name = Damp Mulch NamePlural = Damp Mulch PortionName = bag of Damp Mulch PortionNamePlural = bags of Damp Mulch -Pocket = 1 +Pocket = Items Price = 200 Flags = Mulch,Fling_30 Description = A fertilizer to be spread on soft soil in regions where Berries are grown. A maniac will buy it for a high price. @@ -741,7 +741,7 @@ Name = Stable Mulch NamePlural = Stable Mulch PortionName = bag of Stable Mulch PortionNamePlural = bags of Stable Mulch -Pocket = 1 +Pocket = Items Price = 200 Flags = Mulch,Fling_30 Description = A fertilizer to be spread on soft soil in regions where Berries are grown. A maniac will buy it for a high price. @@ -751,7 +751,7 @@ Name = Gooey Mulch NamePlural = Gooey Mulch PortionName = bag of Gooey Mulch PortionNamePlural = bags of Gooey Mulch -Pocket = 1 +Pocket = Items Price = 200 Flags = Mulch,Fling_30 Description = A fertilizer to be spread on soft soil in regions where Berries are grown. A maniac will buy it for a high price. @@ -761,7 +761,7 @@ Name = Shoal Salt NamePlural = Shoal Salts PortionName = pile of Shoal Salt PortionNamePlural = piles of Shoal Salt -Pocket = 1 +Pocket = Items Price = 20 Flags = Fling_30 Description = Pure salt that can be discovered deep inside the Shoal Cave. A maniac will buy it for a high price. @@ -769,7 +769,7 @@ Description = Pure salt that can be discovered deep inside the Shoal Cave. A man [SHOALSHELL] Name = Shoal Shell NamePlural = Shoal Shells -Pocket = 1 +Pocket = Items Price = 20 Flags = Fling_30 Description = A pretty seashell that can be found deep inside the Shoal Cave. A maniac will buy it for a high price. @@ -777,7 +777,7 @@ Description = A pretty seashell that can be found deep inside the Shoal Cave. A [ODDKEYSTONE] Name = Odd Keystone NamePlural = Odd Keystones -Pocket = 1 +Pocket = Items Price = 2100 Flags = Fling_80 Description = A vital item that is needed to keep a stone tower from collapsing. Voices can be heard from it occasionally. @@ -787,7 +787,7 @@ Name = Red Nectar NamePlural = Red Nectars PortionName = jar of Red Nectar PortionNamePlural = jars of Red Nectar -Pocket = 1 +Pocket = Items Price = 300 FieldUse = OnPokemon Flags = Fling_10 @@ -798,7 +798,7 @@ Name = Yellow Nectar NamePlural = Yellow Nectars PortionName = jar of Yellow Nectar PortionNamePlural = jars of Yellow Nectar -Pocket = 1 +Pocket = Items Price = 300 FieldUse = OnPokemon Flags = Fling_10 @@ -809,7 +809,7 @@ Name = Pink Nectar NamePlural = Pink Nectars PortionName = jar of Pink Nectar PortionNamePlural = jars of Pink Nectar -Pocket = 1 +Pocket = Items Price = 300 FieldUse = OnPokemon Flags = Fling_10 @@ -820,2356 +820,136 @@ Name = Purple Nectar NamePlural = Purple Nectars PortionName = jar of Purple Nectar PortionNamePlural = jars of Purple Nectar -Pocket = 1 +Pocket = Items Price = 300 FieldUse = OnPokemon Flags = Fling_10 Description = A flower nectar obtained at Poni Meadow. It changes the form of certain species of Pokémon. #------------------------------- -[AIRBALLOON] -Name = Air Balloon -NamePlural = Air Balloons -Pocket = 1 -Price = 3000 -SellPrice = 2000 -BPPrice = 15 -Flags = Fling_10 -Description = An item to be held by a Pokémon. The holder will float in the air until hit. Once hit, this item will burst. -#------------------------------- -[BRIGHTPOWDER] -Name = Bright Powder -NamePlural = Bright Powders -PortionName = bag of Bright Powder -PortionNamePlural = bags of Bright Powder -Pocket = 1 -Price = 3000 -SellPrice = 2000 -BPPrice = 48 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It casts a tricky glare that lowers the opponent's accuracy. -#------------------------------- -[EVIOLITE] -Name = Eviolite -NamePlural = Eviolites -Pocket = 1 -Price = 3000 -SellPrice = 2000 -BPPrice = 25 -Flags = Fling_40 -Description = A mysterious evolutionary lump. When held, it raises the Defense and Sp. Def if the holder can still evolve. -#------------------------------- -[FLOATSTONE] -Name = Float Stone -NamePlural = Float Stones -Pocket = 1 -Price = 3000 -SellPrice = 2000 -BPPrice = 10 -Flags = Fling_30 -Description = A very light stone. It reduces the weight of a Pokémon when held. -#------------------------------- -[DESTINYKNOT] -Name = Destiny Knot -NamePlural = Destiny Knots -Pocket = 1 -Price = 3000 -SellPrice = 2000 -BPPrice = 10 -Flags = Fling_10 -Description = A long, thin, bright-red string to be held by a Pokémon. If the holder becomes infatuated, so does the foe. -#------------------------------- -[ROCKYHELMET] -Name = Rocky Helmet -NamePlural = Rocky Helmets -Pocket = 1 -Price = 3000 -SellPrice = 2000 -BPPrice = 25 -Flags = Fling_60 -Description = If the holder of this item takes damage, the attacker will also be damaged upon contact. -#------------------------------- -[ASSAULTVEST] -Name = Assault Vest -NamePlural = Assault Vests -Pocket = 1 -Price = 1000 -BPPrice = 25 -Flags = Fling_80 -Description = An item to be held by a Pokémon. This offensive vest raises Sp. Def but prevents the use of status moves. -#------------------------------- -[SAFETYGOGGLES] -Name = Safety Goggles -NamePlural = Safety Goggles -PortionName = pair of Safety Goggles -PortionNamePlural = pairs of Safety Goggles -Pocket = 1 -Price = 3000 -SellPrice = 2000 -BPPrice = 25 -Flags = Fling_80 -Description = An item to be held by a Pokémon. They protect the holder from weather-related damage and powder. -#------------------------------- -[PROTECTIVEPADS] -Name = Protective Pads -NamePlural = Protective Pads -PortionName = set of Protective Pads -PortionNamePlural = sets of Protective Pads -Pocket = 1 -Price = 3000 -SellPrice = 2000 -BPPrice = 25 -Flags = Fling_30 -Description = An item to be held by a Pokémon. They protect the holder from effects caused by making contact. -#------------------------------- -[HEAVYDUTYBOOTS] -Name = Heavy-Duty Boots -NamePlural = Heavy-Duty Boots -PortionName = pair of Heavy-Duty Boots -PortionNamePlural = pairs of Heavy-Duty Boots -Pocket = 1 -Price = 3000 -SellPrice = 2000 -BPPrice = 25 -Flags = Fling_80 -Description = These boots prevent the effects of traps set on the battlefield. -#------------------------------- -[UTILITYUMBRELLA] -Name = Utility Umbrella -NamePlural = Utility Umbrellas -Pocket = 1 -Price = 3000 -SellPrice = 2000 -BPPrice = 25 -Flags = Fling_60 -Description = An item to be held by a Pokémon. This sturdy umbrella protects the holder from the effects of rain and sun. -#------------------------------- -[ABILITYSHIELD] -Name = Ability Shield -NamePlural = Ability Shields -Pocket = 1 -Price = 20000 -Flags = Fling_30 -Description = An item to be held by a Pokémon. This cute shield protects the holder from having its Ability changed by others. -#------------------------------- -[CLEARAMULET] -Name = Clear Amulet -NamePlural = Clear Amulets -Pocket = 1 -Price = 30000 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It protects the holder from having its stats lowered by other Pokémon. -#------------------------------- -[COVERTCLOAK] -Name = Covert Cloak -NamePlural = Covert Cloaks -Pocket = 1 -Price = 20000 -SellPrice = 5000 -Flags = Fling_30 -Description = An item to be held by a Pokémon. This hooded cloak protects the holder from moves' additional effects. -#------------------------------- -[EJECTBUTTON] -Name = Eject Button -NamePlural = Eject Buttons -Pocket = 1 -Price = 3000 -SellPrice = 2000 -BPPrice = 20 -Flags = Fling_30 -Description = If the holder is hit by an attack, it will switch with another Pokémon in your party. -#------------------------------- -[EJECTPACK] -Name = Eject Pack -NamePlural = Eject Packs -Pocket = 1 -Price = 3000 -SellPrice = 2000 -BPPrice = 20 -Flags = Fling_50 -Description = An item to be held by a Pokémon. When the holder's stats are lowered, it will be switched out of battle. -#------------------------------- -[REDCARD] -Name = Red Card -NamePlural = Red Cards -Pocket = 1 -Price = 3000 -SellPrice = 2000 -BPPrice = 20 -Flags = Fling_10 -Description = A card with a mysterious power. When the holder is struck by a foe, the attacker is removed from battle. -#------------------------------- -[SHEDSHELL] -Name = Shed Shell -NamePlural = Shed Shells -Pocket = 1 -Price = 3000 -SellPrice = 2000 -Flags = Fling_10 -Description = An item to be held by a Pokémon. This discarded carapace lets the holder switch out of battle without fail. -#------------------------------- -[SMOKEBALL] -Name = Smoke Ball -NamePlural = Smoke Balls -Pocket = 1 -Price = 3000 -SellPrice = 2000 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It enables the holder to flee from any wild Pokémon without fail. -#------------------------------- -[LUCKYEGG] -Name = Lucky Egg -NamePlural = Lucky Eggs -Pocket = 1 -Price = 10000 -BPPrice = 77 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It is an egg filled with happiness that earns extra Exp. Points in battle. -#------------------------------- -[EXPSHARE] -Name = Exp. Share -NamePlural = Exp. Shares -Pocket = 1 -Price = 3000 -Flags = Fling_30 -Description = An item to be held by a Pokémon. The holder gets a share of a battle's Exp. Points without battling. -#------------------------------- -[AMULETCOIN] -Name = Amulet Coin -NamePlural = Amulet Coins -Pocket = 1 -Price = 10000 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It doubles a battle's prize money if the holding Pokémon joins in. -#------------------------------- -[SOOTHEBELL] -Name = Soothe Bell -NamePlural = Soothe Bells -Pocket = 1 -Price = 4000 -BPPrice = 15 -Flags = Fling_10 -Description = An item to be held by a Pokémon. The comforting chime of this bell calms the holder, making it friendly. -#------------------------------- -[CLEANSETAG] -Name = Cleanse Tag -NamePlural = Cleanse Tags -Pocket = 1 -Price = 5000 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It helps keep wild Pokémon away if the holder is the first one in the party. -#------------------------------- -[CHOICEBAND] -Name = Choice Band -NamePlural = Choice Bands -Pocket = 1 -Price = 4000 -BPPrice = 25 -Flags = Fling_10 -Description = An item to be held by a Pokémon. This headband ups Attack, but allows the use of only one move. -#------------------------------- -[CHOICESPECS] -Name = Choice Specs -NamePlural = Choice Specs -PortionName = pair of Choice Specs -PortionNamePlural = pairs of Choice Specs -Pocket = 1 -Price = 4000 -BPPrice = 25 -Flags = Fling_10 -Description = An item to be held by a Pokémon. These curious glasses boost Sp. Atk but allows the use of only one move. -#------------------------------- -[CHOICESCARF] -Name = Choice Scarf -NamePlural = Choice Scarves -Pocket = 1 -Price = 4000 -BPPrice = 25 -Flags = Fling_10 -Description = An item to be held by a Pokémon. This scarf boosts Speed but allows the use of only one move. -#------------------------------- -[HEATROCK] -Name = Heat Rock -NamePlural = Heat Rocks -Pocket = 1 -Price = 4000 -BPPrice = 15 -Flags = Fling_60 -Description = A Pokémon held item that extends the duration of the move Sunny Day used by the holder. -#------------------------------- -[DAMPROCK] -Name = Damp Rock -NamePlural = Damp Rocks -Pocket = 1 -Price = 4000 -BPPrice = 15 -Flags = Fling_60 -Description = A Pokémon held item that extends the duration of the move Rain Dance used by the holder. -#------------------------------- -[SMOOTHROCK] -Name = Smooth Rock -NamePlural = Smooth Rocks -Pocket = 1 -Price = 4000 -BPPrice = 15 -Flags = Fling_10 -Description = A Pokémon held item that extends the duration of the move Sandstorm used by the holder. -#------------------------------- -[ICYROCK] -Name = Icy Rock -NamePlural = Icy Rocks -Pocket = 1 -Price = 4000 -BPPrice = 15 -Flags = Fling_40 -Description = A Pokémon held item that extends the duration of the move Hail used by the holder. -#------------------------------- -[TERRAINEXTENDER] -Name = Terrain Extender -NamePlural = Terrain Extenders -Pocket = 1 -Price = 4000 -BPPrice = 15 -Flags = Fling_60 -Description = An item to be held by a Pokémon. It extends the duration of the terrain caused by the holder. -#------------------------------- -[LIGHTCLAY] -Name = Light Clay -NamePlural = Light Clays -PortionName = lump of Light Clay -PortionNamePlural = lumps of Light Clay -Pocket = 1 -Price = 4000 -BPPrice = 15 -Flags = Fling_30 -Description = An item to be held by a Pokémon. Protective moves like Light Screen and Reflect will be effective longer. -#------------------------------- -[GRIPCLAW] -Name = Grip Claw -NamePlural = Grip Claws -Pocket = 1 -Price = 4000 -BPPrice = 15 -Flags = Fling_90 -Description = A Pokémon held item that extends the duration of multiturn attacks like Bind and Wrap. -#------------------------------- -[LOADEDDICE] -Name = Loaded Dice -NamePlural = Loaded Dice -PortionName = set of Loaded Dice -PortionNamePlural = sets of Loaded Dice -Pocket = 1 -Price = 20000 -SellPrice = 5000 -Flags = Fling_30 -Description = An item to be held by a Pokémon. This dice ensures that the holder's multistrike moves hit more times. -#------------------------------- -[BINDINGBAND] -Name = Binding Band -NamePlural = Binding Bands -Pocket = 1 -Price = 3000 -SellPrice = 2000 -BPPrice = 15 -Flags = Fling_30 -Description = A band that increases the power of binding moves when held. -#------------------------------- -[BIGROOT] -Name = Big Root -NamePlural = Big Roots -Pocket = 1 -Price = 4000 -BPPrice = 15 -Flags = Fling_10 -Description = A Pokémon held item that boosts the power of HP-stealing moves to let the holder recover more HP. -#------------------------------- -[BLACKSLUDGE] -Name = Black Sludge -NamePlural = Black Sludges -PortionName = blob of Black Sludge -PortionNamePlural = blobs of Black Sludge -Pocket = 1 -Price = 3000 -SellPrice = 2000 -BPPrice = 25 -Flags = Fling_30 -Description = A held item that gradually restores the HP of Poison-type Pokémon. It inflicts damage on all other types. -#------------------------------- -[LEFTOVERS] -Name = Leftovers -NamePlural = Leftovers -PortionName = serving of Leftovers -PortionNamePlural = servings of Leftovers -Pocket = 1 -Price = 4000 -BPPrice = 25 -Flags = Fling_10 -Description = An item to be held by a Pokémon. The holder's HP is gradually restored during battle. -#------------------------------- -[SHELLBELL] -Name = Shell Bell -NamePlural = Shell Bells -Pocket = 1 -Price = 4000 -BPPrice = 25 -Flags = Fling_30 -Description = An item to be held by a Pokémon. The holder's HP is restored a little every time it inflicts damage. -#------------------------------- -[MENTALHERB] -Name = Mental Herb -NamePlural = Mental Herbs -Pocket = 1 -Price = 4000 -BPPrice = 15 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It snaps the holder out of infatuation. It can be used only once. -#------------------------------- -[WHITEHERB] -Name = White Herb -NamePlural = White Herbs -Pocket = 1 -Price = 4000 -BPPrice = 15 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It restores any lowered stat in battle. It can be used only once. -#------------------------------- -[POWERHERB] -Name = Power Herb -NamePlural = Power Herbs -Pocket = 1 -Price = 4000 -BPPrice = 15 -Flags = Fling_10 -Description = A single-use item to be held by a Pokémon. It allows the immediate use of a move that charges up first. -#------------------------------- -[MIRRORHERB] -Name = Mirror Herb -NamePlural = Mirror Herbs -Pocket = 1 -Price = 30000 -SellPrice = 7500 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It allows the holder to copy an opponent's stat increases once. -#------------------------------- -[ABSORBBULB] -Name = Absorb Bulb -NamePlural = Absorb Bulbs -Pocket = 1 -Price = 4000 -BPPrice = 10 -Flags = Fling_30 -Description = A consumable bulb. If the holder is hit by a Water-type move, its Sp. Atk will rise. -#------------------------------- -[CELLBATTERY] -Name = Cell Battery -NamePlural = Cell Batteries -Pocket = 1 -Price = 4000 -BPPrice = 10 -Flags = Fling_30 -Description = A consumable battery. If the holder is hit by an Electric-type move, its Attack will rise. -#------------------------------- -[LUMINOUSMOSS] -Name = Luminous Moss -NamePlural = Luminous Moss -PortionName = clump of Luminous Moss -PortionNamePlural = clumps of Luminous Moss -Pocket = 1 -Price = 4000 -BPPrice = 10 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It boosts Sp. Def if hit by a Water-type attack. It can only be used once. -#------------------------------- -[SNOWBALL] -Name = Snowball -NamePlural = Snowballs -Pocket = 1 -Price = 4000 -BPPrice = 10 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It boosts Attack if hit by an Ice-type attack. It can only be used once. -#------------------------------- -[WEAKNESSPOLICY] -Name = Weakness Policy -NamePlural = Weakness Policies -Pocket = 1 -Price = 1000 -BPPrice = 20 -Flags = Fling_80 -Description = An item to be held by a Pokémon. The holder's Attack and Sp. Atk sharply increase if hit by a move it's weak to. -#------------------------------- -[BLUNDERPOLICY] -Name = Blunder Policy -NamePlural = Blunder Policies -Pocket = 1 -Price = 4000 -BPPrice = 20 -Flags = Fling_80 -Description = Raises Speed sharply when a Pokémon misses with a move because of accuracy. -#------------------------------- -[THROATSPRAY] -Name = Throat Spray -NamePlural = Throat Sprays -PortionName = bottle of Throat Spray -PortionNamePlural = bottles of Throat Spray -Pocket = 1 -Price = 4000 -BPPrice = 10 -Flags = Fling_30 -Description = Raises Sp. Atk when a Pokémon uses a sound-based move. -#------------------------------- -[ADRENALINEORB] -Name = Adrenaline Orb -NamePlural = Adrenaline Orbs -Pocket = 1 -Price = 300 -BPPrice = 10 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It boosts Speed when intimidated. It can be used only once. -#------------------------------- -[BOOSTERENERGY] -Name = Booster Energy -NamePlural = Booster Energies -PortionName = capsule of Booster Energy -PortionNamePlural = capsules of Booster Energy -Pocket = 1 -Price = 0 -Flags = Fling_30 -Description = An item to be held by Pokémon with certain Abilities. Its energy boosts the strength of the Pokémon. -#------------------------------- -[ROOMSERVICE] -Name = Room Service -NamePlural = Room Services -PortionName = voucher for Room Service -PortionNamePlural = vouchers for Room Service -Pocket = 1 -Price = 4000 -BPPrice = 15 -Flags = Fling_100 -Description = An item to be held by a Pokémon. Lowers Speed when Trick Room takes effect. -#------------------------------- -[ELECTRICSEED] -Name = Electric Seed -NamePlural = Electric Seeds -Pocket = 1 -Price = 3000 -SellPrice = 2000 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It boosts Defense on Electric Terrain. It can only be used once. -#------------------------------- -[GRASSYSEED] -Name = Grassy Seed -NamePlural = Grassy Seeds -Pocket = 1 -Price = 3000 -SellPrice = 2000 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It boosts Defense on Grassy Terrain. It can only be used once. -#------------------------------- -[MISTYSEED] -Name = Misty Seed -NamePlural = Misty Seeds -Pocket = 1 -Price = 3000 -SellPrice = 2000 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It boosts Sp. Def on Misty Terrain. It can only be used once. -#------------------------------- -[PSYCHICSEED] -Name = Psychic Seed -NamePlural = Psychic Seeds -Pocket = 1 -Price = 3000 -SellPrice = 2000 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It boosts Sp. Def on Psychic Terrain. It can only be used once. -#------------------------------- -[LIFEORB] -Name = Life Orb -NamePlural = Life Orbs -Pocket = 1 -Price = 4000 -BPPrice = 25 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It boosts the power of moves, but at the cost of some HP on each hit. -#------------------------------- -[EXPERTBELT] -Name = Expert Belt -NamePlural = Expert Belts -Pocket = 1 -Price = 4000 -BPPrice = 25 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It is a well-worn belt that slightly boosts the power of supereffective moves. -#------------------------------- -[METRONOME] -Name = Metronome -NamePlural = Metronomes -Pocket = 1 -Price = 3000 -SellPrice = 2000 -BPPrice = 25 -Flags = Fling_30 -Description = A Pokémon held item that boosts a move used consecutively. Its effect is reset if another move is used. -#------------------------------- -[PUNCHINGGLOVE] -Name = Punching Glove -NamePlural = Punching Gloves -Pocket = 1 -Price = 15000 -SellPrice = 3750 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It powers up the holder's punching moves and prevents direct contact. -#------------------------------- -[MUSCLEBAND] -Name = Muscle Band -NamePlural = Muscle Bands -Pocket = 1 -Price = 4000 -BPPrice = 48 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It is a headband that slightly boosts the power of physical moves. -#------------------------------- -[WISEGLASSES] -Name = Wise Glasses -NamePlural = Wise Glasses -PortionName = pair of Wise Glasses -PortionNamePlural = pairs of Wise Glasses -Pocket = 1 -Price = 4000 -BPPrice = 48 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It is a thick pair of glasses that slightly boosts the power of special moves. -#------------------------------- -[RAZORCLAW] -Name = Razor Claw -NamePlural = Razor Claws -Pocket = 1 -Price = 3000 -SellPrice = 2500 -BPPrice = 5 -Flags = Fling_80 -Description = An item to be held by a Pokémon. It is a sharply hooked claw that ups the holder's critical-hit ratio. -#------------------------------- -[SCOPELENS] -Name = Scope Lens -NamePlural = Scope Lenses -Pocket = 1 -Price = 4000 -BPPrice = 48 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It is a lens that boosts the holder's critical-hit ratio. -#------------------------------- -[WIDELENS] -Name = Wide Lens -NamePlural = Wide Lenses -Pocket = 1 -Price = 4000 -BPPrice = 48 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It is a magnifying lens that slightly boosts the accuracy of moves. -#------------------------------- -[ZOOMLENS] -Name = Zoom Lens -NamePlural = Zoom Lenses -Pocket = 1 -Price = 4000 -BPPrice = 48 -Flags = Fling_10 -Description = An item to be held by a Pokémon. If the holder moves after its target, its accuracy will be boosted. -#------------------------------- -[KINGSROCK] -Name = King's Rock -NamePlural = King's Rocks -Pocket = 1 -Price = 5000 -BPPrice = 5 -Flags = Fling_30 -Description = An item to be held by a Pokémon. When the holder inflicts damage, the target may flinch. -#------------------------------- -[RAZORFANG] -Name = Razor Fang -NamePlural = Razor Fangs -Pocket = 1 -Price = 5000 -BPPrice = 5 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It may make foes and allies flinch when the holder inflicts damage. -#------------------------------- -[LAGGINGTAIL] -Name = Lagging Tail -NamePlural = Lagging Tails -Pocket = 1 -Price = 4000 -BPPrice = 25 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It is tremendously heavy and makes the holder move slower than usual. -#------------------------------- -[QUICKCLAW] -Name = Quick Claw -NamePlural = Quick Claws -Pocket = 1 -Price = 3000 -SellPrice = 2000 -BPPrice = 25 -Flags = Fling_80 -Description = An item to be held by a Pokémon. A light, sharp claw that lets the bearer move first occasionally. -#------------------------------- -[FOCUSBAND] -Name = Focus Band -NamePlural = Focus Bands -Pocket = 1 -Price = 3000 -SellPrice = 2000 -BPPrice = 48 -Flags = Fling_10 -Description = An item to be held by a Pokémon. The holder may endure a potential KO attack, leaving it with just 1 HP. -#------------------------------- -[FOCUSSASH] -Name = Focus Sash -NamePlural = Focus Sashes -Pocket = 1 -Price = 3000 -SellPrice = 2000 -BPPrice = 15 -Flags = Fling_10 -Description = An item to be held by a Pokémon. If it has full HP, the holder will endure one potential KO attack, leaving 1 HP. -#------------------------------- -[FLAMEORB] -Name = Flame Orb -NamePlural = Flame Orbs -Pocket = 1 -Price = 4000 -BPPrice = 16 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It is a bizarre orb that inflicts a burn on the holder in battle. -#------------------------------- -[TOXICORB] -Name = Toxic Orb -NamePlural = Toxic Orbs -Pocket = 1 -Price = 4000 -BPPrice = 16 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It is a bizarre orb that badly poisons the holder in battle. -#------------------------------- -[STICKYBARB] -Name = Sticky Barb -NamePlural = Sticky Barbs -Pocket = 1 -Price = 4000 -BPPrice = 16 -Flags = Fling_80 -Description = A held item that damages the holder on every turn. It may latch on to Pokémon that touch the holder. -#------------------------------- -[IRONBALL] -Name = Iron Ball -NamePlural = Iron Balls -Pocket = 1 -Price = 4000 -BPPrice = 10 -Flags = Fling_130 -Description = A Pokémon held item that cuts Speed. It makes Flying-type and levitating holders susceptible to Ground moves. -#------------------------------- -[RINGTARGET] -Name = Ring Target -NamePlural = Ring Targets -Pocket = 1 -Price = 3000 -SellPrice = 2000 -BPPrice = 10 -Flags = Fling_10 -Description = Moves that would otherwise have no effect will land on the Pokémon that holds it. -#------------------------------- -[MACHOBRACE] -Name = Macho Brace -NamePlural = Macho Braces -Pocket = 1 -Price = 3000 -BPPrice = 10 -Flags = Fling_60 -Description = An item to be held by a Pokémon. It is a stiff, heavy brace that promotes strong growth but lowers Speed. -#------------------------------- -[POWERWEIGHT] -Name = Power Weight -NamePlural = Power Weights -Pocket = 1 -Price = 3000 -BPPrice = 10 -Flags = Fling_70 -Description = A Pokémon held item that promotes HP gain on leveling, but reduces the Speed stat. -#------------------------------- -[POWERBRACER] -Name = Power Bracer -NamePlural = Power Bracers -Pocket = 1 -Price = 3000 -BPPrice = 10 -Flags = Fling_70 -Description = A Pokémon held item that promotes Attack gain on leveling, but reduces the Speed stat. -#------------------------------- -[POWERBELT] -Name = Power Belt -NamePlural = Power Belts -Pocket = 1 -Price = 3000 -BPPrice = 10 -Flags = Fling_70 -Description = A Pokémon held item that promotes Defense gain on leveling, but reduces the Speed stat. -#------------------------------- -[POWERLENS] -Name = Power Lens -NamePlural = Power Lenses -Pocket = 1 -Price = 3000 -BPPrice = 10 -Flags = Fling_70 -Description = A Pokémon held item that promotes Sp. Atk gain on leveling, but reduces the Speed stat. -#------------------------------- -[POWERBAND] -Name = Power Band -NamePlural = Power Bands -Pocket = 1 -Price = 3000 -BPPrice = 10 -Flags = Fling_70 -Description = A Pokémon held item that promotes Sp. Def gain on leveling, but reduces the Speed stat. -#------------------------------- -[POWERANKLET] -Name = Power Anklet -NamePlural = Power Anklets -Pocket = 1 -Price = 3000 -BPPrice = 10 -Flags = Fling_70 -Description = A Pokémon held item that promotes Speed gain on leveling, but reduces the Speed stat. -#------------------------------- -[LAXINCENSE] -Name = Lax Incense -NamePlural = Lax Incenses -PortionName = jar of Lax Incense -PortionNamePlural = jars of Lax Incense -Pocket = 1 -Price = 5000 -Flags = Fling_10 -Description = An item to be held by a Pokémon. The tricky aroma of this incense may make attacks miss the holder. -#------------------------------- -[FULLINCENSE] -Name = Full Incense -NamePlural = Full Incenses -PortionName = jar of Full Incense -PortionNamePlural = jars of Full Incense -Pocket = 1 -Price = 5000 -Flags = Fling_10 -Description = An item to be held by a Pokémon. This exotic-smelling incense makes the holder bloated and slow moving. -#------------------------------- -[LUCKINCENSE] -Name = Luck Incense -NamePlural = Luck Incenses -PortionName = jar of Luck Incense -PortionNamePlural = jars of Luck Incense -Pocket = 1 -Price = 11000 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It doubles a battle's prize money if the holding Pokémon joins in. -#------------------------------- -[PUREINCENSE] -Name = Pure Incense -NamePlural = Pure Incenses -PortionName = jar of Pure Incense -PortionNamePlural = jars of Pure Incense -Pocket = 1 -Price = 6000 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It helps keep wild Pokémon away if the holder is the first one in the party. -#------------------------------- -[SEAINCENSE] -Name = Sea Incense -NamePlural = Sea Incenses -PortionName = jar of Sea Incense -PortionNamePlural = jars of Sea Incense -Pocket = 1 -Price = 2000 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It has a curious aroma that boosts the power of Water-type moves. -#------------------------------- -[WAVEINCENSE] -Name = Wave Incense -NamePlural = Wave Incenses -PortionName = jar of Wave Incense -PortionNamePlural = jars of Wave Incense -Pocket = 1 -Price = 2000 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It has a curious aroma that boosts the power of Water-type moves. -#------------------------------- -[ROSEINCENSE] -Name = Rose Incense -NamePlural = Rose Incenses -PortionName = jar of Rose Incense -PortionNamePlural = jars of Rose Incense -Pocket = 1 -Price = 2000 -Flags = Fling_10 -Description = An item to be held by a Pokémon. This exotic-smelling incense boosts the power of Grass-type moves. -#------------------------------- -[ODDINCENSE] -Name = Odd Incense -NamePlural = Odd Incenses -PortionName = jar of Odd Incense -PortionNamePlural = jars of Odd Incense -Pocket = 1 -Price = 2000 -Flags = Fling_10 -Description = An item to be held by a Pokémon. This exotic-smelling incense boosts the power of Psychic-type moves. -#------------------------------- -[ROCKINCENSE] -Name = Rock Incense -NamePlural = Rock Incenses -PortionName = jar of Rock Incense -PortionNamePlural = jars of Rock Incense -Pocket = 1 -Price = 2000 -Flags = Fling_10 -Description = An item to be held by a Pokémon. This exotic-smelling incense boosts the power of Rock-type moves. -#------------------------------- -[CHARCOAL] -Name = Charcoal -NamePlural = Charcoals -PortionName = piece of Charcoal -PortionNamePlural = pieces of Charcoal -Pocket = 1 -Price = 3000 -SellPrice = 500 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It is a combustible fuel that boosts the power of Fire-type moves. -#------------------------------- -[MYSTICWATER] -Name = Mystic Water -NamePlural = Mystic Waters -Pocket = 1 -Price = 3000 -SellPrice = 500 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It is a teardrop-shaped gem that ups the power of Water-type moves. -#------------------------------- -[MAGNET] -Name = Magnet -NamePlural = Magnets -Pocket = 1 -Price = 3000 -SellPrice = 500 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It is a powerful magnet that boosts the power of Electric-type moves. -#------------------------------- -[MIRACLESEED] -Name = Miracle Seed -NamePlural = Miracle Seeds -Pocket = 1 -Price = 3000 -SellPrice = 500 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It is a seed imbued with life that ups the power of Grass-type moves. -#------------------------------- -[NEVERMELTICE] -Name = Never-Melt Ice -NamePlural = Never-Melt Ices -PortionName = piece of Never-Melt Ice -PortionNamePlural = pieces of Never-Melt Ice -Pocket = 1 -Price = 3000 -SellPrice = 500 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It is a piece of ice that repels heat and boosts Ice-type moves. -#------------------------------- -[BLACKBELT] -Name = Black Belt -NamePlural = Black Belts -Pocket = 1 -Price = 3000 -SellPrice = 500 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It is a belt that boosts determination and Fighting-type moves. -#------------------------------- -[POISONBARB] -Name = Poison Barb -NamePlural = Poison Barbs -Pocket = 1 -Price = 3000 -SellPrice = 500 -Flags = Fling_70 -Description = An item to be held by a Pokémon. It is a small, poisonous barb that ups the power of Poison-type moves. -#------------------------------- -[SOFTSAND] -Name = Soft Sand -NamePlural = Soft Sand -PortionName = bag of Soft Sand -PortionNamePlural = bags of Soft Sand -Pocket = 1 -Price = 3000 -SellPrice = 500 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It is a loose, silky sand that boosts the power of Ground-type moves. -#------------------------------- -[SHARPBEAK] -Name = Sharp Beak -NamePlural = Sharp Beaks -Pocket = 1 -Price = 3000 -SellPrice = 500 -Flags = Fling_50 -Description = An item to be held by a Pokémon. It is a long, sharp beak that boosts the power of Flying-type moves. -#------------------------------- -[TWISTEDSPOON] -Name = Twisted Spoon -NamePlural = Twisted Spoons -Pocket = 1 -Price = 3000 -SellPrice = 500 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It is a spoon imbued with telekinetic power that boosts Psychic-type moves. -#------------------------------- -[SILVERPOWDER] -Name = Silver Powder -NamePlural = Silver Powders -PortionName = pile of Silver Powder -PortionNamePlural = piles of Silver Powder -Pocket = 1 -Price = 3000 -SellPrice = 500 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It is a shiny, silver powder that ups the power of Bug-type moves. -#------------------------------- -[HARDSTONE] -Name = Hard Stone -NamePlural = Hard Stones -Pocket = 1 -Price = 3000 -SellPrice = 500 -Flags = Fling_100 -Description = An item to be held by a Pokémon. It is an unbreakable stone that ups the power of Rock-type moves. -#------------------------------- -[SPELLTAG] -Name = Spell Tag -NamePlural = Spell Tags -Pocket = 1 -Price = 3000 -SellPrice = 500 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It is a sinister, eerie tag that boosts the power of Ghost-type moves. -#------------------------------- -[DRAGONFANG] -Name = Dragon Fang -NamePlural = Dragon Fangs -Pocket = 1 -Price = 3000 -SellPrice = 500 -Flags = Fling_70 -Description = An item to be held by a Pokémon. It is a hard and sharp fang that ups the power of Dragon-type moves. -#------------------------------- -[BLACKGLASSES] -Name = Black Glasses -NamePlural = Black Glasses -PortionName = pair of Black Glasses -PortionNamePlural = pairs of Black Glasses -Pocket = 1 -Price = 3000 -SellPrice = 500 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It is a shady-looking pair of glasses that boosts Dark-type moves. -#------------------------------- -[METALCOAT] -Name = Metal Coat -NamePlural = Metal Coats -Pocket = 1 -Price = 3000 -SellPrice = 1000 -Flags = Fling_30 -Description = An item to be held by a Pokémon. It is a special metallic film that ups the power of Steel-type moves. -#------------------------------- -[FAIRYFEATHER] -Name = Fairy Feather -NamePlural = Fairy Feathers -Pocket = 1 -Price = 3000 -Flags = Fling_10 -Description = An item to be held by a Pokémon. This gleaming feather boosts the power of the holder's Fairy-type moves. -#------------------------------- -[SILKSCARF] -Name = Silk Scarf -NamePlural = Silk Scarves -Pocket = 1 -Price = 3000 -SellPrice = 500 -Flags = Fling_10 -Description = An item to be held by a Pokémon. It is a sumptuous scarf that boosts the power of Normal-type moves. -#------------------------------- -[FLAMEPLATE] -Name = Flame Plate -NamePlural = Flame Plates -Pocket = 1 -Price = 10000 -SellPrice = 500 -Flags = Fling_90 -Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Fire-type moves. -#------------------------------- -[SPLASHPLATE] -Name = Splash Plate -NamePlural = Splash Plates -Pocket = 1 -Price = 10000 -SellPrice = 500 -Flags = Fling_90 -Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Water-type moves. -#------------------------------- -[ZAPPLATE] -Name = Zap Plate -NamePlural = Zap Plates -Pocket = 1 -Price = 10000 -SellPrice = 500 -Flags = Fling_90 -Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Electric-type moves. -#------------------------------- -[MEADOWPLATE] -Name = Meadow Plate -NamePlural = Meadow Plates -Pocket = 1 -Price = 10000 -SellPrice = 500 -Flags = Fling_90 -Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Grass-type moves. -#------------------------------- -[ICICLEPLATE] -Name = Icicle Plate -NamePlural = Icicle Plates -Pocket = 1 -Price = 10000 -SellPrice = 500 -Flags = Fling_90 -Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Ice-type moves. -#------------------------------- -[FISTPLATE] -Name = Fist Plate -NamePlural = Fist Plates -Pocket = 1 -Price = 10000 -SellPrice = 500 -Flags = Fling_90 -Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Fighting-type moves. -#------------------------------- -[TOXICPLATE] -Name = Toxic Plate -NamePlural = Toxic Plates -Pocket = 1 -Price = 10000 -SellPrice = 500 -Flags = Fling_90 -Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Poison-type moves. -#------------------------------- -[EARTHPLATE] -Name = Earth Plate -NamePlural = Earth Plates -Pocket = 1 -Price = 10000 -SellPrice = 500 -Flags = Fling_90 -Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Ground-type moves. -#------------------------------- -[SKYPLATE] -Name = Sky Plate -NamePlural = Sky Plates -Pocket = 1 -Price = 10000 -SellPrice = 500 -Flags = Fling_90 -Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Flying-type moves. -#------------------------------- -[MINDPLATE] -Name = Mind Plate -NamePlural = Mind Plates -Pocket = 1 -Price = 10000 -SellPrice = 500 -Flags = Fling_90 -Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Psychic-type moves. -#------------------------------- -[INSECTPLATE] -Name = Insect Plate -NamePlural = Insect Plates -Pocket = 1 -Price = 10000 -SellPrice = 500 -Flags = Fling_90 -Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Bug-type moves. -#------------------------------- -[STONEPLATE] -Name = Stone Plate -NamePlural = Stone Plates -Pocket = 1 -Price = 10000 -SellPrice = 500 -Flags = Fling_90 -Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Rock-type moves. -#------------------------------- -[SPOOKYPLATE] -Name = Spooky Plate -NamePlural = Spooky Plates -Pocket = 1 -Price = 10000 -SellPrice = 500 -Flags = Fling_90 -Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Ghost-type moves. -#------------------------------- -[DRACOPLATE] -Name = Draco Plate -NamePlural = Draco Plates -Pocket = 1 -Price = 10000 -SellPrice = 500 -Flags = Fling_90 -Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Dragon-type moves. -#------------------------------- -[DREADPLATE] -Name = Dread Plate -NamePlural = Dread Plates -Pocket = 1 -Price = 10000 -SellPrice = 500 -Flags = Fling_90 -Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Dark-type moves. -#------------------------------- -[IRONPLATE] -Name = Iron Plate -NamePlural = Iron Plates -Pocket = 1 -Price = 10000 -SellPrice = 500 -Flags = Fling_90 -Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Steel-type moves. -#------------------------------- -[PIXIEPLATE] -Name = Pixie Plate -NamePlural = Pixie Plates -Pocket = 1 -Price = 10000 -SellPrice = 500 -Flags = Fling_90 -Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Fairy-type moves. -#------------------------------- -[FIREGEM] -Name = Fire Gem -NamePlural = Fire Gems -Pocket = 1 -Price = 4000 -Flags = TypeGem -Description = A gem with an essence of fire. When held, it strengthens the power of a Fire-type move only once. -#------------------------------- -[WATERGEM] -Name = Water Gem -NamePlural = Water Gems -Pocket = 1 -Price = 4000 -Flags = TypeGem -Description = A gem with an essence of water. When held, it strengthens the power of a Water-type move only once. -#------------------------------- -[ELECTRICGEM] -Name = Electric Gem -NamePlural = Electric Gems -Pocket = 1 -Price = 4000 -Flags = TypeGem -Description = A gem with an essence of electricity. When held, it strengthens the power of an Electric-type move only once. -#------------------------------- -[GRASSGEM] -Name = Grass Gem -NamePlural = Grass Gems -Pocket = 1 -Price = 4000 -Flags = TypeGem -Description = A gem with an essence of nature. When held, it strengthens the power of a Grass-type move only once. -#------------------------------- -[ICEGEM] -Name = Ice Gem -NamePlural = Ice Gems -Pocket = 1 -Price = 4000 -Flags = TypeGem -Description = A gem with an essence of ice. When held, it strengthens the power of an Ice-type move only once. -#------------------------------- -[FIGHTINGGEM] -Name = Fighting Gem -NamePlural = Fighting Gems -Pocket = 1 -Price = 4000 -Flags = TypeGem -Description = A gem with an essence of combat. When held, it strengthens the power of a Fighting-type move only once. -#------------------------------- -[POISONGEM] -Name = Poison Gem -NamePlural = Poison Gems -Pocket = 1 -Price = 4000 -Flags = TypeGem -Description = A gem with an essence of poison. When held, it strengthens the power of a Poison-type move only once. -#------------------------------- -[GROUNDGEM] -Name = Ground Gem -NamePlural = Ground Gems -Pocket = 1 -Price = 4000 -Flags = TypeGem -Description = A gem with an essence of land. When held, it strengthens the power of a Ground-type move only once. -#------------------------------- -[FLYINGGEM] -Name = Flying Gem -NamePlural = Flying Gems -Pocket = 1 -Price = 4000 -Flags = TypeGem -Description = A gem with an essence of air. When held, it strengthens the power of a Flying-type move only once. -#------------------------------- -[PSYCHICGEM] -Name = Psychic Gem -NamePlural = Psychic Gems -Pocket = 1 -Price = 4000 -Flags = TypeGem -Description = A gem with an essence of the mind. When held, it strengthens the power of a Psychic-type move only once. -#------------------------------- -[BUGGEM] -Name = Bug Gem -NamePlural = Bug Gems -Pocket = 1 -Price = 4000 -Flags = TypeGem -Description = A gem with an insect-like essence. When held, it strengthens the power of a Bug-type move only once. -#------------------------------- -[ROCKGEM] -Name = Rock Gem -NamePlural = Rock Gems -Pocket = 1 -Price = 4000 -Flags = TypeGem -Description = A gem with an essence of rock. When held, it strengthens the power of a Rock-type move only once. -#------------------------------- -[GHOSTGEM] -Name = Ghost Gem -NamePlural = Ghost Gems -Pocket = 1 -Price = 4000 -Flags = TypeGem -Description = A gem with a spectral essence. When held, it strengthens the power of a Ghost-type move only once. -#------------------------------- -[DRAGONGEM] -Name = Dragon Gem -NamePlural = Dragon Gems -Pocket = 1 -Price = 4000 -Flags = TypeGem -Description = A gem with a draconic essence. When held, it strengthens the power of a Dragon-type move only once. -#------------------------------- -[DARKGEM] -Name = Dark Gem -NamePlural = Dark Gems -Pocket = 1 -Price = 4000 -Flags = TypeGem -Description = A gem with an essence of darkness. When held, it strengthens the power of a Dark-type move only once. -#------------------------------- -[STEELGEM] -Name = Steel Gem -NamePlural = Steel Gems -Pocket = 1 -Price = 4000 -Flags = TypeGem -Description = A gem with an essence of steel. When held, it strengthens the power of a Steel-type move only once. -#------------------------------- -[FAIRYGEM] -Name = Fairy Gem -NamePlural = Fairy Gems -Pocket = 1 -Price = 4000 -Flags = TypeGem -Description = A gem with an essence of the fey. When held, it strengthens the power of a Fairy-type move only once. -#------------------------------- -[NORMALGEM] -Name = Normal Gem -NamePlural = Normal Gems -Pocket = 1 -Price = 4000 -Flags = TypeGem -Description = A gem with an ordinary essence. When held, it strengthens the power of a Normal-type move only once. -#------------------------------- -[LIGHTBALL] -Name = Light Ball -NamePlural = Light Balls -Pocket = 1 -Price = 1000 -Flags = Fling_30 -Description = An item to be held by Pikachu. It is a puzzling orb that raises the Attack and Sp. Atk stat. -#------------------------------- -[LUCKYPUNCH] -Name = Lucky Punch -NamePlural = Lucky Punches -Pocket = 1 -Price = 1000 -BPPrice = 7 -Flags = Fling_40 -Description = An item to be held by Chansey. It is a pair of gloves that boosts Chansey's critical-hit ratio. -#------------------------------- -[METALPOWDER] -Name = Metal Powder -NamePlural = Metal Powders -PortionName = bag of Metal Powder -PortionNamePlural = bags of Metal Powder -Pocket = 1 -Price = 1000 -Flags = Fling_10 -Description = An item to be held by Ditto. Extremely fine yet hard, this odd powder boosts the Defense stat. -#------------------------------- -[QUICKPOWDER] -Name = Quick Powder -NamePlural = Quick Powders -PortionName = bag of Quick Powder -PortionNamePlural = bags of Quick Powder -Pocket = 1 -Price = 1000 -Flags = Fling_10 -Description = An item to be held by Ditto. Extremely fine yet hard, this odd powder boosts the Speed stat. -#------------------------------- -[THICKCLUB] -Name = Thick Club -NamePlural = Thick Clubs -Pocket = 1 -Price = 1000 -Flags = Fling_90 -Description = An item to be held by Cubone or Marowak. It is a hard bone of some sort that boosts the Attack stat. -#------------------------------- -[LEEK] -Name = Leek -NamePlural = Leeks -Pocket = 1 -Price = 1000 -Flags = Fling_60 -Description = An item to be held by Farfetch'd. It is a very long and stiff stalk of leek that boosts the critical-hit ratio. -#------------------------------- -[SOULDEW] -Name = Soul Dew -NamePlural = Soul Dews -Pocket = 1 -Price = 0 -Flags = Fling_30 -Description = A wondrous orb to be held by either Latios or Latias. It raises the power of Psychic- and Dragon-type moves. -#------------------------------- -[DEEPSEATOOTH] -Name = Deep Sea Tooth -NamePlural = Deep Sea Teeth -Pocket = 1 -Price = 2000 -BPPrice = 5 -Flags = Fling_90 -Description = An item to be held by Clamperl. A fang that gleams a sharp silver, it raises the Sp. Atk stat. -#------------------------------- -[DEEPSEASCALE] -Name = Deep Sea Scale -NamePlural = Deep Sea Scales -Pocket = 1 -Price = 2000 -BPPrice = 5 -Flags = Fling_30 -Description = An item to be held by Clamperl. A scale that shines a faint pink, it raises the Sp. Def stat. -#------------------------------- -[ADAMANTORB] -Name = Adamant Orb -NamePlural = Adamant Orbs -Pocket = 1 -Price = 10000 -SellPrice = 0 -Flags = Fling_60 -Description = A brightly gleaming orb to be held by Dialga. It boosts the power of Dragon- and Steel-type moves. -#------------------------------- -[LUSTROUSORB] -Name = Lustrous Orb -NamePlural = Lustrous Orbs -Pocket = 1 -Price = 10000 -SellPrice = 0 -Flags = Fling_60 -Description = A beautifully glowing orb to be held by Palkia. It boosts the power of Dragon- and Water-type moves. -#------------------------------- -[GRISEOUSORB] -Name = Griseous Orb -NamePlural = Griseous Orbs -Pocket = 1 -Price = 10000 -SellPrice = 0 -Flags = Fling_60 -Description = A glowing orb to be held by Giratina. It boosts the power of Dragon- and Ghost-type moves. -#------------------------------- -[ADAMANTCRYSTAL] -Name = Adamant Crystal -NamePlural = Adamant Crystals -Pocket = 1 -Price = 4000 -SellPrice = 0 -Flags = Fling_60 -Description = A large, glowing gem to be held by Dialga. It wells with power and allows the Pokémon to change form. -#------------------------------- -[LUSTROUSGLOBE] -Name = Lustrous Globe -NamePlural = Lustrous Globes -Pocket = 1 -Price = 4000 -SellPrice = 0 -Flags = Fling_60 -Description = A large, glowing orb to be held by Palkia. It wells with power and allows the Pokémon to change form. -#------------------------------- -[GRISEOUSCORE] -Name = Griseous Core -NamePlural = Griseous Cores -Pocket = 1 -Price = 4000 -SellPrice = 0 -Flags = Fling_60 -Description = A large, glowing gem to be held by Giratina. It wells with power and allows the Pokémon to change form. -#------------------------------- -[RUSTEDSWORD] -Name = Rusted Sword -NamePlural = Rusted Swords -Pocket = 1 -Price = 0 -Description = It is said that a hero used this sword to halt a disaster in ancient times. But it's grown rusty and worn. -#------------------------------- -[RUSTEDSHIELD] -Name = Rusted Shield -NamePlural = Rusted Shields -Pocket = 1 -Price = 0 -Description = It is said that a hero used this shield to halt a disaster in ancient times. But it's grown rusty and worn. -#------------------------------- -[WELLSPRINGMASK] -Name = Wellspring Mask -NamePlural = Wellspring Masks -Pocket = 1 -Flags = Fling_60 -Description = An item to be held by Ogerpon. This carved wooden mask allows Ogerpon to wield the Water type in battle. -#------------------------------- -[HEARTHFLAMEMASK] -Name = Hearthflame Mask -NamePlural = Hearthflame Masks -Pocket = 1 -Price = 0 -Flags = Fling_60 -Description = An item to be held by Ogerpon. This carved wooden mask allows Ogerpon to wield the Fire type in battle. -#------------------------------- -[CORNERSTONEMASK] -Name = Cornerstone Mask -NamePlural = Cornerstone Masks -Pocket = 1 -Price = 0 -Flags = Fling_60 -Description = An item to be held by Ogerpon. This carved wooden mask allows Ogerpon to wield the Rock type in battle. -#------------------------------- -[DOUSEDRIVE] -Name = Douse Drive -NamePlural = Douse Drives -Pocket = 1 -Price = 0 -Flags = Fling_70 -Description = A cassette to be held by Genesect. It changes Techno Blast to a Water-type move. -#------------------------------- -[SHOCKDRIVE] -Name = Shock Drive -NamePlural = Shock Drives -Pocket = 1 -Price = 0 -Flags = Fling_70 -Description = A cassette to be held by Genesect. It changes Techno Blast to an Electric-type move. -#------------------------------- -[BURNDRIVE] -Name = Burn Drive -NamePlural = Burn Drives -Pocket = 1 -Price = 0 -Flags = Fling_70 -Description = A cassette to be held by Genesect. It changes Techno Blast to a Fire-type move. -#------------------------------- -[CHILLDRIVE] -Name = Chill Drive -NamePlural = Chill Drives -Pocket = 1 -Price = 0 -Flags = Fling_70 -Description = A cassette to be held by Genesect. It changes Techno Blast to an Ice-type move. -#------------------------------- -[FIREMEMORY] -Name = Fire Memory -NamePlural = Fire Memories -Pocket = 1 -Price = 1000 -Flags = Fling_50 -Description = A memory disc containing Fire-type data. It changes the holder's type if held by a certain Pokémon. -#------------------------------- -[WATERMEMORY] -Name = Water Memory -NamePlural = Water Memories -Pocket = 1 -Price = 1000 -Flags = Fling_50 -Description = A memory disc containing Water-type data. It changes the holder's type if held by a certain Pokémon. -#------------------------------- -[ELECTRICMEMORY] -Name = Electric Memory -NamePlural = Electric Memories -Pocket = 1 -Price = 1000 -Flags = Fling_50 -Description = A memory disc containing Electric-type data. It changes the holder's type if held by a certain Pokémon. -#------------------------------- -[GRASSMEMORY] -Name = Grass Memory -NamePlural = Grass Memories -Pocket = 1 -Price = 1000 -Flags = Fling_50 -Description = A memory disc containing Grass-type data. It changes the holder's type if held by a certain Pokémon. -#------------------------------- -[ICEMEMORY] -Name = Ice Memory -NamePlural = Ice Memories -Pocket = 1 -Price = 1000 -Flags = Fling_50 -Description = A memory disc containing Ice-type data. It changes the holder's type if held by a certain Pokémon. -#------------------------------- -[FIGHTINGMEMORY] -Name = Fighting Memory -NamePlural = Fighting Memories -Pocket = 1 -Price = 1000 -Flags = Fling_50 -Description = A memory disc containing Fighting-type data. It changes the holder's type if held by a certain Pokémon. -#------------------------------- -[POISONMEMORY] -Name = Poison Memory -NamePlural = Poison Memories -Pocket = 1 -Price = 1000 -Flags = Fling_50 -Description = A memory disc containing Poison-type data. It changes the holder's type if held by a certain Pokémon. -#------------------------------- -[GROUNDMEMORY] -Name = Ground Memory -NamePlural = Ground Memories -Pocket = 1 -Price = 1000 -Flags = Fling_50 -Description = A memory disc containing Ground-type data. It changes the holder's type if held by a certain Pokémon. -#------------------------------- -[FLYINGMEMORY] -Name = Flying Memory -NamePlural = Flying Memories -Pocket = 1 -Price = 1000 -Flags = Fling_50 -Description = A memory disc containing Flying-type data. It changes the holder's type if held by a certain Pokémon. -#------------------------------- -[PSYCHICMEMORY] -Name = Psychic Memory -NamePlural = Psychic Memories -Pocket = 1 -Price = 1000 -Flags = Fling_50 -Description = A memory disc containing Psychic-type data. It changes the holder's type if held by a certain Pokémon. -#------------------------------- -[BUGMEMORY] -Name = Bug Memory -NamePlural = Bug Memories -Pocket = 1 -Price = 1000 -Flags = Fling_50 -Description = A memory disc containing Bug-type data. It changes the holder's type if held by a certain Pokémon. -#------------------------------- -[ROCKMEMORY] -Name = Rock Memory -NamePlural = Rock Memories -Pocket = 1 -Price = 1000 -Flags = Fling_50 -Description = A memory disc containing Rock-type data. It changes the holder's type if held by a certain Pokémon. -#------------------------------- -[GHOSTMEMORY] -Name = Ghost Memory -NamePlural = Ghost Memories -Pocket = 1 -Price = 1000 -Flags = Fling_50 -Description = A memory disc containing Ghost-type data. It changes the holder's type if held by a certain Pokémon. -#------------------------------- -[DRAGONMEMORY] -Name = Dragon Memory -NamePlural = Dragon Memories -Pocket = 1 -Price = 1000 -Flags = Fling_50 -Description = A memory disc containing Dragon-type data. It changes the holder's type if held by a certain Pokémon. -#------------------------------- -[DARKMEMORY] -Name = Dark Memory -NamePlural = Dark Memories -Pocket = 1 -Price = 1000 -Flags = Fling_50 -Description = A memory disc containing Dark-type data. It changes the holder's type if held by a certain Pokémon. -#------------------------------- -[STEELMEMORY] -Name = Steel Memory -NamePlural = Steel Memories -Pocket = 1 -Price = 1000 -Flags = Fling_50 -Description = A memory disc containing Steel-type data. It changes the holder's type if held by a certain Pokémon. -#------------------------------- -[FAIRYMEMORY] -Name = Fairy Memory -NamePlural = Fairy Memories -Pocket = 1 -Price = 1000 -Flags = Fling_50 -Description = A memory disc containing Fairy-type data. It changes the holder's type if held by a certain Pokémon. -#------------------------------- -[EVERSTONE] -Name = Everstone -NamePlural = Everstones -Pocket = 1 -Price = 3000 -BPPrice = 5 -Flags = Fling_30 -Description = An item to be held by a Pokémon. The Pokémon holding this peculiar stone is prevented from evolving. -#------------------------------- -[DRAGONSCALE] -Name = Dragon Scale -NamePlural = Dragon Scales -Pocket = 1 -Price = 3000 -SellPrice = 1000 -BPPrice = 5 -Flags = Fling_30 -Description = A thick and tough scale. Dragon-type Pokémon may be holding this item when caught. -#------------------------------- -[UPGRADE] -Name = Upgrade -NamePlural = Upgrades -Pocket = 1 -Price = 3000 -SellPrice = 1000 -BPPrice = 5 -Flags = Fling_30 -Description = A transparent device filled with all sorts of data. It was produced by Silph Co. -#------------------------------- -[DUBIOUSDISC] -Name = Dubious Disc -NamePlural = Dubious Discs -Pocket = 1 -Price = 3000 -SellPrice = 1000 -BPPrice = 5 -Flags = Fling_50 -Description = A transparent device overflowing with dubious data. Its producer is unknown. -#------------------------------- -[PROTECTOR] -Name = Protector -NamePlural = Protectors -Pocket = 1 -Price = 3000 -SellPrice = 1000 -BPPrice = 5 -Flags = Fling_80 -Description = A protective item of some sort. It is extremely stiff and heavy. It is loved by a certain Pokémon. -#------------------------------- -[ELECTIRIZER] -Name = Electirizer -NamePlural = Electirizers -Pocket = 1 -Price = 3000 -SellPrice = 1000 -BPPrice = 5 -Flags = Fling_80 -Description = A box packed with a tremendous amount of electric energy. It is loved by a certain Pokémon. -#------------------------------- -[MAGMARIZER] -Name = Magmarizer -NamePlural = Magmarizers -Pocket = 1 -Price = 3000 -SellPrice = 1000 -BPPrice = 5 -Flags = Fling_80 -Description = A box packed with a tremendous amount of magma energy. It is loved by a certain Pokémon. -#------------------------------- -[REAPERCLOTH] -Name = Reaper Cloth -NamePlural = Reaper Cloths -PortionName = scrap of Reaper Cloth -PortionNamePlural = scraps of Reaper Cloth -Pocket = 1 -Price = 3000 -SellPrice = 1000 -BPPrice = 5 -Flags = Fling_10 -Description = A cloth imbued with horrifyingly strong spiritual energy. It is loved by a certain Pokémon. -#------------------------------- -[PRISMSCALE] -Name = Prism Scale -NamePlural = Prism Scales -Pocket = 1 -Price = 3000 -SellPrice = 1000 -BPPrice = 10 -Flags = Fling_30 -Description = A mysterious scale that evolves certain Pokémon. It shines in rainbow colors. -#------------------------------- -[OVALSTONE] -Name = Oval Stone -NamePlural = Oval Stones -Pocket = 1 -Price = 3000 -SellPrice = 1000 -BPPrice = 5 -Flags = Fling_80 -Description = A peculiar stone that makes certain species of Pokémon evolve. It is shaped like an egg. -#------------------------------- -[WHIPPEDDREAM] -Name = Whipped Dream -NamePlural = Whipped Dreams -PortionName = dollop of Whipped Dream -PortionNamePlural = dollops of Whipped Dream -Pocket = 1 -Price = 3000 -SellPrice = 1000 -BPPrice = 5 -Flags = Fling_80 -Description = A soft and sweet treat made of fluffy, puffy and whirled cream. It's loved by a certain Pokémon. -#------------------------------- -[SACHET] -Name = Sachet -NamePlural = Sachets -Pocket = 1 -Price = 3000 -SellPrice = 1000 -BPPrice = 5 -Flags = Fling_80 -Description = A sachet filled with slightly overwhelming fragrant perfumes. Yet it's loved by a certain Pokémon. -#------------------------------- -[STRAWBERRYSWEET] -Name = Strawberry Sweet -NamePlural = Strawberry Sweets -Pocket = 1 -Price = 500 -BPPrice = 5 -Flags = Fling_10 -Description = A strawberry-shaped sweet. When a Milcery holds this, it will spin around happily. -#------------------------------- -[LOVESWEET] -Name = Love Sweet -NamePlural = Love Sweets -Pocket = 1 -Price = 500 -BPPrice = 5 -Flags = Fling_10 -Description = A heart-shaped sweet. When a Milcery holds this, it spins around happily. -#------------------------------- -[BERRYSWEET] -Name = Berry Sweet -NamePlural = Berry Sweets -Pocket = 1 -Price = 500 -BPPrice = 5 -Flags = Fling_10 -Description = A berry-shaped sweet. When a Milcery holds this, it spins around happily. -#------------------------------- -[CLOVERSWEET] -Name = Clover Sweet -NamePlural = Clover Sweets -Pocket = 1 -Price = 500 -BPPrice = 5 -Flags = Fling_10 -Description = A clover-shaped sweet. When a Milcery holds this, it spins around happily. -#------------------------------- -[FLOWERSWEET] -Name = Flower Sweet -NamePlural = Flower Sweets -Pocket = 1 -Price = 500 -BPPrice = 5 -Flags = Fling_10 -Description = A flower-shaped sweet. When a Milcery holds this, it spins around happily. -#------------------------------- -[STARSWEET] -Name = Star Sweet -NamePlural = Star Sweets -Pocket = 1 -Price = 500 -BPPrice = 5 -Flags = Fling_10 -Description = A star-shaped sweet. When a Milcery holds this, it spins around happily. -#------------------------------- -[RIBBONSWEET] -Name = Ribbon Sweet -NamePlural = Ribbon Sweets -Pocket = 1 -Price = 500 -BPPrice = 5 -Flags = Fling_10 -Description = A ribbon-shaped sweet. When a Milcery holds this, it spins around happily. -#------------------------------- -[VENUSAURITE] -Name = Venusaurite -NamePlural = Venusaurites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Venusaur hold it, and it will be able to Mega Evolve. -#------------------------------- -[CHARIZARDITEX] -Name = Charizardite X -NamePlural = Charizardite Xs -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Charizard hold it, and it will be able to Mega Evolve. -#------------------------------- -[CHARIZARDITEY] -Name = Charizardite Y -NamePlural = Charizardite Ys -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Charizard hold it, and it will be able to Mega Evolve. -#------------------------------- -[BLASTOISINITE] -Name = Blastoisinite -NamePlural = Blastoisinites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Blastoise hold it, and it will be able to Mega Evolve. -#------------------------------- -[BEEDRILLITE] -Name = Beedrillite -NamePlural = Beedrillites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Beedrill hold it, and it will be able to Mega Evolve. -#------------------------------- -[PIDGEOTITE] -Name = Pidgeotite -NamePlural = Pidgeotites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Pidgeot hold it, and it will be able to Mega Evolve. -#------------------------------- -[ALAKAZITE] -Name = Alakazite -NamePlural = Alakazites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Alakazam hold it, and it will be able to Mega Evolve. -#------------------------------- -[SLOWBRONITE] -Name = Slowbronite -NamePlural = Slowbronites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Slowbro hold it, and it will be able to Mega Evolve. -#------------------------------- -[GENGARITE] -Name = Gengarite -NamePlural = Gengarites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Gengar hold it, and it will be able to Mega Evolve. -#------------------------------- -[KANGASKHANITE] -Name = Kangaskhanite -NamePlural = Kangaskhanites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Kangaskhan hold it, and it will be able to Mega Evolve. -#------------------------------- -[PINSIRITE] -Name = Pinsirite -NamePlural = Pinsirites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Pinsir hold it, and it will be able to Mega Evolve. -#------------------------------- -[GYARADOSITE] -Name = Gyaradosite -NamePlural = Gyaradosites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Gyarados hold it, and it will be able to Mega Evolve. -#------------------------------- -[AERODACTYLITE] -Name = Aerodactylite -NamePlural = Aerodactylites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Aerodactyl hold it, and it will be able to Mega Evolve. -#------------------------------- -[MEWTWONITEX] -Name = Mewtwonite X -NamePlural = Mewtwonite Xs -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Mewtwo hold it, and it will be able to Mega Evolve. -#------------------------------- -[MEWTWONITEY] -Name = Mewtwonite Y -NamePlural = Mewtwonite Ys -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Mewtwo hold it, and it will be able to Mega Evolve. -#------------------------------- -[AMPHAROSITE] -Name = Ampharosite -NamePlural = Ampharosites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Ampharos hold it, and it will be able to Mega Evolve. -#------------------------------- -[STEELIXITE] -Name = Steelixite -NamePlural = Steelixites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Steelix hold it, and it will be able to Mega Evolve. -#------------------------------- -[SCIZORITE] -Name = Scizorite -NamePlural = Scizorites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Scizor hold it, and it will be able to Mega Evolve. -#------------------------------- -[HERACRONITE] -Name = Heracronite -NamePlural = Heracronites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Heracross hold it, and it will be able to Mega Evolve. -#------------------------------- -[HOUNDOOMINITE] -Name = Houndoominite -NamePlural = Houndoominites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Houndoom hold it, and it will be able to Mega Evolve. -#------------------------------- -[TYRANITARITE] -Name = Tyranitarite -NamePlural = Tyranitarites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Tyranitar hold it, and it will be able to Mega Evolve. -#------------------------------- -[SCEPTILITE] -Name = Sceptilite -NamePlural = Sceptilites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Sceptile hold it, and it will be able to Mega Evolve. -#------------------------------- -[BLAZIKENITE] -Name = Blazikenite -NamePlural = Blazikenites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Blaziken hold it, and it will be able to Mega Evolve. -#------------------------------- -[SWAMPERTITE] -Name = Swampertite -NamePlural = Swampertites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Swampert hold it, and it will be able to Mega Evolve. -#------------------------------- -[GARDEVOIRITE] -Name = Gardevoirite -NamePlural = Gardevoirites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Gardevoir hold it, and it will be able to Mega Evolve. -#------------------------------- -[SABLENITE] -Name = Sablenite -NamePlural = Sablenites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Sableye hold it, and it will be able to Mega Evolve. -#------------------------------- -[MAWILITE] -Name = Mawilite -NamePlural = Mawilites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Mawile hold it, and it will be able to Mega Evolve. -#------------------------------- -[AGGRONITE] -Name = Aggronite -NamePlural = Aggronites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Aggron hold it, and it will be able to Mega Evolve. -#------------------------------- -[MEDICHAMITE] -Name = Medichamite -NamePlural = Medichamites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Medicham hold it, and it will be able to Mega Evolve. -#------------------------------- -[MANECTITE] -Name = Manectite -NamePlural = Manectites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Manectric hold it, and it will be able to Mega Evolve. -#------------------------------- -[SHARPEDONITE] -Name = Sharpedonite -NamePlural = Sharpedonites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Sharpedo hold it, and it will be able to Mega Evolve. -#------------------------------- -[CAMERUPTITE] -Name = Cameruptite -NamePlural = Cameruptites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Camerupt hold it, and it will be able to Mega Evolve. -#------------------------------- -[ALTARIANITE] -Name = Altarianite -NamePlural = Altarianites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Altaria hold it, and it will be able to Mega Evolve. -#------------------------------- -[BANETTITE] -Name = Banettite -NamePlural = Banettites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Banette hold it, and it will be able to Mega Evolve. -#------------------------------- -[ABSOLITE] -Name = Absolite -NamePlural = Absolites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Absol hold it, and it will be able to Mega Evolve. -#------------------------------- -[GLALITITE] -Name = Glalitite -NamePlural = Glalitites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Glalie hold it, and it will be able to Mega Evolve. -#------------------------------- -[SALAMENCITE] -Name = Salamencite -NamePlural = Salamencites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Salamence hold it, and it will be able to Mega Evolve. -#------------------------------- -[METAGROSSITE] -Name = Metagrossite -NamePlural = Metagrossites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Metagross hold it, and it will be able to Mega Evolve. -#------------------------------- -[LATIASITE] -Name = Latiasite -NamePlural = Latiasites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Latias hold it, and it will be able to Mega Evolve. -#------------------------------- -[LATIOSITE] -Name = Latiosite -NamePlural = Latiosites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Latios hold it, and it will be able to Mega Evolve. -#------------------------------- -[LOPUNNITE] -Name = Lopunnite -NamePlural = Lopunnites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Lopunny hold it, and it will be able to Mega Evolve. -#------------------------------- -[GARCHOMPITE] -Name = Garchompite -NamePlural = Garchompites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Garchomp hold it, and it will be able to Mega Evolve. -#------------------------------- -[LUCARIONITE] -Name = Lucarionite -NamePlural = Lucarionites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Lucario hold it, and it will be able to Mega Evolve. -#------------------------------- -[ABOMASITE] -Name = Abomasite -NamePlural = Abomasites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Abomasnow hold it, and it will be able to Mega Evolve. -#------------------------------- -[GALLADITE] -Name = Galladite -NamePlural = Galladites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Gallade hold it, and it will be able to Mega Evolve. -#------------------------------- -[AUDINITE] -Name = Audinite -NamePlural = Audinites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Audino hold it, and it will be able to Mega Evolve. -#------------------------------- -[DIANCITE] -Name = Diancite -NamePlural = Diancites -Pocket = 1 -Price = 0 -BPPrice = 50 -Flags = MegaStone,Fling_80 -Description = One of a variety of mysterious Mega Stones. Have Diancie hold it, and it will be able to Mega Evolve. -#------------------------------- -[REDORB] -Name = Red Orb -NamePlural = Red Orbs -Pocket = 1 -Price = 10000 -SellPrice = 0 -BPPrice = 50 -Description = A shiny red orb that is said to have a legend tied to it. It's known to be connected with the Hoenn region. -#------------------------------- -[BLUEORB] -Name = Blue Orb -NamePlural = Blue Orbs -Pocket = 1 -Price = 10000 -SellPrice = 0 -BPPrice = 50 -Description = A shiny blue orb that is said to have a legend tied to it. It's known to be connected with the Hoenn region. +[GRASSMAIL] +Name = Grass Mail +NamePlural = Grass Mail +PortionName = piece of Grass Mail +PortionNamePlural = pieces of Grass Mail +Pocket = Items +Price = 50 +Flags = IconMail +Description = Stationery featuring a print of a refreshingly green field. Let a Pokémon hold it for delivery. +#------------------------------- +[FLAMEMAIL] +Name = Flame Mail +NamePlural = Flame Mail +PortionName = piece of Flame Mail +PortionNamePlural = pieces of Flame Mail +Pocket = Items +Price = 50 +Flags = IconMail +Description = Stationery featuring a print of flames in blazing red. Let a Pokémon hold it for delivery. +#------------------------------- +[BUBBLEMAIL] +Name = Bubble Mail +NamePlural = Bubble Mail +PortionName = piece of Bubble Mail +PortionNamePlural = pieces of Bubble Mail +Pocket = Items +Price = 50 +Flags = IconMail +Description = Stationery featuring a print of a blue world underwater. Let a Pokémon hold it for delivery. +#------------------------------- +[BLOOMMAIL] +Name = Bloom Mail +NamePlural = Bloom Mail +PortionName = piece of Bloom Mail +PortionNamePlural = pieces of Bloom Mail +Pocket = Items +Price = 50 +Flags = IconMail +Description = Stationery featuring a print of pretty floral patterns. Let a Pokémon hold it for delivery. +#------------------------------- +[TUNNELMAIL] +Name = Tunnel Mail +NamePlural = Tunnel Mail +PortionName = piece of Tunnel Mail +PortionNamePlural = pieces of Tunnel Mail +Pocket = Items +Price = 50 +Flags = IconMail +Description = Stationery featuring a print of a dimly lit coal mine. Let a Pokémon hold it for delivery. +#------------------------------- +[STEELMAIL] +Name = Steel Mail +NamePlural = Steel Mail +PortionName = piece of Steel Mail +PortionNamePlural = pieces of Steel Mail +Pocket = Items +Price = 50 +Flags = IconMail +Description = Stationery featuring a print of cool mechanical designs. Let a Pokémon hold it for delivery. +#------------------------------- +[HEARTMAIL] +Name = Heart Mail +NamePlural = Heart Mail +PortionName = piece of Heart Mail +PortionNamePlural = pieces of Heart Mail +Pocket = Items +Price = 50 +Flags = IconMail +Description = Stationery featuring a print of giant heart patterns. Let a Pokémon hold it for delivery. +#------------------------------- +[SNOWMAIL] +Name = Snow Mail +NamePlural = Snow Mail +PortionName = piece of Snow Mail +PortionNamePlural = pieces of Snow Mail +Pocket = Items +Price = 50 +Flags = IconMail +Description = Stationery featuring a print of a chilly, snow-covered world. Let a Pokémon hold it for delivery. +#------------------------------- +[SPACEMAIL] +Name = Space Mail +NamePlural = Space Mail +PortionName = piece of Space Mail +PortionNamePlural = pieces of Space Mail +Pocket = Items +Price = 50 +Flags = IconMail +Description = Stationery featuring a print depicting the huge expanse of space. Let a Pokémon hold it for delivery. +#------------------------------- +[AIRMAIL] +Name = Air Mail +NamePlural = Air Mail +PortionName = piece of Air Mail +PortionNamePlural = pieces of Air Mail +Pocket = Items +Price = 50 +Flags = IconMail +Description = Stationery featuring a print of colorful letter sets. Let a Pokémon hold it for delivery. +#------------------------------- +[MOSAICMAIL] +Name = Mosaic Mail +NamePlural = Mosaic Mail +PortionName = piece of Mosaic Mail +PortionNamePlural = pieces of Mosaic Mail +Pocket = Items +Price = 50 +Flags = IconMail +Description = Stationery featuring a print of a vivid rainbow pattern. Let a Pokémon hold it for delivery. +#------------------------------- +[BRICKMAIL] +Name = Brick Mail +NamePlural = Brick Mail +PortionName = piece of Brick Mail +PortionNamePlural = pieces of Brick Mail +Pocket = Items +Price = 50 +Flags = IconMail +Description = Stationery featuring a print of a tough-looking brick pattern. Let a Pokémon hold it for delivery. #------------------------------- [POTION] Name = Potion NamePlural = Potions -Pocket = 2 +Pocket = Medicine Price = 200 FieldUse = OnPokemon BattleUse = OnPokemon @@ -3179,7 +959,7 @@ Description = A spray-type medicine for treating wounds. It can be used to resto [SUPERPOTION] Name = Super Potion NamePlural = Super Potions -Pocket = 2 +Pocket = Medicine Price = 700 FieldUse = OnPokemon BattleUse = OnPokemon @@ -3189,7 +969,7 @@ Description = A spray-type medicine for treating wounds. It can be used to resto [HYPERPOTION] Name = Hyper Potion NamePlural = Hyper Potions -Pocket = 2 +Pocket = Medicine Price = 1500 FieldUse = OnPokemon BattleUse = OnPokemon @@ -3199,7 +979,7 @@ Description = A spray-type medicine for treating wounds. It can be used to resto [MAXPOTION] Name = Max Potion NamePlural = Max Potions -Pocket = 2 +Pocket = Medicine Price = 2500 BPPrice = 2 FieldUse = OnPokemon @@ -3210,7 +990,7 @@ Description = A spray-type medicine for treating wounds. It can completely resto [FULLRESTORE] Name = Full Restore NamePlural = Full Restores -Pocket = 2 +Pocket = Medicine Price = 3000 FieldUse = OnPokemon BattleUse = OnPokemon @@ -3222,7 +1002,7 @@ Name = Sacred Ash NamePlural = Sacred Ashes PortionName = bag of Sacred Ash PortionNamePlural = bags of Sacred Ash -Pocket = 2 +Pocket = Medicine Price = 50000 FieldUse = Direct Flags = Fling_30 @@ -3231,7 +1011,7 @@ Description = It revives all fainted Pokémon. In doing so, it also fully restor [AWAKENING] Name = Awakening NamePlural = Awakenings -Pocket = 2 +Pocket = Medicine Price = 200 FieldUse = OnPokemon BattleUse = OnPokemon @@ -3241,7 +1021,7 @@ Description = A spray-type medicine. It awakens a Pokémon from the clutches of [ANTIDOTE] Name = Antidote NamePlural = Antidotes -Pocket = 2 +Pocket = Medicine Price = 200 FieldUse = OnPokemon BattleUse = OnPokemon @@ -3251,7 +1031,7 @@ Description = A spray-type medicine. It lifts the effect of poison from one Pok [BURNHEAL] Name = Burn Heal NamePlural = Burn Heals -Pocket = 2 +Pocket = Medicine Price = 200 FieldUse = OnPokemon BattleUse = OnPokemon @@ -3261,7 +1041,7 @@ Description = A spray-type medicine. It heals a single Pokémon that is sufferin [PARALYZEHEAL] Name = Paralyze Heal NamePlural = Paralyze Heals -Pocket = 2 +Pocket = Medicine Price = 200 FieldUse = OnPokemon BattleUse = OnPokemon @@ -3271,7 +1051,7 @@ Description = A spray-type medicine. It eliminates paralysis from a single Poké [ICEHEAL] Name = Ice Heal NamePlural = Ice Heals -Pocket = 2 +Pocket = Medicine Price = 200 FieldUse = OnPokemon BattleUse = OnPokemon @@ -3281,7 +1061,7 @@ Description = A spray-type medicine. It defrosts a Pokémon that has been frozen [FULLHEAL] Name = Full Heal NamePlural = Full Heals -Pocket = 2 +Pocket = Medicine Price = 400 FieldUse = OnPokemon BattleUse = OnPokemon @@ -3293,7 +1073,7 @@ Name = Pewter Crunchies NamePlural = Pewter Crunchies PortionName = bag of Pewter Crunchies PortionNamePlural = bags of Pewter Crunchies -Pocket = 2 +Pocket = Medicine Price = 250 FieldUse = OnPokemon BattleUse = OnPokemon @@ -3303,7 +1083,7 @@ Description = Pewter City's famous crunchy snack. They can be used to heal all s [RAGECANDYBAR] Name = Rage Candy Bar NamePlural = Rage Candy Bars -Pocket = 2 +Pocket = Medicine Price = 350 FieldUse = OnPokemon BattleUse = OnPokemon @@ -3313,7 +1093,7 @@ Description = Mahogany Town's famous candy. It can be used once to heal all the [LAVACOOKIE] Name = Lava Cookie NamePlural = Lava Cookies -Pocket = 2 +Pocket = Medicine Price = 350 FieldUse = OnPokemon BattleUse = OnPokemon @@ -3323,7 +1103,7 @@ Description = Lavaridge Town's local specialty. It heals all the status problems [OLDGATEAU] Name = Old Gateau NamePlural = Old Gateaux -Pocket = 2 +Pocket = Medicine Price = 350 FieldUse = OnPokemon BattleUse = OnPokemon @@ -3333,7 +1113,7 @@ Description = Old Chateau's hidden specialty. It heals all the status problems o [CASTELIACONE] Name = Casteliacone NamePlural = Casteliacones -Pocket = 2 +Pocket = Medicine Price = 350 FieldUse = OnPokemon BattleUse = OnPokemon @@ -3343,7 +1123,7 @@ Description = Castelia City's specialty, soft-serve ice cream. It heals all the [LUMIOSEGALETTE] Name = Lumiose Galette NamePlural = Lumiose Galettes -Pocket = 2 +Pocket = Medicine Price = 350 FieldUse = OnPokemon BattleUse = OnPokemon @@ -3353,7 +1133,7 @@ Description = A popular treat in Lumiose City. It can be used once to heal all t [SHALOURSABLE] Name = Shalour Sable NamePlural = Shalour Sables -Pocket = 2 +Pocket = Medicine Price = 350 FieldUse = OnPokemon BattleUse = OnPokemon @@ -3363,7 +1143,7 @@ Description = Shalour City's famous shortbread. It can be used once to heal all [BIGMALASADA] Name = Big Malasada NamePlural = Big Malasadas -Pocket = 2 +Pocket = Medicine Price = 350 FieldUse = OnPokemon BattleUse = OnPokemon @@ -3373,7 +1153,7 @@ Description = The Alola region's specialty--fried bread. It can be used once to [REVIVE] Name = Revive NamePlural = Revives -Pocket = 2 +Pocket = Medicine Price = 2000 FieldUse = OnPokemon BattleUse = OnPokemon @@ -3383,7 +1163,7 @@ Description = A medicine that revives a fainted Pokémon. It restores half the P [MAXREVIVE] Name = Max Revive NamePlural = Max Revives -Pocket = 2 +Pocket = Medicine Price = 4000 BPPrice = 20 FieldUse = OnPokemon @@ -3396,7 +1176,7 @@ Name = Berry Juice NamePlural = Berry Juices PortionName = cup of Berry Juice PortionNamePlural = cups of Berry Juice -Pocket = 2 +Pocket = Medicine Price = 100 FieldUse = OnPokemon BattleUse = OnPokemon @@ -3406,7 +1186,7 @@ Description = A 100% pure juice made of Berries. It restores the HP of one Poké [SWEETHEART] Name = Sweet Heart NamePlural = Sweet Hearts -Pocket = 2 +Pocket = Medicine Price = 3000 FieldUse = OnPokemon BattleUse = OnPokemon @@ -3418,7 +1198,7 @@ Name = Fresh Water NamePlural = Fresh Waters PortionName = bottle of Fresh Water PortionNamePlural = bottles of Fresh Water -Pocket = 2 +Pocket = Medicine Price = 200 FieldUse = OnPokemon BattleUse = OnPokemon @@ -3430,7 +1210,7 @@ Name = Soda Pop NamePlural = Soda Pops PortionName = bottle of Soda Pop PortionNamePlural = bottles of Soda Pop -Pocket = 2 +Pocket = Medicine Price = 300 FieldUse = OnPokemon BattleUse = OnPokemon @@ -3442,7 +1222,7 @@ Name = Lemonade NamePlural = Lemonades PortionName = can of Lemonade PortionNamePlural = cans of Lemonade -Pocket = 2 +Pocket = Medicine Price = 350 SellPrice = 200 FieldUse = OnPokemon @@ -3455,7 +1235,7 @@ Name = Moomoo Milk NamePlural = Moomoo Milks PortionName = bottle of Moomoo Milk PortionNamePlural = bottles of Moomoo Milk -Pocket = 2 +Pocket = Medicine Price = 600 FieldUse = OnPokemon BattleUse = OnPokemon @@ -3467,7 +1247,7 @@ Name = Energy Powder NamePlural = Energy Powders PortionName = dose of Energy Powder PortionNamePlural = doses of Energy Powder -Pocket = 2 +Pocket = Medicine Price = 500 FieldUse = OnPokemon BattleUse = OnPokemon @@ -3477,7 +1257,7 @@ Description = A very bitter medicinal powder. It can be used to restore 60 HP to [ENERGYROOT] Name = Energy Root NamePlural = Energy Roots -Pocket = 2 +Pocket = Medicine Price = 1200 FieldUse = OnPokemon BattleUse = OnPokemon @@ -3489,7 +1269,7 @@ Name = Heal Powder NamePlural = Heal Powders PortionName = dose of Heal Powder PortionNamePlural = doses of Heal Powder -Pocket = 2 +Pocket = Medicine Price = 300 FieldUse = OnPokemon BattleUse = OnPokemon @@ -3499,7 +1279,7 @@ Description = A very bitter medicine powder. It heals all the status problems of [REVIVALHERB] Name = Revival Herb NamePlural = Revival Herbs -Pocket = 2 +Pocket = Medicine Price = 2800 FieldUse = OnPokemon BattleUse = OnPokemon @@ -3511,7 +1291,7 @@ Name = Max Honey NamePlural = Max Honeys PortionName = comb of Max Honey PortionNamePlural = combs of Max Honey -Pocket = 2 +Pocket = Medicine Price = 8000 FieldUse = OnPokemon BattleUse = OnPokemon @@ -3521,7 +1301,7 @@ Description = Honey that Dynamax Vespiquen produces. It has the same effect as a [ETHER] Name = Ether NamePlural = Ethers -Pocket = 2 +Pocket = Medicine Price = 1200 BPPrice = 4 FieldUse = OnPokemon @@ -3532,7 +1312,7 @@ Description = It restores the PP of a Pokémon's selected move by a maximum of 1 [MAXETHER] Name = Max Ether NamePlural = Max Ethers -Pocket = 2 +Pocket = Medicine Price = 2000 FieldUse = OnPokemon BattleUse = OnMove @@ -3542,7 +1322,7 @@ Description = It fully restores the PP of a single selected move that has been l [ELIXIR] Name = Elixir NamePlural = Elixirs -Pocket = 2 +Pocket = Medicine Price = 3000 FieldUse = OnPokemon BattleUse = OnPokemon @@ -3552,7 +1332,7 @@ Description = It restores the PP of all the moves learned by the targeted Pokém [MAXELIXIR] Name = Max Elixir NamePlural = Max Elixirs -Pocket = 2 +Pocket = Medicine Price = 4500 FieldUse = OnPokemon BattleUse = OnPokemon @@ -3564,7 +1344,7 @@ Name = PP Up NamePlural = PP Ups PortionName = bottle of PP Up PortionNamePlural = bottles of PP Up -Pocket = 2 +Pocket = Medicine Price = 10000 BPPrice = 10 FieldUse = OnPokemon @@ -3576,7 +1356,7 @@ Name = PP Max NamePlural = PP Maxes PortionName = bottle of PP Max PortionNamePlural = bottles of PP Max -Pocket = 2 +Pocket = Medicine Price = 10000 FieldUse = OnPokemon Flags = Fling_30 @@ -3587,7 +1367,7 @@ Name = HP Up NamePlural = HP Ups PortionName = bottle of HP Up PortionNamePlural = bottles of HP Up -Pocket = 2 +Pocket = Medicine Price = 10000 FieldUse = OnPokemon Flags = Fling_30 @@ -3598,7 +1378,7 @@ Name = Protein NamePlural = Proteins PortionName = bottle of Protein PortionNamePlural = bottles of Protein -Pocket = 2 +Pocket = Medicine Price = 10000 FieldUse = OnPokemon Flags = Fling_30 @@ -3609,7 +1389,7 @@ Name = Iron NamePlural = Irons PortionName = bottle of Iron PortionNamePlural = bottles of Iron -Pocket = 2 +Pocket = Medicine Price = 10000 FieldUse = OnPokemon Flags = Fling_30 @@ -3620,7 +1400,7 @@ Name = Calcium NamePlural = Calciums PortionName = bottle of Calcium PortionNamePlural = bottles of Calcium -Pocket = 2 +Pocket = Medicine Price = 10000 FieldUse = OnPokemon Flags = Fling_30 @@ -3631,7 +1411,7 @@ Name = Zinc NamePlural = Zincs PortionName = bottle of Zinc PortionNamePlural = bottles of Zinc -Pocket = 2 +Pocket = Medicine Price = 10000 FieldUse = OnPokemon Flags = Fling_30 @@ -3642,7 +1422,7 @@ Name = Carbos NamePlural = Carbos PortionName = bottle of Carbos PortionNamePlural = bottles of Carbos -Pocket = 2 +Pocket = Medicine Price = 10000 FieldUse = OnPokemon Flags = Fling_30 @@ -3651,7 +1431,7 @@ Description = A nutritious drink for Pokémon. It raises the base Speed stat of [HEALTHFEATHER] Name = Health Feather NamePlural = Health Feathers -Pocket = 2 +Pocket = Medicine Price = 300 FieldUse = OnPokemon Flags = Fling_20 @@ -3660,7 +1440,7 @@ Description = An item for use on a Pokémon. It slightly increases the base HP o [MUSCLEFEATHER] Name = Muscle Feather NamePlural = Muscle Feathers -Pocket = 2 +Pocket = Medicine Price = 300 FieldUse = OnPokemon Flags = Fling_20 @@ -3669,7 +1449,7 @@ Description = An item for use on a Pokémon. It slightly increases the base Atta [RESISTFEATHER] Name = Resist Feather NamePlural = Resist Feathers -Pocket = 2 +Pocket = Medicine Price = 300 FieldUse = OnPokemon Flags = Fling_20 @@ -3678,7 +1458,7 @@ Description = An item for use on a Pokémon. It slightly increases the base Defe [GENIUSFEATHER] Name = Genius Feather NamePlural = Genius Feathers -Pocket = 2 +Pocket = Medicine Price = 300 FieldUse = OnPokemon Flags = Fling_20 @@ -3687,7 +1467,7 @@ Description = An item for use on a Pokémon. It slightly increases the base Sp. [CLEVERFEATHER] Name = Clever Feather NamePlural = Clever Feathers -Pocket = 2 +Pocket = Medicine Price = 300 FieldUse = OnPokemon Flags = Fling_20 @@ -3696,7 +1476,7 @@ Description = An item for use on a Pokémon. It slightly increases the base Sp. [SWIFTFEATHER] Name = Swift Feather NamePlural = Swift Feathers -Pocket = 2 +Pocket = Medicine Price = 300 FieldUse = OnPokemon Flags = Fling_20 @@ -3705,7 +1485,7 @@ Description = An item for use on a Pokémon. It slightly increases the base Spee [HEALTHMOCHI] Name = Health Mochi NamePlural = Health Mochis -Pocket = 2 +Pocket = Medicine Price = 500 FieldUse = OnPokemon Flags = Fling_20 @@ -3714,7 +1494,7 @@ Description = A mochi cake with Berries kneaded into its dough. It increases bas [MUSCLEMOCHI] Name = Muscle Mochi NamePlural = Muscle Mochis -Pocket = 2 +Pocket = Medicine Price = 500 FieldUse = OnPokemon Flags = Fling_20 @@ -3723,7 +1503,7 @@ Description = A mochi cake with Berries kneaded into its dough. It increases bas [RESISTMOCHI] Name = Resist Mochi NamePlural = Resist Mochis -Pocket = 2 +Pocket = Medicine Price = 500 FieldUse = OnPokemon Flags = Fling_20 @@ -3732,7 +1512,7 @@ Description = A mochi cake with Berries kneaded into its dough. It increases bas [GENIUSMOCHI] Name = Genius Mochi NamePlural = Genius Mochis -Pocket = 2 +Pocket = Medicine Price = 500 FieldUse = OnPokemon Flags = Fling_20 @@ -3741,7 +1521,7 @@ Description = A mochi cake with Berries kneaded into its dough. It increases bas [CLEVERMOCHI] Name = Clever Mochi NamePlural = Clever Mochis -Pocket = 2 +Pocket = Medicine Price = 500 FieldUse = OnPokemon Flags = Fling_20 @@ -3750,7 +1530,7 @@ Description = A mochi cake with Berries kneaded into its dough. It increases bas [SWIFTMOCHI] Name = Swift Mochi NamePlural = Swift Mochis -Pocket = 2 +Pocket = Medicine Price = 500 FieldUse = OnPokemon Flags = Fling_20 @@ -3759,7 +1539,7 @@ Description = A mochi cake with Berries kneaded into its dough. It increases bas [FRESHSTARTMOCHI] Name = Fresh-Start Mochi NamePlural = Fresh-Start Mochis -Pocket = 2 +Pocket = Medicine Price = 300 FieldUse = OnPokemon Flags = Fling_20 @@ -3770,7 +1550,7 @@ Name = Lonely Mint NamePlural = Lonely Mints PortionName = sprig of Lonely Mint PortionNamePlural = sprigs of Lonely Mint -Pocket = 2 +Pocket = Medicine Price = 20 BPPrice = 50 FieldUse = OnPokemon @@ -3782,7 +1562,7 @@ Name = Adamant Mint NamePlural = Adamant Mints PortionName = sprig of Adamant Mint PortionNamePlural = sprigs of Adamant Mint -Pocket = 2 +Pocket = Medicine Price = 20 BPPrice = 50 FieldUse = OnPokemon @@ -3794,7 +1574,7 @@ Name = Naughty Mint NamePlural = Naughty Mints PortionName = sprig of Naughty Mint PortionNamePlural = sprigs of Naughty Mint -Pocket = 2 +Pocket = Medicine Price = 20 BPPrice = 50 FieldUse = OnPokemon @@ -3806,7 +1586,7 @@ Name = Brave Mint NamePlural = Brave Mints PortionName = sprig of Brave Mint PortionNamePlural = sprigs of Brave Mint -Pocket = 2 +Pocket = Medicine Price = 20 BPPrice = 50 FieldUse = OnPokemon @@ -3818,7 +1598,7 @@ Name = Bold Mint NamePlural = Bold Mints PortionName = sprig of Bold Mint PortionNamePlural = sprigs of Bold Mint -Pocket = 2 +Pocket = Medicine Price = 20 BPPrice = 50 FieldUse = OnPokemon @@ -3830,7 +1610,7 @@ Name = Impish Mint NamePlural = Impish Mints PortionName = sprig of Impish Mint PortionNamePlural = sprigs of Impish Mint -Pocket = 2 +Pocket = Medicine Price = 20 BPPrice = 50 FieldUse = OnPokemon @@ -3842,7 +1622,7 @@ Name = Lax Mint NamePlural = Lax Mints PortionName = sprig of Lax Mint PortionNamePlural = sprigs of Lax Mint -Pocket = 2 +Pocket = Medicine Price = 20 BPPrice = 50 FieldUse = OnPokemon @@ -3854,7 +1634,7 @@ Name = Relaxed Mint NamePlural = Relaxed Mints PortionName = sprig of Relaxed Mint PortionNamePlural = sprigs of Relaxed Mint -Pocket = 2 +Pocket = Medicine Price = 20 BPPrice = 50 FieldUse = OnPokemon @@ -3866,7 +1646,7 @@ Name = Modest Mint NamePlural = Modest Mints PortionName = sprig of Modest Mint PortionNamePlural = sprigs of Modest Mint -Pocket = 2 +Pocket = Medicine Price = 20 BPPrice = 50 FieldUse = OnPokemon @@ -3878,7 +1658,7 @@ Name = Mild Mint NamePlural = Mild Mints PortionName = sprig of Mild Mint PortionNamePlural = sprigs of Mild Mint -Pocket = 2 +Pocket = Medicine Price = 20 BPPrice = 50 FieldUse = OnPokemon @@ -3890,7 +1670,7 @@ Name = Rash Mint NamePlural = Rash Mints PortionName = sprig of Rash Mint PortionNamePlural = sprigs of Rash Mint -Pocket = 2 +Pocket = Medicine Price = 20 BPPrice = 50 FieldUse = OnPokemon @@ -3902,7 +1682,7 @@ Name = Quiet Mint NamePlural = Quiet Mints PortionName = sprig of Quiet Mint PortionNamePlural = sprigs of Quiet Mint -Pocket = 2 +Pocket = Medicine Price = 20 BPPrice = 50 FieldUse = OnPokemon @@ -3914,7 +1694,7 @@ Name = Calm Mint NamePlural = Calm Mints PortionName = sprig of Calm Mint PortionNamePlural = sprigs of Calm Mint -Pocket = 2 +Pocket = Medicine Price = 20 BPPrice = 50 FieldUse = OnPokemon @@ -3926,7 +1706,7 @@ Name = Gentle Mint NamePlural = Gentle Mints PortionName = sprig of Gentle Mint PortionNamePlural = sprigs of Gentle Mint -Pocket = 2 +Pocket = Medicine Price = 20 BPPrice = 50 FieldUse = OnPokemon @@ -3938,7 +1718,7 @@ Name = Careful Mint NamePlural = Careful Mints PortionName = sprig of Careful Mint PortionNamePlural = sprigs of Careful Mint -Pocket = 2 +Pocket = Medicine Price = 20 BPPrice = 50 FieldUse = OnPokemon @@ -3950,7 +1730,7 @@ Name = Sassy Mint NamePlural = Sassy Mints PortionName = sprig of Sassy Mint PortionNamePlural = sprigs of Sassy Mint -Pocket = 2 +Pocket = Medicine Price = 20 BPPrice = 50 FieldUse = OnPokemon @@ -3962,7 +1742,7 @@ Name = Timid Mint NamePlural = Timid Mints PortionName = sprig of Timid Mint PortionNamePlural = sprigs of Timid Mint -Pocket = 2 +Pocket = Medicine Price = 20 BPPrice = 50 FieldUse = OnPokemon @@ -3974,7 +1754,7 @@ Name = Hasty Mint NamePlural = Hasty Mints PortionName = sprig of Hasty Mint PortionNamePlural = sprigs of Hasty Mint -Pocket = 2 +Pocket = Medicine Price = 20 BPPrice = 50 FieldUse = OnPokemon @@ -3986,7 +1766,7 @@ Name = Jolly Mint NamePlural = Jolly Mints PortionName = sprig of Jolly Mint PortionNamePlural = sprigs of Jolly Mint -Pocket = 2 +Pocket = Medicine Price = 20 BPPrice = 50 FieldUse = OnPokemon @@ -3998,7 +1778,7 @@ Name = Naive Mint NamePlural = Naive Mints PortionName = sprig of Naive Mint PortionNamePlural = sprigs of Naive Mint -Pocket = 2 +Pocket = Medicine Price = 20 BPPrice = 50 FieldUse = OnPokemon @@ -4010,7 +1790,7 @@ Name = Serious Mint NamePlural = Serious Mints PortionName = sprig of Serious Mint PortionNamePlural = sprigs of Serious Mint -Pocket = 2 +Pocket = Medicine Price = 20 BPPrice = 50 FieldUse = OnPokemon @@ -4020,7 +1800,7 @@ Description = When a Pokémon smells this mint, all of its stats will grow at an [ABILITYCAPSULE] Name = Ability Capsule NamePlural = Ability Capsule -Pocket = 2 +Pocket = Medicine Price = 10000 BPPrice = 50 FieldUse = OnPokemon @@ -4029,7 +1809,7 @@ Description = A capsule that allows a Pokémon with two Abilities to switch betw [ABILITYPATCH] Name = Ability Patch NamePlural = Ability Patches -Pocket = 2 +Pocket = Medicine Price = 10000 BPPrice = 200 FieldUse = OnPokemon @@ -4038,7 +1818,7 @@ Description = A patch that allows a Pokémon with a regular Ability to have a ra [EXPCANDYXS] Name = Exp. Candy XS NamePlural = Exp. Candy XSs -Pocket = 2 +Pocket = Medicine Price = 20 FieldUse = OnPokemon Flags = Fling_30 @@ -4047,7 +1827,7 @@ Description = A candy packed with energy. When consumed, it will grant a Pokémo [EXPCANDYS] Name = Exp. Candy S NamePlural = Exp. Candy Ss -Pocket = 2 +Pocket = Medicine Price = 240 FieldUse = OnPokemon Flags = Fling_30 @@ -4056,7 +1836,7 @@ Description = A candy packed with energy. When consumed, it will grant a Pokémo [EXPCANDYM] Name = Exp. Candy M NamePlural = Exp. Candy Ms -Pocket = 2 +Pocket = Medicine Price = 1000 FieldUse = OnPokemon Flags = Fling_30 @@ -4065,7 +1845,7 @@ Description = A candy packed with energy. When consumed, it will grant a Pokémo [EXPCANDYL] Name = Exp. Candy L NamePlural = Exp. Candy Ls -Pocket = 2 +Pocket = Medicine Price = 3000 FieldUse = OnPokemon Flags = Fling_30 @@ -4074,7 +1854,7 @@ Description = A candy packed with energy. When consumed, it will grant a Pokémo [EXPCANDYXL] Name = Exp. Candy XL NamePlural = Exp. Candy XLs -Pocket = 2 +Pocket = Medicine Price = 10000 FieldUse = OnPokemon Flags = Fling_30 @@ -4083,7 +1863,7 @@ Description = A candy packed with energy. When consumed, it will grant a Pokémo [RARECANDY] Name = Rare Candy NamePlural = Rare Candies -Pocket = 2 +Pocket = Medicine Price = 10000 BPPrice = 20 FieldUse = OnPokemon @@ -4093,7 +1873,7 @@ Description = A candy that is packed with energy. It raises the level of a singl [MASTERBALL] Name = Master Ball NamePlural = Master Balls -Pocket = 3 +Pocket = PokeBalls Price = 0 BattleUse = OnFoe Flags = PokeBall @@ -4102,7 +1882,7 @@ Description = The best Ball with the ultimate level of performance. It will catc [ULTRABALL] Name = Ultra Ball NamePlural = Ultra Balls -Pocket = 3 +Pocket = PokeBalls Price = 800 BattleUse = OnFoe Flags = PokeBall @@ -4111,7 +1891,7 @@ Description = An ultra-performance Ball that provides a higher Pokémon catch ra [GREATBALL] Name = Great Ball NamePlural = Great Balls -Pocket = 3 +Pocket = PokeBalls Price = 600 BattleUse = OnFoe Flags = PokeBall @@ -4120,7 +1900,7 @@ Description = A good, high-performance Ball that provides a higher Pokémon catc [POKEBALL] Name = Poké Ball NamePlural = Poké Balls -Pocket = 3 +Pocket = PokeBalls Price = 200 BattleUse = OnFoe Flags = PokeBall @@ -4129,7 +1909,7 @@ Description = A device for catching wild Pokémon. It is thrown like a ball at t [SAFARIBALL] Name = Safari Ball NamePlural = Safari Balls -Pocket = 3 +Pocket = PokeBalls Price = 0 BattleUse = OnFoe Flags = PokeBall @@ -4138,7 +1918,7 @@ Description = A special Poké Ball that is used only in the Safari Zone. It is d [SPORTBALL] Name = Sport Ball NamePlural = Sport Balls -Pocket = 3 +Pocket = PokeBalls Price = 300 BattleUse = OnFoe Flags = PokeBall @@ -4147,7 +1927,7 @@ Description = A special Poké Ball for the Bug-Catching Contest. [NETBALL] Name = Net Ball NamePlural = Net Balls -Pocket = 3 +Pocket = PokeBalls Price = 1000 BattleUse = OnFoe Flags = PokeBall @@ -4156,7 +1936,7 @@ Description = A somewhat different Poké Ball that works especially well on Wate [DIVEBALL] Name = Dive Ball NamePlural = Dive Balls -Pocket = 3 +Pocket = PokeBalls Price = 1000 BattleUse = OnFoe Flags = PokeBall @@ -4165,7 +1945,7 @@ Description = A somewhat different Poké Ball that works especially well on Pok [NESTBALL] Name = Nest Ball NamePlural = Nest Balls -Pocket = 3 +Pocket = PokeBalls Price = 1000 BattleUse = OnFoe Flags = PokeBall @@ -4174,7 +1954,7 @@ Description = A somewhat different Poké Ball that works especially well on weak [REPEATBALL] Name = Repeat Ball NamePlural = Repeat Balls -Pocket = 3 +Pocket = PokeBalls Price = 1000 BattleUse = OnFoe Flags = PokeBall @@ -4183,7 +1963,7 @@ Description = A somewhat different Poké Ball that works especially well on Pok [TIMERBALL] Name = Timer Ball NamePlural = Timer Balls -Pocket = 3 +Pocket = PokeBalls Price = 1000 BattleUse = OnFoe Flags = PokeBall @@ -4192,7 +1972,7 @@ Description = A somewhat different Ball that becomes progressively better the mo [LUXURYBALL] Name = Luxury Ball NamePlural = Luxury Balls -Pocket = 3 +Pocket = PokeBalls Price = 3000 BattleUse = OnFoe Flags = PokeBall @@ -4201,7 +1981,7 @@ Description = A comfortable Poké Ball that makes a caught wild Pokémon quickly [PREMIERBALL] Name = Premier Ball NamePlural = Premier Balls -Pocket = 3 +Pocket = PokeBalls Price = 200 SellPrice = 10 BattleUse = OnFoe @@ -4211,7 +1991,7 @@ Description = A somewhat rare Poké Ball that has been specially made to commemo [DUSKBALL] Name = Dusk Ball NamePlural = Dusk Balls -Pocket = 3 +Pocket = PokeBalls Price = 1000 BattleUse = OnFoe Flags = PokeBall @@ -4220,7 +2000,7 @@ Description = A somewhat different Poké Ball that makes it easier to catch wild [HEALBALL] Name = Heal Ball NamePlural = Heal Balls -Pocket = 3 +Pocket = PokeBalls Price = 300 BattleUse = OnFoe Flags = PokeBall @@ -4229,7 +2009,7 @@ Description = A remedial Poké Ball that restores the caught Pokémon's HP and e [QUICKBALL] Name = Quick Ball NamePlural = Quick Balls -Pocket = 3 +Pocket = PokeBalls Price = 1000 BattleUse = OnFoe Flags = PokeBall @@ -4238,7 +2018,7 @@ Description = A somewhat different Poké Ball that provides a better catch rate [CHERISHBALL] Name = Cherish Ball NamePlural = Cherish Balls -Pocket = 3 +Pocket = PokeBalls Price = 0 BattleUse = OnFoe Flags = PokeBall @@ -4247,7 +2027,7 @@ Description = A quite rare Poké Ball that has been specially crafted to commemo [FASTBALL] Name = Fast Ball NamePlural = Fast Balls -Pocket = 3 +Pocket = PokeBalls Price = 300 BattleUse = OnFoe Flags = PokeBall @@ -4256,7 +2036,7 @@ Description = A Poké Ball that makes it easier to catch fast Pokémon. [LEVELBALL] Name = Level Ball NamePlural = Level Balls -Pocket = 3 +Pocket = PokeBalls Price = 300 BattleUse = OnFoe Flags = PokeBall @@ -4265,7 +2045,7 @@ Description = A Poké Ball for catching Pokémon that are a lower level than you [LUREBALL] Name = Lure Ball NamePlural = Lure Balls -Pocket = 3 +Pocket = PokeBalls Price = 300 BattleUse = OnFoe Flags = PokeBall @@ -4274,7 +2054,7 @@ Description = A Poké Ball for catching Pokémon hooked by a Rod when fishing. [HEAVYBALL] Name = Heavy Ball NamePlural = Heavy Balls -Pocket = 3 +Pocket = PokeBalls Price = 300 BattleUse = OnFoe Flags = PokeBall @@ -4283,7 +2063,7 @@ Description = A Poké Ball for catching very heavy Pokémon. [LOVEBALL] Name = Love Ball NamePlural = Love Balls -Pocket = 3 +Pocket = PokeBalls Price = 300 BattleUse = OnFoe Flags = PokeBall @@ -4292,7 +2072,7 @@ Description = A Poké Ball for catching Pokémon that are the opposite gender of [FRIENDBALL] Name = Friend Ball NamePlural = Friend Balls -Pocket = 3 +Pocket = PokeBalls Price = 300 BattleUse = OnFoe Flags = PokeBall @@ -4301,7 +2081,7 @@ Description = A Poké Ball that makes caught Pokémon more friendly. [MOONBALL] Name = Moon Ball NamePlural = Moon Balls -Pocket = 3 +Pocket = PokeBalls Price = 300 BattleUse = OnFoe Flags = PokeBall @@ -4310,7 +2090,7 @@ Description = A Poké Ball for catching Pokémon that evolve using the Moon Ston [DREAMBALL] Name = Dream Ball NamePlural = Dream Balls -Pocket = 3 +Pocket = PokeBalls Price = 300 BattleUse = OnFoe Flags = PokeBall @@ -4319,1170 +2099,16 @@ Description = A somewhat different Poké Ball that makes it easier to catch wild [BEASTBALL] Name = Beast Ball NamePlural = Beast Balls -Pocket = 3 +Pocket = PokeBalls Price = 1000 BattleUse = OnFoe Flags = PokeBall Description = A special Poké Ball designed to catch Ultra Beasts. It has a low success rate for catching others. #------------------------------- -[TM01] -Name = TM01 -NamePlural = TM01s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_150 -Move = FOCUSPUNCH -Description = The user focuses its mind before launching a punch. This move fails if the user is hit before it is used. -#------------------------------- -[TM02] -Name = TM02 -NamePlural = TM02s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_80 -Move = DRAGONCLAW -Description = The user slashes the target with huge sharp claws. -#------------------------------- -[TM03] -Name = TM03 -NamePlural = TM03s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_60 -Move = WATERPULSE -Description = The user attacks the target with a pulsing blast of water. This may also confuse the target. -#------------------------------- -[TM04] -Name = TM04 -NamePlural = TM04s -Pocket = 4 -Price = 1500 -BPPrice = 48 -FieldUse = TR -Flags = Fling_10 -Move = CALMMIND -Description = The user quietly focuses its mind and calms its spirit to raise its Sp. Atk and Sp. Def stats. -#------------------------------- -[TM05] -Name = TM05 -NamePlural = TM05s -Pocket = 4 -Price = 1000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_10 -Move = ROAR -Description = The target is scared off, and a different Pokémon is dragged out. In the wild, this ends the battle. -#------------------------------- -[TM06] -Name = TM06 -NamePlural = TM06s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_10 -Move = TOXIC -Description = A move that leaves the target badly poisoned. Its poison damage worsens every turn. -#------------------------------- -[TM07] -Name = TM07 -NamePlural = TM07s -Pocket = 4 -Price = 2000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_10 -Move = HAIL -Description = The user summons a hailstorm lasting five turns. It damages all Pokémon except Ice types. -#------------------------------- -[TM08] -Name = TM08 -NamePlural = TM08s -Pocket = 4 -Price = 1500 -BPPrice = 48 -FieldUse = TR -Flags = Fling_10 -Move = BULKUP -Description = The user tenses its muscles to bulk up its body, raising both its Attack and Defense stats. -#------------------------------- -[TM09] -Name = TM09 -NamePlural = TM09s -Pocket = 4 -Price = 2000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_25 -Move = BULLETSEED -Description = The user forcefully shoots seeds at the target two to five times in a row. -#------------------------------- -[TM10] -Name = TM10 -NamePlural = TM10s -Pocket = 4 -Price = 1500 -BPPrice = 32 -FieldUse = TR -Flags = Fling_10 -Move = WORKUP -Description = The user is roused, and its Attack and Sp. Atk stats increase. -#------------------------------- -[TM11] -Name = TM11 -NamePlural = TM11s -Pocket = 4 -Price = 2000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_10 -Move = SUNNYDAY -Description = The user intensifies the sun for five turns, powering up Fire-type moves and weakening Water-type moves. -#------------------------------- -[TM12] -Name = TM12 -NamePlural = TM12s -Pocket = 4 -Price = 1500 -BPPrice = 32 -FieldUse = TR -Flags = Fling_10 -Move = TAUNT -Description = The target is taunted into a rage that allows it to use only attack moves for three turns. -#------------------------------- -[TM13] -Name = TM13 -NamePlural = TM13s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_90 -Move = ICEBEAM -Description = The target is struck with an icy-cold beam of energy. This may also leave the target frozen. -#------------------------------- -[TM14] -Name = TM14 -NamePlural = TM14s -Pocket = 4 -Price = 5500 -BPPrice = 32 -FieldUse = TR -Flags = Fling_110 -Move = BLIZZARD -Description = A howling blizzard is summoned to strike opposing Pokémon. This may also leave them frozen. -#------------------------------- -[TM15] -Name = TM15 -NamePlural = TM15s -Pocket = 4 -Price = 7500 -BPPrice = 32 -FieldUse = TR -Flags = Fling_150 -Move = HYPERBEAM -Description = The target is attacked with a powerful beam. The user can't move on the next turn. -#------------------------------- -[TM16] -Name = TM16 -NamePlural = TM16s -Pocket = 4 -Price = 2000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_10 -Move = LIGHTSCREEN -Description = A wondrous wall of light is put up to reduce damage from special attacks for five turns. -#------------------------------- -[TM17] -Name = TM17 -NamePlural = TM17s -Pocket = 4 -Price = 2000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_10 -Move = PROTECT -Description = The user protects itself from all attacks. Its chance of failing rises if it is used in succession. -#------------------------------- -[TM18] -Name = TM18 -NamePlural = TM18s -Pocket = 4 -Price = 2000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_10 -Move = RAINDANCE -Description = The user summons a heavy rain for five turns, powering up Water-type moves and weakening Fire-type ones. -#------------------------------- -[TM19] -Name = TM19 -NamePlural = TM19s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_75 -Move = GIGADRAIN -Description = A nutrient-draining attack. The user's HP is restored by half the damage taken by the target. -#------------------------------- -[TM20] -Name = TM20 -NamePlural = TM20s -Pocket = 4 -Price = 2000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_10 -Move = SAFEGUARD -Description = The user creates a protective field that prevents status conditions for five turns. -#------------------------------- -[TM21] -Name = TM21 -NamePlural = TM21s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_80 -Move = DAZZLINGGLEAM -Description = The user damages opposing Pokémon by emitting a powerful flash. -#------------------------------- -[TM22] -Name = TM22 -NamePlural = TM22s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_120 -Move = SOLARBEAM -Description = In this two-turn attack, the user gathers light, then blasts a bundled beam on the next turn. -#------------------------------- -[TM23] -Name = TM23 -NamePlural = TM23s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_100 -Move = IRONTAIL -Description = The target is slammed with a steel-hard tail. This may also lower the target's Defense stat. -#------------------------------- -[TM24] -Name = TM24 -NamePlural = TM24s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_90 -Move = THUNDERBOLT -Description = A strong electric blast crashes down on the target. This may also leave the target with paralysis. -#------------------------------- -[TM25] -Name = TM25 -NamePlural = TM25s -Pocket = 4 -Price = 5500 -BPPrice = 32 -FieldUse = TR -Flags = Fling_110 -Move = THUNDER -Description = A wicked thunderbolt is dropped on the target to inflict damage. This may also leave them with paralysis. -#------------------------------- -[TM26] -Name = TM26 -NamePlural = TM26s -Pocket = 4 -Price = 3000 -BPPrice = 80 -FieldUse = TR -Flags = Fling_100 -Move = EARTHQUAKE -Description = The user sets off an earthquake that strikes every Pokémon around it. -#------------------------------- -[TM27] -Name = TM27 -NamePlural = TM27s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_65 -Move = LOWSWEEP -Description = The user makes a swift attack on the target's legs, which lowers the target's Speed stat. -#------------------------------- -[TM28] -Name = TM28 -NamePlural = TM28s -Pocket = 4 -Price = 2000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_80 -Move = DIG -Description = The user burrows into the ground, then attacks on the next turn. It can also be used to exit dungeons. -#------------------------------- -[TM29] -Name = TM29 -NamePlural = TM29s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_90 -Move = PSYCHIC -Description = The target is hit by a strong telekinetic force. This may also lower the target's Sp. Def stat. -#------------------------------- -[TM30] -Name = TM30 -NamePlural = TM30s -Pocket = 4 -Price = 3000 -BPPrice = 64 -FieldUse = TR -Flags = Fling_80 -Move = SHADOWBALL -Description = The user hurls a shadowy blob at the target. This may also lower the target's Sp. Def stat. -#------------------------------- -[TM31] -Name = TM31 -NamePlural = TM31s -Pocket = 4 -Price = 3000 -BPPrice = 40 -FieldUse = TR -Flags = Fling_75 -Move = BRICKBREAK -Description = The user attacks with a swift chop. It can also break barriers, such as Light Screen and Reflect. -#------------------------------- -[TM32] -Name = TM32 -NamePlural = TM32s -Pocket = 4 -Price = 1000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_10 -Move = DOUBLETEAM -Description = By moving rapidly, the user makes illusory copies of itself to raise its evasiveness. -#------------------------------- -[TM33] -Name = TM33 -NamePlural = TM33s -Pocket = 4 -Price = 2000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_10 -Move = REFLECT -Description = A wondrous wall of light is put up to reduce damage from physical attacks for five turns. -#------------------------------- -[TM34] -Name = TM34 -NamePlural = TM34s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_60 -Move = SHOCKWAVE -Description = The user strikes the target with a quick jolt of electricity. This attack never misses. -#------------------------------- -[TM35] -Name = TM35 -NamePlural = TM35s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_90 -Move = FLAMETHROWER -Description = The target is scorched with an intense blast of fire. This may also leave the target with a burn. -#------------------------------- -[TM36] -Name = TM36 -NamePlural = TM36s -Pocket = 4 -Price = 3000 -BPPrice = 80 -FieldUse = TR -Flags = Fling_90 -Move = SLUDGEBOMB -Description = Unsanitary sludge is hurled at the target. This may also poison the target. -#------------------------------- -[TM37] -Name = TM37 -NamePlural = TM37s -Pocket = 4 -Price = 2000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_10 -Move = SANDSTORM -Description = A five-turn sandstorm is summoned to hurt all combatants except Rock, Ground, and Steel types. -#------------------------------- -[TM38] -Name = TM38 -NamePlural = TM38s -Pocket = 4 -Price = 5500 -BPPrice = 32 -FieldUse = TR -Flags = Fling_110 -Move = FIREBLAST -Description = The target is attacked with an intense blast of all-consuming fire. This may also leave them with a burn. -#------------------------------- -[TM39] -Name = TM39 -NamePlural = TM39s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_60 -Move = ROCKTOMB -Description = Boulders are hurled at the target. This also lowers the target's Speed stat by preventing its movement. -#------------------------------- -[TM40] -Name = TM40 -NamePlural = TM40s -Pocket = 4 -Price = 3000 -BPPrice = 40 -FieldUse = TR -Flags = Fling_60 -Move = AERIALACE -Description = The user confounds the target with speed, then slashes. This attack never misses. -#------------------------------- -[TM41] -Name = TM41 -NamePlural = TM41s -Pocket = 4 -Price = 1500 -BPPrice = 32 -FieldUse = TR -Flags = Fling_10 -Move = TORMENT -Description = The user torments and enrages the target, making it incapable of using the same move twice in a row. -#------------------------------- -[TM42] -Name = TM42 -NamePlural = TM42s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_70 -Move = FACADE -Description = This attack move doubles its power if the user is poisoned, burned, or paralyzed. -#------------------------------- -[TM43] -Name = TM43 -NamePlural = TM43s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_70 -Move = VOLTSWITCH -Description = After making its attack, the user rushes back to switch places with a party Pokémon in waiting. -#------------------------------- -[TM44] -Name = TM44 -NamePlural = TM44s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_10 -Move = REST -Description = The user goes to sleep for two turns. This fully restores the user's HP and heals any status conditions. -#------------------------------- -[TM45] -Name = TM45 -NamePlural = TM45s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_10 -Move = ATTRACT -Description = If it is the opposite gender of the user, the target becomes infatuated and less likely to attack. -#------------------------------- -[TM46] -Name = TM46 -NamePlural = TM46s -Pocket = 4 -Price = 2000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_60 -Move = THIEF -Description = The user attacks and steals the target's held item simultaneously. -#------------------------------- -[TM47] -Name = TM47 -NamePlural = TM47s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_70 -Move = STEELWING -Description = The target is hit with wings of steel. This may also raise the user's Defense stat. -#------------------------------- -[TM48] -Name = TM48 -NamePlural = TM48s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_10 -Move = SKILLSWAP -Description = The user employs its psychic power to exchange Abilities with the target. -#------------------------------- -[TM49] -Name = TM49 -NamePlural = TM49s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_80 -Move = SCALD -Description = The user shoots boiling hot water at its target. This may also leave the target with a burn. -#------------------------------- -[TM50] -Name = TM50 -NamePlural = TM50s -Pocket = 4 -Price = 5500 -BPPrice = 32 -FieldUse = TR -Flags = Fling_130 -Move = OVERHEAT -Description = The user attacks the target at full power. The attack's recoil harshly lowers the user's Sp. Atk stat. -#------------------------------- -[TM51] -Name = TM51 -NamePlural = TM51s -Pocket = 4 -Price = 2000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_10 -Move = ROOST -Description = The user lands and rests its body. This move restores the user's HP by up to half of its max HP. -#------------------------------- -[TM52] -Name = TM52 -NamePlural = TM52s -Pocket = 4 -Price = 5500 -BPPrice = 32 -FieldUse = TR -Flags = Fling_120 -Move = FOCUSBLAST -Description = The user heightens its mental focus and unleashes its power. This may also lower the target's Sp. Def stat. -#------------------------------- -[TM53] -Name = TM53 -NamePlural = TM53s -Pocket = 4 -Price = 3000 -BPPrice = 64 -FieldUse = TR -Flags = Fling_90 -Move = ENERGYBALL -Description = The user draws power from nature and fires it at the target. This may also lower the target's Sp. Def stat. -#------------------------------- -[TM54] -Name = TM54 -NamePlural = TM54s -Pocket = 4 -Price = 2000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_40 -Move = FALSESWIPE -Description = A restrained attack that prevents the target from fainting. The target is left with at least 1 HP. -#------------------------------- -[TM55] -Name = TM55 -NamePlural = TM55s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_65 -Move = BRINE -Description = If the target's HP is half or less, this attack will hit with double the power. -#------------------------------- -[TM56] -Name = TM56 -NamePlural = TM56s -Pocket = 4 -Price = 2000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_10 -Move = FLING -Description = The user flings its held item at the target to attack. This move's power and effects depend on the item. -#------------------------------- -[TM57] -Name = TM57 -NamePlural = TM57s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_50 -Move = CHARGEBEAM -Description = The user attacks the target with an electric charge. The user may use any remaining charge to raise its Sp. Atk. -#------------------------------- -[TM58] -Name = TM58 -NamePlural = TM58s -Pocket = 4 -Price = 2000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_10 -Move = ENDURE -Description = The user endures any attack with at least 1 HP. Its chance of failing rises if it is used in succession. -#------------------------------- -[TM59] -Name = TM59 -NamePlural = TM59s -Pocket = 4 -Price = 3000 -BPPrice = 80 -FieldUse = TR -Flags = Fling_85 -Move = DRAGONPULSE -Description = The target is attacked with a shock wave generated by the user's gaping mouth. -#------------------------------- -[TM60] -Name = TM60 -NamePlural = TM60s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_75 -Move = DRAINPUNCH -Description = An energy-draining punch. The user's HP is restored by half the damage taken by the target. -#------------------------------- -[TM61] -Name = TM61 -NamePlural = TM61s -Pocket = 4 -Price = 2000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_10 -Move = WILLOWISP -Description = The user shoots a sinister flame at the target to inflict a burn. -#------------------------------- -[TM62] -Name = TM62 -NamePlural = TM62s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_90 -Move = BUGBUZZ -Description = The user generates a damaging sound wave by vibration. This may also lower the target's Sp. Def stat. -#------------------------------- -[TM63] -Name = TM63 -NamePlural = TM63s -Pocket = 4 -Price = 2000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_10 -Move = NASTYPLOT -Description = The user stimulates its brain by thinking bad thoughts. This sharply raises the user's Sp. Atk stat. -#------------------------------- -[TM64] -Name = TM64 -NamePlural = TM64s -Pocket = 4 -Price = 7500 -BPPrice = 32 -FieldUse = TR -Flags = Fling_250 -Move = EXPLOSION -Description = The user attacks everything around it by causing a tremendous explosion. The user faints upon using this move. -#------------------------------- -[TM65] -Name = TM65 -NamePlural = TM65s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_70 -Move = SHADOWCLAW -Description = The user slashes with a sharp claw made from shadows. Critical hits land more easily. -#------------------------------- -[TM66] -Name = TM66 -NamePlural = TM66s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_50 -Move = PAYBACK -Description = The user stores power, then attacks. If the user moves after the target, this attack's power will be doubled. -#------------------------------- -[TM67] -Name = TM67 -NamePlural = TM67s -Pocket = 4 -Price = 1000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_10 -Move = RECYCLE -Description = The user recycles a held item that has been used in battle so it can be used again. -#------------------------------- -[TM68] -Name = TM68 -NamePlural = TM68s -Pocket = 4 -Price = 7500 -BPPrice = 32 -FieldUse = TR -Flags = Fling_150 -Move = GIGAIMPACT -Description = The user charges at the target using every bit of its power. The user can't move on the next turn. -#------------------------------- -[TM69] -Name = TM69 -NamePlural = TM69s -Pocket = 4 -Price = 1500 -BPPrice = 32 -FieldUse = TR -Flags = Fling_10 -Move = ROCKPOLISH -Description = The user polishes its body to reduce drag. This sharply raises the Speed stat. -#------------------------------- -[TM70] -Name = TM70 -NamePlural = TM70s -Pocket = 4 -Price = 1000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_10 -Move = FLASH -Description = The user flashes a light that lowers the target's accuracy. It can also be used to illuminate caves. -#------------------------------- -[TM71] -Name = TM71 -NamePlural = TM71s -Pocket = 4 -Price = 3000 -BPPrice = 80 -FieldUse = TR -Flags = Fling_100 -Move = STONEEDGE -Description = The user stabs the target from below with sharpened stones. Critical hits land more easily. -#------------------------------- -[TM72] -Name = TM72 -NamePlural = TM72s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_60 -Move = AVALANCHE -Description = The power of this attack move is doubled if the user has been hurt by the target in the same turn. -#------------------------------- -[TM73] -Name = TM73 -NamePlural = TM73s -Pocket = 4 -Price = 2000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_10 -Move = THUNDERWAVE -Description = The user launches a weak jolt of electricity that paralyzes the target. -#------------------------------- -[TM74] -Name = TM74 -NamePlural = TM74s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_10 -Move = GYROBALL -Description = The user tackles with a high-speed spin. This move is stronger the slower the user is than the target. -#------------------------------- -[TM75] -Name = TM75 -NamePlural = TM75s -Pocket = 4 -Price = 1500 -BPPrice = 32 -FieldUse = TR -Flags = Fling_10 -Move = SWORDSDANCE -Description = A frenetic dance to uplift the fighting spirit. This sharply raises the user's Attack stat. -#------------------------------- -[TM76] -Name = TM76 -NamePlural = TM76s -Pocket = 4 -Price = 2000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_10 -Move = STEALTHROCK -Description = The user lays a trap of levitating stones around the opposing team that hurt Pokémon that switch in. -#------------------------------- -[TM77] -Name = TM77 -NamePlural = TM77s -Pocket = 4 -Price = 1500 -BPPrice = 32 -FieldUse = TR -Flags = Fling_10 -Move = PSYCHUP -Description = The user hypnotizes itself into copying any stat change made by the target. -#------------------------------- -[TM78] -Name = TM78 -NamePlural = TM78s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_55 -Move = SNARL -Description = The user yells as if it's ranting about something, which lowers the Sp. Atk stats of opposing Pokémon. -#------------------------------- -[TM79] -Name = TM79 -NamePlural = TM79s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_80 -Move = DARKPULSE -Description = The user releases a horrible aura imbued with dark thoughts. This may also make the target flinch. -#------------------------------- -[TM80] -Name = TM80 -NamePlural = TM80s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_75 -Move = ROCKSLIDE -Description = Large boulders are hurled at opposing Pokémon to inflict damage. This may also make them flinch. -#------------------------------- -[TM81] -Name = TM81 -NamePlural = TM81s -Pocket = 4 -Price = 3000 -BPPrice = 64 -FieldUse = TR -Flags = Fling_80 -Move = XSCISSOR -Description = The user slashes at the target by crossing its scythes or claws as if they were a pair of scissors. -#------------------------------- -[TM82] -Name = TM82 -NamePlural = TM82s -Pocket = 4 -Price = 1000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_10 -Move = SLEEPTALK -Description = While it is asleep, the user randomly uses one of the moves it knows. -#------------------------------- -[TM83] -Name = TM83 -NamePlural = TM83s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_60 -Move = BULLDOZE -Description = The user strikes everything around it by stomping down on the ground. This lowers the Speed of those hit. -#------------------------------- -[TM84] -Name = TM84 -NamePlural = TM84s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_80 -Move = POISONJAB -Description = The target is stabbed with a tentacle, arm, or the like steeped in poison. This may also poison them. -#------------------------------- -[TM85] -Name = TM85 -NamePlural = TM85s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_100 -Move = DREAMEATER -Description = The user eats the dreams of a sleeping target. The user's HP is restored by half the damage dealt. -#------------------------------- -[TM86] -Name = TM86 -NamePlural = TM86s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_10 -Move = GRASSKNOT -Description = The user snares the target with grass and trips it. The heavier the target, the strong the move is. -#------------------------------- -[TM87] -Name = TM87 -NamePlural = TM87s -Pocket = 4 -Price = 1500 -BPPrice = 32 -FieldUse = TR -Flags = Fling_10 -Move = SWAGGER -Description = The user enrages and confuses the target. However, this also sharply raises the target's Attack stat. -#------------------------------- -[TM88] -Name = TM88 -NamePlural = TM88s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_60 -Move = PLUCK -Description = The user pecks the target. If the target is holding a Berry, the user eats it and gains its effect. -#------------------------------- -[TM89] -Name = TM89 -NamePlural = TM89s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_70 -Move = UTURN -Description = After making its attack, the user rushes back to switch places with a party Pokémon in waiting. -#------------------------------- -[TM90] -Name = TM90 -NamePlural = TM90s -Pocket = 4 -Price = 2000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_10 -Move = SUBSTITUTE -Description = The user creates a substitute for itself using some of its HP. The substitute serves as a decoy. -#------------------------------- -[TM91] -Name = TM91 -NamePlural = TM91s -Pocket = 4 -Price = 3000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_80 -Move = FLASHCANNON -Description = The user gathers all its light energy and releases it all at once. This may also lower the target's Sp. Def stat. -#------------------------------- -[TM92] -Name = TM92 -NamePlural = TM92s -Pocket = 4 -Price = 5500 -BPPrice = 32 -FieldUse = TR -Flags = Fling_10 -Move = TRICKROOM -Description = The user creates a bizarre area in which slower Pokémon get to move first for five turns. -#------------------------------- -[TM93] -Name = TM93 -NamePlural = TM93s -Pocket = 4 -Price = 2000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_50 -Move = CUT -Description = The target is cut with a scythe or claw. -#------------------------------- -[TM94] -Name = TM94 -NamePlural = TM94s -Pocket = 4 -Price = 2000 -BPPrice = 40 -FieldUse = TR -Flags = Fling_90 -Move = FLY -Description = The user flies up into the sky and then strikes its target on the next turn. -#------------------------------- -[TM95] -Name = TM95 -NamePlural = TM95s -Pocket = 4 -Price = 2500 -BPPrice = 64 -FieldUse = TR -Flags = Fling_90 -Move = SURF -Description = The user attacks everything around it by swamping its surroundings with a giant wave. -#------------------------------- -[TM96] -Name = TM96 -NamePlural = TM96s -Pocket = 4 -Price = 2000 -BPPrice = 40 -FieldUse = TR -Flags = Fling_80 -Move = STRENGTH -Description = The target is slugged with a punch thrown at maximum power. -#------------------------------- -[TM97] -Name = TM97 -NamePlural = TM97s -Pocket = 4 -Price = 2000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_10 -Move = DEFOG -Description = A strong wind blows away the target's barriers, such as Reflect, and lowers their evasiveness. -#------------------------------- -[TM98] -Name = TM98 -NamePlural = TM98s -Pocket = 4 -Price = 2000 -BPPrice = 40 -FieldUse = TR -Flags = Fling_40 -Move = ROCKSMASH -Description = The user attacks with a punch that may lower the target's Defense stat. -#------------------------------- -[TM99] -Name = TM99 -NamePlural = TM99s -Pocket = 4 -Price = 2500 -BPPrice = 64 -FieldUse = TR -Flags = Fling_80 -Move = WATERFALL -Description = The user charges at the target and may make it flinch. -#------------------------------- -[TM100] -Name = TM100 -NamePlural = TM100s -Pocket = 4 -Price = 2000 -BPPrice = 32 -FieldUse = TR -Flags = Fling_90 -Move = ROCKCLIMB -Description = A charging attack that may also leave the foe confused. -#------------------------------- -[HM01] -Name = HM01 -NamePlural = HM01s -Pocket = 4 -Price = 0 -FieldUse = HM -Move = CUT -Description = The target is cut with a scythe or claw. This can also be used to cut down thin trees. -#------------------------------- -[HM02] -Name = HM02 -NamePlural = HM02s -Pocket = 4 -Price = 0 -FieldUse = HM -Move = FLY -Description = The user soars and then strikes on the next turn. This can also be used to fly to any familiar town. -#------------------------------- -[HM03] -Name = HM03 -NamePlural = HM03s -Pocket = 4 -Price = 0 -FieldUse = HM -Move = SURF -Description = Attacks everything by swamping the surroundings with a giant wave. This can also be used to cross water. -#------------------------------- -[HM04] -Name = HM04 -NamePlural = HM04s -Pocket = 4 -Price = 0 -FieldUse = HM -Move = STRENGTH -Description = The target is slugged with a punch thrown at maximum power. This can also be used to move heavy boulders. -#------------------------------- -[HM05] -Name = HM05 -NamePlural = HM05s -Pocket = 4 -Price = 0 -FieldUse = HM -Move = WATERFALL -Description = The user charges at the target and may make it flinch. It can also be used to climb a waterfall. -#------------------------------- -[HM06] -Name = HM06 -NamePlural = HM06s -Pocket = 4 -Price = 0 -FieldUse = HM -Move = DIVE -Description = Diving on the first turn, the user floats up and attacks on the second. It can be used to dive underwater. -#------------------------------- [CHERIBERRY] Name = Cheri Berry NamePlural = Cheri Berries -Pocket = 5 +Pocket = Berries Price = 20 FieldUse = OnPokemon BattleUse = OnPokemon @@ -5492,7 +2118,7 @@ Description = It may be used or held by a Pokémon to recover from paralysis. [CHESTOBERRY] Name = Chesto Berry NamePlural = Chesto Berries -Pocket = 5 +Pocket = Berries Price = 20 FieldUse = OnPokemon BattleUse = OnPokemon @@ -5502,7 +2128,7 @@ Description = It may be used or held by a Pokémon to recover from sleep. [PECHABERRY] Name = Pecha Berry NamePlural = Pecha Berries -Pocket = 5 +Pocket = Berries Price = 20 FieldUse = OnPokemon BattleUse = OnPokemon @@ -5512,7 +2138,7 @@ Description = It may be used or held by a Pokémon to recover from poison. [RAWSTBERRY] Name = Rawst Berry NamePlural = Rawst Berries -Pocket = 5 +Pocket = Berries Price = 20 FieldUse = OnPokemon BattleUse = OnPokemon @@ -5522,7 +2148,7 @@ Description = It may be used or held by a Pokémon to recover from a burn. [ASPEARBERRY] Name = Aspear Berry NamePlural = Aspear Berries -Pocket = 5 +Pocket = Berries Price = 20 FieldUse = OnPokemon BattleUse = OnPokemon @@ -5532,7 +2158,7 @@ Description = It may be used or held by a Pokémon to defrost it. [LEPPABERRY] Name = Leppa Berry NamePlural = Leppa Berries -Pocket = 5 +Pocket = Berries Price = 20 FieldUse = OnPokemon BattleUse = OnMove @@ -5542,7 +2168,7 @@ Description = It may be used or held by a Pokémon to restore a move's PP by 10. [ORANBERRY] Name = Oran Berry NamePlural = Oran Berries -Pocket = 5 +Pocket = Berries Price = 20 FieldUse = OnPokemon BattleUse = OnPokemon @@ -5552,7 +2178,7 @@ Description = It may be used or held by a Pokémon to heal the user by just 10 H [PERSIMBERRY] Name = Persim Berry NamePlural = Persim Berries -Pocket = 5 +Pocket = Berries Price = 20 BattleUse = OnBattler Flags = Berry,Fling_10,NaturalGift_GROUND_80 @@ -5561,7 +2187,7 @@ Description = It may be used or held by a Pokémon to recover from confusion. [LUMBERRY] Name = Lum Berry NamePlural = Lum Berries -Pocket = 5 +Pocket = Berries Price = 20 FieldUse = OnPokemon BattleUse = OnPokemon @@ -5571,7 +2197,7 @@ Description = It may be used or held by a Pokémon to recover from any status pr [SITRUSBERRY] Name = Sitrus Berry NamePlural = Sitrus Berries -Pocket = 5 +Pocket = Berries Price = 20 FieldUse = OnPokemon BattleUse = OnPokemon @@ -5581,7 +2207,7 @@ Description = It may be used or held by a Pokémon to heal the user's HP a littl [FIGYBERRY] Name = Figy Berry NamePlural = Figy Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_BUG_80 Description = If held by a Pokémon, it restores the user's HP in a pinch, but will cause confusion if it hates the taste. @@ -5589,7 +2215,7 @@ Description = If held by a Pokémon, it restores the user's HP in a pinch, but w [WIKIBERRY] Name = Wiki Berry NamePlural = Wiki Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_ROCK_80 Description = If held by a Pokémon, it restores the user's HP in a pinch, but will cause confusion if it hates the taste. @@ -5597,7 +2223,7 @@ Description = If held by a Pokémon, it restores the user's HP in a pinch, but w [MAGOBERRY] Name = Mago Berry NamePlural = Mago Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_GHOST_80 Description = If held by a Pokémon, it restores the user's HP in a pinch, but will cause confusion if it hates the taste. @@ -5605,7 +2231,7 @@ Description = If held by a Pokémon, it restores the user's HP in a pinch, but w [AGUAVBERRY] Name = Aguav Berry NamePlural = Aguav Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_DRAGON_80 Description = If held by a Pokémon, it restores the user's HP in a pinch, but will cause confusion if it hates the taste. @@ -5613,7 +2239,7 @@ Description = If held by a Pokémon, it restores the user's HP in a pinch, but w [IAPAPABERRY] Name = Iapapa Berry NamePlural = Iapapa Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_DARK_80 Description = If held by a Pokémon, it restores the user's HP in a pinch, but will cause confusion if it hates the taste. @@ -5621,7 +2247,7 @@ Description = If held by a Pokémon, it restores the user's HP in a pinch, but w [RAZZBERRY] Name = Razz Berry NamePlural = Razz Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_STEEL_80 Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry. @@ -5629,7 +2255,7 @@ Description = In the Sinnoh region, they like to make sweets known as Poffins wi [BLUKBERRY] Name = Bluk Berry NamePlural = Bluk Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_FIRE_90 Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry. @@ -5637,7 +2263,7 @@ Description = In the Sinnoh region, they like to make sweets known as Poffins wi [NANABBERRY] Name = Nanab Berry NamePlural = Nanab Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_WATER_90 Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry. @@ -5645,7 +2271,7 @@ Description = In the Sinnoh region, they like to make sweets known as Poffins wi [WEPEARBERRY] Name = Wepear Berry NamePlural = Wepear Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_ELECTRIC_90 Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry. @@ -5653,7 +2279,7 @@ Description = In the Sinnoh region, they like to make sweets known as Poffins wi [PINAPBERRY] Name = Pinap Berry NamePlural = Pinap Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_GRASS_90 Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry. @@ -5661,7 +2287,7 @@ Description = In the Sinnoh region, they like to make sweets known as Poffins wi [POMEGBERRY] Name = Pomeg Berry NamePlural = Pomeg Berries -Pocket = 5 +Pocket = Berries Price = 20 FieldUse = OnPokemon Flags = Berry,Fling_10,NaturalGift_ICE_90 @@ -5670,7 +2296,7 @@ Description = Using it on a Pokémon makes it more friendly, but it also lowers [KELPSYBERRY] Name = Kelpsy Berry NamePlural = Kelpsy Berries -Pocket = 5 +Pocket = Berries Price = 20 FieldUse = OnPokemon Flags = Berry,Fling_10,NaturalGift_FIGHTING_90 @@ -5679,7 +2305,7 @@ Description = Using it on a Pokémon makes it more friendly, but it also lowers [QUALOTBERRY] Name = Qualot Berry NamePlural = Qualot Berries -Pocket = 5 +Pocket = Berries Price = 20 FieldUse = OnPokemon Flags = Berry,Fling_10,NaturalGift_POISON_90 @@ -5688,7 +2314,7 @@ Description = Using it on a Pokémon makes it more friendly, but it also lowers [HONDEWBERRY] Name = Hondew Berry NamePlural = Hondew Berries -Pocket = 5 +Pocket = Berries Price = 20 FieldUse = OnPokemon Flags = Berry,Fling_10,NaturalGift_GROUND_90 @@ -5697,7 +2323,7 @@ Description = Using it on a Pokémon makes it more friendly, but it also lowers [GREPABERRY] Name = Grepa Berry NamePlural = Grepa Berries -Pocket = 5 +Pocket = Berries Price = 20 FieldUse = OnPokemon Flags = Berry,Fling_10,NaturalGift_FLYING_90 @@ -5706,7 +2332,7 @@ Description = Using it on a Pokémon makes it more friendly, but it also lowers [TAMATOBERRY] Name = Tamato Berry NamePlural = Tamato Berries -Pocket = 5 +Pocket = Berries Price = 20 FieldUse = OnPokemon Flags = Berry,Fling_10,NaturalGift_PSYCHIC_90 @@ -5715,7 +2341,7 @@ Description = Using it on a Pokémon makes it more friendly, but it also lowers [CORNNBERRY] Name = Cornn Berry NamePlural = Cornn Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_BUG_90 Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry. @@ -5723,7 +2349,7 @@ Description = In the Sinnoh region, they like to make sweets known as Poffins wi [MAGOSTBERRY] Name = Magost Berry NamePlural = Magost Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_ROCK_90 Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry. @@ -5731,7 +2357,7 @@ Description = In the Sinnoh region, they like to make sweets known as Poffins wi [RABUTABERRY] Name = Rabuta Berry NamePlural = Rabuta Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_GHOST_90 Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry. @@ -5739,7 +2365,7 @@ Description = In the Sinnoh region, they like to make sweets known as Poffins wi [NOMELBERRY] Name = Nomel Berry NamePlural = Nomel Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_DRAGON_90 Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry. @@ -5747,7 +2373,7 @@ Description = In the Sinnoh region, they like to make sweets known as Poffins wi [SPELONBERRY] Name = Spelon Berry NamePlural = Spelon Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_DARK_90 Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry. @@ -5755,7 +2381,7 @@ Description = In the Sinnoh region, they like to make sweets known as Poffins wi [PAMTREBERRY] Name = Pamtre Berry NamePlural = Pamtre Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_STEEL_90 Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry. @@ -5763,7 +2389,7 @@ Description = In the Sinnoh region, they like to make sweets known as Poffins wi [WATMELBERRY] Name = Watmel Berry NamePlural = Watmel Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_FIRE_100 Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry. @@ -5771,7 +2397,7 @@ Description = In the Sinnoh region, they like to make sweets known as Poffins wi [DURINBERRY] Name = Durin Berry NamePlural = Durin Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_WATER_100 Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry. @@ -5779,7 +2405,7 @@ Description = In the Sinnoh region, they like to make sweets known as Poffins wi [BELUEBERRY] Name = Belue Berry NamePlural = Belue Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_ELECTRIC_100 Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry. @@ -5787,7 +2413,7 @@ Description = In the Sinnoh region, they like to make sweets known as Poffins wi [OCCABERRY] Name = Occa Berry NamePlural = Occa Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_FIRE_80 Description = Weakens a supereffective Fire-type attack against the holding Pokémon. @@ -5795,7 +2421,7 @@ Description = Weakens a supereffective Fire-type attack against the holding Pok [PASSHOBERRY] Name = Passho Berry NamePlural = Passho Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_WATER_80 Description = Weakens a supereffective Water-type attack against the holding Pokémon. @@ -5803,7 +2429,7 @@ Description = Weakens a supereffective Water-type attack against the holding Pok [WACANBERRY] Name = Wacan Berry NamePlural = Wacan Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_ELECTRIC_80 Description = Weakens a supereffective Electric-type attack against the holding Pokémon. @@ -5811,7 +2437,7 @@ Description = Weakens a supereffective Electric-type attack against the holding [RINDOBERRY] Name = Rindo Berry NamePlural = Rindo Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_GRASS_80 Description = Weakens a supereffective Grass-type attack against the holding Pokémon. @@ -5819,7 +2445,7 @@ Description = Weakens a supereffective Grass-type attack against the holding Pok [YACHEBERRY] Name = Yache Berry NamePlural = Yache Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_ICE_80 Description = Weakens a supereffective Ice-type attack against the holding Pokémon. @@ -5827,7 +2453,7 @@ Description = Weakens a supereffective Ice-type attack against the holding Poké [CHOPLEBERRY] Name = Chople Berry NamePlural = Chople Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_FIGHTING_80 Description = Weakens a supereffective Fighting-type attack against the holding Pokémon. @@ -5835,7 +2461,7 @@ Description = Weakens a supereffective Fighting-type attack against the holding [KEBIABERRY] Name = Kebia Berry NamePlural = Kebia Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_POISON_80 Description = Weakens a supereffective Poison-type attack against the holding Pokémon. @@ -5843,7 +2469,7 @@ Description = Weakens a supereffective Poison-type attack against the holding Po [SHUCABERRY] Name = Shuca Berry NamePlural = Shuca Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_GROUND_80 Description = Weakens a supereffective Ground-type attack against the holding Pokémon. @@ -5851,7 +2477,7 @@ Description = Weakens a supereffective Ground-type attack against the holding Po [COBABERRY] Name = Coba Berry NamePlural = Coba Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_FLYING_80 Description = Weakens a supereffective Flying-type attack against the holding Pokémon. @@ -5859,7 +2485,7 @@ Description = Weakens a supereffective Flying-type attack against the holding Po [PAYAPABERRY] Name = Payapa Berry NamePlural = Payapa Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_PSYCHIC_80 Description = Weakens a supereffective Psychic-type attack against the holding Pokémon. @@ -5867,7 +2493,7 @@ Description = Weakens a supereffective Psychic-type attack against the holding P [TANGABERRY] Name = Tanga Berry NamePlural = Tanga Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_BUG_80 Description = Weakens a supereffective Bug-type attack against the holding Pokémon. @@ -5875,7 +2501,7 @@ Description = Weakens a supereffective Bug-type attack against the holding Poké [CHARTIBERRY] Name = Charti Berry NamePlural = Charti Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_ROCK_80 Description = Weakens a supereffective Rock-type attack against the holding Pokémon. @@ -5883,7 +2509,7 @@ Description = Weakens a supereffective Rock-type attack against the holding Pok [KASIBBERRY] Name = Kasib Berry NamePlural = Kasib Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_GHOST_80 Description = Weakens a supereffective Ghost-type attack against the holding Pokémon. @@ -5891,7 +2517,7 @@ Description = Weakens a supereffective Ghost-type attack against the holding Pok [HABANBERRY] Name = Haban Berry NamePlural = Haban Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_DRAGON_80 Description = Weakens a supereffective Dragon-type attack against the holding Pokémon. @@ -5899,7 +2525,7 @@ Description = Weakens a supereffective Dragon-type attack against the holding Po [COLBURBERRY] Name = Colbur Berry NamePlural = Colbur Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_DARK_80 Description = Weakens a supereffective Dark-type attack against the holding Pokémon. @@ -5907,7 +2533,7 @@ Description = Weakens a supereffective Dark-type attack against the holding Pok [BABIRIBERRY] Name = Babiri Berry NamePlural = Babiri Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_STEEL_80 Description = Weakens a supereffective Steel-type attack against the holding Pokémon. @@ -5915,7 +2541,7 @@ Description = Weakens a supereffective Steel-type attack against the holding Pok [ROSELIBERRY] Name = Roseli Berry NamePlural = Roseli Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_FAIRY_80 Description = If held by a Pokémon, this Berry will lessen the damage taken from one supereffective Fairy-type attack. @@ -5923,7 +2549,7 @@ Description = If held by a Pokémon, this Berry will lessen the damage taken fro [CHILANBERRY] Name = Chilan Berry NamePlural = Chilan Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_NORMAL_80 Description = Weakens a Normal-type attack against the Pokémon holding this berry. @@ -5931,7 +2557,7 @@ Description = Weakens a Normal-type attack against the Pokémon holding this ber [LIECHIBERRY] Name = Liechi Berry NamePlural = Liechi Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_GRASS_100 Description = If held by a Pokémon, it raises its Attack stat in a pinch. @@ -5939,7 +2565,7 @@ Description = If held by a Pokémon, it raises its Attack stat in a pinch. [GANLONBERRY] Name = Ganlon Berry NamePlural = Ganlon Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_ICE_100 Description = If held by a Pokémon, it raises its Defense stat in a pinch. @@ -5947,7 +2573,7 @@ Description = If held by a Pokémon, it raises its Defense stat in a pinch. [SALACBERRY] Name = Salac Berry NamePlural = Salac Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_FIGHTING_100 Description = If held by a Pokémon, it raises its Speed stat in a pinch. @@ -5955,7 +2581,7 @@ Description = If held by a Pokémon, it raises its Speed stat in a pinch. [PETAYABERRY] Name = Petaya Berry NamePlural = Petaya Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_POISON_100 Description = If held by a Pokémon, it raises its Sp. Atk stat in a pinch. @@ -5963,7 +2589,7 @@ Description = If held by a Pokémon, it raises its Sp. Atk stat in a pinch. [APICOTBERRY] Name = Apicot Berry NamePlural = Apicot Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_GROUND_100 Description = If held by a Pokémon, it raises its Sp. Def stat in a pinch. @@ -5971,7 +2597,7 @@ Description = If held by a Pokémon, it raises its Sp. Def stat in a pinch. [LANSATBERRY] Name = Lansat Berry NamePlural = Lansat Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_FLYING_100 Description = If held by a Pokémon, it raises its critical-hit ratio in a pinch. @@ -5979,7 +2605,7 @@ Description = If held by a Pokémon, it raises its critical-hit ratio in a pinch [STARFBERRY] Name = Starf Berry NamePlural = Starf Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_PSYCHIC_100 Description = If held by a Pokémon, it sharply raises one of its stats in a pinch. @@ -5987,7 +2613,7 @@ Description = If held by a Pokémon, it sharply raises one of its stats in a pin [ENIGMABERRY] Name = Enigma Berry NamePlural = Enigma Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_BUG_100 Description = If held by a Pokémon, it restores its HP if it is hit by any supereffective attack. @@ -5995,7 +2621,7 @@ Description = If held by a Pokémon, it restores its HP if it is hit by any supe [MICLEBERRY] Name = Micle Berry NamePlural = Micle Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_ROCK_100 Description = If held by a Pokémon, it raises the accuracy of a move just once in a pinch. @@ -6003,7 +2629,7 @@ Description = If held by a Pokémon, it raises the accuracy of a move just once [CUSTAPBERRY] Name = Custap Berry NamePlural = Custap Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_GHOST_100 Description = If held by a Pokémon, it gets to move first just once in a pinch. @@ -6011,7 +2637,7 @@ Description = If held by a Pokémon, it gets to move first just once in a pinch. [JABOCABERRY] Name = Jaboca Berry NamePlural = Jaboca Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_DRAGON_100 Description = If held by a Pokémon and a physical attack lands, the attacker also takes damage. @@ -6019,7 +2645,7 @@ Description = If held by a Pokémon and a physical attack lands, the attacker al [ROWAPBERRY] Name = Rowap Berry NamePlural = Rowap Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_DARK_100 Description = If held by a Pokémon and a special attack lands, the attacker also takes damage. @@ -6027,7 +2653,7 @@ Description = If held by a Pokémon and a special attack lands, the attacker als [KEEBERRY] Name = Kee Berry NamePlural = Kee Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_FAIRY_100 Description = If held by a Pokémon, this Berry will increase the holder's Defense if it's hit with a physical move. @@ -6035,135 +2661,2355 @@ Description = If held by a Pokémon, this Berry will increase the holder's Defen [MARANGABERRY] Name = Maranga Berry NamePlural = Maranga Berries -Pocket = 5 +Pocket = Berries Price = 20 Flags = Berry,Fling_10,NaturalGift_DARK_100 Description = If held by a Pokémon, this Berry will increase the holder's Sp. Def if it's hit with a special move. #------------------------------- -[GRASSMAIL] -Name = Grass Mail -NamePlural = Grass Mail -PortionName = piece of Grass Mail -PortionNamePlural = pieces of Grass Mail -Pocket = 6 -Price = 50 -Flags = IconMail -Description = Stationery featuring a print of a refreshingly green field. Let a Pokémon hold it for delivery. +[AIRBALLOON] +Name = Air Balloon +NamePlural = Air Balloons +Pocket = HeldItems +Price = 3000 +SellPrice = 2000 +BPPrice = 15 +Flags = Fling_10 +Description = An item to be held by a Pokémon. The holder will float in the air until hit. Once hit, this item will burst. #------------------------------- -[FLAMEMAIL] -Name = Flame Mail -NamePlural = Flame Mail -PortionName = piece of Flame Mail -PortionNamePlural = pieces of Flame Mail -Pocket = 6 -Price = 50 -Flags = IconMail -Description = Stationery featuring a print of flames in blazing red. Let a Pokémon hold it for delivery. +[BRIGHTPOWDER] +Name = Bright Powder +NamePlural = Bright Powders +PortionName = bag of Bright Powder +PortionNamePlural = bags of Bright Powder +Pocket = HeldItems +Price = 3000 +SellPrice = 2000 +BPPrice = 48 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It casts a tricky glare that lowers the opponent's accuracy. #------------------------------- -[BUBBLEMAIL] -Name = Bubble Mail -NamePlural = Bubble Mail -PortionName = piece of Bubble Mail -PortionNamePlural = pieces of Bubble Mail -Pocket = 6 -Price = 50 -Flags = IconMail -Description = Stationery featuring a print of a blue world underwater. Let a Pokémon hold it for delivery. +[EVIOLITE] +Name = Eviolite +NamePlural = Eviolites +Pocket = HeldItems +Price = 3000 +SellPrice = 2000 +BPPrice = 25 +Flags = Fling_40 +Description = A mysterious evolutionary lump. When held, it raises the Defense and Sp. Def if the holder can still evolve. #------------------------------- -[BLOOMMAIL] -Name = Bloom Mail -NamePlural = Bloom Mail -PortionName = piece of Bloom Mail -PortionNamePlural = pieces of Bloom Mail -Pocket = 6 -Price = 50 -Flags = IconMail -Description = Stationery featuring a print of pretty floral patterns. Let a Pokémon hold it for delivery. +[FLOATSTONE] +Name = Float Stone +NamePlural = Float Stones +Pocket = HeldItems +Price = 3000 +SellPrice = 2000 +BPPrice = 10 +Flags = Fling_30 +Description = A very light stone. It reduces the weight of a Pokémon when held. #------------------------------- -[TUNNELMAIL] -Name = Tunnel Mail -NamePlural = Tunnel Mail -PortionName = piece of Tunnel Mail -PortionNamePlural = pieces of Tunnel Mail -Pocket = 6 -Price = 50 -Flags = IconMail -Description = Stationery featuring a print of a dimly lit coal mine. Let a Pokémon hold it for delivery. +[DESTINYKNOT] +Name = Destiny Knot +NamePlural = Destiny Knots +Pocket = HeldItems +Price = 3000 +SellPrice = 2000 +BPPrice = 10 +Flags = Fling_10 +Description = A long, thin, bright-red string to be held by a Pokémon. If the holder becomes infatuated, so does the foe. #------------------------------- -[STEELMAIL] -Name = Steel Mail -NamePlural = Steel Mail -PortionName = piece of Steel Mail -PortionNamePlural = pieces of Steel Mail -Pocket = 6 -Price = 50 -Flags = IconMail -Description = Stationery featuring a print of cool mechanical designs. Let a Pokémon hold it for delivery. +[ROCKYHELMET] +Name = Rocky Helmet +NamePlural = Rocky Helmets +Pocket = HeldItems +Price = 3000 +SellPrice = 2000 +BPPrice = 25 +Flags = Fling_60 +Description = If the holder of this item takes damage, the attacker will also be damaged upon contact. #------------------------------- -[HEARTMAIL] -Name = Heart Mail -NamePlural = Heart Mail -PortionName = piece of Heart Mail -PortionNamePlural = pieces of Heart Mail -Pocket = 6 -Price = 50 -Flags = IconMail -Description = Stationery featuring a print of giant heart patterns. Let a Pokémon hold it for delivery. +[ASSAULTVEST] +Name = Assault Vest +NamePlural = Assault Vests +Pocket = HeldItems +Price = 1000 +BPPrice = 25 +Flags = Fling_80 +Description = An item to be held by a Pokémon. This offensive vest raises Sp. Def but prevents the use of status moves. #------------------------------- -[SNOWMAIL] -Name = Snow Mail -NamePlural = Snow Mail -PortionName = piece of Snow Mail -PortionNamePlural = pieces of Snow Mail -Pocket = 6 -Price = 50 -Flags = IconMail -Description = Stationery featuring a print of a chilly, snow-covered world. Let a Pokémon hold it for delivery. +[SAFETYGOGGLES] +Name = Safety Goggles +NamePlural = Safety Goggles +PortionName = pair of Safety Goggles +PortionNamePlural = pairs of Safety Goggles +Pocket = HeldItems +Price = 3000 +SellPrice = 2000 +BPPrice = 25 +Flags = Fling_80 +Description = An item to be held by a Pokémon. They protect the holder from weather-related damage and powder. #------------------------------- -[SPACEMAIL] -Name = Space Mail -NamePlural = Space Mail -PortionName = piece of Space Mail -PortionNamePlural = pieces of Space Mail -Pocket = 6 -Price = 50 -Flags = IconMail -Description = Stationery featuring a print depicting the huge expanse of space. Let a Pokémon hold it for delivery. +[PROTECTIVEPADS] +Name = Protective Pads +NamePlural = Protective Pads +PortionName = set of Protective Pads +PortionNamePlural = sets of Protective Pads +Pocket = HeldItems +Price = 3000 +SellPrice = 2000 +BPPrice = 25 +Flags = Fling_30 +Description = An item to be held by a Pokémon. They protect the holder from effects caused by making contact. #------------------------------- -[AIRMAIL] -Name = Air Mail -NamePlural = Air Mail -PortionName = piece of Air Mail -PortionNamePlural = pieces of Air Mail -Pocket = 6 -Price = 50 -Flags = IconMail -Description = Stationery featuring a print of colorful letter sets. Let a Pokémon hold it for delivery. +[HEAVYDUTYBOOTS] +Name = Heavy-Duty Boots +NamePlural = Heavy-Duty Boots +PortionName = pair of Heavy-Duty Boots +PortionNamePlural = pairs of Heavy-Duty Boots +Pocket = HeldItems +Price = 3000 +SellPrice = 2000 +BPPrice = 25 +Flags = Fling_80 +Description = These boots prevent the effects of traps set on the battlefield. #------------------------------- -[MOSAICMAIL] -Name = Mosaic Mail -NamePlural = Mosaic Mail -PortionName = piece of Mosaic Mail -PortionNamePlural = pieces of Mosaic Mail -Pocket = 6 -Price = 50 -Flags = IconMail -Description = Stationery featuring a print of a vivid rainbow pattern. Let a Pokémon hold it for delivery. +[UTILITYUMBRELLA] +Name = Utility Umbrella +NamePlural = Utility Umbrellas +Pocket = HeldItems +Price = 3000 +SellPrice = 2000 +BPPrice = 25 +Flags = Fling_60 +Description = An item to be held by a Pokémon. This sturdy umbrella protects the holder from the effects of rain and sun. #------------------------------- -[BRICKMAIL] -Name = Brick Mail -NamePlural = Brick Mail -PortionName = piece of Brick Mail -PortionNamePlural = pieces of Brick Mail -Pocket = 6 -Price = 50 -Flags = IconMail -Description = Stationery featuring a print of a tough-looking brick pattern. Let a Pokémon hold it for delivery. +[ABILITYSHIELD] +Name = Ability Shield +NamePlural = Ability Shields +Pocket = HeldItems +Price = 20000 +Flags = Fling_30 +Description = An item to be held by a Pokémon. This cute shield protects the holder from having its Ability changed by others. +#------------------------------- +[CLEARAMULET] +Name = Clear Amulet +NamePlural = Clear Amulets +Pocket = HeldItems +Price = 30000 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It protects the holder from having its stats lowered by other Pokémon. +#------------------------------- +[COVERTCLOAK] +Name = Covert Cloak +NamePlural = Covert Cloaks +Pocket = HeldItems +Price = 20000 +SellPrice = 5000 +Flags = Fling_30 +Description = An item to be held by a Pokémon. This hooded cloak protects the holder from moves' additional effects. +#------------------------------- +[EJECTBUTTON] +Name = Eject Button +NamePlural = Eject Buttons +Pocket = HeldItems +Price = 3000 +SellPrice = 2000 +BPPrice = 20 +Flags = Fling_30 +Description = If the holder is hit by an attack, it will switch with another Pokémon in your party. +#------------------------------- +[EJECTPACK] +Name = Eject Pack +NamePlural = Eject Packs +Pocket = HeldItems +Price = 3000 +SellPrice = 2000 +BPPrice = 20 +Flags = Fling_50 +Description = An item to be held by a Pokémon. When the holder's stats are lowered, it will be switched out of battle. +#------------------------------- +[REDCARD] +Name = Red Card +NamePlural = Red Cards +Pocket = HeldItems +Price = 3000 +SellPrice = 2000 +BPPrice = 20 +Flags = Fling_10 +Description = A card with a mysterious power. When the holder is struck by a foe, the attacker is removed from battle. +#------------------------------- +[SHEDSHELL] +Name = Shed Shell +NamePlural = Shed Shells +Pocket = HeldItems +Price = 3000 +SellPrice = 2000 +Flags = Fling_10 +Description = An item to be held by a Pokémon. This discarded carapace lets the holder switch out of battle without fail. +#------------------------------- +[SMOKEBALL] +Name = Smoke Ball +NamePlural = Smoke Balls +Pocket = HeldItems +Price = 3000 +SellPrice = 2000 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It enables the holder to flee from any wild Pokémon without fail. +#------------------------------- +[LUCKYEGG] +Name = Lucky Egg +NamePlural = Lucky Eggs +Pocket = HeldItems +Price = 10000 +BPPrice = 77 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It is an egg filled with happiness that earns extra Exp. Points in battle. +#------------------------------- +[EXPSHARE] +Name = Exp. Share +NamePlural = Exp. Shares +Pocket = HeldItems +Price = 3000 +Flags = Fling_30 +Description = An item to be held by a Pokémon. The holder gets a share of a battle's Exp. Points without battling. +#------------------------------- +[AMULETCOIN] +Name = Amulet Coin +NamePlural = Amulet Coins +Pocket = HeldItems +Price = 10000 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It doubles a battle's prize money if the holding Pokémon joins in. +#------------------------------- +[SOOTHEBELL] +Name = Soothe Bell +NamePlural = Soothe Bells +Pocket = HeldItems +Price = 4000 +BPPrice = 15 +Flags = Fling_10 +Description = An item to be held by a Pokémon. The comforting chime of this bell calms the holder, making it friendly. +#------------------------------- +[CLEANSETAG] +Name = Cleanse Tag +NamePlural = Cleanse Tags +Pocket = HeldItems +Price = 5000 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It helps keep wild Pokémon away if the holder is the first one in the party. +#------------------------------- +[CHOICEBAND] +Name = Choice Band +NamePlural = Choice Bands +Pocket = HeldItems +Price = 4000 +BPPrice = 25 +Flags = Fling_10 +Description = An item to be held by a Pokémon. This headband ups Attack, but allows the use of only one move. +#------------------------------- +[CHOICESPECS] +Name = Choice Specs +NamePlural = Choice Specs +PortionName = pair of Choice Specs +PortionNamePlural = pairs of Choice Specs +Pocket = HeldItems +Price = 4000 +BPPrice = 25 +Flags = Fling_10 +Description = An item to be held by a Pokémon. These curious glasses boost Sp. Atk but allows the use of only one move. +#------------------------------- +[CHOICESCARF] +Name = Choice Scarf +NamePlural = Choice Scarves +Pocket = HeldItems +Price = 4000 +BPPrice = 25 +Flags = Fling_10 +Description = An item to be held by a Pokémon. This scarf boosts Speed but allows the use of only one move. +#------------------------------- +[HEATROCK] +Name = Heat Rock +NamePlural = Heat Rocks +Pocket = HeldItems +Price = 4000 +BPPrice = 15 +Flags = Fling_60 +Description = A Pokémon held item that extends the duration of the move Sunny Day used by the holder. +#------------------------------- +[DAMPROCK] +Name = Damp Rock +NamePlural = Damp Rocks +Pocket = HeldItems +Price = 4000 +BPPrice = 15 +Flags = Fling_60 +Description = A Pokémon held item that extends the duration of the move Rain Dance used by the holder. +#------------------------------- +[SMOOTHROCK] +Name = Smooth Rock +NamePlural = Smooth Rocks +Pocket = HeldItems +Price = 4000 +BPPrice = 15 +Flags = Fling_10 +Description = A Pokémon held item that extends the duration of the move Sandstorm used by the holder. +#------------------------------- +[ICYROCK] +Name = Icy Rock +NamePlural = Icy Rocks +Pocket = HeldItems +Price = 4000 +BPPrice = 15 +Flags = Fling_40 +Description = A Pokémon held item that extends the duration of the move Hail used by the holder. +#------------------------------- +[TERRAINEXTENDER] +Name = Terrain Extender +NamePlural = Terrain Extenders +Pocket = HeldItems +Price = 4000 +BPPrice = 15 +Flags = Fling_60 +Description = An item to be held by a Pokémon. It extends the duration of the terrain caused by the holder. +#------------------------------- +[LIGHTCLAY] +Name = Light Clay +NamePlural = Light Clays +PortionName = lump of Light Clay +PortionNamePlural = lumps of Light Clay +Pocket = HeldItems +Price = 4000 +BPPrice = 15 +Flags = Fling_30 +Description = An item to be held by a Pokémon. Protective moves like Light Screen and Reflect will be effective longer. +#------------------------------- +[GRIPCLAW] +Name = Grip Claw +NamePlural = Grip Claws +Pocket = HeldItems +Price = 4000 +BPPrice = 15 +Flags = Fling_90 +Description = A Pokémon held item that extends the duration of multiturn attacks like Bind and Wrap. +#------------------------------- +[LOADEDDICE] +Name = Loaded Dice +NamePlural = Loaded Dice +PortionName = set of Loaded Dice +PortionNamePlural = sets of Loaded Dice +Pocket = HeldItems +Price = 20000 +SellPrice = 5000 +Flags = Fling_30 +Description = An item to be held by a Pokémon. This dice ensures that the holder's multistrike moves hit more times. +#------------------------------- +[BINDINGBAND] +Name = Binding Band +NamePlural = Binding Bands +Pocket = HeldItems +Price = 3000 +SellPrice = 2000 +BPPrice = 15 +Flags = Fling_30 +Description = A band that increases the power of binding moves when held. +#------------------------------- +[BIGROOT] +Name = Big Root +NamePlural = Big Roots +Pocket = HeldItems +Price = 4000 +BPPrice = 15 +Flags = Fling_10 +Description = A Pokémon held item that boosts the power of HP-stealing moves to let the holder recover more HP. +#------------------------------- +[BLACKSLUDGE] +Name = Black Sludge +NamePlural = Black Sludges +PortionName = blob of Black Sludge +PortionNamePlural = blobs of Black Sludge +Pocket = HeldItems +Price = 3000 +SellPrice = 2000 +BPPrice = 25 +Flags = Fling_30 +Description = A held item that gradually restores the HP of Poison-type Pokémon. It inflicts damage on all other types. +#------------------------------- +[LEFTOVERS] +Name = Leftovers +NamePlural = Leftovers +PortionName = serving of Leftovers +PortionNamePlural = servings of Leftovers +Pocket = HeldItems +Price = 4000 +BPPrice = 25 +Flags = Fling_10 +Description = An item to be held by a Pokémon. The holder's HP is gradually restored during battle. +#------------------------------- +[SHELLBELL] +Name = Shell Bell +NamePlural = Shell Bells +Pocket = HeldItems +Price = 4000 +BPPrice = 25 +Flags = Fling_30 +Description = An item to be held by a Pokémon. The holder's HP is restored a little every time it inflicts damage. +#------------------------------- +[MENTALHERB] +Name = Mental Herb +NamePlural = Mental Herbs +Pocket = HeldItems +Price = 4000 +BPPrice = 15 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It snaps the holder out of infatuation. It can be used only once. +#------------------------------- +[WHITEHERB] +Name = White Herb +NamePlural = White Herbs +Pocket = HeldItems +Price = 4000 +BPPrice = 15 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It restores any lowered stat in battle. It can be used only once. +#------------------------------- +[POWERHERB] +Name = Power Herb +NamePlural = Power Herbs +Pocket = HeldItems +Price = 4000 +BPPrice = 15 +Flags = Fling_10 +Description = A single-use item to be held by a Pokémon. It allows the immediate use of a move that charges up first. +#------------------------------- +[MIRRORHERB] +Name = Mirror Herb +NamePlural = Mirror Herbs +Pocket = HeldItems +Price = 30000 +SellPrice = 7500 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It allows the holder to copy an opponent's stat increases once. +#------------------------------- +[ABSORBBULB] +Name = Absorb Bulb +NamePlural = Absorb Bulbs +Pocket = HeldItems +Price = 4000 +BPPrice = 10 +Flags = Fling_30 +Description = A consumable bulb. If the holder is hit by a Water-type move, its Sp. Atk will rise. +#------------------------------- +[CELLBATTERY] +Name = Cell Battery +NamePlural = Cell Batteries +Pocket = HeldItems +Price = 4000 +BPPrice = 10 +Flags = Fling_30 +Description = A consumable battery. If the holder is hit by an Electric-type move, its Attack will rise. +#------------------------------- +[LUMINOUSMOSS] +Name = Luminous Moss +NamePlural = Luminous Moss +PortionName = clump of Luminous Moss +PortionNamePlural = clumps of Luminous Moss +Pocket = HeldItems +Price = 4000 +BPPrice = 10 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It boosts Sp. Def if hit by a Water-type attack. It can only be used once. +#------------------------------- +[SNOWBALL] +Name = Snowball +NamePlural = Snowballs +Pocket = HeldItems +Price = 4000 +BPPrice = 10 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It boosts Attack if hit by an Ice-type attack. It can only be used once. +#------------------------------- +[WEAKNESSPOLICY] +Name = Weakness Policy +NamePlural = Weakness Policies +Pocket = HeldItems +Price = 1000 +BPPrice = 20 +Flags = Fling_80 +Description = An item to be held by a Pokémon. The holder's Attack and Sp. Atk sharply increase if hit by a move it's weak to. +#------------------------------- +[BLUNDERPOLICY] +Name = Blunder Policy +NamePlural = Blunder Policies +Pocket = HeldItems +Price = 4000 +BPPrice = 20 +Flags = Fling_80 +Description = Raises Speed sharply when a Pokémon misses with a move because of accuracy. +#------------------------------- +[THROATSPRAY] +Name = Throat Spray +NamePlural = Throat Sprays +PortionName = bottle of Throat Spray +PortionNamePlural = bottles of Throat Spray +Pocket = HeldItems +Price = 4000 +BPPrice = 10 +Flags = Fling_30 +Description = Raises Sp. Atk when a Pokémon uses a sound-based move. +#------------------------------- +[ADRENALINEORB] +Name = Adrenaline Orb +NamePlural = Adrenaline Orbs +Pocket = HeldItems +Price = 300 +BPPrice = 10 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It boosts Speed when intimidated. It can be used only once. +#------------------------------- +[BOOSTERENERGY] +Name = Booster Energy +NamePlural = Booster Energies +PortionName = capsule of Booster Energy +PortionNamePlural = capsules of Booster Energy +Pocket = HeldItems +Price = 0 +Flags = Fling_30 +Description = An item to be held by Pokémon with certain Abilities. Its energy boosts the strength of the Pokémon. +#------------------------------- +[ROOMSERVICE] +Name = Room Service +NamePlural = Room Services +PortionName = voucher for Room Service +PortionNamePlural = vouchers for Room Service +Pocket = HeldItems +Price = 4000 +BPPrice = 15 +Flags = Fling_100 +Description = An item to be held by a Pokémon. Lowers Speed when Trick Room takes effect. +#------------------------------- +[ELECTRICSEED] +Name = Electric Seed +NamePlural = Electric Seeds +Pocket = HeldItems +Price = 3000 +SellPrice = 2000 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It boosts Defense on Electric Terrain. It can only be used once. +#------------------------------- +[GRASSYSEED] +Name = Grassy Seed +NamePlural = Grassy Seeds +Pocket = HeldItems +Price = 3000 +SellPrice = 2000 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It boosts Defense on Grassy Terrain. It can only be used once. +#------------------------------- +[MISTYSEED] +Name = Misty Seed +NamePlural = Misty Seeds +Pocket = HeldItems +Price = 3000 +SellPrice = 2000 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It boosts Sp. Def on Misty Terrain. It can only be used once. +#------------------------------- +[PSYCHICSEED] +Name = Psychic Seed +NamePlural = Psychic Seeds +Pocket = HeldItems +Price = 3000 +SellPrice = 2000 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It boosts Sp. Def on Psychic Terrain. It can only be used once. +#------------------------------- +[LIFEORB] +Name = Life Orb +NamePlural = Life Orbs +Pocket = HeldItems +Price = 4000 +BPPrice = 25 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It boosts the power of moves, but at the cost of some HP on each hit. +#------------------------------- +[EXPERTBELT] +Name = Expert Belt +NamePlural = Expert Belts +Pocket = HeldItems +Price = 4000 +BPPrice = 25 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It is a well-worn belt that slightly boosts the power of supereffective moves. +#------------------------------- +[METRONOME] +Name = Metronome +NamePlural = Metronomes +Pocket = HeldItems +Price = 3000 +SellPrice = 2000 +BPPrice = 25 +Flags = Fling_30 +Description = A Pokémon held item that boosts a move used consecutively. Its effect is reset if another move is used. +#------------------------------- +[PUNCHINGGLOVE] +Name = Punching Glove +NamePlural = Punching Gloves +Pocket = HeldItems +Price = 15000 +SellPrice = 3750 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It powers up the holder's punching moves and prevents direct contact. +#------------------------------- +[MUSCLEBAND] +Name = Muscle Band +NamePlural = Muscle Bands +Pocket = HeldItems +Price = 4000 +BPPrice = 48 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It is a headband that slightly boosts the power of physical moves. +#------------------------------- +[WISEGLASSES] +Name = Wise Glasses +NamePlural = Wise Glasses +PortionName = pair of Wise Glasses +PortionNamePlural = pairs of Wise Glasses +Pocket = HeldItems +Price = 4000 +BPPrice = 48 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It is a thick pair of glasses that slightly boosts the power of special moves. +#------------------------------- +[RAZORCLAW] +Name = Razor Claw +NamePlural = Razor Claws +Pocket = HeldItems +Price = 3000 +SellPrice = 2500 +BPPrice = 5 +Flags = Fling_80 +Description = An item to be held by a Pokémon. It is a sharply hooked claw that ups the holder's critical-hit ratio. +#------------------------------- +[SCOPELENS] +Name = Scope Lens +NamePlural = Scope Lenses +Pocket = HeldItems +Price = 4000 +BPPrice = 48 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It is a lens that boosts the holder's critical-hit ratio. +#------------------------------- +[WIDELENS] +Name = Wide Lens +NamePlural = Wide Lenses +Pocket = HeldItems +Price = 4000 +BPPrice = 48 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It is a magnifying lens that slightly boosts the accuracy of moves. +#------------------------------- +[ZOOMLENS] +Name = Zoom Lens +NamePlural = Zoom Lenses +Pocket = HeldItems +Price = 4000 +BPPrice = 48 +Flags = Fling_10 +Description = An item to be held by a Pokémon. If the holder moves after its target, its accuracy will be boosted. +#------------------------------- +[KINGSROCK] +Name = King's Rock +NamePlural = King's Rocks +Pocket = HeldItems +Price = 5000 +BPPrice = 5 +Flags = Fling_30 +Description = An item to be held by a Pokémon. When the holder inflicts damage, the target may flinch. +#------------------------------- +[RAZORFANG] +Name = Razor Fang +NamePlural = Razor Fangs +Pocket = HeldItems +Price = 5000 +BPPrice = 5 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It may make foes and allies flinch when the holder inflicts damage. +#------------------------------- +[LAGGINGTAIL] +Name = Lagging Tail +NamePlural = Lagging Tails +Pocket = HeldItems +Price = 4000 +BPPrice = 25 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It is tremendously heavy and makes the holder move slower than usual. +#------------------------------- +[QUICKCLAW] +Name = Quick Claw +NamePlural = Quick Claws +Pocket = HeldItems +Price = 3000 +SellPrice = 2000 +BPPrice = 25 +Flags = Fling_80 +Description = An item to be held by a Pokémon. A light, sharp claw that lets the bearer move first occasionally. +#------------------------------- +[FOCUSBAND] +Name = Focus Band +NamePlural = Focus Bands +Pocket = HeldItems +Price = 3000 +SellPrice = 2000 +BPPrice = 48 +Flags = Fling_10 +Description = An item to be held by a Pokémon. The holder may endure a potential KO attack, leaving it with just 1 HP. +#------------------------------- +[FOCUSSASH] +Name = Focus Sash +NamePlural = Focus Sashes +Pocket = HeldItems +Price = 3000 +SellPrice = 2000 +BPPrice = 15 +Flags = Fling_10 +Description = An item to be held by a Pokémon. If it has full HP, the holder will endure one potential KO attack, leaving 1 HP. +#------------------------------- +[FLAMEORB] +Name = Flame Orb +NamePlural = Flame Orbs +Pocket = HeldItems +Price = 4000 +BPPrice = 16 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It is a bizarre orb that inflicts a burn on the holder in battle. +#------------------------------- +[TOXICORB] +Name = Toxic Orb +NamePlural = Toxic Orbs +Pocket = HeldItems +Price = 4000 +BPPrice = 16 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It is a bizarre orb that badly poisons the holder in battle. +#------------------------------- +[STICKYBARB] +Name = Sticky Barb +NamePlural = Sticky Barbs +Pocket = HeldItems +Price = 4000 +BPPrice = 16 +Flags = Fling_80 +Description = A held item that damages the holder on every turn. It may latch on to Pokémon that touch the holder. +#------------------------------- +[IRONBALL] +Name = Iron Ball +NamePlural = Iron Balls +Pocket = HeldItems +Price = 4000 +BPPrice = 10 +Flags = Fling_130 +Description = A Pokémon held item that cuts Speed. It makes Flying-type and levitating holders susceptible to Ground moves. +#------------------------------- +[RINGTARGET] +Name = Ring Target +NamePlural = Ring Targets +Pocket = HeldItems +Price = 3000 +SellPrice = 2000 +BPPrice = 10 +Flags = Fling_10 +Description = Moves that would otherwise have no effect will land on the Pokémon that holds it. +#------------------------------- +[MACHOBRACE] +Name = Macho Brace +NamePlural = Macho Braces +Pocket = HeldItems +Price = 3000 +BPPrice = 10 +Flags = Fling_60 +Description = An item to be held by a Pokémon. It is a stiff, heavy brace that promotes strong growth but lowers Speed. +#------------------------------- +[POWERWEIGHT] +Name = Power Weight +NamePlural = Power Weights +Pocket = HeldItems +Price = 3000 +BPPrice = 10 +Flags = Fling_70 +Description = A Pokémon held item that promotes HP gain on leveling, but reduces the Speed stat. +#------------------------------- +[POWERBRACER] +Name = Power Bracer +NamePlural = Power Bracers +Pocket = HeldItems +Price = 3000 +BPPrice = 10 +Flags = Fling_70 +Description = A Pokémon held item that promotes Attack gain on leveling, but reduces the Speed stat. +#------------------------------- +[POWERBELT] +Name = Power Belt +NamePlural = Power Belts +Pocket = HeldItems +Price = 3000 +BPPrice = 10 +Flags = Fling_70 +Description = A Pokémon held item that promotes Defense gain on leveling, but reduces the Speed stat. +#------------------------------- +[POWERLENS] +Name = Power Lens +NamePlural = Power Lenses +Pocket = HeldItems +Price = 3000 +BPPrice = 10 +Flags = Fling_70 +Description = A Pokémon held item that promotes Sp. Atk gain on leveling, but reduces the Speed stat. +#------------------------------- +[POWERBAND] +Name = Power Band +NamePlural = Power Bands +Pocket = HeldItems +Price = 3000 +BPPrice = 10 +Flags = Fling_70 +Description = A Pokémon held item that promotes Sp. Def gain on leveling, but reduces the Speed stat. +#------------------------------- +[POWERANKLET] +Name = Power Anklet +NamePlural = Power Anklets +Pocket = HeldItems +Price = 3000 +BPPrice = 10 +Flags = Fling_70 +Description = A Pokémon held item that promotes Speed gain on leveling, but reduces the Speed stat. +#------------------------------- +[LAXINCENSE] +Name = Lax Incense +NamePlural = Lax Incenses +PortionName = jar of Lax Incense +PortionNamePlural = jars of Lax Incense +Pocket = HeldItems +Price = 5000 +Flags = Fling_10 +Description = An item to be held by a Pokémon. The tricky aroma of this incense may make attacks miss the holder. +#------------------------------- +[FULLINCENSE] +Name = Full Incense +NamePlural = Full Incenses +PortionName = jar of Full Incense +PortionNamePlural = jars of Full Incense +Pocket = HeldItems +Price = 5000 +Flags = Fling_10 +Description = An item to be held by a Pokémon. This exotic-smelling incense makes the holder bloated and slow moving. +#------------------------------- +[LUCKINCENSE] +Name = Luck Incense +NamePlural = Luck Incenses +PortionName = jar of Luck Incense +PortionNamePlural = jars of Luck Incense +Pocket = HeldItems +Price = 11000 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It doubles a battle's prize money if the holding Pokémon joins in. +#------------------------------- +[PUREINCENSE] +Name = Pure Incense +NamePlural = Pure Incenses +PortionName = jar of Pure Incense +PortionNamePlural = jars of Pure Incense +Pocket = HeldItems +Price = 6000 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It helps keep wild Pokémon away if the holder is the first one in the party. +#------------------------------- +[SEAINCENSE] +Name = Sea Incense +NamePlural = Sea Incenses +PortionName = jar of Sea Incense +PortionNamePlural = jars of Sea Incense +Pocket = HeldItems +Price = 2000 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It has a curious aroma that boosts the power of Water-type moves. +#------------------------------- +[WAVEINCENSE] +Name = Wave Incense +NamePlural = Wave Incenses +PortionName = jar of Wave Incense +PortionNamePlural = jars of Wave Incense +Pocket = HeldItems +Price = 2000 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It has a curious aroma that boosts the power of Water-type moves. +#------------------------------- +[ROSEINCENSE] +Name = Rose Incense +NamePlural = Rose Incenses +PortionName = jar of Rose Incense +PortionNamePlural = jars of Rose Incense +Pocket = HeldItems +Price = 2000 +Flags = Fling_10 +Description = An item to be held by a Pokémon. This exotic-smelling incense boosts the power of Grass-type moves. +#------------------------------- +[ODDINCENSE] +Name = Odd Incense +NamePlural = Odd Incenses +PortionName = jar of Odd Incense +PortionNamePlural = jars of Odd Incense +Pocket = HeldItems +Price = 2000 +Flags = Fling_10 +Description = An item to be held by a Pokémon. This exotic-smelling incense boosts the power of Psychic-type moves. +#------------------------------- +[ROCKINCENSE] +Name = Rock Incense +NamePlural = Rock Incenses +PortionName = jar of Rock Incense +PortionNamePlural = jars of Rock Incense +Pocket = HeldItems +Price = 2000 +Flags = Fling_10 +Description = An item to be held by a Pokémon. This exotic-smelling incense boosts the power of Rock-type moves. +#------------------------------- +[CHARCOAL] +Name = Charcoal +NamePlural = Charcoals +PortionName = piece of Charcoal +PortionNamePlural = pieces of Charcoal +Pocket = HeldItems +Price = 3000 +SellPrice = 500 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It is a combustible fuel that boosts the power of Fire-type moves. +#------------------------------- +[MYSTICWATER] +Name = Mystic Water +NamePlural = Mystic Waters +Pocket = HeldItems +Price = 3000 +SellPrice = 500 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It is a teardrop-shaped gem that ups the power of Water-type moves. +#------------------------------- +[MAGNET] +Name = Magnet +NamePlural = Magnets +Pocket = HeldItems +Price = 3000 +SellPrice = 500 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It is a powerful magnet that boosts the power of Electric-type moves. +#------------------------------- +[MIRACLESEED] +Name = Miracle Seed +NamePlural = Miracle Seeds +Pocket = HeldItems +Price = 3000 +SellPrice = 500 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It is a seed imbued with life that ups the power of Grass-type moves. +#------------------------------- +[NEVERMELTICE] +Name = Never-Melt Ice +NamePlural = Never-Melt Ices +PortionName = piece of Never-Melt Ice +PortionNamePlural = pieces of Never-Melt Ice +Pocket = HeldItems +Price = 3000 +SellPrice = 500 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It is a piece of ice that repels heat and boosts Ice-type moves. +#------------------------------- +[BLACKBELT] +Name = Black Belt +NamePlural = Black Belts +Pocket = HeldItems +Price = 3000 +SellPrice = 500 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It is a belt that boosts determination and Fighting-type moves. +#------------------------------- +[POISONBARB] +Name = Poison Barb +NamePlural = Poison Barbs +Pocket = HeldItems +Price = 3000 +SellPrice = 500 +Flags = Fling_70 +Description = An item to be held by a Pokémon. It is a small, poisonous barb that ups the power of Poison-type moves. +#------------------------------- +[SOFTSAND] +Name = Soft Sand +NamePlural = Soft Sand +PortionName = bag of Soft Sand +PortionNamePlural = bags of Soft Sand +Pocket = HeldItems +Price = 3000 +SellPrice = 500 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It is a loose, silky sand that boosts the power of Ground-type moves. +#------------------------------- +[SHARPBEAK] +Name = Sharp Beak +NamePlural = Sharp Beaks +Pocket = HeldItems +Price = 3000 +SellPrice = 500 +Flags = Fling_50 +Description = An item to be held by a Pokémon. It is a long, sharp beak that boosts the power of Flying-type moves. +#------------------------------- +[TWISTEDSPOON] +Name = Twisted Spoon +NamePlural = Twisted Spoons +Pocket = HeldItems +Price = 3000 +SellPrice = 500 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It is a spoon imbued with telekinetic power that boosts Psychic-type moves. +#------------------------------- +[SILVERPOWDER] +Name = Silver Powder +NamePlural = Silver Powders +PortionName = pile of Silver Powder +PortionNamePlural = piles of Silver Powder +Pocket = HeldItems +Price = 3000 +SellPrice = 500 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It is a shiny, silver powder that ups the power of Bug-type moves. +#------------------------------- +[HARDSTONE] +Name = Hard Stone +NamePlural = Hard Stones +Pocket = HeldItems +Price = 3000 +SellPrice = 500 +Flags = Fling_100 +Description = An item to be held by a Pokémon. It is an unbreakable stone that ups the power of Rock-type moves. +#------------------------------- +[SPELLTAG] +Name = Spell Tag +NamePlural = Spell Tags +Pocket = HeldItems +Price = 3000 +SellPrice = 500 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It is a sinister, eerie tag that boosts the power of Ghost-type moves. +#------------------------------- +[DRAGONFANG] +Name = Dragon Fang +NamePlural = Dragon Fangs +Pocket = HeldItems +Price = 3000 +SellPrice = 500 +Flags = Fling_70 +Description = An item to be held by a Pokémon. It is a hard and sharp fang that ups the power of Dragon-type moves. +#------------------------------- +[BLACKGLASSES] +Name = Black Glasses +NamePlural = Black Glasses +PortionName = pair of Black Glasses +PortionNamePlural = pairs of Black Glasses +Pocket = HeldItems +Price = 3000 +SellPrice = 500 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It is a shady-looking pair of glasses that boosts Dark-type moves. +#------------------------------- +[METALCOAT] +Name = Metal Coat +NamePlural = Metal Coats +Pocket = HeldItems +Price = 3000 +SellPrice = 1000 +Flags = Fling_30 +Description = An item to be held by a Pokémon. It is a special metallic film that ups the power of Steel-type moves. +#------------------------------- +[FAIRYFEATHER] +Name = Fairy Feather +NamePlural = Fairy Feathers +Pocket = HeldItems +Price = 3000 +Flags = Fling_10 +Description = An item to be held by a Pokémon. This gleaming feather boosts the power of the holder's Fairy-type moves. +#------------------------------- +[SILKSCARF] +Name = Silk Scarf +NamePlural = Silk Scarves +Pocket = HeldItems +Price = 3000 +SellPrice = 500 +Flags = Fling_10 +Description = An item to be held by a Pokémon. It is a sumptuous scarf that boosts the power of Normal-type moves. +#------------------------------- +[FLAMEPLATE] +Name = Flame Plate +NamePlural = Flame Plates +Pocket = HeldItems +Price = 10000 +SellPrice = 500 +Flags = Fling_90 +Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Fire-type moves. +#------------------------------- +[SPLASHPLATE] +Name = Splash Plate +NamePlural = Splash Plates +Pocket = HeldItems +Price = 10000 +SellPrice = 500 +Flags = Fling_90 +Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Water-type moves. +#------------------------------- +[ZAPPLATE] +Name = Zap Plate +NamePlural = Zap Plates +Pocket = HeldItems +Price = 10000 +SellPrice = 500 +Flags = Fling_90 +Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Electric-type moves. +#------------------------------- +[MEADOWPLATE] +Name = Meadow Plate +NamePlural = Meadow Plates +Pocket = HeldItems +Price = 10000 +SellPrice = 500 +Flags = Fling_90 +Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Grass-type moves. +#------------------------------- +[ICICLEPLATE] +Name = Icicle Plate +NamePlural = Icicle Plates +Pocket = HeldItems +Price = 10000 +SellPrice = 500 +Flags = Fling_90 +Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Ice-type moves. +#------------------------------- +[FISTPLATE] +Name = Fist Plate +NamePlural = Fist Plates +Pocket = HeldItems +Price = 10000 +SellPrice = 500 +Flags = Fling_90 +Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Fighting-type moves. +#------------------------------- +[TOXICPLATE] +Name = Toxic Plate +NamePlural = Toxic Plates +Pocket = HeldItems +Price = 10000 +SellPrice = 500 +Flags = Fling_90 +Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Poison-type moves. +#------------------------------- +[EARTHPLATE] +Name = Earth Plate +NamePlural = Earth Plates +Pocket = HeldItems +Price = 10000 +SellPrice = 500 +Flags = Fling_90 +Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Ground-type moves. +#------------------------------- +[SKYPLATE] +Name = Sky Plate +NamePlural = Sky Plates +Pocket = HeldItems +Price = 10000 +SellPrice = 500 +Flags = Fling_90 +Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Flying-type moves. +#------------------------------- +[MINDPLATE] +Name = Mind Plate +NamePlural = Mind Plates +Pocket = HeldItems +Price = 10000 +SellPrice = 500 +Flags = Fling_90 +Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Psychic-type moves. +#------------------------------- +[INSECTPLATE] +Name = Insect Plate +NamePlural = Insect Plates +Pocket = HeldItems +Price = 10000 +SellPrice = 500 +Flags = Fling_90 +Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Bug-type moves. +#------------------------------- +[STONEPLATE] +Name = Stone Plate +NamePlural = Stone Plates +Pocket = HeldItems +Price = 10000 +SellPrice = 500 +Flags = Fling_90 +Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Rock-type moves. +#------------------------------- +[SPOOKYPLATE] +Name = Spooky Plate +NamePlural = Spooky Plates +Pocket = HeldItems +Price = 10000 +SellPrice = 500 +Flags = Fling_90 +Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Ghost-type moves. +#------------------------------- +[DRACOPLATE] +Name = Draco Plate +NamePlural = Draco Plates +Pocket = HeldItems +Price = 10000 +SellPrice = 500 +Flags = Fling_90 +Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Dragon-type moves. +#------------------------------- +[DREADPLATE] +Name = Dread Plate +NamePlural = Dread Plates +Pocket = HeldItems +Price = 10000 +SellPrice = 500 +Flags = Fling_90 +Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Dark-type moves. +#------------------------------- +[IRONPLATE] +Name = Iron Plate +NamePlural = Iron Plates +Pocket = HeldItems +Price = 10000 +SellPrice = 500 +Flags = Fling_90 +Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Steel-type moves. +#------------------------------- +[PIXIEPLATE] +Name = Pixie Plate +NamePlural = Pixie Plates +Pocket = HeldItems +Price = 10000 +SellPrice = 500 +Flags = Fling_90 +Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Fairy-type moves. +#------------------------------- +[FIREGEM] +Name = Fire Gem +NamePlural = Fire Gems +Pocket = HeldItems +Price = 4000 +Flags = TypeGem +Description = A gem with an essence of fire. When held, it strengthens the power of a Fire-type move only once. +#------------------------------- +[WATERGEM] +Name = Water Gem +NamePlural = Water Gems +Pocket = HeldItems +Price = 4000 +Flags = TypeGem +Description = A gem with an essence of water. When held, it strengthens the power of a Water-type move only once. +#------------------------------- +[ELECTRICGEM] +Name = Electric Gem +NamePlural = Electric Gems +Pocket = HeldItems +Price = 4000 +Flags = TypeGem +Description = A gem with an essence of electricity. When held, it strengthens the power of an Electric-type move only once. +#------------------------------- +[GRASSGEM] +Name = Grass Gem +NamePlural = Grass Gems +Pocket = HeldItems +Price = 4000 +Flags = TypeGem +Description = A gem with an essence of nature. When held, it strengthens the power of a Grass-type move only once. +#------------------------------- +[ICEGEM] +Name = Ice Gem +NamePlural = Ice Gems +Pocket = HeldItems +Price = 4000 +Flags = TypeGem +Description = A gem with an essence of ice. When held, it strengthens the power of an Ice-type move only once. +#------------------------------- +[FIGHTINGGEM] +Name = Fighting Gem +NamePlural = Fighting Gems +Pocket = HeldItems +Price = 4000 +Flags = TypeGem +Description = A gem with an essence of combat. When held, it strengthens the power of a Fighting-type move only once. +#------------------------------- +[POISONGEM] +Name = Poison Gem +NamePlural = Poison Gems +Pocket = HeldItems +Price = 4000 +Flags = TypeGem +Description = A gem with an essence of poison. When held, it strengthens the power of a Poison-type move only once. +#------------------------------- +[GROUNDGEM] +Name = Ground Gem +NamePlural = Ground Gems +Pocket = HeldItems +Price = 4000 +Flags = TypeGem +Description = A gem with an essence of land. When held, it strengthens the power of a Ground-type move only once. +#------------------------------- +[FLYINGGEM] +Name = Flying Gem +NamePlural = Flying Gems +Pocket = HeldItems +Price = 4000 +Flags = TypeGem +Description = A gem with an essence of air. When held, it strengthens the power of a Flying-type move only once. +#------------------------------- +[PSYCHICGEM] +Name = Psychic Gem +NamePlural = Psychic Gems +Pocket = HeldItems +Price = 4000 +Flags = TypeGem +Description = A gem with an essence of the mind. When held, it strengthens the power of a Psychic-type move only once. +#------------------------------- +[BUGGEM] +Name = Bug Gem +NamePlural = Bug Gems +Pocket = HeldItems +Price = 4000 +Flags = TypeGem +Description = A gem with an insect-like essence. When held, it strengthens the power of a Bug-type move only once. +#------------------------------- +[ROCKGEM] +Name = Rock Gem +NamePlural = Rock Gems +Pocket = HeldItems +Price = 4000 +Flags = TypeGem +Description = A gem with an essence of rock. When held, it strengthens the power of a Rock-type move only once. +#------------------------------- +[GHOSTGEM] +Name = Ghost Gem +NamePlural = Ghost Gems +Pocket = HeldItems +Price = 4000 +Flags = TypeGem +Description = A gem with a spectral essence. When held, it strengthens the power of a Ghost-type move only once. +#------------------------------- +[DRAGONGEM] +Name = Dragon Gem +NamePlural = Dragon Gems +Pocket = HeldItems +Price = 4000 +Flags = TypeGem +Description = A gem with a draconic essence. When held, it strengthens the power of a Dragon-type move only once. +#------------------------------- +[DARKGEM] +Name = Dark Gem +NamePlural = Dark Gems +Pocket = HeldItems +Price = 4000 +Flags = TypeGem +Description = A gem with an essence of darkness. When held, it strengthens the power of a Dark-type move only once. +#------------------------------- +[STEELGEM] +Name = Steel Gem +NamePlural = Steel Gems +Pocket = HeldItems +Price = 4000 +Flags = TypeGem +Description = A gem with an essence of steel. When held, it strengthens the power of a Steel-type move only once. +#------------------------------- +[FAIRYGEM] +Name = Fairy Gem +NamePlural = Fairy Gems +Pocket = HeldItems +Price = 4000 +Flags = TypeGem +Description = A gem with an essence of the fey. When held, it strengthens the power of a Fairy-type move only once. +#------------------------------- +[NORMALGEM] +Name = Normal Gem +NamePlural = Normal Gems +Pocket = HeldItems +Price = 4000 +Flags = TypeGem +Description = A gem with an ordinary essence. When held, it strengthens the power of a Normal-type move only once. +#------------------------------- +[LIGHTBALL] +Name = Light Ball +NamePlural = Light Balls +Pocket = HeldItems +Price = 1000 +Flags = Fling_30 +Description = An item to be held by Pikachu. It is a puzzling orb that raises the Attack and Sp. Atk stat. +#------------------------------- +[LUCKYPUNCH] +Name = Lucky Punch +NamePlural = Lucky Punches +Pocket = HeldItems +Price = 1000 +BPPrice = 7 +Flags = Fling_40 +Description = An item to be held by Chansey. It is a pair of gloves that boosts Chansey's critical-hit ratio. +#------------------------------- +[METALPOWDER] +Name = Metal Powder +NamePlural = Metal Powders +PortionName = bag of Metal Powder +PortionNamePlural = bags of Metal Powder +Pocket = HeldItems +Price = 1000 +Flags = Fling_10 +Description = An item to be held by Ditto. Extremely fine yet hard, this odd powder boosts the Defense stat. +#------------------------------- +[QUICKPOWDER] +Name = Quick Powder +NamePlural = Quick Powders +PortionName = bag of Quick Powder +PortionNamePlural = bags of Quick Powder +Pocket = HeldItems +Price = 1000 +Flags = Fling_10 +Description = An item to be held by Ditto. Extremely fine yet hard, this odd powder boosts the Speed stat. +#------------------------------- +[THICKCLUB] +Name = Thick Club +NamePlural = Thick Clubs +Pocket = HeldItems +Price = 1000 +Flags = Fling_90 +Description = An item to be held by Cubone or Marowak. It is a hard bone of some sort that boosts the Attack stat. +#------------------------------- +[LEEK] +Name = Leek +NamePlural = Leeks +Pocket = HeldItems +Price = 1000 +Flags = Fling_60 +Description = An item to be held by Farfetch'd. It is a very long and stiff stalk of leek that boosts the critical-hit ratio. +#------------------------------- +[SOULDEW] +Name = Soul Dew +NamePlural = Soul Dews +Pocket = HeldItems +Price = 0 +Flags = Fling_30 +Description = A wondrous orb to be held by either Latios or Latias. It raises the power of Psychic- and Dragon-type moves. +#------------------------------- +[DEEPSEATOOTH] +Name = Deep Sea Tooth +NamePlural = Deep Sea Teeth +Pocket = HeldItems +Price = 2000 +BPPrice = 5 +Flags = Fling_90 +Description = An item to be held by Clamperl. A fang that gleams a sharp silver, it raises the Sp. Atk stat. +#------------------------------- +[DEEPSEASCALE] +Name = Deep Sea Scale +NamePlural = Deep Sea Scales +Pocket = HeldItems +Price = 2000 +BPPrice = 5 +Flags = Fling_30 +Description = An item to be held by Clamperl. A scale that shines a faint pink, it raises the Sp. Def stat. +#------------------------------- +[ADAMANTORB] +Name = Adamant Orb +NamePlural = Adamant Orbs +Pocket = HeldItems +Price = 10000 +SellPrice = 0 +Flags = Fling_60 +Description = A brightly gleaming orb to be held by Dialga. It boosts the power of Dragon- and Steel-type moves. +#------------------------------- +[LUSTROUSORB] +Name = Lustrous Orb +NamePlural = Lustrous Orbs +Pocket = HeldItems +Price = 10000 +SellPrice = 0 +Flags = Fling_60 +Description = A beautifully glowing orb to be held by Palkia. It boosts the power of Dragon- and Water-type moves. +#------------------------------- +[GRISEOUSORB] +Name = Griseous Orb +NamePlural = Griseous Orbs +Pocket = HeldItems +Price = 10000 +SellPrice = 0 +Flags = Fling_60 +Description = A glowing orb to be held by Giratina. It boosts the power of Dragon- and Ghost-type moves. +#------------------------------- +[ADAMANTCRYSTAL] +Name = Adamant Crystal +NamePlural = Adamant Crystals +Pocket = HeldItems +Price = 4000 +SellPrice = 0 +Flags = Fling_60 +Description = A large, glowing gem to be held by Dialga. It wells with power and allows the Pokémon to change form. +#------------------------------- +[LUSTROUSGLOBE] +Name = Lustrous Globe +NamePlural = Lustrous Globes +Pocket = HeldItems +Price = 4000 +SellPrice = 0 +Flags = Fling_60 +Description = A large, glowing orb to be held by Palkia. It wells with power and allows the Pokémon to change form. +#------------------------------- +[GRISEOUSCORE] +Name = Griseous Core +NamePlural = Griseous Cores +Pocket = HeldItems +Price = 4000 +SellPrice = 0 +Flags = Fling_60 +Description = A large, glowing gem to be held by Giratina. It wells with power and allows the Pokémon to change form. +#------------------------------- +[RUSTEDSWORD] +Name = Rusted Sword +NamePlural = Rusted Swords +Pocket = HeldItems +Price = 0 +Description = It is said that a hero used this sword to halt a disaster in ancient times. But it's grown rusty and worn. +#------------------------------- +[RUSTEDSHIELD] +Name = Rusted Shield +NamePlural = Rusted Shields +Pocket = HeldItems +Price = 0 +Description = It is said that a hero used this shield to halt a disaster in ancient times. But it's grown rusty and worn. +#------------------------------- +[WELLSPRINGMASK] +Name = Wellspring Mask +NamePlural = Wellspring Masks +Pocket = HeldItems +Flags = Fling_60 +Description = An item to be held by Ogerpon. This carved wooden mask allows Ogerpon to wield the Water type in battle. +#------------------------------- +[HEARTHFLAMEMASK] +Name = Hearthflame Mask +NamePlural = Hearthflame Masks +Pocket = HeldItems +Price = 0 +Flags = Fling_60 +Description = An item to be held by Ogerpon. This carved wooden mask allows Ogerpon to wield the Fire type in battle. +#------------------------------- +[CORNERSTONEMASK] +Name = Cornerstone Mask +NamePlural = Cornerstone Masks +Pocket = HeldItems +Price = 0 +Flags = Fling_60 +Description = An item to be held by Ogerpon. This carved wooden mask allows Ogerpon to wield the Rock type in battle. +#------------------------------- +[DOUSEDRIVE] +Name = Douse Drive +NamePlural = Douse Drives +Pocket = HeldItems +Price = 0 +Flags = Fling_70 +Description = A cassette to be held by Genesect. It changes Techno Blast to a Water-type move. +#------------------------------- +[SHOCKDRIVE] +Name = Shock Drive +NamePlural = Shock Drives +Pocket = HeldItems +Price = 0 +Flags = Fling_70 +Description = A cassette to be held by Genesect. It changes Techno Blast to an Electric-type move. +#------------------------------- +[BURNDRIVE] +Name = Burn Drive +NamePlural = Burn Drives +Pocket = HeldItems +Price = 0 +Flags = Fling_70 +Description = A cassette to be held by Genesect. It changes Techno Blast to a Fire-type move. +#------------------------------- +[CHILLDRIVE] +Name = Chill Drive +NamePlural = Chill Drives +Pocket = HeldItems +Price = 0 +Flags = Fling_70 +Description = A cassette to be held by Genesect. It changes Techno Blast to an Ice-type move. +#------------------------------- +[FIREMEMORY] +Name = Fire Memory +NamePlural = Fire Memories +Pocket = HeldItems +Price = 1000 +Flags = Fling_50 +Description = A memory disc containing Fire-type data. It changes the holder's type if held by a certain Pokémon. +#------------------------------- +[WATERMEMORY] +Name = Water Memory +NamePlural = Water Memories +Pocket = HeldItems +Price = 1000 +Flags = Fling_50 +Description = A memory disc containing Water-type data. It changes the holder's type if held by a certain Pokémon. +#------------------------------- +[ELECTRICMEMORY] +Name = Electric Memory +NamePlural = Electric Memories +Pocket = HeldItems +Price = 1000 +Flags = Fling_50 +Description = A memory disc containing Electric-type data. It changes the holder's type if held by a certain Pokémon. +#------------------------------- +[GRASSMEMORY] +Name = Grass Memory +NamePlural = Grass Memories +Pocket = HeldItems +Price = 1000 +Flags = Fling_50 +Description = A memory disc containing Grass-type data. It changes the holder's type if held by a certain Pokémon. +#------------------------------- +[ICEMEMORY] +Name = Ice Memory +NamePlural = Ice Memories +Pocket = HeldItems +Price = 1000 +Flags = Fling_50 +Description = A memory disc containing Ice-type data. It changes the holder's type if held by a certain Pokémon. +#------------------------------- +[FIGHTINGMEMORY] +Name = Fighting Memory +NamePlural = Fighting Memories +Pocket = HeldItems +Price = 1000 +Flags = Fling_50 +Description = A memory disc containing Fighting-type data. It changes the holder's type if held by a certain Pokémon. +#------------------------------- +[POISONMEMORY] +Name = Poison Memory +NamePlural = Poison Memories +Pocket = HeldItems +Price = 1000 +Flags = Fling_50 +Description = A memory disc containing Poison-type data. It changes the holder's type if held by a certain Pokémon. +#------------------------------- +[GROUNDMEMORY] +Name = Ground Memory +NamePlural = Ground Memories +Pocket = HeldItems +Price = 1000 +Flags = Fling_50 +Description = A memory disc containing Ground-type data. It changes the holder's type if held by a certain Pokémon. +#------------------------------- +[FLYINGMEMORY] +Name = Flying Memory +NamePlural = Flying Memories +Pocket = HeldItems +Price = 1000 +Flags = Fling_50 +Description = A memory disc containing Flying-type data. It changes the holder's type if held by a certain Pokémon. +#------------------------------- +[PSYCHICMEMORY] +Name = Psychic Memory +NamePlural = Psychic Memories +Pocket = HeldItems +Price = 1000 +Flags = Fling_50 +Description = A memory disc containing Psychic-type data. It changes the holder's type if held by a certain Pokémon. +#------------------------------- +[BUGMEMORY] +Name = Bug Memory +NamePlural = Bug Memories +Pocket = HeldItems +Price = 1000 +Flags = Fling_50 +Description = A memory disc containing Bug-type data. It changes the holder's type if held by a certain Pokémon. +#------------------------------- +[ROCKMEMORY] +Name = Rock Memory +NamePlural = Rock Memories +Pocket = HeldItems +Price = 1000 +Flags = Fling_50 +Description = A memory disc containing Rock-type data. It changes the holder's type if held by a certain Pokémon. +#------------------------------- +[GHOSTMEMORY] +Name = Ghost Memory +NamePlural = Ghost Memories +Pocket = HeldItems +Price = 1000 +Flags = Fling_50 +Description = A memory disc containing Ghost-type data. It changes the holder's type if held by a certain Pokémon. +#------------------------------- +[DRAGONMEMORY] +Name = Dragon Memory +NamePlural = Dragon Memories +Pocket = HeldItems +Price = 1000 +Flags = Fling_50 +Description = A memory disc containing Dragon-type data. It changes the holder's type if held by a certain Pokémon. +#------------------------------- +[DARKMEMORY] +Name = Dark Memory +NamePlural = Dark Memories +Pocket = HeldItems +Price = 1000 +Flags = Fling_50 +Description = A memory disc containing Dark-type data. It changes the holder's type if held by a certain Pokémon. +#------------------------------- +[STEELMEMORY] +Name = Steel Memory +NamePlural = Steel Memories +Pocket = HeldItems +Price = 1000 +Flags = Fling_50 +Description = A memory disc containing Steel-type data. It changes the holder's type if held by a certain Pokémon. +#------------------------------- +[FAIRYMEMORY] +Name = Fairy Memory +NamePlural = Fairy Memories +Pocket = HeldItems +Price = 1000 +Flags = Fling_50 +Description = A memory disc containing Fairy-type data. It changes the holder's type if held by a certain Pokémon. +#------------------------------- +[EVERSTONE] +Name = Everstone +NamePlural = Everstones +Pocket = HeldItems +Price = 3000 +BPPrice = 5 +Flags = Fling_30 +Description = An item to be held by a Pokémon. The Pokémon holding this peculiar stone is prevented from evolving. +#------------------------------- +[DRAGONSCALE] +Name = Dragon Scale +NamePlural = Dragon Scales +Pocket = HeldItems +Price = 3000 +SellPrice = 1000 +BPPrice = 5 +Flags = Fling_30 +Description = A thick and tough scale. Dragon-type Pokémon may be holding this item when caught. +#------------------------------- +[UPGRADE] +Name = Upgrade +NamePlural = Upgrades +Pocket = HeldItems +Price = 3000 +SellPrice = 1000 +BPPrice = 5 +Flags = Fling_30 +Description = A transparent device filled with all sorts of data. It was produced by Silph Co. +#------------------------------- +[DUBIOUSDISC] +Name = Dubious Disc +NamePlural = Dubious Discs +Pocket = HeldItems +Price = 3000 +SellPrice = 1000 +BPPrice = 5 +Flags = Fling_50 +Description = A transparent device overflowing with dubious data. Its producer is unknown. +#------------------------------- +[PROTECTOR] +Name = Protector +NamePlural = Protectors +Pocket = HeldItems +Price = 3000 +SellPrice = 1000 +BPPrice = 5 +Flags = Fling_80 +Description = A protective item of some sort. It is extremely stiff and heavy. It is loved by a certain Pokémon. +#------------------------------- +[ELECTIRIZER] +Name = Electirizer +NamePlural = Electirizers +Pocket = HeldItems +Price = 3000 +SellPrice = 1000 +BPPrice = 5 +Flags = Fling_80 +Description = A box packed with a tremendous amount of electric energy. It is loved by a certain Pokémon. +#------------------------------- +[MAGMARIZER] +Name = Magmarizer +NamePlural = Magmarizers +Pocket = HeldItems +Price = 3000 +SellPrice = 1000 +BPPrice = 5 +Flags = Fling_80 +Description = A box packed with a tremendous amount of magma energy. It is loved by a certain Pokémon. +#------------------------------- +[REAPERCLOTH] +Name = Reaper Cloth +NamePlural = Reaper Cloths +PortionName = scrap of Reaper Cloth +PortionNamePlural = scraps of Reaper Cloth +Pocket = HeldItems +Price = 3000 +SellPrice = 1000 +BPPrice = 5 +Flags = Fling_10 +Description = A cloth imbued with horrifyingly strong spiritual energy. It is loved by a certain Pokémon. +#------------------------------- +[PRISMSCALE] +Name = Prism Scale +NamePlural = Prism Scales +Pocket = HeldItems +Price = 3000 +SellPrice = 1000 +BPPrice = 10 +Flags = Fling_30 +Description = A mysterious scale that evolves certain Pokémon. It shines in rainbow colors. +#------------------------------- +[OVALSTONE] +Name = Oval Stone +NamePlural = Oval Stones +Pocket = HeldItems +Price = 3000 +SellPrice = 1000 +BPPrice = 5 +Flags = Fling_80 +Description = A peculiar stone that makes certain species of Pokémon evolve. It is shaped like an egg. +#------------------------------- +[WHIPPEDDREAM] +Name = Whipped Dream +NamePlural = Whipped Dreams +PortionName = dollop of Whipped Dream +PortionNamePlural = dollops of Whipped Dream +Pocket = HeldItems +Price = 3000 +SellPrice = 1000 +BPPrice = 5 +Flags = Fling_80 +Description = A soft and sweet treat made of fluffy, puffy and whirled cream. It's loved by a certain Pokémon. +#------------------------------- +[SACHET] +Name = Sachet +NamePlural = Sachets +Pocket = HeldItems +Price = 3000 +SellPrice = 1000 +BPPrice = 5 +Flags = Fling_80 +Description = A sachet filled with slightly overwhelming fragrant perfumes. Yet it's loved by a certain Pokémon. +#------------------------------- +[STRAWBERRYSWEET] +Name = Strawberry Sweet +NamePlural = Strawberry Sweets +Pocket = HeldItems +Price = 500 +BPPrice = 5 +Flags = Fling_10 +Description = A strawberry-shaped sweet. When a Milcery holds this, it will spin around happily. +#------------------------------- +[LOVESWEET] +Name = Love Sweet +NamePlural = Love Sweets +Pocket = HeldItems +Price = 500 +BPPrice = 5 +Flags = Fling_10 +Description = A heart-shaped sweet. When a Milcery holds this, it spins around happily. +#------------------------------- +[BERRYSWEET] +Name = Berry Sweet +NamePlural = Berry Sweets +Pocket = HeldItems +Price = 500 +BPPrice = 5 +Flags = Fling_10 +Description = A berry-shaped sweet. When a Milcery holds this, it spins around happily. +#------------------------------- +[CLOVERSWEET] +Name = Clover Sweet +NamePlural = Clover Sweets +Pocket = HeldItems +Price = 500 +BPPrice = 5 +Flags = Fling_10 +Description = A clover-shaped sweet. When a Milcery holds this, it spins around happily. +#------------------------------- +[FLOWERSWEET] +Name = Flower Sweet +NamePlural = Flower Sweets +Pocket = HeldItems +Price = 500 +BPPrice = 5 +Flags = Fling_10 +Description = A flower-shaped sweet. When a Milcery holds this, it spins around happily. +#------------------------------- +[STARSWEET] +Name = Star Sweet +NamePlural = Star Sweets +Pocket = HeldItems +Price = 500 +BPPrice = 5 +Flags = Fling_10 +Description = A star-shaped sweet. When a Milcery holds this, it spins around happily. +#------------------------------- +[RIBBONSWEET] +Name = Ribbon Sweet +NamePlural = Ribbon Sweets +Pocket = HeldItems +Price = 500 +BPPrice = 5 +Flags = Fling_10 +Description = A ribbon-shaped sweet. When a Milcery holds this, it spins around happily. +#------------------------------- +[VENUSAURITE] +Name = Venusaurite +NamePlural = Venusaurites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Venusaur hold it, and it will be able to Mega Evolve. +#------------------------------- +[CHARIZARDITEX] +Name = Charizardite X +NamePlural = Charizardite Xs +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Charizard hold it, and it will be able to Mega Evolve. +#------------------------------- +[CHARIZARDITEY] +Name = Charizardite Y +NamePlural = Charizardite Ys +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Charizard hold it, and it will be able to Mega Evolve. +#------------------------------- +[BLASTOISINITE] +Name = Blastoisinite +NamePlural = Blastoisinites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Blastoise hold it, and it will be able to Mega Evolve. +#------------------------------- +[BEEDRILLITE] +Name = Beedrillite +NamePlural = Beedrillites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Beedrill hold it, and it will be able to Mega Evolve. +#------------------------------- +[PIDGEOTITE] +Name = Pidgeotite +NamePlural = Pidgeotites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Pidgeot hold it, and it will be able to Mega Evolve. +#------------------------------- +[ALAKAZITE] +Name = Alakazite +NamePlural = Alakazites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Alakazam hold it, and it will be able to Mega Evolve. +#------------------------------- +[SLOWBRONITE] +Name = Slowbronite +NamePlural = Slowbronites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Slowbro hold it, and it will be able to Mega Evolve. +#------------------------------- +[GENGARITE] +Name = Gengarite +NamePlural = Gengarites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Gengar hold it, and it will be able to Mega Evolve. +#------------------------------- +[KANGASKHANITE] +Name = Kangaskhanite +NamePlural = Kangaskhanites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Kangaskhan hold it, and it will be able to Mega Evolve. +#------------------------------- +[PINSIRITE] +Name = Pinsirite +NamePlural = Pinsirites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Pinsir hold it, and it will be able to Mega Evolve. +#------------------------------- +[GYARADOSITE] +Name = Gyaradosite +NamePlural = Gyaradosites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Gyarados hold it, and it will be able to Mega Evolve. +#------------------------------- +[AERODACTYLITE] +Name = Aerodactylite +NamePlural = Aerodactylites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Aerodactyl hold it, and it will be able to Mega Evolve. +#------------------------------- +[MEWTWONITEX] +Name = Mewtwonite X +NamePlural = Mewtwonite Xs +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Mewtwo hold it, and it will be able to Mega Evolve. +#------------------------------- +[MEWTWONITEY] +Name = Mewtwonite Y +NamePlural = Mewtwonite Ys +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Mewtwo hold it, and it will be able to Mega Evolve. +#------------------------------- +[AMPHAROSITE] +Name = Ampharosite +NamePlural = Ampharosites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Ampharos hold it, and it will be able to Mega Evolve. +#------------------------------- +[STEELIXITE] +Name = Steelixite +NamePlural = Steelixites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Steelix hold it, and it will be able to Mega Evolve. +#------------------------------- +[SCIZORITE] +Name = Scizorite +NamePlural = Scizorites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Scizor hold it, and it will be able to Mega Evolve. +#------------------------------- +[HERACRONITE] +Name = Heracronite +NamePlural = Heracronites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Heracross hold it, and it will be able to Mega Evolve. +#------------------------------- +[HOUNDOOMINITE] +Name = Houndoominite +NamePlural = Houndoominites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Houndoom hold it, and it will be able to Mega Evolve. +#------------------------------- +[TYRANITARITE] +Name = Tyranitarite +NamePlural = Tyranitarites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Tyranitar hold it, and it will be able to Mega Evolve. +#------------------------------- +[SCEPTILITE] +Name = Sceptilite +NamePlural = Sceptilites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Sceptile hold it, and it will be able to Mega Evolve. +#------------------------------- +[BLAZIKENITE] +Name = Blazikenite +NamePlural = Blazikenites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Blaziken hold it, and it will be able to Mega Evolve. +#------------------------------- +[SWAMPERTITE] +Name = Swampertite +NamePlural = Swampertites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Swampert hold it, and it will be able to Mega Evolve. +#------------------------------- +[GARDEVOIRITE] +Name = Gardevoirite +NamePlural = Gardevoirites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Gardevoir hold it, and it will be able to Mega Evolve. +#------------------------------- +[SABLENITE] +Name = Sablenite +NamePlural = Sablenites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Sableye hold it, and it will be able to Mega Evolve. +#------------------------------- +[MAWILITE] +Name = Mawilite +NamePlural = Mawilites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Mawile hold it, and it will be able to Mega Evolve. +#------------------------------- +[AGGRONITE] +Name = Aggronite +NamePlural = Aggronites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Aggron hold it, and it will be able to Mega Evolve. +#------------------------------- +[MEDICHAMITE] +Name = Medichamite +NamePlural = Medichamites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Medicham hold it, and it will be able to Mega Evolve. +#------------------------------- +[MANECTITE] +Name = Manectite +NamePlural = Manectites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Manectric hold it, and it will be able to Mega Evolve. +#------------------------------- +[SHARPEDONITE] +Name = Sharpedonite +NamePlural = Sharpedonites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Sharpedo hold it, and it will be able to Mega Evolve. +#------------------------------- +[CAMERUPTITE] +Name = Cameruptite +NamePlural = Cameruptites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Camerupt hold it, and it will be able to Mega Evolve. +#------------------------------- +[ALTARIANITE] +Name = Altarianite +NamePlural = Altarianites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Altaria hold it, and it will be able to Mega Evolve. +#------------------------------- +[BANETTITE] +Name = Banettite +NamePlural = Banettites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Banette hold it, and it will be able to Mega Evolve. +#------------------------------- +[ABSOLITE] +Name = Absolite +NamePlural = Absolites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Absol hold it, and it will be able to Mega Evolve. +#------------------------------- +[GLALITITE] +Name = Glalitite +NamePlural = Glalitites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Glalie hold it, and it will be able to Mega Evolve. +#------------------------------- +[SALAMENCITE] +Name = Salamencite +NamePlural = Salamencites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Salamence hold it, and it will be able to Mega Evolve. +#------------------------------- +[METAGROSSITE] +Name = Metagrossite +NamePlural = Metagrossites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Metagross hold it, and it will be able to Mega Evolve. +#------------------------------- +[LATIASITE] +Name = Latiasite +NamePlural = Latiasites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Latias hold it, and it will be able to Mega Evolve. +#------------------------------- +[LATIOSITE] +Name = Latiosite +NamePlural = Latiosites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Latios hold it, and it will be able to Mega Evolve. +#------------------------------- +[LOPUNNITE] +Name = Lopunnite +NamePlural = Lopunnites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Lopunny hold it, and it will be able to Mega Evolve. +#------------------------------- +[GARCHOMPITE] +Name = Garchompite +NamePlural = Garchompites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Garchomp hold it, and it will be able to Mega Evolve. +#------------------------------- +[LUCARIONITE] +Name = Lucarionite +NamePlural = Lucarionites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Lucario hold it, and it will be able to Mega Evolve. +#------------------------------- +[ABOMASITE] +Name = Abomasite +NamePlural = Abomasites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Abomasnow hold it, and it will be able to Mega Evolve. +#------------------------------- +[GALLADITE] +Name = Galladite +NamePlural = Galladites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Gallade hold it, and it will be able to Mega Evolve. +#------------------------------- +[AUDINITE] +Name = Audinite +NamePlural = Audinites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Audino hold it, and it will be able to Mega Evolve. +#------------------------------- +[DIANCITE] +Name = Diancite +NamePlural = Diancites +Pocket = HeldItems +Price = 0 +BPPrice = 50 +Flags = MegaStone,Fling_80 +Description = One of a variety of mysterious Mega Stones. Have Diancie hold it, and it will be able to Mega Evolve. +#------------------------------- +[REDORB] +Name = Red Orb +NamePlural = Red Orbs +Pocket = HeldItems +Price = 10000 +SellPrice = 0 +BPPrice = 50 +Description = A shiny red orb that is said to have a legend tied to it. It's known to be connected with the Hoenn region. +#------------------------------- +[BLUEORB] +Name = Blue Orb +NamePlural = Blue Orbs +Pocket = HeldItems +Price = 10000 +SellPrice = 0 +BPPrice = 50 +Description = A shiny blue orb that is said to have a legend tied to it. It's known to be connected with the Hoenn region. #------------------------------- [XATTACK] Name = X Attack NamePlural = X Attacks -Pocket = 7 +Pocket = BattleItems Price = 1000 BattleUse = OnBattler Flags = Fling_30 @@ -6172,7 +5018,7 @@ Description = An item that sharply boosts the Attack stat of a Pokémon while it [XATTACK2] Name = X Attack 2 NamePlural = X Attack 2s -Pocket = 7 +Pocket = BattleItems Price = 0 BattleUse = OnBattler Flags = Fling_30 @@ -6181,7 +5027,7 @@ Description = It sharply raises the Attack stat of a Pokémon in battle. It wear [XATTACK3] Name = X Attack 3 NamePlural = X Attack 3s -Pocket = 7 +Pocket = BattleItems Price = 0 BattleUse = OnBattler Flags = Fling_30 @@ -6190,7 +5036,7 @@ Description = It drastically raises the Attack stat of a Pokémon in battle. It [XATTACK6] Name = X Attack 6 NamePlural = X Attack 6s -Pocket = 7 +Pocket = BattleItems Price = 0 BattleUse = OnBattler Flags = Fling_30 @@ -6199,7 +5045,7 @@ Description = It raises the Attack stat of a Pokémon in battle immensely. It we [XDEFENSE] Name = X Defense NamePlural = X Defenses -Pocket = 7 +Pocket = BattleItems Price = 2000 BattleUse = OnBattler Flags = Fling_30 @@ -6208,7 +5054,7 @@ Description = An item that sharply boosts the Defense of a Pokémon while it rem [XDEFENSE2] Name = X Defense 2 NamePlural = X Defense 2s -Pocket = 7 +Pocket = BattleItems Price = 0 BattleUse = OnBattler Flags = Fling_30 @@ -6217,7 +5063,7 @@ Description = It sharply raises the Defense stat of a Pokémon in battle. It wea [XDEFENSE3] Name = X Defense 3 NamePlural = X Defense 3s -Pocket = 7 +Pocket = BattleItems Price = 0 BattleUse = OnBattler Flags = Fling_30 @@ -6226,7 +5072,7 @@ Description = It drastically raises the Defense stat of a Pokémon in battle. It [XDEFENSE6] Name = X Defense 6 NamePlural = X Defense 6s -Pocket = 7 +Pocket = BattleItems Price = 0 BattleUse = OnBattler Flags = Fling_30 @@ -6235,7 +5081,7 @@ Description = It raises the Defense stat of a Pokémon in battle immensely. It w [XSPATK] Name = X Sp. Atk NamePlural = X Sp. Atks -Pocket = 7 +Pocket = BattleItems Price = 1000 BattleUse = OnBattler Flags = Fling_30 @@ -6244,7 +5090,7 @@ Description = An item that sharply boosts the Sp. Atk stat of a Pokémon while i [XSPATK2] Name = X Sp. Atk 2 NamePlural = X Sp. Atk 2s -Pocket = 7 +Pocket = BattleItems Price = 0 BattleUse = OnBattler Flags = Fling_30 @@ -6253,7 +5099,7 @@ Description = It sharply raises the Sp. Atk stat of a Pokémon in battle. It wea [XSPATK3] Name = X Sp. Atk 3 NamePlural = X Sp. Atk 3s -Pocket = 7 +Pocket = BattleItems Price = 0 BattleUse = OnBattler Flags = Fling_30 @@ -6262,7 +5108,7 @@ Description = It drastically raises the Sp. Atk stat of a Pokémon in battle. It [XSPATK6] Name = X Sp. Atk 6 NamePlural = X Sp. Atk 6s -Pocket = 7 +Pocket = BattleItems Price = 0 BattleUse = OnBattler Flags = Fling_30 @@ -6271,7 +5117,7 @@ Description = It raises the Sp. Atk stat of a Pokémon in battle immensely. It w [XSPDEF] Name = X Sp. Def NamePlural = X Sp. Defs -Pocket = 7 +Pocket = BattleItems Price = 2000 BattleUse = OnBattler Flags = Fling_30 @@ -6280,7 +5126,7 @@ Description = An item that sharply boosts the Sp. Def stat of a Pokémon while i [XSPDEF2] Name = X Sp. Def 2 NamePlural = X Sp. Def 2s -Pocket = 7 +Pocket = BattleItems Price = 0 BattleUse = OnBattler Flags = Fling_30 @@ -6289,7 +5135,7 @@ Description = It sharply raises the Sp. Def stat of a Pokémon in battle. It wea [XSPDEF3] Name = X Sp. Def 3 NamePlural = X Sp. Def 3s -Pocket = 7 +Pocket = BattleItems Price = 0 BattleUse = OnBattler Flags = Fling_30 @@ -6298,7 +5144,7 @@ Description = It drastically raises the Sp. Def stat of a Pokémon in battle. It [XSPDEF6] Name = X Sp. Def 6 NamePlural = X Sp. Def 6s -Pocket = 7 +Pocket = BattleItems Price = 0 BattleUse = OnBattler Flags = Fling_30 @@ -6307,7 +5153,7 @@ Description = It raises the Sp. Def stat of a Pokémon in battle immensely. It w [XSPEED] Name = X Speed NamePlural = X Speeds -Pocket = 7 +Pocket = BattleItems Price = 1000 BattleUse = OnBattler Flags = Fling_30 @@ -6316,7 +5162,7 @@ Description = An item that sharply boosts the Speed stat of a Pokémon while it [XSPEED2] Name = X Speed 2 NamePlural = X Speed 2s -Pocket = 7 +Pocket = BattleItems Price = 0 BattleUse = OnBattler Flags = Fling_30 @@ -6325,7 +5171,7 @@ Description = It sharply raises the Speed stat of a Pokémon in battle. It wears [XSPEED3] Name = X Speed 3 NamePlural = X Speed 3s -Pocket = 7 +Pocket = BattleItems Price = 0 BattleUse = OnBattler Flags = Fling_30 @@ -6334,7 +5180,7 @@ Description = It drastically raises the Speed stat of a Pokémon in battle. It w [XSPEED6] Name = X Speed 6 NamePlural = X Speed 6s -Pocket = 7 +Pocket = BattleItems Price = 0 BattleUse = OnBattler Flags = Fling_30 @@ -6343,7 +5189,7 @@ Description = It raises the Speed stat of a Pokémon in battle immensely. It wea [XACCURACY] Name = X Accuracy NamePlural = X Accuracies -Pocket = 7 +Pocket = BattleItems Price = 1000 BattleUse = OnBattler Flags = Fling_30 @@ -6352,7 +5198,7 @@ Description = An item that sharply boosts the accuracy of a Pokémon while it re [XACCURACY2] Name = X Accuracy 2 NamePlural = X Accuracy 2s -Pocket = 7 +Pocket = BattleItems Price = 0 BattleUse = OnBattler Flags = Fling_30 @@ -6361,7 +5207,7 @@ Description = It sharply raises the accuracy of a Pokémon in battle. It wears o [XACCURACY3] Name = X Accuracy 3 NamePlural = X Accuracy 3s -Pocket = 7 +Pocket = BattleItems Price = 0 BattleUse = OnBattler Flags = Fling_30 @@ -6370,7 +5216,7 @@ Description = It drastically raises the accuracy of a Pokémon in battle. It wea [XACCURACY6] Name = X Accuracy 6 NamePlural = X Accuracy 6s -Pocket = 7 +Pocket = BattleItems Price = 0 BattleUse = OnBattler Flags = Fling_30 @@ -6381,7 +5227,7 @@ Name = Max Mushrooms NamePlural = Max Mushrooms PortionName = cluster of Max Mushrooms PortionNamePlural = clusters of Max Mushrooms -Pocket = 7 +Pocket = BattleItems Price = 8000 BattleUse = OnBattler Flags = Fling_30 @@ -6390,7 +5236,7 @@ Description = Mushrooms that boost all stats of a Pokémon during battle. [DIREHIT] Name = Dire Hit NamePlural = Dire Hits -Pocket = 7 +Pocket = BattleItems Price = 1000 BattleUse = OnBattler Flags = Fling_30 @@ -6399,7 +5245,7 @@ Description = An item that raises the critical-hit ratio greatly. It wears off i [DIREHIT2] Name = Dire Hit 2 NamePlural = Dire Hit 2s -Pocket = 7 +Pocket = BattleItems Price = 0 BattleUse = OnBattler Flags = Fling_30 @@ -6408,7 +5254,7 @@ Description = It sharply raises the critical-hit ratio. It wears off if the Pok [DIREHIT3] Name = Dire Hit 3 NamePlural = Dire Hit 3s -Pocket = 7 +Pocket = BattleItems Price = 0 BattleUse = OnBattler Flags = Fling_30 @@ -6417,7 +5263,7 @@ Description = It greatly raises the critical-hit ratio. It wears off if the Pok [GUARDSPEC] Name = Guard Spec. NamePlural = Guard Specs. -Pocket = 7 +Pocket = BattleItems Price = 1500 BattleUse = Direct Flags = Fling_30 @@ -6426,7 +5272,7 @@ Description = An item that prevents stat reduction among the Trainer's party Pok [RESETURGE] Name = Reset Urge NamePlural = Reset Urges -Pocket = 7 +Pocket = BattleItems Price = 0 Flags = Fling_30 Description = When used, it restores any stat changes of an ally Pokémon. @@ -6434,7 +5280,7 @@ Description = When used, it restores any stat changes of an ally Pokémon. [ABILITYURGE] Name = Ability Urge NamePlural = Ability Urges -Pocket = 7 +Pocket = BattleItems Price = 0 Flags = Fling_30 Description = When used, it activates the Ability of an ally Pokémon. @@ -6442,7 +5288,7 @@ Description = When used, it activates the Ability of an ally Pokémon. [ITEMURGE] Name = Item Urge NamePlural = Item Urges -Pocket = 7 +Pocket = BattleItems Price = 0 Flags = Fling_30 Description = When used, it causes an ally Pokémon to use its held item. @@ -6450,7 +5296,7 @@ Description = When used, it causes an ally Pokémon to use its held item. [ITEMDROP] Name = Item Drop NamePlural = Item Drops -Pocket = 7 +Pocket = BattleItems Price = 0 Flags = Fling_30 Description = When used, it causes an ally Pokémon to drop a held item. @@ -6458,7 +5304,7 @@ Description = When used, it causes an ally Pokémon to drop a held item. [BLUEFLUTE] Name = Blue Flute NamePlural = Blue Flutes -Pocket = 7 +Pocket = BattleItems Price = 20 FieldUse = OnPokemon BattleUse = OnPokemon @@ -6469,7 +5315,7 @@ Description = A blue flute made from blown glass. Its melody awakens a single Po [YELLOWFLUTE] Name = Yellow Flute NamePlural = Yellow Flutes -Pocket = 7 +Pocket = BattleItems Price = 20 BattleUse = OnBattler Flags = Fling_30 @@ -6479,7 +5325,7 @@ Description = A yellow flute made from blown glass. Its melody snaps a single Po [REDFLUTE] Name = Red Flute NamePlural = Red Flutes -Pocket = 7 +Pocket = BattleItems Price = 20 BattleUse = OnBattler Flags = Fling_30 @@ -6489,7 +5335,7 @@ Description = A red flute made from blown glass. Its melody snaps a single Poké [POKEDOLL] Name = Poké Doll NamePlural = Poké Dolls -Pocket = 7 +Pocket = BattleItems Price = 300 BattleUse = Direct Flags = Fling_30 @@ -6498,7 +5344,7 @@ Description = A doll that attracts Pokémon. Use it to flee from any battle with [FLUFFYTAIL] Name = Fluffy Tail NamePlural = Fluffy Tails -Pocket = 7 +Pocket = BattleItems Price = 300 BattleUse = Direct Flags = Fling_30 @@ -6507,16 +5353,1170 @@ Description = An item that attracts Pokémon. Use it to flee from any battle wit [POKETOY] Name = Poké Toy NamePlural = Poké Toys -Pocket = 7 +Pocket = BattleItems Price = 300 BattleUse = Direct Flags = Fling_30 Description = An item that attracts Pokémon. Use it to flee from any battle with a wild Pokémon. #------------------------------- +[TM01] +Name = TM01 +NamePlural = TM01s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_150 +Move = FOCUSPUNCH +Description = The user focuses its mind before launching a punch. This move fails if the user is hit before it is used. +#------------------------------- +[TM02] +Name = TM02 +NamePlural = TM02s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_80 +Move = DRAGONCLAW +Description = The user slashes the target with huge sharp claws. +#------------------------------- +[TM03] +Name = TM03 +NamePlural = TM03s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_60 +Move = WATERPULSE +Description = The user attacks the target with a pulsing blast of water. This may also confuse the target. +#------------------------------- +[TM04] +Name = TM04 +NamePlural = TM04s +Pocket = Machines +Price = 1500 +BPPrice = 48 +FieldUse = TR +Flags = Fling_10 +Move = CALMMIND +Description = The user quietly focuses its mind and calms its spirit to raise its Sp. Atk and Sp. Def stats. +#------------------------------- +[TM05] +Name = TM05 +NamePlural = TM05s +Pocket = Machines +Price = 1000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_10 +Move = ROAR +Description = The target is scared off, and a different Pokémon is dragged out. In the wild, this ends the battle. +#------------------------------- +[TM06] +Name = TM06 +NamePlural = TM06s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_10 +Move = TOXIC +Description = A move that leaves the target badly poisoned. Its poison damage worsens every turn. +#------------------------------- +[TM07] +Name = TM07 +NamePlural = TM07s +Pocket = Machines +Price = 2000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_10 +Move = HAIL +Description = The user summons a hailstorm lasting five turns. It damages all Pokémon except Ice types. +#------------------------------- +[TM08] +Name = TM08 +NamePlural = TM08s +Pocket = Machines +Price = 1500 +BPPrice = 48 +FieldUse = TR +Flags = Fling_10 +Move = BULKUP +Description = The user tenses its muscles to bulk up its body, raising both its Attack and Defense stats. +#------------------------------- +[TM09] +Name = TM09 +NamePlural = TM09s +Pocket = Machines +Price = 2000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_25 +Move = BULLETSEED +Description = The user forcefully shoots seeds at the target two to five times in a row. +#------------------------------- +[TM10] +Name = TM10 +NamePlural = TM10s +Pocket = Machines +Price = 1500 +BPPrice = 32 +FieldUse = TR +Flags = Fling_10 +Move = WORKUP +Description = The user is roused, and its Attack and Sp. Atk stats increase. +#------------------------------- +[TM11] +Name = TM11 +NamePlural = TM11s +Pocket = Machines +Price = 2000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_10 +Move = SUNNYDAY +Description = The user intensifies the sun for five turns, powering up Fire-type moves and weakening Water-type moves. +#------------------------------- +[TM12] +Name = TM12 +NamePlural = TM12s +Pocket = Machines +Price = 1500 +BPPrice = 32 +FieldUse = TR +Flags = Fling_10 +Move = TAUNT +Description = The target is taunted into a rage that allows it to use only attack moves for three turns. +#------------------------------- +[TM13] +Name = TM13 +NamePlural = TM13s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_90 +Move = ICEBEAM +Description = The target is struck with an icy-cold beam of energy. This may also leave the target frozen. +#------------------------------- +[TM14] +Name = TM14 +NamePlural = TM14s +Pocket = Machines +Price = 5500 +BPPrice = 32 +FieldUse = TR +Flags = Fling_110 +Move = BLIZZARD +Description = A howling blizzard is summoned to strike opposing Pokémon. This may also leave them frozen. +#------------------------------- +[TM15] +Name = TM15 +NamePlural = TM15s +Pocket = Machines +Price = 7500 +BPPrice = 32 +FieldUse = TR +Flags = Fling_150 +Move = HYPERBEAM +Description = The target is attacked with a powerful beam. The user can't move on the next turn. +#------------------------------- +[TM16] +Name = TM16 +NamePlural = TM16s +Pocket = Machines +Price = 2000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_10 +Move = LIGHTSCREEN +Description = A wondrous wall of light is put up to reduce damage from special attacks for five turns. +#------------------------------- +[TM17] +Name = TM17 +NamePlural = TM17s +Pocket = Machines +Price = 2000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_10 +Move = PROTECT +Description = The user protects itself from all attacks. Its chance of failing rises if it is used in succession. +#------------------------------- +[TM18] +Name = TM18 +NamePlural = TM18s +Pocket = Machines +Price = 2000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_10 +Move = RAINDANCE +Description = The user summons a heavy rain for five turns, powering up Water-type moves and weakening Fire-type ones. +#------------------------------- +[TM19] +Name = TM19 +NamePlural = TM19s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_75 +Move = GIGADRAIN +Description = A nutrient-draining attack. The user's HP is restored by half the damage taken by the target. +#------------------------------- +[TM20] +Name = TM20 +NamePlural = TM20s +Pocket = Machines +Price = 2000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_10 +Move = SAFEGUARD +Description = The user creates a protective field that prevents status conditions for five turns. +#------------------------------- +[TM21] +Name = TM21 +NamePlural = TM21s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_80 +Move = DAZZLINGGLEAM +Description = The user damages opposing Pokémon by emitting a powerful flash. +#------------------------------- +[TM22] +Name = TM22 +NamePlural = TM22s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_120 +Move = SOLARBEAM +Description = In this two-turn attack, the user gathers light, then blasts a bundled beam on the next turn. +#------------------------------- +[TM23] +Name = TM23 +NamePlural = TM23s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_100 +Move = IRONTAIL +Description = The target is slammed with a steel-hard tail. This may also lower the target's Defense stat. +#------------------------------- +[TM24] +Name = TM24 +NamePlural = TM24s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_90 +Move = THUNDERBOLT +Description = A strong electric blast crashes down on the target. This may also leave the target with paralysis. +#------------------------------- +[TM25] +Name = TM25 +NamePlural = TM25s +Pocket = Machines +Price = 5500 +BPPrice = 32 +FieldUse = TR +Flags = Fling_110 +Move = THUNDER +Description = A wicked thunderbolt is dropped on the target to inflict damage. This may also leave them with paralysis. +#------------------------------- +[TM26] +Name = TM26 +NamePlural = TM26s +Pocket = Machines +Price = 3000 +BPPrice = 80 +FieldUse = TR +Flags = Fling_100 +Move = EARTHQUAKE +Description = The user sets off an earthquake that strikes every Pokémon around it. +#------------------------------- +[TM27] +Name = TM27 +NamePlural = TM27s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_65 +Move = LOWSWEEP +Description = The user makes a swift attack on the target's legs, which lowers the target's Speed stat. +#------------------------------- +[TM28] +Name = TM28 +NamePlural = TM28s +Pocket = Machines +Price = 2000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_80 +Move = DIG +Description = The user burrows into the ground, then attacks on the next turn. It can also be used to exit dungeons. +#------------------------------- +[TM29] +Name = TM29 +NamePlural = TM29s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_90 +Move = PSYCHIC +Description = The target is hit by a strong telekinetic force. This may also lower the target's Sp. Def stat. +#------------------------------- +[TM30] +Name = TM30 +NamePlural = TM30s +Pocket = Machines +Price = 3000 +BPPrice = 64 +FieldUse = TR +Flags = Fling_80 +Move = SHADOWBALL +Description = The user hurls a shadowy blob at the target. This may also lower the target's Sp. Def stat. +#------------------------------- +[TM31] +Name = TM31 +NamePlural = TM31s +Pocket = Machines +Price = 3000 +BPPrice = 40 +FieldUse = TR +Flags = Fling_75 +Move = BRICKBREAK +Description = The user attacks with a swift chop. It can also break barriers, such as Light Screen and Reflect. +#------------------------------- +[TM32] +Name = TM32 +NamePlural = TM32s +Pocket = Machines +Price = 1000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_10 +Move = DOUBLETEAM +Description = By moving rapidly, the user makes illusory copies of itself to raise its evasiveness. +#------------------------------- +[TM33] +Name = TM33 +NamePlural = TM33s +Pocket = Machines +Price = 2000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_10 +Move = REFLECT +Description = A wondrous wall of light is put up to reduce damage from physical attacks for five turns. +#------------------------------- +[TM34] +Name = TM34 +NamePlural = TM34s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_60 +Move = SHOCKWAVE +Description = The user strikes the target with a quick jolt of electricity. This attack never misses. +#------------------------------- +[TM35] +Name = TM35 +NamePlural = TM35s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_90 +Move = FLAMETHROWER +Description = The target is scorched with an intense blast of fire. This may also leave the target with a burn. +#------------------------------- +[TM36] +Name = TM36 +NamePlural = TM36s +Pocket = Machines +Price = 3000 +BPPrice = 80 +FieldUse = TR +Flags = Fling_90 +Move = SLUDGEBOMB +Description = Unsanitary sludge is hurled at the target. This may also poison the target. +#------------------------------- +[TM37] +Name = TM37 +NamePlural = TM37s +Pocket = Machines +Price = 2000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_10 +Move = SANDSTORM +Description = A five-turn sandstorm is summoned to hurt all combatants except Rock, Ground, and Steel types. +#------------------------------- +[TM38] +Name = TM38 +NamePlural = TM38s +Pocket = Machines +Price = 5500 +BPPrice = 32 +FieldUse = TR +Flags = Fling_110 +Move = FIREBLAST +Description = The target is attacked with an intense blast of all-consuming fire. This may also leave them with a burn. +#------------------------------- +[TM39] +Name = TM39 +NamePlural = TM39s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_60 +Move = ROCKTOMB +Description = Boulders are hurled at the target. This also lowers the target's Speed stat by preventing its movement. +#------------------------------- +[TM40] +Name = TM40 +NamePlural = TM40s +Pocket = Machines +Price = 3000 +BPPrice = 40 +FieldUse = TR +Flags = Fling_60 +Move = AERIALACE +Description = The user confounds the target with speed, then slashes. This attack never misses. +#------------------------------- +[TM41] +Name = TM41 +NamePlural = TM41s +Pocket = Machines +Price = 1500 +BPPrice = 32 +FieldUse = TR +Flags = Fling_10 +Move = TORMENT +Description = The user torments and enrages the target, making it incapable of using the same move twice in a row. +#------------------------------- +[TM42] +Name = TM42 +NamePlural = TM42s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_70 +Move = FACADE +Description = This attack move doubles its power if the user is poisoned, burned, or paralyzed. +#------------------------------- +[TM43] +Name = TM43 +NamePlural = TM43s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_70 +Move = VOLTSWITCH +Description = After making its attack, the user rushes back to switch places with a party Pokémon in waiting. +#------------------------------- +[TM44] +Name = TM44 +NamePlural = TM44s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_10 +Move = REST +Description = The user goes to sleep for two turns. This fully restores the user's HP and heals any status conditions. +#------------------------------- +[TM45] +Name = TM45 +NamePlural = TM45s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_10 +Move = ATTRACT +Description = If it is the opposite gender of the user, the target becomes infatuated and less likely to attack. +#------------------------------- +[TM46] +Name = TM46 +NamePlural = TM46s +Pocket = Machines +Price = 2000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_60 +Move = THIEF +Description = The user attacks and steals the target's held item simultaneously. +#------------------------------- +[TM47] +Name = TM47 +NamePlural = TM47s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_70 +Move = STEELWING +Description = The target is hit with wings of steel. This may also raise the user's Defense stat. +#------------------------------- +[TM48] +Name = TM48 +NamePlural = TM48s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_10 +Move = SKILLSWAP +Description = The user employs its psychic power to exchange Abilities with the target. +#------------------------------- +[TM49] +Name = TM49 +NamePlural = TM49s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_80 +Move = SCALD +Description = The user shoots boiling hot water at its target. This may also leave the target with a burn. +#------------------------------- +[TM50] +Name = TM50 +NamePlural = TM50s +Pocket = Machines +Price = 5500 +BPPrice = 32 +FieldUse = TR +Flags = Fling_130 +Move = OVERHEAT +Description = The user attacks the target at full power. The attack's recoil harshly lowers the user's Sp. Atk stat. +#------------------------------- +[TM51] +Name = TM51 +NamePlural = TM51s +Pocket = Machines +Price = 2000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_10 +Move = ROOST +Description = The user lands and rests its body. This move restores the user's HP by up to half of its max HP. +#------------------------------- +[TM52] +Name = TM52 +NamePlural = TM52s +Pocket = Machines +Price = 5500 +BPPrice = 32 +FieldUse = TR +Flags = Fling_120 +Move = FOCUSBLAST +Description = The user heightens its mental focus and unleashes its power. This may also lower the target's Sp. Def stat. +#------------------------------- +[TM53] +Name = TM53 +NamePlural = TM53s +Pocket = Machines +Price = 3000 +BPPrice = 64 +FieldUse = TR +Flags = Fling_90 +Move = ENERGYBALL +Description = The user draws power from nature and fires it at the target. This may also lower the target's Sp. Def stat. +#------------------------------- +[TM54] +Name = TM54 +NamePlural = TM54s +Pocket = Machines +Price = 2000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_40 +Move = FALSESWIPE +Description = A restrained attack that prevents the target from fainting. The target is left with at least 1 HP. +#------------------------------- +[TM55] +Name = TM55 +NamePlural = TM55s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_65 +Move = BRINE +Description = If the target's HP is half or less, this attack will hit with double the power. +#------------------------------- +[TM56] +Name = TM56 +NamePlural = TM56s +Pocket = Machines +Price = 2000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_10 +Move = FLING +Description = The user flings its held item at the target to attack. This move's power and effects depend on the item. +#------------------------------- +[TM57] +Name = TM57 +NamePlural = TM57s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_50 +Move = CHARGEBEAM +Description = The user attacks the target with an electric charge. The user may use any remaining charge to raise its Sp. Atk. +#------------------------------- +[TM58] +Name = TM58 +NamePlural = TM58s +Pocket = Machines +Price = 2000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_10 +Move = ENDURE +Description = The user endures any attack with at least 1 HP. Its chance of failing rises if it is used in succession. +#------------------------------- +[TM59] +Name = TM59 +NamePlural = TM59s +Pocket = Machines +Price = 3000 +BPPrice = 80 +FieldUse = TR +Flags = Fling_85 +Move = DRAGONPULSE +Description = The target is attacked with a shock wave generated by the user's gaping mouth. +#------------------------------- +[TM60] +Name = TM60 +NamePlural = TM60s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_75 +Move = DRAINPUNCH +Description = An energy-draining punch. The user's HP is restored by half the damage taken by the target. +#------------------------------- +[TM61] +Name = TM61 +NamePlural = TM61s +Pocket = Machines +Price = 2000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_10 +Move = WILLOWISP +Description = The user shoots a sinister flame at the target to inflict a burn. +#------------------------------- +[TM62] +Name = TM62 +NamePlural = TM62s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_90 +Move = BUGBUZZ +Description = The user generates a damaging sound wave by vibration. This may also lower the target's Sp. Def stat. +#------------------------------- +[TM63] +Name = TM63 +NamePlural = TM63s +Pocket = Machines +Price = 2000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_10 +Move = NASTYPLOT +Description = The user stimulates its brain by thinking bad thoughts. This sharply raises the user's Sp. Atk stat. +#------------------------------- +[TM64] +Name = TM64 +NamePlural = TM64s +Pocket = Machines +Price = 7500 +BPPrice = 32 +FieldUse = TR +Flags = Fling_250 +Move = EXPLOSION +Description = The user attacks everything around it by causing a tremendous explosion. The user faints upon using this move. +#------------------------------- +[TM65] +Name = TM65 +NamePlural = TM65s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_70 +Move = SHADOWCLAW +Description = The user slashes with a sharp claw made from shadows. Critical hits land more easily. +#------------------------------- +[TM66] +Name = TM66 +NamePlural = TM66s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_50 +Move = PAYBACK +Description = The user stores power, then attacks. If the user moves after the target, this attack's power will be doubled. +#------------------------------- +[TM67] +Name = TM67 +NamePlural = TM67s +Pocket = Machines +Price = 1000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_10 +Move = RECYCLE +Description = The user recycles a held item that has been used in battle so it can be used again. +#------------------------------- +[TM68] +Name = TM68 +NamePlural = TM68s +Pocket = Machines +Price = 7500 +BPPrice = 32 +FieldUse = TR +Flags = Fling_150 +Move = GIGAIMPACT +Description = The user charges at the target using every bit of its power. The user can't move on the next turn. +#------------------------------- +[TM69] +Name = TM69 +NamePlural = TM69s +Pocket = Machines +Price = 1500 +BPPrice = 32 +FieldUse = TR +Flags = Fling_10 +Move = ROCKPOLISH +Description = The user polishes its body to reduce drag. This sharply raises the Speed stat. +#------------------------------- +[TM70] +Name = TM70 +NamePlural = TM70s +Pocket = Machines +Price = 1000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_10 +Move = FLASH +Description = The user flashes a light that lowers the target's accuracy. It can also be used to illuminate caves. +#------------------------------- +[TM71] +Name = TM71 +NamePlural = TM71s +Pocket = Machines +Price = 3000 +BPPrice = 80 +FieldUse = TR +Flags = Fling_100 +Move = STONEEDGE +Description = The user stabs the target from below with sharpened stones. Critical hits land more easily. +#------------------------------- +[TM72] +Name = TM72 +NamePlural = TM72s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_60 +Move = AVALANCHE +Description = The power of this attack move is doubled if the user has been hurt by the target in the same turn. +#------------------------------- +[TM73] +Name = TM73 +NamePlural = TM73s +Pocket = Machines +Price = 2000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_10 +Move = THUNDERWAVE +Description = The user launches a weak jolt of electricity that paralyzes the target. +#------------------------------- +[TM74] +Name = TM74 +NamePlural = TM74s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_10 +Move = GYROBALL +Description = The user tackles with a high-speed spin. This move is stronger the slower the user is than the target. +#------------------------------- +[TM75] +Name = TM75 +NamePlural = TM75s +Pocket = Machines +Price = 1500 +BPPrice = 32 +FieldUse = TR +Flags = Fling_10 +Move = SWORDSDANCE +Description = A frenetic dance to uplift the fighting spirit. This sharply raises the user's Attack stat. +#------------------------------- +[TM76] +Name = TM76 +NamePlural = TM76s +Pocket = Machines +Price = 2000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_10 +Move = STEALTHROCK +Description = The user lays a trap of levitating stones around the opposing team that hurt Pokémon that switch in. +#------------------------------- +[TM77] +Name = TM77 +NamePlural = TM77s +Pocket = Machines +Price = 1500 +BPPrice = 32 +FieldUse = TR +Flags = Fling_10 +Move = PSYCHUP +Description = The user hypnotizes itself into copying any stat change made by the target. +#------------------------------- +[TM78] +Name = TM78 +NamePlural = TM78s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_55 +Move = SNARL +Description = The user yells as if it's ranting about something, which lowers the Sp. Atk stats of opposing Pokémon. +#------------------------------- +[TM79] +Name = TM79 +NamePlural = TM79s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_80 +Move = DARKPULSE +Description = The user releases a horrible aura imbued with dark thoughts. This may also make the target flinch. +#------------------------------- +[TM80] +Name = TM80 +NamePlural = TM80s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_75 +Move = ROCKSLIDE +Description = Large boulders are hurled at opposing Pokémon to inflict damage. This may also make them flinch. +#------------------------------- +[TM81] +Name = TM81 +NamePlural = TM81s +Pocket = Machines +Price = 3000 +BPPrice = 64 +FieldUse = TR +Flags = Fling_80 +Move = XSCISSOR +Description = The user slashes at the target by crossing its scythes or claws as if they were a pair of scissors. +#------------------------------- +[TM82] +Name = TM82 +NamePlural = TM82s +Pocket = Machines +Price = 1000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_10 +Move = SLEEPTALK +Description = While it is asleep, the user randomly uses one of the moves it knows. +#------------------------------- +[TM83] +Name = TM83 +NamePlural = TM83s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_60 +Move = BULLDOZE +Description = The user strikes everything around it by stomping down on the ground. This lowers the Speed of those hit. +#------------------------------- +[TM84] +Name = TM84 +NamePlural = TM84s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_80 +Move = POISONJAB +Description = The target is stabbed with a tentacle, arm, or the like steeped in poison. This may also poison them. +#------------------------------- +[TM85] +Name = TM85 +NamePlural = TM85s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_100 +Move = DREAMEATER +Description = The user eats the dreams of a sleeping target. The user's HP is restored by half the damage dealt. +#------------------------------- +[TM86] +Name = TM86 +NamePlural = TM86s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_10 +Move = GRASSKNOT +Description = The user snares the target with grass and trips it. The heavier the target, the strong the move is. +#------------------------------- +[TM87] +Name = TM87 +NamePlural = TM87s +Pocket = Machines +Price = 1500 +BPPrice = 32 +FieldUse = TR +Flags = Fling_10 +Move = SWAGGER +Description = The user enrages and confuses the target. However, this also sharply raises the target's Attack stat. +#------------------------------- +[TM88] +Name = TM88 +NamePlural = TM88s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_60 +Move = PLUCK +Description = The user pecks the target. If the target is holding a Berry, the user eats it and gains its effect. +#------------------------------- +[TM89] +Name = TM89 +NamePlural = TM89s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_70 +Move = UTURN +Description = After making its attack, the user rushes back to switch places with a party Pokémon in waiting. +#------------------------------- +[TM90] +Name = TM90 +NamePlural = TM90s +Pocket = Machines +Price = 2000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_10 +Move = SUBSTITUTE +Description = The user creates a substitute for itself using some of its HP. The substitute serves as a decoy. +#------------------------------- +[TM91] +Name = TM91 +NamePlural = TM91s +Pocket = Machines +Price = 3000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_80 +Move = FLASHCANNON +Description = The user gathers all its light energy and releases it all at once. This may also lower the target's Sp. Def stat. +#------------------------------- +[TM92] +Name = TM92 +NamePlural = TM92s +Pocket = Machines +Price = 5500 +BPPrice = 32 +FieldUse = TR +Flags = Fling_10 +Move = TRICKROOM +Description = The user creates a bizarre area in which slower Pokémon get to move first for five turns. +#------------------------------- +[TM93] +Name = TM93 +NamePlural = TM93s +Pocket = Machines +Price = 2000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_50 +Move = CUT +Description = The target is cut with a scythe or claw. +#------------------------------- +[TM94] +Name = TM94 +NamePlural = TM94s +Pocket = Machines +Price = 2000 +BPPrice = 40 +FieldUse = TR +Flags = Fling_90 +Move = FLY +Description = The user flies up into the sky and then strikes its target on the next turn. +#------------------------------- +[TM95] +Name = TM95 +NamePlural = TM95s +Pocket = Machines +Price = 2500 +BPPrice = 64 +FieldUse = TR +Flags = Fling_90 +Move = SURF +Description = The user attacks everything around it by swamping its surroundings with a giant wave. +#------------------------------- +[TM96] +Name = TM96 +NamePlural = TM96s +Pocket = Machines +Price = 2000 +BPPrice = 40 +FieldUse = TR +Flags = Fling_80 +Move = STRENGTH +Description = The target is slugged with a punch thrown at maximum power. +#------------------------------- +[TM97] +Name = TM97 +NamePlural = TM97s +Pocket = Machines +Price = 2000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_10 +Move = DEFOG +Description = A strong wind blows away the target's barriers, such as Reflect, and lowers their evasiveness. +#------------------------------- +[TM98] +Name = TM98 +NamePlural = TM98s +Pocket = Machines +Price = 2000 +BPPrice = 40 +FieldUse = TR +Flags = Fling_40 +Move = ROCKSMASH +Description = The user attacks with a punch that may lower the target's Defense stat. +#------------------------------- +[TM99] +Name = TM99 +NamePlural = TM99s +Pocket = Machines +Price = 2500 +BPPrice = 64 +FieldUse = TR +Flags = Fling_80 +Move = WATERFALL +Description = The user charges at the target and may make it flinch. +#------------------------------- +[TM100] +Name = TM100 +NamePlural = TM100s +Pocket = Machines +Price = 2000 +BPPrice = 32 +FieldUse = TR +Flags = Fling_90 +Move = ROCKCLIMB +Description = A charging attack that may also leave the foe confused. +#------------------------------- +[HM01] +Name = HM01 +NamePlural = HM01s +Pocket = Machines +Price = 0 +FieldUse = HM +Move = CUT +Description = The target is cut with a scythe or claw. This can also be used to cut down thin trees. +#------------------------------- +[HM02] +Name = HM02 +NamePlural = HM02s +Pocket = Machines +Price = 0 +FieldUse = HM +Move = FLY +Description = The user soars and then strikes on the next turn. This can also be used to fly to any familiar town. +#------------------------------- +[HM03] +Name = HM03 +NamePlural = HM03s +Pocket = Machines +Price = 0 +FieldUse = HM +Move = SURF +Description = Attacks everything by swamping the surroundings with a giant wave. This can also be used to cross water. +#------------------------------- +[HM04] +Name = HM04 +NamePlural = HM04s +Pocket = Machines +Price = 0 +FieldUse = HM +Move = STRENGTH +Description = The target is slugged with a punch thrown at maximum power. This can also be used to move heavy boulders. +#------------------------------- +[HM05] +Name = HM05 +NamePlural = HM05s +Pocket = Machines +Price = 0 +FieldUse = HM +Move = WATERFALL +Description = The user charges at the target and may make it flinch. It can also be used to climb a waterfall. +#------------------------------- +[HM06] +Name = HM06 +NamePlural = HM06s +Pocket = Machines +Price = 0 +FieldUse = HM +Move = DIVE +Description = Diving on the first turn, the user floats up and attacks on the second. It can be used to dive underwater. +#------------------------------- [BICYCLE] Name = Bicycle NamePlural = Bicycles -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = Direct Flags = KeyItem @@ -6525,7 +6525,7 @@ Description = A folding Bicycle that enables much faster movement than the Runni [OLDROD] Name = Old Rod NamePlural = Old Rods -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = Direct Flags = KeyItem @@ -6534,7 +6534,7 @@ Description = An old and beat-up fishing rod. Use it by any body of water to fis [GOODROD] Name = Good Rod NamePlural = Good Rods -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = Direct Flags = KeyItem @@ -6543,7 +6543,7 @@ Description = A new, good-quality fishing rod. Use it by any body of water to fi [SUPERROD] Name = Super Rod NamePlural = Super Rods -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = Direct Flags = KeyItem @@ -6552,7 +6552,7 @@ Description = An awesome, high-tech fishing rod. Use it by any body of water to [ITEMFINDER] Name = Itemfinder NamePlural = Itemfinders -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = Direct Flags = KeyItem @@ -6561,7 +6561,7 @@ Description = A device used for finding items. If there is a hidden item nearby [DOWSINGMACHINE] Name = Dowsing Machine NamePlural = Dowsing Machines -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = Direct Flags = KeyItem @@ -6570,7 +6570,7 @@ Description = It checks for unseen items in the area and makes noise and lights [POKERADAR] Name = Poké Radar NamePlural = Poké Radars -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = Direct Flags = KeyItem @@ -6579,7 +6579,7 @@ Description = A tool that can search out Pokémon that are hiding in grass. Its [TOWNMAP] Name = Town Map NamePlural = Town Maps -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = Direct Flags = KeyItem @@ -6588,7 +6588,7 @@ Description = A very convenient map that can be viewed anytime. It even shows yo [ESCAPEROPE] Name = Escape Rope NamePlural = Escape Ropes -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = Direct Flags = KeyItem @@ -6597,7 +6597,7 @@ Description = A long, durable rope. Use it to escape instantly from a cave or a [COINCASE] Name = Coin Case NamePlural = Coin Cases -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = Direct Flags = KeyItem @@ -6606,7 +6606,7 @@ Description = A case for holding coins obtained at the Game Corner. It holds up [POKEFLUTE] Name = Poké Flute NamePlural = Poké Flutes -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = OnPokemon BattleUse = Direct @@ -6616,7 +6616,7 @@ Description = A flute that is said to instantly awaken any Pokémon. It has a lo [SOOTSACK] Name = Soot Sack NamePlural = Soot Sacks -Pocket = 8 +Pocket = KeyItems Price = 0 Flags = KeyItem Description = A sack used to gather and hold volcanic ash. @@ -6624,7 +6624,7 @@ Description = A sack used to gather and hold volcanic ash. [SILPHSCOPE] Name = Silph Scope NamePlural = Silph Scopes -Pocket = 8 +Pocket = KeyItems Price = 0 Flags = KeyItem Description = A scope that makes unseeable Pokémon visible. It is made by Silph Co. @@ -6632,7 +6632,7 @@ Description = A scope that makes unseeable Pokémon visible. It is made by Silph [DEVONSCOPE] Name = Devon Scope NamePlural = Devon Scopes -Pocket = 8 +Pocket = KeyItems Price = 0 Flags = KeyItem Description = A device by Devon that signals any unseeable Pokémon. @@ -6640,7 +6640,7 @@ Description = A device by Devon that signals any unseeable Pokémon. [SQUIRTBOTTLE] Name = Squirt Bottle NamePlural = Squirt Bottles -Pocket = 8 +Pocket = KeyItems Price = 0 Flags = KeyItem Description = A watering can shaped like a Squirtle. It helps promote healthy growth of Berries planted in soft soil. @@ -6648,7 +6648,7 @@ Description = A watering can shaped like a Squirtle. It helps promote healthy gr [SPRAYDUCK] Name = Sprayduck NamePlural = Sprayducks -Pocket = 8 +Pocket = KeyItems Price = 0 Flags = KeyItem Description = A watering can shaped like a Psyduck. It helps promote healthy growth of Berries planted in soft soil. @@ -6656,7 +6656,7 @@ Description = A watering can shaped like a Psyduck. It helps promote healthy gro [WAILMERPAIL] Name = Wailmer Pail NamePlural = Wailmer Pails -Pocket = 8 +Pocket = KeyItems Price = 0 Flags = KeyItem Description = A nifty watering pail. Use it to promote strong growth in Berries planted in soft soil. @@ -6664,7 +6664,7 @@ Description = A nifty watering pail. Use it to promote strong growth in Berries [SPRINKLOTAD] Name = Sprinklotad NamePlural = Sprinklotads -Pocket = 8 +Pocket = KeyItems Price = 0 Flags = KeyItem Description = A watering can shaped like a Lotad. It helps promote the healthy growth of any Berries planted in soft soil. @@ -6672,7 +6672,7 @@ Description = A watering can shaped like a Lotad. It helps promote the healthy g [GRACIDEA] Name = Gracidea NamePlural = Gracideas -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = OnPokemon Flags = KeyItem @@ -6681,7 +6681,7 @@ Description = A flower sometimes bundled in bouquets to convey gratitude on spec [REVEALGLASS] Name = Reveal Glass NamePlural = Reveal Glasses -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = OnPokemon Flags = KeyItem @@ -6690,7 +6690,7 @@ Description = A glass that reveals the truth. It is a mysterious glass that retu [PRISONBOTTLE] Name = Prison Bottle NamePlural = Prison Bottles -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = OnPokemon Flags = KeyItem @@ -6699,7 +6699,7 @@ Description = A bottle believed to have been used to seal away the power of a ce [ROTOMCATALOG] Name = Rotom Catalog NamePlural = Rotom Catalogs -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = OnPokemon Flags = KeyItem @@ -6708,7 +6708,7 @@ Description = A catalog of devices that Rotom like. Use the catalog to have Roto [ZYGARDECUBE] Name = Zygarde Cube NamePlural = Zygarde Cubes -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = OnPokemon Flags = KeyItem @@ -6717,7 +6717,7 @@ Description = An item in which Zygarde Cores and Cells are gathered. You can als [DNASPLICERS] Name = DNA Splicers NamePlural = DNA Splicers -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = OnPokemon Flags = KeyItem @@ -6726,7 +6726,7 @@ Description = A splicer that fuses Kyurem and a certain Pokémon. They are said [DNASPLICERSUSED] Name = DNA Splicers NamePlural = DNA Splicers -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = OnPokemon Flags = KeyItem @@ -6735,7 +6735,7 @@ Description = A splicer that separates Kyurem and a certain Pokémon when they h [NSOLARIZER] Name = N-Solarizer NamePlural = N-Solarizers -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = OnPokemon Flags = KeyItem @@ -6744,7 +6744,7 @@ Description = A machine to fuse Necrozma, which needs light, and Solgaleo. [NSOLARIZERUSED] Name = N-Solarizer NamePlural = N-Solarizers -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = OnPokemon Flags = KeyItem @@ -6753,7 +6753,7 @@ Description = A machine to separate Necrozma, which needed light, from Solgaleo. [NLUNARIZER] Name = N-Lunarizer NamePlural = N-Lunarizers -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = OnPokemon Flags = KeyItem @@ -6762,7 +6762,7 @@ Description = A machine to fuse Necrozma, which needs light, and Lunala. [NLUNARIZERUSED] Name = N-Lunarizer NamePlural = N-Lunarizers -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = OnPokemon Flags = KeyItem @@ -6773,7 +6773,7 @@ Name = Reins of Unity NamePlural = Reins of Unity PortionName = set of Reins of Unity PortionNamePlural = sets of Reins of Unity -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = OnPokemon Flags = KeyItem @@ -6784,7 +6784,7 @@ Name = Reins of Unity NamePlural = Reins of Unity PortionName = set of Reins of Unity PortionNamePlural = sets of Reins of Unity -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = OnPokemon Flags = KeyItem @@ -6793,7 +6793,7 @@ Description = Reins that people presented to the king. They separate Calyrex and [METEORITE] Name = Meteorite NamePlural = Meteorites -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = OnPokemon Flags = KeyItem @@ -6802,7 +6802,7 @@ Description = A slightly warm rock that fell to earth from space. It allows a ce [SCROLLOFDARKNESS] Name = Scroll of Darkness NamePlural = Scrolls of Darkness -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = OnPokemon Flags = KeyItem @@ -6811,7 +6811,7 @@ Description = A scroll containing the true secrets of the path of darkness. It c [SCROLLOFWATERS] Name = Scroll of Waters NamePlural = Scrolls of Waters -Pocket = 8 +Pocket = KeyItems Price = 0 FieldUse = OnPokemon Flags = KeyItem @@ -6820,7 +6820,7 @@ Description = A scroll containing the true secrets of the path of water. It can [OVALCHARM] Name = Oval Charm NamePlural = Oval Charms -Pocket = 8 +Pocket = KeyItems Price = 0 Flags = KeyItem Description = An oval charm said to increase the chance of Eggs being found at the Day Care. @@ -6828,7 +6828,7 @@ Description = An oval charm said to increase the chance of Eggs being found at t [SHINYCHARM] Name = Shiny Charm NamePlural = Shiny Charms -Pocket = 8 +Pocket = KeyItems Price = 0 Flags = KeyItem Description = A shiny charm said to increase the chance of finding a Shiny Pokémon. @@ -6836,7 +6836,7 @@ Description = A shiny charm said to increase the chance of finding a Shiny Poké [CATCHINGCHARM] Name = Catching Charm NamePlural = Catching Charms -Pocket = 8 +Pocket = KeyItems Price = 0 Flags = KeyItem Description = A charm said to increase the chance of getting a critical catch. The charm doesn't shake much. @@ -6844,7 +6844,7 @@ Description = A charm said to increase the chance of getting a critical catch. T [EXPCHARM] Name = Exp. Charm NamePlural = Exp. Charms -Pocket = 8 +Pocket = KeyItems Price = 0 Flags = KeyItem Description = A charm that increases the Exp. Points that Pokémon can get. A machine-like object is inside it. @@ -6852,7 +6852,7 @@ Description = A charm that increases the Exp. Points that Pokémon can get. A ma [MEGARING] Name = Mega Ring NamePlural = Mega Rings -Pocket = 8 +Pocket = KeyItems Price = 0 Flags = KeyItem,MegaRing Description = This ring contains an untold power that somehow enables Pokémon carrying Mega Stones to Mega Evolve. @@ -6860,7 +6860,7 @@ Description = This ring contains an untold power that somehow enables Pokémon c [POKEMONBOXLINK] Name = Pokémon Box Link NamePlural = Pokémon Box Links -Pocket = 8 +Pocket = KeyItems Price = 0 Flags = KeyItem Description = A device that allows you to access the Pokémon storage system. There are some places where it won't work. @@ -6868,7 +6868,7 @@ Description = A device that allows you to access the Pokémon storage system. Th [AURORATICKET] Name = Aurora Ticket NamePlural = Aurora Tickets -Pocket = 8 +Pocket = KeyItems Price = 0 Flags = KeyItem Description = A ticket required to board the ship to Berth Island. It glows beautifully. @@ -6876,7 +6876,7 @@ Description = A ticket required to board the ship to Berth Island. It glows beau [OLDSEAMAP] Name = Old Sea Map NamePlural = Old Sea Maps -Pocket = 8 +Pocket = KeyItems Price = 0 Flags = KeyItem -Description = A faded sea chart that shows the way to a certain island. +Description = A faded sea chart that shows the way to a certain island. \ No newline at end of file