diff --git a/Data/Scripts/010_Data/002_PBS data/006_Item.rb b/Data/Scripts/010_Data/002_PBS data/006_Item.rb index a077c8bdd..6ccc702c6 100644 --- a/Data/Scripts/010_Data/002_PBS data/006_Item.rb +++ b/Data/Scripts/010_Data/002_PBS data/006_Item.rb @@ -6,6 +6,7 @@ module GameData attr_reader :pocket attr_reader :price attr_reader :sell_price + attr_reader :bp_price attr_reader :field_use attr_reader :battle_use attr_reader :flags @@ -25,6 +26,7 @@ module GameData "Pocket" => [:pocket, "v"], "Price" => [:price, "u"], "SellPrice" => [:sell_price, "u"], + "BPPrice" => [:bp_price, "u"], "FieldUse" => [:field_use, "e", { "OnPokemon" => 1, "Direct" => 2, "TM" => 3, "HM" => 4, "TR" => 5 }], "BattleUse" => [:battle_use, "e", { "OnPokemon" => 1, "OnMove" => 2, "OnBattler" => 3, @@ -50,6 +52,7 @@ module GameData ["Pocket", PocketProperty, _INTL("Pocket in the Bag where this item is stored.")], ["Price", LimitProperty.new(Settings::MAX_MONEY), _INTL("Purchase price of this item.")], ["SellPrice", LimitProperty2.new(Settings::MAX_MONEY), _INTL("Sell price of this item. If blank, is half the purchase price.")], + ["BPPrice", LimitProperty.new(Settings::MAX_BATTLE_POINTS), _INTL("Purchase price of this item in Battle Points (BP).")], ["FieldUse", EnumProperty.new(field_use_array), _INTL("How this item can be used outside of battle.")], ["BattleUse", EnumProperty.new(battle_use_array), _INTL("How this item can be used within a battle.")], ["Flags", StringListProperty, _INTL("Words/phrases that can be used to group certain kinds of items.")], @@ -111,6 +114,7 @@ module GameData @pocket = hash[:pocket] || 1 @price = hash[:price] || 0 @sell_price = hash[:sell_price] || (@price / 2) + @bp_price = hash[:bp_price] || 1 @field_use = hash[:field_use] || 0 @battle_use = hash[:battle_use] || 0 @flags = hash[:flags] || [] @@ -163,7 +167,7 @@ module GameData return false end - def can_hold?; return !is_important?; end + def can_hold?; return !is_important?; end def consumed_after_use? return !is_important? && @consumable @@ -224,6 +228,8 @@ module GameData case key when "SellPrice" ret = nil if ret == @price / 2 + when "BPPrice" + ret = nil if ret == 1 when "FieldUse", "BattleUse" ret = nil if ret == 0 when "Consumable" diff --git a/Data/Scripts/016_UI/021_BattlePointShop.rb b/Data/Scripts/016_UI/021_BattlePointShop.rb new file mode 100644 index 000000000..1cf793bab --- /dev/null +++ b/Data/Scripts/016_UI/021_BattlePointShop.rb @@ -0,0 +1,522 @@ +#=============================================================================== +# Abstraction layer for Pokemon Essentials +#=============================================================================== +class BattlePointShopAdapter + def getBP + return $player.battle_points + end + + def getBPString + return _INTL("{1} BP", $player.battle_points.to_s_formatted) + end + + def setBP(value) + $player.battle_points = value + end + + def getInventory + return $bag + end + + def getName(item) + return GameData::Item.get(item).name + end + + def getNamePlural(item) + return GameData::Item.get(item).name_plural + end + + def getDisplayName(item) + item_name = getName(item) + if GameData::Item.get(item).is_machine? + machine = GameData::Item.get(item).move + item_name = _INTL("{1} {2}", item_name, GameData::Move.get(machine).name) + end + return item_name + end + + def getDisplayNamePlural(item) + item_name_plural = getNamePlural(item) + if GameData::Item.get(item).is_machine? + machine = GameData::Item.get(item).move + item_name_plural = _INTL("{1} {2}", item_name_plural, GameData::Move.get(machine).name) + end + return item_name_plural + end + + def getDescription(item) + return GameData::Item.get(item).description + end + + def getItemIcon(item) + return (item) ? GameData::Item.icon_filename(item) : nil + end + + # Unused + def getItemIconRect(_item) + return Rect.new(0, 0, 48, 48) + end + + def getQuantity(item) + return $bag.quantity(item) + end + + def showQuantity?(item) + return !GameData::Item.get(item).is_important? + end + + def getPrice(item) + if $game_temp.mart_prices && $game_temp.mart_prices[item] + if $game_temp.mart_prices[item][0] > 0 + return $game_temp.mart_prices[item][0] + end + end + return GameData::Item.get(item).bp_price + end + + def getDisplayPrice(item, selling = false) + price = getPrice(item).to_s_formatted + return _INTL("{1} BP", price) + end + + def addItem(item) + return $bag.add(item) + end + + def removeItem(item) + return $bag.remove(item) + end +end + +#=============================================================================== +# Battle Point Shop +#=============================================================================== +class Window_BattlePointShop < Window_DrawableCommand + def initialize(stock, adapter, x, y, width, height, viewport = nil) + @stock = stock + @adapter = adapter + super(x, y, width, height, viewport) + @selarrow = AnimatedBitmap.new("Graphics/Pictures/martSel") + @baseColor = Color.new(88, 88, 80) + @shadowColor = Color.new(168, 184, 184) + self.windowskin = nil + end + + def itemCount + return @stock.length + 1 + end + + def item + return (self.index >= @stock.length) ? nil : @stock[self.index] + end + + def drawItem(index, count, rect) + textpos = [] + rect = drawCursor(index, rect) + ypos = rect.y + if index == count - 1 + textpos.push([_INTL("CANCEL"), rect.x, ypos + 2, false, self.baseColor, self.shadowColor]) + else + item = @stock[index] + itemname = @adapter.getDisplayName(item) + qty = @adapter.getDisplayPrice(item) + sizeQty = self.contents.text_size(qty).width + xQty = rect.x + rect.width - sizeQty - 2 - 16 + textpos.push([itemname, rect.x, ypos + 2, false, self.baseColor, self.shadowColor]) + textpos.push([qty, xQty, ypos + 2, false, self.baseColor, self.shadowColor]) + end + pbDrawTextPositions(self.contents, textpos) + end +end + +#=============================================================================== +# +#=============================================================================== +class BattlePointShop_Scene + def update + pbUpdateSpriteHash(@sprites) + @subscene&.pbUpdate + end + + def pbRefresh + if @subscene + @subscene.pbRefresh + else + itemwindow = @sprites["itemwindow"] + @sprites["icon"].item = itemwindow.item + @sprites["itemtextwindow"].text = + (itemwindow.item) ? @adapter.getDescription(itemwindow.item) : _INTL("Quit shopping.") + @sprites["qtywindow"].visible = !itemwindow.item.nil? + @sprites["qtywindow"].text = _INTL("In Bag:{1}", @adapter.getQuantity(itemwindow.item)) + @sprites["qtywindow"].y = Graphics.height - 102 - @sprites["qtywindow"].height + itemwindow.refresh + end + @sprites["battlepointwindow"].text = _INTL("Battle Points:\r\n{1}", @adapter.getBPString) + end + + def pbStartScene(stock, adapter) + # Scroll right before showing screen + pbScrollMap(6, 5, 5) + @viewport = Viewport.new(0, 0, Graphics.width, Graphics.height) + @viewport.z = 99999 + @stock = stock + @adapter = adapter + @sprites = {} + @sprites["background"] = IconSprite.new(0, 0, @viewport) + @sprites["background"].setBitmap("Graphics/Pictures/martScreen") + @sprites["icon"] = ItemIconSprite.new(36, Graphics.height - 50, nil, @viewport) + winAdapter = BattlePointShopAdapter.new() + @sprites["itemwindow"] = Window_BattlePointShop.new( + stock, winAdapter, Graphics.width - 316 - 16, 10, 330 + 16, Graphics.height - 124 + ) + @sprites["itemwindow"].viewport = @viewport + @sprites["itemwindow"].index = 0 + @sprites["itemwindow"].refresh + @sprites["itemtextwindow"] = Window_UnformattedTextPokemon.newWithSize( + "", 64, Graphics.height - 96 - 16, Graphics.width - 64, 128, @viewport + ) + pbPrepareWindow(@sprites["itemtextwindow"]) + @sprites["itemtextwindow"].baseColor = Color.new(248, 248, 248) + @sprites["itemtextwindow"].shadowColor = Color.new(0, 0, 0) + @sprites["itemtextwindow"].windowskin = nil + @sprites["helpwindow"] = Window_AdvancedTextPokemon.new("") + pbPrepareWindow(@sprites["helpwindow"]) + @sprites["helpwindow"].visible = false + @sprites["helpwindow"].viewport = @viewport + pbBottomLeftLines(@sprites["helpwindow"], 1) + @sprites["battlepointwindow"] = Window_AdvancedTextPokemon.new("") + pbPrepareWindow(@sprites["battlepointwindow"]) + @sprites["battlepointwindow"].setSkin("Graphics/Windowskins/goldskin") + @sprites["battlepointwindow"].visible = true + @sprites["battlepointwindow"].viewport = @viewport + @sprites["battlepointwindow"].x = 0 + @sprites["battlepointwindow"].y = 0 + @sprites["battlepointwindow"].width = 190 + @sprites["battlepointwindow"].height = 96 + @sprites["battlepointwindow"].baseColor = Color.new(88, 88, 80) + @sprites["battlepointwindow"].shadowColor = Color.new(168, 184, 184) + @sprites["qtywindow"] = Window_AdvancedTextPokemon.new("") + pbPrepareWindow(@sprites["qtywindow"]) + @sprites["qtywindow"].setSkin("Graphics/Windowskins/goldskin") + @sprites["qtywindow"].viewport = @viewport + @sprites["qtywindow"].width = 190 + @sprites["qtywindow"].height = 64 + @sprites["qtywindow"].baseColor = Color.new(88, 88, 80) + @sprites["qtywindow"].shadowColor = Color.new(168, 184, 184) + @sprites["qtywindow"].text = _INTL("In Bag:{1}", @adapter.getQuantity(@sprites["itemwindow"].item)) + @sprites["qtywindow"].y = Graphics.height - 102 - @sprites["qtywindow"].height + pbDeactivateWindows(@sprites) + pbRefresh + Graphics.frame_reset + end + + def pbEndScene + pbDisposeSpriteHash(@sprites) + @viewport.dispose + # Scroll left after showing screen + pbScrollMap(4, 5, 5) + end + + def pbPrepareWindow(window) + window.visible = true + window.letterbyletter = false + end + + def pbShowBattlePoints + pbRefresh + @sprites["battlepointwindow"].visible = true + end + + def pbHideBattlePoints + pbRefresh + @sprites["battlepointwindow"].visible = false + end + + def pbShowQuantity + pbRefresh + @sprites["qtywindow"].visible = true + end + + def pbHideQuantity + pbRefresh + @sprites["qtywindow"].visible = false + end + + def pbDisplay(msg, brief = false) + cw = @sprites["helpwindow"] + cw.letterbyletter = true + cw.text = msg + pbBottomLeftLines(cw, 2) + cw.visible = true + i = 0 + pbPlayDecisionSE + loop do + Graphics.update + Input.update + self.update + if !cw.busy? + return if brief + pbRefresh if i == 0 + end + if Input.trigger?(Input::USE) || Input.trigger?(Input::BACK) + cw.resume if cw.busy? + end + return if i >= Graphics.frame_rate * 3 / 2 + i += 1 if !cw.busy? + end + end + + def pbDisplayPaused(msg) + cw = @sprites["helpwindow"] + cw.letterbyletter = true + cw.text = msg + pbBottomLeftLines(cw, 2) + cw.visible = true + yielded = false + pbPlayDecisionSE + loop do + Graphics.update + Input.update + wasbusy = cw.busy? + self.update + if !cw.busy? && !yielded + yield if block_given? # For playing SE as soon as the message is all shown + yielded = true + end + pbRefresh if !cw.busy? && wasbusy + if Input.trigger?(Input::USE) || Input.trigger?(Input::BACK) + if cw.resume && !cw.busy? + @sprites["helpwindow"].visible = false + break + end + end + end + end + + def pbConfirm(msg) + dw = @sprites["helpwindow"] + dw.letterbyletter = true + dw.text = msg + dw.visible = true + pbBottomLeftLines(dw, 2) + commands = [_INTL("Yes"), _INTL("No")] + cw = Window_CommandPokemon.new(commands) + cw.viewport = @viewport + pbBottomRight(cw) + cw.y -= dw.height + cw.index = 0 + pbPlayDecisionSE + loop do + cw.visible = !dw.busy? + Graphics.update + Input.update + cw.update + self.update + if Input.trigger?(Input::BACK) && dw.resume && !dw.busy? + cw.dispose + @sprites["helpwindow"].visible = false + return false + end + if Input.trigger?(Input::USE) && dw.resume && !dw.busy? + cw.dispose + @sprites["helpwindow"].visible = false + return (cw.index == 0) + end + end + end + + def pbChooseNumber(helptext, item, maximum) + curnumber = 1 + ret = 0 + helpwindow = @sprites["helpwindow"] + itemprice = @adapter.getPrice(item) + itemprice /= 2 if !@buying + pbDisplay(helptext, true) + using(numwindow = Window_AdvancedTextPokemon.new("")) do # Showing number of items + pbPrepareWindow(numwindow) + numwindow.viewport = @viewport + numwindow.width = 224 + numwindow.height = 64 + numwindow.baseColor = Color.new(88, 88, 80) + numwindow.shadowColor = Color.new(168, 184, 184) + numwindow.text = _INTL("x{1}{2} BP", curnumber, (curnumber * itemprice).to_s_formatted) + pbBottomRight(numwindow) + numwindow.y -= helpwindow.height + loop do + Graphics.update + Input.update + numwindow.update + update + oldnumber = curnumber + if Input.repeat?(Input::LEFT) + curnumber -= 10 + curnumber = 1 if curnumber < 1 + if curnumber != oldnumber + numwindow.text = _INTL("x{1}{2} BP", curnumber, (curnumber * itemprice).to_s_formatted) + pbPlayCursorSE + end + elsif Input.repeat?(Input::RIGHT) + curnumber += 10 + curnumber = maximum if curnumber > maximum + if curnumber != oldnumber + numwindow.text = _INTL("x{1}{2} BP", curnumber, (curnumber * itemprice).to_s_formatted) + pbPlayCursorSE + end + elsif Input.repeat?(Input::UP) + curnumber += 1 + curnumber = 1 if curnumber > maximum + if curnumber != oldnumber + numwindow.text = _INTL("x{1}{2} BP", curnumber, (curnumber * itemprice).to_s_formatted) + pbPlayCursorSE + end + elsif Input.repeat?(Input::DOWN) + curnumber -= 1 + curnumber = maximum if curnumber < 1 + if curnumber != oldnumber + numwindow.text = _INTL("x{1}{2} BP", curnumber, (curnumber * itemprice).to_s_formatted) + pbPlayCursorSE + end + elsif Input.trigger?(Input::USE) + ret = curnumber + break + elsif Input.trigger?(Input::BACK) + pbPlayCancelSE + ret = 0 + break + end + end + end + helpwindow.visible = false + return ret + end + + def pbChooseItem + itemwindow = @sprites["itemwindow"] + @sprites["helpwindow"].visible = false + pbActivateWindow(@sprites, "itemwindow") { + pbRefresh + loop do + Graphics.update + Input.update + olditem = itemwindow.item + self.update + pbRefresh if itemwindow.item != olditem + if Input.trigger?(Input::BACK) + pbPlayCloseMenuSE + return nil + elsif Input.trigger?(Input::USE) + if itemwindow.index < @stock.length + pbRefresh + return @stock[itemwindow.index] + else + return nil + end + end + end + } + end +end + +#=============================================================================== +# +#=============================================================================== +class BattlePointShopScreen + def initialize(scene, stock) + @scene = scene + @stock = stock + @adapter = BattlePointShopAdapter.new + end + + def pbConfirm(msg) + return @scene.pbConfirm(msg) + end + + def pbDisplay(msg) + return @scene.pbDisplay(msg) + end + + def pbDisplayPaused(msg, &block) + return @scene.pbDisplayPaused(msg, &block) + end + + def pbBuyScreen + @scene.pbStartScene(@stock, @adapter) + item = nil + loop do + item = @scene.pbChooseItem + break if !item + quantity = 0 + itemname = @adapter.getDisplayName(item) + itemnameplural = @adapter.getDisplayNamePlural(item) + price = @adapter.getPrice(item) + if @adapter.getBP < price + pbDisplayPaused(_INTL("You don't have enough BP.")) + next + end + if GameData::Item.get(item).is_important? + next if !pbConfirm(_INTL("You would like the {1}?\nThat will be {2} BP.", + itemname, price.to_s_formatted)) + quantity = 1 + else + maxafford = (price <= 0) ? Settings::BAG_MAX_PER_SLOT : @adapter.getBP / price + maxafford = Settings::BAG_MAX_PER_SLOT if maxafford > Settings::BAG_MAX_PER_SLOT + quantity = @scene.pbChooseNumber( + _INTL("How many {1} would you like?", itemnameplural), item, maxafford + ) + next if quantity == 0 + price *= quantity + if quantity > 1 + next if !pbConfirm(_INTL("You would like {1} {2}?\nThey'll be {3} BP.", + quantity, itemnameplural, price.to_s_formatted)) + elsif quantity > 0 + next if !pbConfirm(_INTL("So you want {1} {2}?\nIt'll be {3} BP.", + quantity, itemname, price.to_s_formatted)) + end + end + if @adapter.getBP < price + pbDisplayPaused(_INTL("I'm sorry, you don't have enough BP.")) + next + end + added = 0 + quantity.times do + break if !@adapter.addItem(item) + added += 1 + end + if added == quantity + $stats.battle_points_spent += price + #Add bpshop_items_bought to $stats? + #$stats.bpshop_items_bought += quantity + @adapter.setBP(@adapter.getBP - price) + @stock.delete_if { |item| GameData::Item.get(item).is_important? && $bag.has?(item) } + pbDisplayPaused(_INTL("Here you are! Thank you!")) { pbSEPlay("Mart buy item") } + else + added.times do + if !@adapter.removeItem(item) + raise _INTL("Failed to delete stored items") + end + end + pbDisplayPaused(_INTL("You have no room in your Bag.")) + end + end + @scene.pbEndScene + end +end + +#=============================================================================== +# +#=============================================================================== +def pbBattlePointShop(stock, speech = nil) + stock.delete_if { |item| GameData::Item.get(item).is_important? && $bag.has?(item) } + if speech.nil? + pbMessage(_INTL("Welcome to the Exchange Service Corner!")) + pbMessage(_INTL("We can exchange your BP for fabulous items.")) + else + pbMessage(speech) + end + scene = BattlePointShop_Scene.new + screen = BattlePointShopScreen.new(scene, stock) + screen.pbBuyScreen + pbMessage(_INTL("Thank you for visiting.")) + pbMessage(_INTL("Please visit us again when you have saved up more BP.")) + $game_temp.clear_mart_prices +end diff --git a/Data/Scripts/016_UI/021_UI_MoveRelearner.rb b/Data/Scripts/016_UI/022_UI_MoveRelearner.rb similarity index 100% rename from Data/Scripts/016_UI/021_UI_MoveRelearner.rb rename to Data/Scripts/016_UI/022_UI_MoveRelearner.rb diff --git a/Data/Scripts/016_UI/022_UI_PurifyChamber.rb b/Data/Scripts/016_UI/023_UI_PurifyChamber.rb similarity index 100% rename from Data/Scripts/016_UI/022_UI_PurifyChamber.rb rename to Data/Scripts/016_UI/023_UI_PurifyChamber.rb diff --git a/Data/Scripts/016_UI/023_UI_MysteryGift.rb b/Data/Scripts/016_UI/024_UI_MysteryGift.rb similarity index 100% rename from Data/Scripts/016_UI/023_UI_MysteryGift.rb rename to Data/Scripts/016_UI/024_UI_MysteryGift.rb diff --git a/Data/Scripts/016_UI/024_UI_TextEntry.rb b/Data/Scripts/016_UI/025_UI_TextEntry.rb similarity index 100% rename from Data/Scripts/016_UI/024_UI_TextEntry.rb rename to Data/Scripts/016_UI/025_UI_TextEntry.rb diff --git a/PBS/Gen 5/items.txt b/PBS/Gen 5/items.txt index 6c4cebd37..0ed571afb 100644 --- a/PBS/Gen 5/items.txt +++ b/PBS/Gen 5/items.txt @@ -102,6 +102,7 @@ Name = Fire Stone NamePlural = Fire Stones Pocket = 1 Price = 2100 +BPPrice = 3 FieldUse = OnPokemon Flags = EvolutionStone,Fling_30 Description = A peculiar stone that makes certain species of Pokémon evolve. It is colored orange. @@ -111,6 +112,7 @@ Name = Thunder Stone NamePlural = Thunder Stones Pocket = 1 Price = 2100 +BPPrice = 3 FieldUse = OnPokemon Flags = EvolutionStone,Fling_30 Description = A peculiar stone that makes certain species of Pokémon evolve. It has a thunderbolt pattern. @@ -120,6 +122,7 @@ Name = Water Stone NamePlural = Water Stones Pocket = 1 Price = 2100 +BPPrice = 3 FieldUse = OnPokemon Flags = EvolutionStone,Fling_30 Description = A peculiar stone that makes certain species of Pokémon evolve. It is a clear, light blue. @@ -129,6 +132,7 @@ Name = Leaf Stone NamePlural = Leaf Stones Pocket = 1 Price = 2100 +BPPrice = 3 FieldUse = OnPokemon Flags = EvolutionStone,Fling_30 Description = A peculiar stone that makes certain species of Pokémon evolve. It has a leaf pattern. @@ -138,6 +142,7 @@ Name = Moon Stone NamePlural = Moon Stones Pocket = 1 Price = 2100 +BPPrice = 3 FieldUse = OnPokemon Flags = EvolutionStone,Fling_30 Description = A peculiar stone that makes certain species of Pokémon evolve. It is as black as the night sky. @@ -147,6 +152,7 @@ Name = Sun Stone NamePlural = Sun Stones Pocket = 1 Price = 2100 +BPPrice = 3 FieldUse = OnPokemon Flags = EvolutionStone,Fling_30 Description = A peculiar stone that makes certain species of Pokémon evolve. It is as red as the sun. @@ -156,6 +162,7 @@ Name = Dusk Stone NamePlural = Dusk Stones Pocket = 1 Price = 2100 +BPPrice = 3 FieldUse = OnPokemon Flags = EvolutionStone,Fling_80 Description = A peculiar stone that makes certain species of Pokémon evolve. It is as dark as dark can be. @@ -165,6 +172,7 @@ Name = Dawn Stone NamePlural = Dawn Stones Pocket = 1 Price = 2100 +BPPrice = 3 FieldUse = OnPokemon Flags = EvolutionStone,Fling_80 Description = A peculiar stone that makes certain species of Pokémon evolve. It sparkles like eyes. @@ -174,6 +182,7 @@ Name = Shiny Stone NamePlural = Shiny Stones Pocket = 1 Price = 2100 +BPPrice = 3 FieldUse = OnPokemon Flags = EvolutionStone,Fling_80 Description = A peculiar stone that makes certain species of Pokémon evolve. It shines with a dazzling light. @@ -542,6 +551,7 @@ 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. #------------------------------- @@ -550,6 +560,7 @@ Name = Bright Powder NamePlural = Bright Powders 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. #------------------------------- @@ -558,6 +569,7 @@ 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. #------------------------------- @@ -566,6 +578,7 @@ 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. #------------------------------- @@ -574,6 +587,7 @@ 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. #------------------------------- @@ -582,6 +596,7 @@ 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. #------------------------------- @@ -590,6 +605,7 @@ 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. #------------------------------- @@ -598,6 +614,7 @@ 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. #------------------------------- @@ -622,6 +639,7 @@ 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. #------------------------------- @@ -646,6 +664,7 @@ 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. #------------------------------- @@ -662,6 +681,7 @@ 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. #------------------------------- @@ -670,6 +690,7 @@ Name = Choice Specs NamePlural = 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. #------------------------------- @@ -678,6 +699,7 @@ 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. #------------------------------- @@ -686,6 +708,7 @@ 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. #------------------------------- @@ -694,6 +717,7 @@ 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. #------------------------------- @@ -702,6 +726,7 @@ 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. #------------------------------- @@ -710,6 +735,7 @@ 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. #------------------------------- @@ -718,6 +744,7 @@ Name = Light Clay NamePlural = Light Clays 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. #------------------------------- @@ -726,6 +753,7 @@ 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. #------------------------------- @@ -734,6 +762,7 @@ 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. #------------------------------- @@ -742,6 +771,7 @@ 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. #------------------------------- @@ -750,6 +780,7 @@ Name = Black Sludge NamePlural = Black Sludges 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. #------------------------------- @@ -758,6 +789,7 @@ Name = Leftovers NamePlural = 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. #------------------------------- @@ -766,6 +798,7 @@ 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. #------------------------------- @@ -774,6 +807,7 @@ 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. #------------------------------- @@ -782,6 +816,7 @@ 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. #------------------------------- @@ -790,6 +825,7 @@ 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. #------------------------------- @@ -798,6 +834,7 @@ 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. #------------------------------- @@ -806,6 +843,7 @@ 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. #------------------------------- @@ -814,6 +852,7 @@ 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. #------------------------------- @@ -822,6 +861,7 @@ 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. #------------------------------- @@ -830,6 +870,7 @@ 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. #------------------------------- @@ -838,6 +879,7 @@ 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. #------------------------------- @@ -846,6 +888,7 @@ Name = Wise Glasses NamePlural = 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. #------------------------------- @@ -854,6 +897,7 @@ 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. #------------------------------- @@ -862,6 +906,7 @@ 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. #------------------------------- @@ -870,6 +915,7 @@ 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. #------------------------------- @@ -878,6 +924,7 @@ 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. #------------------------------- @@ -886,6 +933,7 @@ 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. #------------------------------- @@ -894,6 +942,7 @@ 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. #------------------------------- @@ -902,6 +951,7 @@ 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. #------------------------------- @@ -910,6 +960,7 @@ 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. #------------------------------- @@ -918,6 +969,7 @@ 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. #------------------------------- @@ -926,6 +978,7 @@ 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. #------------------------------- @@ -934,6 +987,7 @@ 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. #------------------------------- @@ -942,6 +996,7 @@ 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. #------------------------------- @@ -950,6 +1005,7 @@ 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. #------------------------------- @@ -958,6 +1014,7 @@ 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. #------------------------------- @@ -966,6 +1023,7 @@ 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. #------------------------------- @@ -974,6 +1032,7 @@ 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. #------------------------------- @@ -982,6 +1041,7 @@ 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. #------------------------------- @@ -990,6 +1050,7 @@ 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. #------------------------------- @@ -998,6 +1059,7 @@ 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. #------------------------------- @@ -1006,6 +1068,7 @@ 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. #------------------------------- @@ -1014,6 +1077,7 @@ 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. #------------------------------- @@ -1022,6 +1086,7 @@ 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. #------------------------------- @@ -1510,6 +1575,7 @@ 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. #------------------------------- @@ -1558,6 +1624,7 @@ 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. #------------------------------- @@ -1566,6 +1633,7 @@ 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. #------------------------------- @@ -1630,6 +1698,7 @@ 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. #------------------------------- @@ -1638,6 +1707,7 @@ 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. #------------------------------- @@ -1646,6 +1716,7 @@ 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. #------------------------------- @@ -1654,6 +1725,7 @@ 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. #------------------------------- @@ -1662,6 +1734,7 @@ 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. #------------------------------- @@ -1670,6 +1743,7 @@ 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. #------------------------------- @@ -1678,6 +1752,7 @@ 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. #------------------------------- @@ -1686,6 +1761,7 @@ Name = Reaper Cloth NamePlural = Reaper Cloths 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. #------------------------------- @@ -1694,6 +1770,7 @@ 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. #------------------------------- @@ -1702,6 +1779,7 @@ 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. #------------------------------- @@ -1780,6 +1858,7 @@ Name = Max Potion NamePlural = Max Potions Pocket = 2 Price = 2500 +BPPrice = 2 FieldUse = OnPokemon BattleUse = OnPokemon Flags = Fling_30 @@ -1909,6 +1988,7 @@ Name = Max Revive NamePlural = Max Revives Pocket = 2 Price = 4000 +BPPrice = 24 FieldUse = OnPokemon BattleUse = OnPokemon Flags = Fling_30 @@ -2029,6 +2109,7 @@ Name = Ether NamePlural = Ethers Pocket = 2 Price = 1200 +BPPrice = 4 FieldUse = OnPokemon BattleUse = OnMove Flags = Fling_30 @@ -2069,6 +2150,7 @@ Name = PP Up NamePlural = PP Ups Pocket = 2 Price = 9800 +BPPrice = 16 FieldUse = OnPokemon Flags = Fling_30 Description = It slightly raises the maximum PP of a selected move that has been learned by the target Pokémon. @@ -2195,6 +2277,7 @@ Name = Rare Candy NamePlural = Rare Candies Pocket = 2 Price = 4800 +BPPrice = 24 FieldUse = OnPokemon Flags = Fling_30 Description = A candy that is packed with energy. It raises the level of a single Pokémon by one. @@ -2420,6 +2503,7 @@ 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. @@ -2429,6 +2513,7 @@ Name = TM02 NamePlural = TM02s Pocket = 4 Price = 3000 +BPPrice = 6 FieldUse = TM Move = DRAGONCLAW Description = The user slashes the target with huge, sharp claws. @@ -2438,6 +2523,7 @@ 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. @@ -2447,6 +2533,7 @@ 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. @@ -2456,6 +2543,7 @@ 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. @@ -2465,6 +2553,7 @@ 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. @@ -2474,6 +2563,7 @@ 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. @@ -2483,6 +2573,7 @@ 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. @@ -2492,6 +2583,7 @@ 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. @@ -2501,6 +2593,7 @@ 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. @@ -2510,6 +2603,7 @@ 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. @@ -2519,6 +2613,7 @@ 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. @@ -2528,6 +2623,7 @@ 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. @@ -2537,6 +2633,7 @@ 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. @@ -2546,6 +2643,7 @@ 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. @@ -2555,6 +2653,7 @@ 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. @@ -2564,6 +2663,7 @@ 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. @@ -2573,6 +2673,7 @@ 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. @@ -2582,6 +2683,7 @@ 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. @@ -2591,6 +2693,7 @@ 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. @@ -2600,6 +2703,7 @@ 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. @@ -2609,6 +2713,7 @@ 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. @@ -2618,6 +2723,7 @@ 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. @@ -2627,6 +2733,7 @@ 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. @@ -2636,6 +2743,7 @@ 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. @@ -2645,6 +2753,7 @@ 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. @@ -2654,6 +2763,7 @@ 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. @@ -2663,6 +2773,7 @@ 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. @@ -2672,6 +2783,7 @@ 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. @@ -2681,6 +2793,7 @@ 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. @@ -2690,6 +2803,7 @@ 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. @@ -2699,6 +2813,7 @@ 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. @@ -2708,6 +2823,7 @@ 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. @@ -2717,6 +2833,7 @@ 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. @@ -2726,6 +2843,7 @@ 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. @@ -2735,6 +2853,7 @@ 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. @@ -2744,6 +2863,7 @@ 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. @@ -2753,6 +2873,7 @@ 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. @@ -2762,6 +2883,7 @@ 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. @@ -2771,6 +2893,7 @@ 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. @@ -2780,6 +2903,7 @@ 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. @@ -2789,6 +2913,7 @@ 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. @@ -2798,6 +2923,7 @@ 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. @@ -2807,6 +2933,7 @@ 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. @@ -2816,6 +2943,7 @@ 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. @@ -2825,6 +2953,7 @@ 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. @@ -2834,6 +2963,7 @@ 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. @@ -2843,6 +2973,7 @@ 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. @@ -2852,6 +2983,7 @@ 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. @@ -2861,6 +2993,7 @@ 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. @@ -2870,6 +3003,7 @@ 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. @@ -2879,6 +3013,7 @@ 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. @@ -2888,6 +3023,7 @@ 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. @@ -2897,6 +3033,7 @@ 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. @@ -2906,6 +3043,7 @@ 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. @@ -2915,6 +3053,7 @@ 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. @@ -2924,6 +3063,7 @@ 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. @@ -2933,6 +3073,7 @@ 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. @@ -2942,6 +3083,7 @@ 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. @@ -2951,6 +3093,7 @@ 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. @@ -2960,6 +3103,7 @@ 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. @@ -2969,6 +3113,7 @@ 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. @@ -2978,6 +3123,7 @@ 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. @@ -2987,6 +3133,7 @@ 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. @@ -2996,6 +3143,7 @@ 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. @@ -3005,6 +3153,7 @@ 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. @@ -3014,6 +3163,7 @@ 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. @@ -3023,6 +3173,7 @@ 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. @@ -3032,6 +3183,7 @@ 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. @@ -3041,6 +3193,7 @@ 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. @@ -3050,6 +3203,7 @@ 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. @@ -3059,6 +3213,7 @@ 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. @@ -3068,6 +3223,7 @@ 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. @@ -3077,6 +3233,7 @@ 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. @@ -3086,6 +3243,7 @@ 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. @@ -3095,6 +3253,7 @@ 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. @@ -3104,6 +3263,7 @@ 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. @@ -3113,6 +3273,7 @@ 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. @@ -3122,6 +3283,7 @@ 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. @@ -3131,6 +3293,7 @@ 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. @@ -3140,6 +3303,7 @@ 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. @@ -3149,6 +3313,7 @@ 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. @@ -3158,6 +3323,7 @@ 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. @@ -3167,6 +3333,7 @@ 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. @@ -3176,6 +3343,7 @@ 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. @@ -3185,6 +3353,7 @@ 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. @@ -3194,6 +3363,7 @@ 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. @@ -3203,6 +3373,7 @@ 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. @@ -3212,6 +3383,7 @@ 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. @@ -3221,6 +3393,7 @@ 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. @@ -3230,6 +3403,7 @@ 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. @@ -3239,6 +3413,7 @@ 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. @@ -3248,6 +3423,7 @@ 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. @@ -3257,6 +3433,7 @@ 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. @@ -3266,6 +3443,7 @@ 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. diff --git a/PBS/Gen 6/items.txt b/PBS/Gen 6/items.txt index 16317d313..464fa633a 100644 --- a/PBS/Gen 6/items.txt +++ b/PBS/Gen 6/items.txt @@ -102,6 +102,7 @@ Name = Fire Stone NamePlural = Fire Stones Pocket = 1 Price = 3000 +BPPrice = 16 FieldUse = OnPokemon Flags = EvolutionStone,Fling_30 Description = A peculiar stone that makes certain species of Pokémon evolve. It is colored orange. @@ -111,6 +112,7 @@ Name = Thunder Stone NamePlural = Thunder Stones Pocket = 1 Price = 3000 +BPPrice = 16 FieldUse = OnPokemon Flags = EvolutionStone,Fling_30 Description = A peculiar stone that makes certain species of Pokémon evolve. It has a thunderbolt pattern. @@ -120,6 +122,7 @@ Name = Water Stone NamePlural = Water Stones Pocket = 1 Price = 3000 +BPPrice = 16 FieldUse = OnPokemon Flags = EvolutionStone,Fling_30 Description = A peculiar stone that makes certain species of Pokémon evolve. It is a clear, light blue. @@ -129,6 +132,7 @@ Name = Leaf Stone NamePlural = Leaf Stones Pocket = 1 Price = 3000 +BPPrice = 16 FieldUse = OnPokemon Flags = EvolutionStone,Fling_30 Description = A peculiar stone that makes certain species of Pokémon evolve. It has a leaf pattern. @@ -138,6 +142,7 @@ Name = Moon Stone NamePlural = Moon Stones Pocket = 1 Price = 3000 +BPPrice = 16 FieldUse = OnPokemon Flags = EvolutionStone,Fling_30 Description = A peculiar stone that makes certain species of Pokémon evolve. It is as black as the night sky. @@ -147,6 +152,7 @@ Name = Sun Stone NamePlural = Sun Stones Pocket = 1 Price = 3000 +BPPrice = 16 FieldUse = OnPokemon Flags = EvolutionStone,Fling_30 Description = A peculiar stone that makes certain species of Pokémon evolve. It is as red as the sun. @@ -156,6 +162,7 @@ Name = Dusk Stone NamePlural = Dusk Stones Pocket = 1 Price = 3000 +BPPrice = 16 FieldUse = OnPokemon Flags = EvolutionStone,Fling_80 Description = A peculiar stone that makes certain species of Pokémon evolve. It is as dark as dark can be. @@ -165,6 +172,7 @@ Name = Dawn Stone NamePlural = Dawn Stones Pocket = 1 Price = 3000 +BPPrice = 16 FieldUse = OnPokemon Flags = EvolutionStone,Fling_80 Description = A peculiar stone that makes certain species of Pokémon evolve. It sparkles like eyes. @@ -174,6 +182,7 @@ Name = Shiny Stone NamePlural = Shiny Stones Pocket = 1 Price = 3000 +BPPrice = 16 FieldUse = OnPokemon Flags = EvolutionStone,Fling_80 Description = A peculiar stone that makes certain species of Pokémon evolve. It shines with a dazzling light. @@ -558,6 +567,7 @@ 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. #------------------------------- @@ -566,6 +576,7 @@ Name = Bright Powder NamePlural = Bright Powders 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. #------------------------------- @@ -574,6 +585,7 @@ 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. #------------------------------- @@ -582,6 +594,7 @@ 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. #------------------------------- @@ -590,6 +603,7 @@ 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. #------------------------------- @@ -598,6 +612,7 @@ 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. #------------------------------- @@ -606,6 +621,7 @@ 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. #------------------------------- @@ -614,6 +630,7 @@ Name = Safety Goggles NamePlural = 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. #------------------------------- @@ -622,6 +639,7 @@ 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. #------------------------------- @@ -630,6 +648,7 @@ 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. #------------------------------- @@ -654,6 +673,7 @@ 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. #------------------------------- @@ -678,6 +698,7 @@ 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. #------------------------------- @@ -694,6 +715,7 @@ 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. #------------------------------- @@ -702,6 +724,7 @@ Name = Choice Specs NamePlural = 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. #------------------------------- @@ -710,6 +733,7 @@ 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. #------------------------------- @@ -718,6 +742,7 @@ 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. #------------------------------- @@ -726,6 +751,7 @@ 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. #------------------------------- @@ -734,6 +760,7 @@ 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. #------------------------------- @@ -742,6 +769,7 @@ 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. #------------------------------- @@ -750,6 +778,7 @@ Name = Light Clay NamePlural = Light Clays 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. #------------------------------- @@ -758,6 +787,7 @@ 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. #------------------------------- @@ -766,6 +796,7 @@ 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. #------------------------------- @@ -774,6 +805,7 @@ 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. #------------------------------- @@ -782,6 +814,7 @@ Name = Black Sludge NamePlural = Black Sludges 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. #------------------------------- @@ -790,6 +823,7 @@ Name = Leftovers NamePlural = 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. #------------------------------- @@ -798,6 +832,7 @@ 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. #------------------------------- @@ -806,6 +841,7 @@ 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. #------------------------------- @@ -814,6 +850,7 @@ 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. #------------------------------- @@ -822,6 +859,7 @@ 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. #------------------------------- @@ -830,6 +868,7 @@ 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. #------------------------------- @@ -838,6 +877,7 @@ 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. #------------------------------- @@ -846,6 +886,7 @@ Name = Luminous Moss NamePlural = Luminous Mosses 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. #------------------------------- @@ -854,6 +895,7 @@ 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. #------------------------------- @@ -862,6 +904,7 @@ 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. #------------------------------- @@ -870,6 +913,7 @@ 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. #------------------------------- @@ -878,6 +922,7 @@ 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. #------------------------------- @@ -886,6 +931,7 @@ 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. #------------------------------- @@ -894,6 +940,7 @@ 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. #------------------------------- @@ -902,6 +949,7 @@ Name = Wise Glasses NamePlural = 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. #------------------------------- @@ -910,6 +958,7 @@ 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. #------------------------------- @@ -918,6 +967,7 @@ 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. #------------------------------- @@ -926,6 +976,7 @@ 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. #------------------------------- @@ -934,6 +985,7 @@ 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. #------------------------------- @@ -942,6 +994,7 @@ 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. #------------------------------- @@ -950,6 +1003,7 @@ 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. #------------------------------- @@ -958,6 +1012,7 @@ 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. #------------------------------- @@ -966,6 +1021,7 @@ 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. #------------------------------- @@ -974,6 +1030,7 @@ 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. #------------------------------- @@ -982,6 +1039,7 @@ 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. #------------------------------- @@ -990,6 +1048,7 @@ 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. #------------------------------- @@ -998,6 +1057,7 @@ 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. #------------------------------- @@ -1006,6 +1066,7 @@ 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. #------------------------------- @@ -1014,6 +1075,7 @@ 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. #------------------------------- @@ -1022,6 +1084,7 @@ 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. #------------------------------- @@ -1030,6 +1093,7 @@ 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. #------------------------------- @@ -1038,6 +1102,7 @@ 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. #------------------------------- @@ -1046,6 +1111,7 @@ 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. #------------------------------- @@ -1054,6 +1120,7 @@ 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. #------------------------------- @@ -1062,6 +1129,7 @@ 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. #------------------------------- @@ -1070,6 +1138,7 @@ 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. #------------------------------- @@ -1078,6 +1147,7 @@ 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. #------------------------------- @@ -1582,6 +1652,7 @@ 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. #------------------------------- @@ -1630,6 +1701,7 @@ 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. #------------------------------- @@ -1638,6 +1710,7 @@ 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. #------------------------------- @@ -1702,6 +1775,7 @@ 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. #------------------------------- @@ -1710,6 +1784,7 @@ 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. #------------------------------- @@ -1718,6 +1793,7 @@ 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. #------------------------------- @@ -1726,6 +1802,7 @@ 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. #------------------------------- @@ -1734,6 +1811,7 @@ 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. #------------------------------- @@ -1742,6 +1820,7 @@ 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. #------------------------------- @@ -1750,6 +1829,7 @@ 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. #------------------------------- @@ -1758,6 +1838,7 @@ Name = Reaper Cloth NamePlural = Reaper Cloths 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. #------------------------------- @@ -1766,6 +1847,7 @@ 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. #------------------------------- @@ -1774,6 +1856,7 @@ 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. #------------------------------- @@ -1782,6 +1865,7 @@ Name = Whipped Dream NamePlural = Whipped Dreams 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. #------------------------------- @@ -1790,6 +1874,7 @@ 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. #------------------------------- @@ -1838,6 +1923,7 @@ 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. #------------------------------- @@ -1846,6 +1932,7 @@ 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. #------------------------------- @@ -1854,6 +1941,7 @@ 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. #------------------------------- @@ -1862,6 +1950,7 @@ 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. #------------------------------- @@ -1870,6 +1959,7 @@ 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. #------------------------------- @@ -1878,6 +1968,7 @@ 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. #------------------------------- @@ -1886,6 +1977,7 @@ 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. #------------------------------- @@ -1894,6 +1986,7 @@ 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. #------------------------------- @@ -1902,6 +1995,7 @@ 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. #------------------------------- @@ -1910,6 +2004,7 @@ 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. #------------------------------- @@ -1918,6 +2013,7 @@ 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. #------------------------------- @@ -1926,6 +2022,7 @@ 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. #------------------------------- @@ -1934,6 +2031,7 @@ 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. #------------------------------- @@ -1942,6 +2040,7 @@ 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. #------------------------------- @@ -1950,6 +2049,7 @@ 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. #------------------------------- @@ -1958,6 +2058,7 @@ 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. #------------------------------- @@ -1966,6 +2067,7 @@ 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. #------------------------------- @@ -1974,6 +2076,7 @@ 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. #------------------------------- @@ -1982,6 +2085,7 @@ 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. #------------------------------- @@ -1990,6 +2094,7 @@ 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. #------------------------------- @@ -1998,6 +2103,7 @@ 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. #------------------------------- @@ -2006,6 +2112,7 @@ 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. #------------------------------- @@ -2014,6 +2121,7 @@ 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. #------------------------------- @@ -2022,6 +2130,7 @@ 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. #------------------------------- @@ -2030,6 +2139,7 @@ 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. #------------------------------- @@ -2038,6 +2148,7 @@ 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. #------------------------------- @@ -2046,6 +2157,7 @@ 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. #------------------------------- @@ -2054,6 +2166,7 @@ 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. #------------------------------- @@ -2062,6 +2175,7 @@ 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. #------------------------------- @@ -2070,6 +2184,7 @@ 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. #------------------------------- @@ -2078,6 +2193,7 @@ 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. #------------------------------- @@ -2086,6 +2202,7 @@ 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. #------------------------------- @@ -2094,6 +2211,7 @@ 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. #------------------------------- @@ -2102,6 +2220,7 @@ 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. #------------------------------- @@ -2110,6 +2229,7 @@ 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. #------------------------------- @@ -2118,6 +2238,7 @@ 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. #------------------------------- @@ -2126,6 +2247,7 @@ 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. #------------------------------- @@ -2134,6 +2256,7 @@ 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. #------------------------------- @@ -2142,6 +2265,7 @@ 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. #------------------------------- @@ -2150,6 +2274,7 @@ 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. #------------------------------- @@ -2158,6 +2283,7 @@ 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. #------------------------------- @@ -2166,6 +2292,7 @@ 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. #------------------------------- @@ -2174,6 +2301,7 @@ 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. #------------------------------- @@ -2182,6 +2310,7 @@ 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. #------------------------------- @@ -2190,6 +2319,7 @@ 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. #------------------------------- @@ -2198,6 +2328,7 @@ 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. #------------------------------- @@ -2206,6 +2337,7 @@ 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. #------------------------------- @@ -2214,6 +2346,7 @@ 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] @@ -2221,6 +2354,7 @@ 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. #------------------------------- [POTION] @@ -2258,6 +2392,7 @@ Name = Max Potion NamePlural = Max Potions Pocket = 2 Price = 2500 +BPPrice = 2 FieldUse = OnPokemon BattleUse = OnPokemon Flags = Fling_30 @@ -2417,6 +2552,7 @@ Name = Max Revive NamePlural = Max Revives Pocket = 2 Price = 4000 +BPPrice = 32 FieldUse = OnPokemon BattleUse = OnPokemon Flags = Fling_30 @@ -2527,6 +2663,7 @@ Name = Ether NamePlural = Ethers Pocket = 2 Price = 1200 +BPPrice = 4 FieldUse = OnPokemon BattleUse = OnMove Flags = Fling_30 @@ -2567,6 +2704,7 @@ Name = PP Up NamePlural = PP Ups Pocket = 2 Price = 10000 +BPPrice = 48 FieldUse = OnPokemon Flags = Fling_30 Description = It slightly raises the maximum PP of a selected move that has been learned by the target Pokémon. @@ -2585,6 +2723,7 @@ Name = HP Up NamePlural = HP Ups Pocket = 2 Price = 10000 +BPPrice = 2 FieldUse = OnPokemon Flags = Fling_30 Description = A nutritious drink for Pokémon. It raises the base HP of a single Pokémon. @@ -2594,6 +2733,7 @@ Name = Protein NamePlural = Proteins Pocket = 2 Price = 10000 +BPPrice = 2 FieldUse = OnPokemon Flags = Fling_30 Description = A nutritious drink for Pokémon. It raises the base Attack stat of a single Pokémon. @@ -2603,6 +2743,7 @@ Name = Iron NamePlural = Irons Pocket = 2 Price = 10000 +BPPrice = 2 FieldUse = OnPokemon Flags = Fling_30 Description = A nutritious drink for Pokémon. It raises the base Defense stat of a single Pokémon. @@ -2612,6 +2753,7 @@ Name = Calcium NamePlural = Calciums Pocket = 2 Price = 10000 +BPPrice = 2 FieldUse = OnPokemon Flags = Fling_30 Description = A nutritious drink for Pokémon. It raises the base Sp. Atk (Special Attack) stat of a single Pokémon. @@ -2621,6 +2763,7 @@ Name = Zinc NamePlural = Zincs Pocket = 2 Price = 10000 +BPPrice = 2 FieldUse = OnPokemon Flags = Fling_30 Description = A nutritious drink for Pokémon. It raises the base Sp. Def (Special Defense) stat of a single Pokémon. @@ -2630,6 +2773,7 @@ Name = Carbos NamePlural = Carbos Pocket = 2 Price = 10000 +BPPrice = 2 FieldUse = OnPokemon Flags = Fling_30 Description = A nutritious drink for Pokémon. It raises the base Speed stat of a single Pokémon. @@ -2693,6 +2837,7 @@ Name = Ability Capsule NamePlural = Ability Capsule Pocket = 2 Price = 10000 +BPPrice = 200 FieldUse = OnPokemon Description = A capsule that allows a Pokémon with two Abilities to switch between these Abilities when it is used. #------------------------------- @@ -2701,6 +2846,7 @@ Name = Rare Candy NamePlural = Rare Candies Pocket = 2 Price = 10000 +BPPrice = 48 FieldUse = OnPokemon Flags = Fling_30 Description = A candy that is packed with energy. It raises the level of a single Pokémon by one. @@ -2935,6 +3081,7 @@ 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. @@ -2944,6 +3091,7 @@ Name = TM02 NamePlural = TM02s Pocket = 4 Price = 10000 +BPPrice = 16 FieldUse = TM Move = DRAGONCLAW Description = The user slashes the target with huge, sharp claws. @@ -2953,6 +3101,7 @@ 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. @@ -2962,6 +3111,7 @@ 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. @@ -2971,6 +3121,7 @@ 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. @@ -2980,6 +3131,7 @@ 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. @@ -2989,6 +3141,7 @@ 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. @@ -2998,6 +3151,7 @@ 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. @@ -3007,6 +3161,7 @@ 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. @@ -3016,6 +3171,7 @@ 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. @@ -3025,6 +3181,7 @@ 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. @@ -3034,6 +3191,7 @@ 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. @@ -3043,6 +3201,7 @@ 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. @@ -3052,6 +3211,7 @@ 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. @@ -3061,6 +3221,7 @@ 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. @@ -3070,6 +3231,7 @@ 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. @@ -3079,6 +3241,7 @@ 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. @@ -3088,6 +3251,7 @@ 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. @@ -3097,6 +3261,7 @@ 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. @@ -3106,6 +3271,7 @@ 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. @@ -3115,6 +3281,7 @@ 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. @@ -3124,6 +3291,7 @@ 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. @@ -3133,6 +3301,7 @@ 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. @@ -3142,6 +3311,7 @@ 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. @@ -3151,6 +3321,7 @@ 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. @@ -3160,6 +3331,7 @@ 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. @@ -3169,6 +3341,7 @@ 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. @@ -3178,6 +3351,7 @@ 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. @@ -3187,6 +3361,7 @@ 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. @@ -3196,6 +3371,7 @@ 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. @@ -3205,6 +3381,7 @@ 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. @@ -3214,6 +3391,7 @@ 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. @@ -3223,6 +3401,7 @@ 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. @@ -3232,6 +3411,7 @@ 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. @@ -3241,6 +3421,7 @@ 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. @@ -3250,6 +3431,7 @@ 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. @@ -3259,6 +3441,7 @@ 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. @@ -3268,6 +3451,7 @@ 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. @@ -3277,6 +3461,7 @@ 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. @@ -3286,6 +3471,7 @@ 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. @@ -3295,6 +3481,7 @@ 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. @@ -3304,6 +3491,7 @@ 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. @@ -3313,6 +3501,7 @@ 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. @@ -3322,6 +3511,7 @@ 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. @@ -3331,6 +3521,7 @@ 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. @@ -3340,6 +3531,7 @@ 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. @@ -3349,6 +3541,7 @@ 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. @@ -3358,6 +3551,7 @@ 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. @@ -3367,6 +3561,7 @@ 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. @@ -3376,6 +3571,7 @@ 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. @@ -3385,6 +3581,7 @@ 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. @@ -3394,6 +3591,7 @@ 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. @@ -3403,6 +3601,7 @@ 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. @@ -3412,6 +3611,7 @@ 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. @@ -3421,6 +3621,7 @@ 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. @@ -3430,6 +3631,7 @@ 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. @@ -3439,6 +3641,7 @@ 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. @@ -3448,6 +3651,7 @@ 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. @@ -3457,6 +3661,7 @@ 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. @@ -3466,6 +3671,7 @@ 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. @@ -3475,6 +3681,7 @@ 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. @@ -3484,6 +3691,7 @@ 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. @@ -3493,6 +3701,7 @@ 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. @@ -3502,6 +3711,7 @@ 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. @@ -3511,6 +3721,7 @@ 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. @@ -3520,6 +3731,7 @@ 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. @@ -3529,6 +3741,7 @@ 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. @@ -3538,6 +3751,7 @@ 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. @@ -3547,6 +3761,7 @@ 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. @@ -3556,6 +3771,7 @@ 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. @@ -3565,6 +3781,7 @@ 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. @@ -3574,6 +3791,7 @@ 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. @@ -3583,6 +3801,7 @@ 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. @@ -3592,6 +3811,7 @@ 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. @@ -3601,6 +3821,7 @@ 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. @@ -3610,6 +3831,7 @@ 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. @@ -3619,6 +3841,7 @@ 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. @@ -3628,6 +3851,7 @@ 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. @@ -3637,6 +3861,7 @@ 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. @@ -3646,6 +3871,7 @@ 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. @@ -3655,6 +3881,7 @@ 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. @@ -3664,6 +3891,7 @@ 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. @@ -3673,6 +3901,7 @@ 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. @@ -3682,6 +3911,7 @@ 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. @@ -3691,6 +3921,7 @@ 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. @@ -3700,6 +3931,7 @@ 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. @@ -3709,6 +3941,7 @@ 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. @@ -3718,6 +3951,7 @@ 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. @@ -3727,6 +3961,7 @@ 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. @@ -3736,6 +3971,7 @@ 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. @@ -3745,6 +3981,7 @@ 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. @@ -3754,6 +3991,7 @@ 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. @@ -3763,6 +4001,7 @@ 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. @@ -3772,6 +4011,7 @@ 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. @@ -3781,6 +4021,7 @@ 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. @@ -3790,6 +4031,7 @@ 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. @@ -3799,6 +4041,7 @@ 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. @@ -3808,6 +4051,7 @@ 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. @@ -3817,6 +4061,7 @@ 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. @@ -3826,6 +4071,7 @@ 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. diff --git a/PBS/Gen 7/items.txt b/PBS/Gen 7/items.txt index 240e6fb88..4cb04dd8b 100644 --- a/PBS/Gen 7/items.txt +++ b/PBS/Gen 7/items.txt @@ -102,6 +102,7 @@ Name = Fire Stone NamePlural = Fire Stones Pocket = 1 Price = 3000 +BPPrice = 16 FieldUse = OnPokemon Flags = EvolutionStone,Fling_30 Description = A peculiar stone that makes certain species of Pokémon evolve. It is colored orange. @@ -111,6 +112,7 @@ Name = Thunder Stone NamePlural = Thunder Stones Pocket = 1 Price = 3000 +BPPrice = 16 FieldUse = OnPokemon Flags = EvolutionStone,Fling_30 Description = A peculiar stone that makes certain species of Pokémon evolve. It has a thunderbolt pattern. @@ -120,6 +122,7 @@ Name = Water Stone NamePlural = Water Stones Pocket = 1 Price = 3000 +BPPrice = 16 FieldUse = OnPokemon Flags = EvolutionStone,Fling_30 Description = A peculiar stone that makes certain species of Pokémon evolve. It is a clear, light blue. @@ -129,6 +132,7 @@ Name = Leaf Stone NamePlural = Leaf Stones Pocket = 1 Price = 3000 +BPPrice = 16 FieldUse = OnPokemon Flags = EvolutionStone,Fling_30 Description = A peculiar stone that makes certain species of Pokémon evolve. It has a leaf pattern. @@ -138,6 +142,7 @@ Name = Moon Stone NamePlural = Moon Stones Pocket = 1 Price = 3000 +BPPrice = 16 FieldUse = OnPokemon Flags = EvolutionStone,Fling_30 Description = A peculiar stone that makes certain species of Pokémon evolve. It is as black as the night sky. @@ -147,6 +152,7 @@ Name = Sun Stone NamePlural = Sun Stones Pocket = 1 Price = 3000 +BPPrice = 16 FieldUse = OnPokemon Flags = EvolutionStone,Fling_30 Description = A peculiar stone that makes certain species of Pokémon evolve. It is as red as the sun. @@ -156,6 +162,7 @@ Name = Dusk Stone NamePlural = Dusk Stones Pocket = 1 Price = 3000 +BPPrice = 16 FieldUse = OnPokemon Flags = EvolutionStone,Fling_80 Description = A peculiar stone that makes certain species of Pokémon evolve. It is as dark as dark can be. @@ -165,6 +172,7 @@ Name = Dawn Stone NamePlural = Dawn Stones Pocket = 1 Price = 3000 +BPPrice = 16 FieldUse = OnPokemon Flags = EvolutionStone,Fling_80 Description = A peculiar stone that makes certain species of Pokémon evolve. It sparkles like eyes. @@ -174,6 +182,7 @@ Name = Shiny Stone NamePlural = Shiny Stones Pocket = 1 Price = 3000 +BPPrice = 16 FieldUse = OnPokemon Flags = EvolutionStone,Fling_80 Description = A peculiar stone that makes certain species of Pokémon evolve. It shines with a dazzling light. @@ -183,6 +192,7 @@ Name = Ice Stone NamePlural = Ice Stones Pocket = 1 Price = 3000 +BPPrice = 16 FieldUse = OnPokemon Flags = EvolutionStone,Fling_30 Description = A peculiar stone that makes certain species of Pokémon evolve. It has a snowflake pattern. @@ -603,6 +613,7 @@ 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. #------------------------------- @@ -611,6 +622,7 @@ Name = Bright Powder NamePlural = Bright Powders 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. #------------------------------- @@ -619,6 +631,7 @@ 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. #------------------------------- @@ -627,6 +640,7 @@ 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. #------------------------------- @@ -635,6 +649,7 @@ 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. #------------------------------- @@ -643,6 +658,7 @@ 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. #------------------------------- @@ -651,6 +667,7 @@ 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. #------------------------------- @@ -659,6 +676,7 @@ Name = Safety Goggles NamePlural = 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. #------------------------------- @@ -667,6 +685,7 @@ 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. #------------------------------- @@ -675,6 +694,7 @@ 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. #------------------------------- @@ -683,6 +703,7 @@ 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. #------------------------------- @@ -707,6 +728,7 @@ 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. #------------------------------- @@ -731,6 +753,7 @@ 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. #------------------------------- @@ -747,6 +770,7 @@ 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. #------------------------------- @@ -755,6 +779,7 @@ Name = Choice Specs NamePlural = 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. #------------------------------- @@ -763,6 +788,7 @@ 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. #------------------------------- @@ -771,6 +797,7 @@ 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. #------------------------------- @@ -779,6 +806,7 @@ 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. #------------------------------- @@ -787,6 +815,7 @@ 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. #------------------------------- @@ -795,6 +824,7 @@ 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. #------------------------------- @@ -803,6 +833,7 @@ 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. #------------------------------- @@ -811,6 +842,7 @@ Name = Light Clay NamePlural = Light Clays 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. #------------------------------- @@ -819,6 +851,7 @@ 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. #------------------------------- @@ -827,6 +860,7 @@ 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. #------------------------------- @@ -835,6 +869,7 @@ 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. #------------------------------- @@ -843,6 +878,7 @@ Name = Black Sludge NamePlural = Black Sludges 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. #------------------------------- @@ -851,6 +887,7 @@ Name = Leftovers NamePlural = 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. #------------------------------- @@ -859,6 +896,7 @@ 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. #------------------------------- @@ -867,6 +905,7 @@ 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. #------------------------------- @@ -875,6 +914,7 @@ 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. #------------------------------- @@ -883,6 +923,7 @@ 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. #------------------------------- @@ -891,6 +932,7 @@ 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. #------------------------------- @@ -899,6 +941,7 @@ 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. #------------------------------- @@ -907,6 +950,7 @@ Name = Luminous Moss NamePlural = Luminous Mosses 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. #------------------------------- @@ -915,6 +959,7 @@ 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. #------------------------------- @@ -923,6 +968,7 @@ 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. #------------------------------- @@ -931,6 +977,7 @@ 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. #------------------------------- @@ -971,6 +1018,7 @@ 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. #------------------------------- @@ -979,6 +1027,7 @@ 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. #------------------------------- @@ -987,6 +1036,7 @@ 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. #------------------------------- @@ -995,6 +1045,7 @@ 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. #------------------------------- @@ -1003,6 +1054,7 @@ Name = Wise Glasses NamePlural = 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. #------------------------------- @@ -1011,6 +1063,7 @@ 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. #------------------------------- @@ -1019,6 +1072,7 @@ 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. #------------------------------- @@ -1027,6 +1081,7 @@ 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. #------------------------------- @@ -1035,6 +1090,7 @@ 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. #------------------------------- @@ -1043,6 +1099,7 @@ 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. #------------------------------- @@ -1051,6 +1108,7 @@ 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. #------------------------------- @@ -1059,6 +1117,7 @@ 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. #------------------------------- @@ -1067,6 +1126,7 @@ 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. #------------------------------- @@ -1075,6 +1135,7 @@ 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. #------------------------------- @@ -1083,6 +1144,7 @@ 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. #------------------------------- @@ -1091,6 +1153,7 @@ 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. #------------------------------- @@ -1099,6 +1162,7 @@ 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. #------------------------------- @@ -1107,6 +1171,7 @@ 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. #------------------------------- @@ -1115,6 +1180,7 @@ 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. #------------------------------- @@ -1123,6 +1189,7 @@ 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. #------------------------------- @@ -1131,6 +1198,7 @@ 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. #------------------------------- @@ -1139,6 +1207,7 @@ 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. #------------------------------- @@ -1147,6 +1216,7 @@ 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. #------------------------------- @@ -1155,6 +1225,7 @@ 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. #------------------------------- @@ -1163,6 +1234,7 @@ 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. #------------------------------- @@ -1171,6 +1243,7 @@ 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. #------------------------------- @@ -1179,6 +1252,7 @@ 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. #------------------------------- @@ -1683,6 +1757,7 @@ 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. #------------------------------- @@ -1731,6 +1806,7 @@ 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. #------------------------------- @@ -1739,6 +1815,7 @@ 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. #------------------------------- @@ -1939,6 +2016,7 @@ 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. #------------------------------- @@ -1947,6 +2025,7 @@ 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. #------------------------------- @@ -1955,6 +2034,7 @@ 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. #------------------------------- @@ -1963,6 +2043,7 @@ 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. #------------------------------- @@ -1971,6 +2052,7 @@ 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. #------------------------------- @@ -1979,6 +2061,7 @@ 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. #------------------------------- @@ -1987,6 +2070,7 @@ 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. #------------------------------- @@ -1995,6 +2079,7 @@ Name = Reaper Cloth NamePlural = Reaper Cloths 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. #------------------------------- @@ -2003,6 +2088,7 @@ 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. #------------------------------- @@ -2011,6 +2097,7 @@ 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. #------------------------------- @@ -2019,6 +2106,7 @@ Name = Whipped Dream NamePlural = Whipped Dreams 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. #------------------------------- @@ -2027,6 +2115,7 @@ 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. #------------------------------- @@ -2075,6 +2164,7 @@ 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. #------------------------------- @@ -2083,6 +2173,7 @@ 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. #------------------------------- @@ -2091,6 +2182,7 @@ 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. #------------------------------- @@ -2099,6 +2191,7 @@ 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. #------------------------------- @@ -2107,6 +2200,7 @@ 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. #------------------------------- @@ -2115,6 +2209,7 @@ 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. #------------------------------- @@ -2123,6 +2218,7 @@ 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. #------------------------------- @@ -2131,6 +2227,7 @@ 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. #------------------------------- @@ -2139,6 +2236,7 @@ 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. #------------------------------- @@ -2147,6 +2245,7 @@ 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. #------------------------------- @@ -2155,6 +2254,7 @@ 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. #------------------------------- @@ -2163,6 +2263,7 @@ 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. #------------------------------- @@ -2171,6 +2272,7 @@ 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. #------------------------------- @@ -2179,6 +2281,7 @@ 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. #------------------------------- @@ -2187,6 +2290,7 @@ 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. #------------------------------- @@ -2195,6 +2299,7 @@ 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. #------------------------------- @@ -2203,6 +2308,7 @@ 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. #------------------------------- @@ -2211,6 +2317,7 @@ 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. #------------------------------- @@ -2219,6 +2326,7 @@ 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. #------------------------------- @@ -2227,6 +2335,7 @@ 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. #------------------------------- @@ -2235,6 +2344,7 @@ 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. #------------------------------- @@ -2243,6 +2353,7 @@ 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. #------------------------------- @@ -2251,6 +2362,7 @@ 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. #------------------------------- @@ -2259,6 +2371,7 @@ 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. #------------------------------- @@ -2267,6 +2380,7 @@ 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. #------------------------------- @@ -2275,6 +2389,7 @@ 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. #------------------------------- @@ -2283,6 +2398,7 @@ 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. #------------------------------- @@ -2291,6 +2407,7 @@ 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. #------------------------------- @@ -2299,6 +2416,7 @@ 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. #------------------------------- @@ -2307,6 +2425,7 @@ 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. #------------------------------- @@ -2315,6 +2434,7 @@ 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. #------------------------------- @@ -2323,6 +2443,7 @@ 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. #------------------------------- @@ -2331,6 +2452,7 @@ 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. #------------------------------- @@ -2339,6 +2461,7 @@ 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. #------------------------------- @@ -2347,6 +2470,7 @@ 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. #------------------------------- @@ -2355,6 +2479,7 @@ 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. #------------------------------- @@ -2363,6 +2488,7 @@ 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. #------------------------------- @@ -2371,6 +2497,7 @@ 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. #------------------------------- @@ -2379,6 +2506,7 @@ 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. #------------------------------- @@ -2387,6 +2515,7 @@ 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. #------------------------------- @@ -2395,6 +2524,7 @@ 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. #------------------------------- @@ -2403,6 +2533,7 @@ 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. #------------------------------- @@ -2411,6 +2542,7 @@ 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. #------------------------------- @@ -2419,6 +2551,7 @@ 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. #------------------------------- @@ -2427,6 +2560,7 @@ 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. #------------------------------- @@ -2435,6 +2569,7 @@ 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. #------------------------------- @@ -2443,6 +2578,7 @@ 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. #------------------------------- @@ -2451,6 +2587,7 @@ 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] @@ -2458,6 +2595,7 @@ 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. #------------------------------- [POTION] @@ -2664,6 +2802,7 @@ Name = Max Revive NamePlural = Max Revives Pocket = 2 Price = 4000 +BPPrice = 24 FieldUse = OnPokemon BattleUse = OnPokemon Flags = Fling_30 @@ -2774,6 +2913,7 @@ Name = Ether NamePlural = Ethers Pocket = 2 Price = 1200 +BPPrice = 4 FieldUse = OnPokemon BattleUse = OnMove Flags = Fling_30 @@ -2814,6 +2954,7 @@ Name = PP Up NamePlural = PP Ups Pocket = 2 Price = 10000 +BPPrice = 48 FieldUse = OnPokemon Flags = Fling_30 Description = It slightly raises the maximum PP of a selected move that has been learned by the target Pokémon. @@ -2832,6 +2973,7 @@ Name = HP Up NamePlural = HP Ups Pocket = 2 Price = 10000 +BPPrice = 2 FieldUse = OnPokemon Flags = Fling_30 Description = A nutritious drink for Pokémon. It raises the base HP of a single Pokémon. @@ -2841,6 +2983,7 @@ Name = Protein NamePlural = Proteins Pocket = 2 Price = 10000 +BPPrice = 2 FieldUse = OnPokemon Flags = Fling_30 Description = A nutritious drink for Pokémon. It raises the base Attack stat of a single Pokémon. @@ -2850,6 +2993,7 @@ Name = Iron NamePlural = Irons Pocket = 2 Price = 10000 +BPPrice = 2 FieldUse = OnPokemon Flags = Fling_30 Description = A nutritious drink for Pokémon. It raises the base Defense stat of a single Pokémon. @@ -2859,6 +3003,7 @@ Name = Calcium NamePlural = Calciums Pocket = 2 Price = 10000 +BPPrice = 2 FieldUse = OnPokemon Flags = Fling_30 Description = A nutritious drink for Pokémon. It raises the base Sp. Atk (Special Attack) stat of a single Pokémon. @@ -2868,6 +3013,7 @@ Name = Zinc NamePlural = Zincs Pocket = 2 Price = 10000 +BPPrice = 2 FieldUse = OnPokemon Flags = Fling_30 Description = A nutritious drink for Pokémon. It raises the base Sp. Def (Special Defense) stat of a single Pokémon. @@ -2877,6 +3023,7 @@ Name = Carbos NamePlural = Carbos Pocket = 2 Price = 10000 +BPPrice = 2 FieldUse = OnPokemon Flags = Fling_30 Description = A nutritious drink for Pokémon. It raises the base Speed stat of a single Pokémon. @@ -2940,6 +3087,7 @@ Name = Ability Capsule NamePlural = Ability Capsule Pocket = 2 Price = 10000 +BPPrice = 100 FieldUse = OnPokemon Description = A capsule that allows a Pokémon with two Abilities to switch between these Abilities when it is used. #------------------------------- @@ -2948,6 +3096,7 @@ Name = Rare Candy NamePlural = Rare Candies Pocket = 2 Price = 10000 +BPPrice = 48 FieldUse = OnPokemon Flags = Fling_30 Description = A candy that is packed with energy. It raises the level of a single Pokémon by one. diff --git a/PBS/Gen 8/items.txt b/PBS/Gen 8/items.txt index e1459fa97..4642a646e 100644 --- a/PBS/Gen 8/items.txt +++ b/PBS/Gen 8/items.txt @@ -33,8 +33,8 @@ NamePlural = Black Flutes Pocket = 1 Price = 20 FieldUse = Direct -Consumable = false Flags = Fling_30 +Consumable = false Description = A black flute made from blown glass. Its melody makes wild Pokémon less likely to appear. #------------------------------- [WHITEFLUTE] @@ -43,8 +43,8 @@ NamePlural = White Flutes Pocket = 1 Price = 20 FieldUse = Direct -Consumable = false Flags = Fling_30 +Consumable = false Description = A white flute made from blown glass. Its melody makes wild Pokémon more likely to appear. #------------------------------- [HONEY] @@ -93,6 +93,7 @@ Name = Fire Stone NamePlural = Fire Stones Pocket = 1 Price = 3000 +BPPrice = 5 FieldUse = OnPokemon Flags = EvolutionStone,Fling_30 Description = A peculiar stone that makes certain species of Pokémon evolve. It is colored orange. @@ -102,6 +103,7 @@ Name = Thunder Stone NamePlural = Thunder Stones Pocket = 1 Price = 3000 +BPPrice = 5 FieldUse = OnPokemon Flags = EvolutionStone,Fling_30 Description = A peculiar stone that makes certain species of Pokémon evolve. It has a thunderbolt pattern. @@ -111,6 +113,7 @@ Name = Water Stone NamePlural = Water Stones Pocket = 1 Price = 3000 +BPPrice = 5 FieldUse = OnPokemon Flags = EvolutionStone,Fling_30 Description = A peculiar stone that makes certain species of Pokémon evolve. It is a clear, light blue. @@ -120,6 +123,7 @@ Name = Leaf Stone NamePlural = Leaf Stones Pocket = 1 Price = 3000 +BPPrice = 5 FieldUse = OnPokemon Flags = EvolutionStone,Fling_30 Description = A peculiar stone that makes certain species of Pokémon evolve. It has a leaf pattern. @@ -129,6 +133,7 @@ Name = Moon Stone NamePlural = Moon Stones Pocket = 1 Price = 3000 +BPPrice = 5 FieldUse = OnPokemon Flags = EvolutionStone,Fling_30 Description = A peculiar stone that makes certain species of Pokémon evolve. It is as black as the night sky. @@ -138,6 +143,7 @@ Name = Sun Stone NamePlural = Sun Stones Pocket = 1 Price = 3000 +BPPrice = 5 FieldUse = OnPokemon Flags = EvolutionStone,Fling_30 Description = A peculiar stone that makes certain species of Pokémon evolve. It is as red as the sun. @@ -147,6 +153,7 @@ Name = Dusk Stone NamePlural = Dusk Stones Pocket = 1 Price = 3000 +BPPrice = 5 FieldUse = OnPokemon Flags = EvolutionStone,Fling_80 Description = A peculiar stone that makes certain species of Pokémon evolve. It is as dark as dark can be. @@ -156,6 +163,7 @@ Name = Dawn Stone NamePlural = Dawn Stones Pocket = 1 Price = 3000 +BPPrice = 5 FieldUse = OnPokemon Flags = EvolutionStone,Fling_80 Description = A peculiar stone that makes certain species of Pokémon evolve. It sparkles like eyes. @@ -165,6 +173,7 @@ Name = Shiny Stone NamePlural = Shiny Stones Pocket = 1 Price = 3000 +BPPrice = 5 FieldUse = OnPokemon Flags = EvolutionStone,Fling_80 Description = A peculiar stone that makes certain species of Pokémon evolve. It shines with a dazzling light. @@ -174,6 +183,7 @@ Name = Ice Stone NamePlural = Ice Stones Pocket = 1 Price = 3000 +BPPrice = 5 FieldUse = OnPokemon Flags = EvolutionStone,Fling_30 Description = A peculiar stone that makes certain species of Pokémon evolve. It has a snowflake pattern. @@ -183,6 +193,7 @@ Name = Sweet Apple NamePlural = Sweet Apples Pocket = 1 Price = 2200 +BPPrice = 5 FieldUse = OnPokemon Flags = EvolutionStone,Fling_30 Description = A peculiar apple that can make a certain species of Pokémon evolve. It's exceptionally sweet. @@ -192,6 +203,7 @@ Name = Tart Apple NamePlural = Tart Apples Pocket = 1 Price = 2200 +BPPrice = 5 FieldUse = OnPokemon Flags = EvolutionStone,Fling_30 Description = A peculiar apple that can make a certain species of Pokémon evolve. It's exceptionally tart. @@ -202,6 +214,7 @@ NamePlural = Cracked Pots Pocket = 1 Price = 3000 SellPrice = 800 +BPPrice = 5 FieldUse = OnPokemon Flags = EvolutionStone,Fling_80 Description = A peculiar cracked teapot that can make a certain species of Pokémon evolve. It makes delicious tea. @@ -212,6 +225,7 @@ NamePlural = Chipped Pots Pocket = 1 Price = 3000 SellPrice = 19000 +BPPrice = 5 FieldUse = OnPokemon Flags = EvolutionStone,Fling_80 Description = A peculiar chipped teapot that can make a certain species of Pokémon evolve. It makes delicious tea. @@ -221,6 +235,7 @@ Name = Galarica Cuff NamePlural = Galarica Cuffs Pocket = 1 Price = 6000 +BPPrice = 5 FieldUse = OnPokemon Flags = EvolutionStone,Fling_30 Description = A cuff made from woven-together Galarica Twigs. Giving it to a Galarian Slowpoke would make it very happy. @@ -230,6 +245,7 @@ Name = Galarica Wreath NamePlural = Galarica Wreaths Pocket = 1 Price = 6000 +BPPrice = 5 FieldUse = OnPokemon Flags = EvolutionStone,Fling_30 Description = A wreath made from woven-together Galarica Twigs. A Galarian Slowpoke wearing this would be very happy. @@ -683,6 +699,7 @@ 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. #------------------------------- @@ -692,6 +709,7 @@ NamePlural = Bright Powders 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. #------------------------------- @@ -701,6 +719,7 @@ 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. #------------------------------- @@ -710,6 +729,7 @@ 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. #------------------------------- @@ -719,6 +739,7 @@ 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. #------------------------------- @@ -728,6 +749,7 @@ 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. #------------------------------- @@ -736,6 +758,7 @@ 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. #------------------------------- @@ -745,6 +768,7 @@ NamePlural = 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. #------------------------------- @@ -754,6 +778,7 @@ NamePlural = 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. #------------------------------- @@ -763,6 +788,7 @@ NamePlural = 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. #------------------------------- @@ -772,6 +798,7 @@ 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. #------------------------------- @@ -781,6 +808,7 @@ 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. #------------------------------- @@ -790,6 +818,7 @@ 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. #------------------------------- @@ -799,6 +828,7 @@ 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. #------------------------------- @@ -825,6 +855,7 @@ 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. #------------------------------- @@ -849,6 +880,7 @@ 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. #------------------------------- @@ -865,6 +897,7 @@ 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. #------------------------------- @@ -873,6 +906,7 @@ Name = Choice Specs NamePlural = 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. #------------------------------- @@ -881,6 +915,7 @@ 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. #------------------------------- @@ -889,6 +924,7 @@ 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. #------------------------------- @@ -897,6 +933,7 @@ 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. #------------------------------- @@ -905,6 +942,7 @@ 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. #------------------------------- @@ -913,6 +951,7 @@ 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. #------------------------------- @@ -921,6 +960,7 @@ 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. #------------------------------- @@ -929,6 +969,7 @@ Name = Light Clay NamePlural = Light Clays 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. #------------------------------- @@ -937,6 +978,7 @@ 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. #------------------------------- @@ -946,6 +988,7 @@ 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. #------------------------------- @@ -954,6 +997,7 @@ 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. #------------------------------- @@ -963,6 +1007,7 @@ NamePlural = Black Sludges 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. #------------------------------- @@ -971,6 +1016,7 @@ Name = Leftovers NamePlural = 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. #------------------------------- @@ -979,6 +1025,7 @@ 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. #------------------------------- @@ -987,6 +1034,7 @@ 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. #------------------------------- @@ -995,6 +1043,7 @@ 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. #------------------------------- @@ -1003,6 +1052,7 @@ 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. #------------------------------- @@ -1011,6 +1061,7 @@ 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. #------------------------------- @@ -1019,6 +1070,7 @@ 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. #------------------------------- @@ -1027,6 +1079,7 @@ Name = Luminous Moss NamePlural = Luminous Mosses 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. #------------------------------- @@ -1035,6 +1088,7 @@ 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. #------------------------------- @@ -1043,6 +1097,7 @@ 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. #------------------------------- @@ -1051,6 +1106,7 @@ 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. #------------------------------- @@ -1059,6 +1115,7 @@ Name = Throat Spray NamePlural = Throat Sprays Pocket = 1 Price = 4000 +BPPrice = 10 Flags = Fling_30 Description = Raises Sp. Atk when a Pokémon uses a sound-based move. #------------------------------- @@ -1067,6 +1124,7 @@ 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. #------------------------------- @@ -1075,6 +1133,7 @@ Name = Room Service NamePlural = Room Services 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. #------------------------------- @@ -1119,6 +1178,7 @@ 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. #------------------------------- @@ -1127,6 +1187,7 @@ 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. #------------------------------- @@ -1136,6 +1197,7 @@ 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. #------------------------------- @@ -1144,6 +1206,7 @@ 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. #------------------------------- @@ -1152,6 +1215,7 @@ Name = Wise Glasses NamePlural = 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. #------------------------------- @@ -1161,6 +1225,7 @@ 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. #------------------------------- @@ -1169,6 +1234,7 @@ 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. #------------------------------- @@ -1177,6 +1243,7 @@ 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. #------------------------------- @@ -1185,6 +1252,7 @@ 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. #------------------------------- @@ -1193,6 +1261,7 @@ 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. #------------------------------- @@ -1201,6 +1270,7 @@ 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. #------------------------------- @@ -1209,6 +1279,7 @@ 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. #------------------------------- @@ -1218,6 +1289,7 @@ 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. #------------------------------- @@ -1227,6 +1299,7 @@ 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. #------------------------------- @@ -1236,6 +1309,7 @@ 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. #------------------------------- @@ -1244,6 +1318,7 @@ 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. #------------------------------- @@ -1252,6 +1327,7 @@ 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. #------------------------------- @@ -1260,6 +1336,7 @@ 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. #------------------------------- @@ -1268,6 +1345,7 @@ 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. #------------------------------- @@ -1277,6 +1355,7 @@ 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. #------------------------------- @@ -1285,6 +1364,7 @@ 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. #------------------------------- @@ -1293,6 +1373,7 @@ 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. #------------------------------- @@ -1301,6 +1382,7 @@ 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. #------------------------------- @@ -1309,6 +1391,7 @@ 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. #------------------------------- @@ -1317,6 +1400,7 @@ 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. #------------------------------- @@ -1325,6 +1409,7 @@ 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. #------------------------------- @@ -1333,6 +1418,7 @@ 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. #------------------------------- @@ -1871,6 +1957,7 @@ 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. #------------------------------- @@ -1919,6 +2006,7 @@ 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. #------------------------------- @@ -1927,6 +2015,7 @@ 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. #------------------------------- @@ -2144,6 +2233,7 @@ 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. #------------------------------- @@ -2153,6 +2243,7 @@ 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. #------------------------------- @@ -2162,6 +2253,7 @@ 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. #------------------------------- @@ -2171,6 +2263,7 @@ 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. #------------------------------- @@ -2180,6 +2273,7 @@ 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. #------------------------------- @@ -2189,6 +2283,7 @@ 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. #------------------------------- @@ -2198,6 +2293,7 @@ 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. #------------------------------- @@ -2207,6 +2303,7 @@ NamePlural = Reaper Cloths 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. #------------------------------- @@ -2216,6 +2313,7 @@ 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. #------------------------------- @@ -2225,6 +2323,7 @@ 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. #------------------------------- @@ -2234,6 +2333,7 @@ NamePlural = Whipped Dreams 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. #------------------------------- @@ -2243,6 +2343,7 @@ 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. #------------------------------- @@ -2251,6 +2352,7 @@ 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. #------------------------------- @@ -2259,6 +2361,7 @@ 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. #------------------------------- @@ -2267,6 +2370,7 @@ 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. #------------------------------- @@ -2275,6 +2379,7 @@ 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. #------------------------------- @@ -2283,6 +2388,7 @@ 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. #------------------------------- @@ -2291,6 +2397,7 @@ 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. #------------------------------- @@ -2299,6 +2406,7 @@ 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. #------------------------------- @@ -2307,6 +2415,7 @@ 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. #------------------------------- @@ -2314,6 +2423,7 @@ Description = One of a variety of mysterious Mega Stones. Have Venusaur hold it, Name = Charizardite X NamePlural = Charizardite Xs Pocket = 1 +BPPrice = 50 Price = 0 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. @@ -2323,6 +2433,7 @@ 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. #------------------------------- @@ -2331,6 +2442,7 @@ 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. #------------------------------- @@ -2339,6 +2451,7 @@ 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. #------------------------------- @@ -2347,6 +2460,7 @@ 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. #------------------------------- @@ -2355,6 +2469,7 @@ 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. #------------------------------- @@ -2363,6 +2478,7 @@ 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. #------------------------------- @@ -2371,6 +2487,7 @@ 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. #------------------------------- @@ -2379,6 +2496,7 @@ 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. #------------------------------- @@ -2387,6 +2505,7 @@ 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. #------------------------------- @@ -2395,6 +2514,7 @@ 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. #------------------------------- @@ -2403,6 +2523,7 @@ 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. #------------------------------- @@ -2411,6 +2532,7 @@ 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. #------------------------------- @@ -2419,6 +2541,7 @@ 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. #------------------------------- @@ -2427,6 +2550,7 @@ 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. #------------------------------- @@ -2435,6 +2559,7 @@ 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. #------------------------------- @@ -2443,6 +2568,7 @@ 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. #------------------------------- @@ -2451,6 +2577,7 @@ 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. #------------------------------- @@ -2459,6 +2586,7 @@ 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. #------------------------------- @@ -2467,6 +2595,7 @@ 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. #------------------------------- @@ -2475,6 +2604,7 @@ 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. #------------------------------- @@ -2483,6 +2613,7 @@ 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. #------------------------------- @@ -2491,6 +2622,7 @@ 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. #------------------------------- @@ -2499,6 +2631,7 @@ 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. #------------------------------- @@ -2507,6 +2640,7 @@ 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. #------------------------------- @@ -2515,6 +2649,7 @@ 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. #------------------------------- @@ -2523,6 +2658,7 @@ 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. #------------------------------- @@ -2531,6 +2667,7 @@ 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. #------------------------------- @@ -2539,6 +2676,7 @@ 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. #------------------------------- @@ -2547,6 +2685,7 @@ 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. #------------------------------- @@ -2555,6 +2694,7 @@ 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. #------------------------------- @@ -2563,6 +2703,7 @@ 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. #------------------------------- @@ -2571,6 +2712,7 @@ 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. #------------------------------- @@ -2579,6 +2721,7 @@ 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. #------------------------------- @@ -2587,6 +2730,7 @@ 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. #------------------------------- @@ -2595,6 +2739,7 @@ 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. #------------------------------- @@ -2603,6 +2748,7 @@ 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. #------------------------------- @@ -2611,6 +2757,7 @@ 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. #------------------------------- @@ -2619,6 +2766,7 @@ 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. #------------------------------- @@ -2627,6 +2775,7 @@ 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. #------------------------------- @@ -2635,6 +2784,7 @@ 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. #------------------------------- @@ -2643,6 +2793,7 @@ 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. #------------------------------- @@ -2651,6 +2802,7 @@ 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. #------------------------------- @@ -2659,6 +2811,7 @@ 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. #------------------------------- @@ -2667,6 +2820,7 @@ 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. #------------------------------- @@ -2675,6 +2829,7 @@ 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. #------------------------------- @@ -2684,6 +2839,7 @@ 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] @@ -2692,6 +2848,7 @@ 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. #------------------------------- [POTION] @@ -2729,6 +2886,7 @@ Name = Max Potion NamePlural = Max Potions Pocket = 2 Price = 2500 +BPPrice = 2 FieldUse = OnPokemon BattleUse = OnPokemon Flags = Fling_30 @@ -2908,6 +3066,7 @@ Name = Max Revive NamePlural = Max Revives Pocket = 2 Price = 4000 +BPPrice = 20 FieldUse = OnPokemon BattleUse = OnPokemon Flags = Fling_30 @@ -3029,6 +3188,7 @@ Name = Ether NamePlural = Ethers Pocket = 2 Price = 1200 +BPPrice = 4 FieldUse = OnPokemon BattleUse = OnMove Flags = Fling_30 @@ -3069,6 +3229,7 @@ Name = PP Up NamePlural = PP Ups Pocket = 2 Price = 10000 +BPPrice = 10 FieldUse = OnPokemon Flags = Fling_30 Description = It slightly raises the maximum PP of a selected move that has been learned by the target Pokémon. @@ -3195,6 +3356,7 @@ Name = Lonely Mint NamePlural = Lonely Mints Pocket = 2 Price = 20 +BPPrice = 50 FieldUse = OnPokemon Flags = Fling_10 Description = When a Pokémon smells this mint, its Attack will grow more easily, but its Defense will grow more slowly. @@ -3204,6 +3366,7 @@ Name = Adamant Mint NamePlural = Adamant Mints Pocket = 2 Price = 20 +BPPrice = 50 FieldUse = OnPokemon Flags = Fling_10 Description = When a Pokémon smells this mint, its Attack will grow more easily, but its Sp. Atk will grow more slowly. @@ -3213,6 +3376,7 @@ Name = Naughty Mint NamePlural = Naughty Mints Pocket = 2 Price = 20 +BPPrice = 50 FieldUse = OnPokemon Flags = Fling_10 Description = When a Pokémon smells this mint, its Attack will grow more easily, but its Sp. Def will grow more slowly. @@ -3222,6 +3386,7 @@ Name = Brave Mint NamePlural = Brave Mints Pocket = 2 Price = 20 +BPPrice = 50 FieldUse = OnPokemon Flags = Fling_10 Description = When a Pokémon smells this mint, its Attack will grow more easily, but its Speed will grow more slowly. @@ -3231,6 +3396,7 @@ Name = Bold Mint NamePlural = Bold Mints Pocket = 2 Price = 20 +BPPrice = 50 FieldUse = OnPokemon Flags = Fling_10 Description = When a Pokémon smells this mint, its Defense will grow more easily, but its Attack will grow more slowly. @@ -3240,6 +3406,7 @@ Name = Impish Mint NamePlural = Impish Mints Pocket = 2 Price = 20 +BPPrice = 50 FieldUse = OnPokemon Flags = Fling_10 Description = When a Pokémon smells this mint, its Defense will grow more easily, but its Sp. Atk will grow more slowly. @@ -3249,6 +3416,7 @@ Name = Lax Mint NamePlural = Lax Mints Pocket = 2 Price = 20 +BPPrice = 50 FieldUse = OnPokemon Flags = Fling_10 Description = When a Pokémon smells this mint, its Defense will grow more easily, but its Sp. Def will grow more slowly. @@ -3258,6 +3426,7 @@ Name = Relaxed Mint NamePlural = Relaxed Mints Pocket = 2 Price = 20 +BPPrice = 50 FieldUse = OnPokemon Flags = Fling_10 Description = When a Pokémon smells this mint, its Defense will grow more easily, but its Speed will grow more slowly. @@ -3267,6 +3436,7 @@ Name = Modest Mint NamePlural = Modest Mints Pocket = 2 Price = 20 +BPPrice = 50 FieldUse = OnPokemon Flags = Fling_10 Description = When a Pokémon smells this mint, its Sp. Atk will grow more easily, but its Attack will grow more slowly. @@ -3276,6 +3446,7 @@ Name = Mild Mint NamePlural = Mild Mints Pocket = 2 Price = 20 +BPPrice = 50 FieldUse = OnPokemon Flags = Fling_10 Description = When a Pokémon smells this mint, its Sp. Atk will grow more easily, but its Defense will grow more slowly. @@ -3285,6 +3456,7 @@ Name = Rash Mint NamePlural = Rash Mints Pocket = 2 Price = 20 +BPPrice = 50 FieldUse = OnPokemon Flags = Fling_10 Description = When a Pokémon smells this mint, its Sp. Atk will grow more easily, but its Sp. Def will grow more slowly. @@ -3294,6 +3466,7 @@ Name = Quiet Mint NamePlural = Quiet Mints Pocket = 2 Price = 20 +BPPrice = 50 FieldUse = OnPokemon Flags = Fling_10 Description = When a Pokémon smells this mint, its Sp. Atk will grow more easily, but its Speed will grow more slowly. @@ -3303,6 +3476,7 @@ Name = Calm Mint NamePlural = Calm Mints Pocket = 2 Price = 20 +BPPrice = 50 FieldUse = OnPokemon Flags = Fling_10 Description = When a Pokémon smells this mint, its Sp. Def will grow more easily, but its Attack will grow more slowly. @@ -3312,6 +3486,7 @@ Name = Gentle Mint NamePlural = Gentle Mints Pocket = 2 Price = 20 +BPPrice = 50 FieldUse = OnPokemon Flags = Fling_10 Description = When a Pokémon smells this mint, its Sp. Def will grow more easily, but its Defense will grow more slowly. @@ -3321,6 +3496,7 @@ Name = Careful Mint NamePlural = Careful Mints Pocket = 2 Price = 20 +BPPrice = 50 FieldUse = OnPokemon Flags = Fling_10 Description = When a Pokémon smells this mint, its Sp. Def will grow more easily, but its Sp. Atk will grow more slowly. @@ -3330,6 +3506,7 @@ Name = Sassy Mint NamePlural = Sassy Mints Pocket = 2 Price = 20 +BPPrice = 50 FieldUse = OnPokemon Flags = Fling_10 Description = When a Pokémon smells this mint, its Sp. Def will grow more easily, but its Speed will grow more slowly. @@ -3339,6 +3516,7 @@ Name = Timid Mint NamePlural = Timid Mints Pocket = 2 Price = 20 +BPPrice = 50 FieldUse = OnPokemon Flags = Fling_10 Description = When a Pokémon smells this mint, its Speed will grow more easily, but its Attack will grow more slowly. @@ -3348,6 +3526,7 @@ Name = Hasty Mint NamePlural = Hasty Mints Pocket = 2 Price = 20 +BPPrice = 50 FieldUse = OnPokemon Flags = Fling_10 Description = When a Pokémon smells this mint, its Speed will grow more easily, but its Defense will grow more slowly. @@ -3357,6 +3536,7 @@ Name = Jolly Mint NamePlural = Jolly Mints Pocket = 2 Price = 20 +BPPrice = 50 FieldUse = OnPokemon Flags = Fling_10 Description = When a Pokémon smells this mint, its Speed will grow more easily, but its Sp. Atk will grow more slowly. @@ -3366,6 +3546,7 @@ Name = Naive Mint NamePlural = Naive Mints Pocket = 2 Price = 20 +BPPrice = 50 FieldUse = OnPokemon Flags = Fling_10 Description = When a Pokémon smells this mint, its Speed will grow more easily, but its Sp. Def will grow more slowly. @@ -3375,6 +3556,7 @@ Name = Serious Mint NamePlural = Serious Mints Pocket = 2 Price = 20 +BPPrice = 50 FieldUse = OnPokemon Flags = Fling_10 Description = When a Pokémon smells this mint, all of its stats will grow at an equal rate. @@ -3384,6 +3566,7 @@ Name = Ability Capsule NamePlural = Ability Capsule Pocket = 2 Price = 10000 +BPPrice = 50 FieldUse = OnPokemon Description = A capsule that allows a Pokémon with two Abilities to switch between these Abilities when it is used. #------------------------------- @@ -3392,6 +3575,7 @@ Name = Ability Patch NamePlural = Ability Patches Pocket = 2 Price = 10000 +BPPrice = 200 FieldUse = OnPokemon Description = A patch that allows a Pokémon with a regular Ability to have a rare Ability. #------------------------------- @@ -3445,6 +3629,7 @@ Name = Rare Candy NamePlural = Rare Candies Pocket = 2 Price = 10000 +BPPrice = 20 FieldUse = OnPokemon Flags = Fling_30 Description = A candy that is packed with energy. It raises the level of a single Pokémon by one. @@ -3689,6 +3874,7 @@ Name = TM01 NamePlural = TM01s Pocket = 4 Price = 3000 +BPPrice = 32 FieldUse = TR Flags = Fling_150 Move = FOCUSPUNCH @@ -3699,6 +3885,7 @@ Name = TM02 NamePlural = TM02s Pocket = 4 Price = 3000 +BPPrice = 32 FieldUse = TR Flags = Fling_80 Move = DRAGONCLAW @@ -3709,6 +3896,7 @@ Name = TM03 NamePlural = TM03s Pocket = 4 Price = 3000 +BPPrice = 32 FieldUse = TR Flags = Fling_60 Move = WATERPULSE @@ -3719,6 +3907,7 @@ Name = TM04 NamePlural = TM04s Pocket = 4 Price = 1500 +BPPrice = 48 FieldUse = TR Flags = Fling_10 Move = CALMMIND @@ -3729,6 +3918,7 @@ Name = TM05 NamePlural = TM05s Pocket = 4 Price = 1000 +BPPrice = 32 FieldUse = TR Flags = Fling_10 Move = ROAR @@ -3739,6 +3929,7 @@ Name = TM06 NamePlural = TM06s Pocket = 4 Price = 3000 +BPPrice = 32 FieldUse = TR Flags = Fling_10 Move = TOXIC @@ -3749,6 +3940,7 @@ Name = TM07 NamePlural = TM07s Pocket = 4 Price = 2000 +BPPrice = 32 FieldUse = TR Flags = Fling_10 Move = HAIL @@ -3759,6 +3951,7 @@ Name = TM08 NamePlural = TM08s Pocket = 4 Price = 1500 +BPPrice = 48 FieldUse = TR Flags = Fling_10 Move = BULKUP @@ -3769,6 +3962,7 @@ Name = TM09 NamePlural = TM09s Pocket = 4 Price = 2000 +BPPrice = 32 FieldUse = TR Flags = Fling_25 Move = BULLETSEED @@ -3779,6 +3973,7 @@ Name = TM10 NamePlural = TM10s Pocket = 4 Price = 1500 +BPPrice = 32 FieldUse = TR Flags = Fling_10 Move = WORKUP @@ -3789,6 +3984,7 @@ Name = TM11 NamePlural = TM11s Pocket = 4 Price = 2000 +BPPrice = 32 FieldUse = TR Flags = Fling_10 Move = SUNNYDAY @@ -3799,6 +3995,7 @@ Name = TM12 NamePlural = TM12s Pocket = 4 Price = 1500 +BPPrice = 32 FieldUse = TR Flags = Fling_10 Move = TAUNT @@ -3809,6 +4006,7 @@ Name = TM13 NamePlural = TM13s Pocket = 4 Price = 3000 +BPPrice = 32 FieldUse = TR Flags = Fling_90 Move = ICEBEAM @@ -3819,6 +4017,7 @@ Name = TM14 NamePlural = TM14s Pocket = 4 Price = 5500 +BPPrice = 32 FieldUse = TR Flags = Fling_110 Move = BLIZZARD @@ -3829,6 +4028,7 @@ Name = TM15 NamePlural = TM15s Pocket = 4 Price = 7500 +BPPrice = 32 FieldUse = TR Flags = Fling_150 Move = HYPERBEAM @@ -3839,6 +4039,7 @@ Name = TM16 NamePlural = TM16s Pocket = 4 Price = 2000 +BPPrice = 32 FieldUse = TR Flags = Fling_10 Move = LIGHTSCREEN @@ -3849,6 +4050,7 @@ Name = TM17 NamePlural = TM17s Pocket = 4 Price = 2000 +BPPrice = 32 FieldUse = TR Flags = Fling_10 Move = PROTECT @@ -3859,6 +4061,7 @@ Name = TM18 NamePlural = TM18s Pocket = 4 Price = 2000 +BPPrice = 32 FieldUse = TR Flags = Fling_10 Move = RAINDANCE @@ -3869,6 +4072,7 @@ Name = TM19 NamePlural = TM19s Pocket = 4 Price = 3000 +BPPrice = 32 FieldUse = TR Flags = Fling_75 Move = GIGADRAIN @@ -3879,6 +4083,7 @@ Name = TM20 NamePlural = TM20s Pocket = 4 Price = 2000 +BPPrice = 32 FieldUse = TR Flags = Fling_10 Move = SAFEGUARD @@ -3889,6 +4094,7 @@ Name = TM21 NamePlural = TM21s Pocket = 4 Price = 3000 +BPPrice = 32 FieldUse = TR Flags = Fling_80 Move = DAZZLINGGLEAM @@ -3899,6 +4105,7 @@ Name = TM22 NamePlural = TM22s Pocket = 4 Price = 3000 +BPPrice = 32 FieldUse = TR Flags = Fling_120 Move = SOLARBEAM @@ -3909,6 +4116,7 @@ Name = TM23 NamePlural = TM23s Pocket = 4 Price = 3000 +BPPrice = 32 FieldUse = TR Flags = Fling_100 Move = IRONTAIL @@ -3919,6 +4127,7 @@ Name = TM24 NamePlural = TM24s Pocket = 4 Price = 3000 +BPPrice = 32 FieldUse = TR Flags = Fling_90 Move = THUNDERBOLT @@ -3929,6 +4138,7 @@ Name = TM25 NamePlural = TM25s Pocket = 4 Price = 5500 +BPPrice = 32 FieldUse = TR Flags = Fling_110 Move = THUNDER @@ -3939,6 +4149,7 @@ Name = TM26 NamePlural = TM26s Pocket = 4 Price = 3000 +BPPrice = 80 FieldUse = TR Flags = Fling_100 Move = EARTHQUAKE @@ -3949,6 +4160,7 @@ Name = TM27 NamePlural = TM27s Pocket = 4 Price = 3000 +BPPrice = 32 FieldUse = TR Flags = Fling_65 Move = LOWSWEEP @@ -3959,6 +4171,7 @@ Name = TM28 NamePlural = TM28s Pocket = 4 Price = 2000 +BPPrice = 32 FieldUse = TR Flags = Fling_80 Move = DIG @@ -3969,6 +4182,7 @@ Name = TM29 NamePlural = TM29s Pocket = 4 Price = 3000 +BPPrice = 32 FieldUse = TR Flags = Fling_90 Move = PSYCHIC @@ -3979,6 +4193,7 @@ Name = TM30 NamePlural = TM30s Pocket = 4 Price = 3000 +BPPrice = 64 FieldUse = TR Flags = Fling_80 Move = SHADOWBALL @@ -3989,6 +4204,7 @@ Name = TM31 NamePlural = TM31s Pocket = 4 Price = 3000 +BPPrice = 40 FieldUse = TR Flags = Fling_75 Move = BRICKBREAK @@ -3999,6 +4215,7 @@ Name = TM32 NamePlural = TM32s Pocket = 4 Price = 1000 +BPPrice = 32 FieldUse = TR Flags = Fling_10 Move = DOUBLETEAM @@ -4009,6 +4226,7 @@ Name = TM33 NamePlural = TM33s Pocket = 4 Price = 2000 +BPPrice = 32 FieldUse = TR Flags = Fling_10 Move = REFLECT @@ -4019,6 +4237,7 @@ Name = TM34 NamePlural = TM34s Pocket = 4 Price = 3000 +BPPrice = 32 FieldUse = TR Flags = Fling_60 Move = SHOCKWAVE @@ -4029,6 +4248,7 @@ Name = TM35 NamePlural = TM35s Pocket = 4 Price = 3000 +BPPrice = 32 FieldUse = TR Flags = Fling_90 Move = FLAMETHROWER @@ -4039,6 +4259,7 @@ Name = TM36 NamePlural = TM36s Pocket = 4 Price = 3000 +BPPrice = 80 FieldUse = TR Flags = Fling_90 Move = SLUDGEBOMB @@ -4049,6 +4270,7 @@ Name = TM37 NamePlural = TM37s Pocket = 4 Price = 2000 +BPPrice = 32 FieldUse = TR Flags = Fling_10 Move = SANDSTORM @@ -4059,6 +4281,7 @@ Name = TM38 NamePlural = TM38s Pocket = 4 Price = 5500 +BPPrice = 32 FieldUse = TR Flags = Fling_110 Move = FIREBLAST @@ -4069,6 +4292,7 @@ Name = TM39 NamePlural = TM39s Pocket = 4 Price = 3000 +BPPrice = 32 FieldUse = TR Flags = Fling_60 Move = ROCKTOMB @@ -4079,6 +4303,7 @@ Name = TM40 NamePlural = TM40s Pocket = 4 Price = 3000 +BPPrice = 40 FieldUse = TR Flags = Fling_60 Move = AERIALACE @@ -4089,6 +4314,7 @@ Name = TM41 NamePlural = TM41s Pocket = 4 Price = 1500 +BPPrice = 32 FieldUse = TR Flags = Fling_10 Move = TORMENT @@ -4099,6 +4325,7 @@ Name = TM42 NamePlural = TM42s Pocket = 4 Price = 3000 +BPPrice = 32 FieldUse = TR Flags = Fling_70 Move = FACADE @@ -4109,6 +4336,7 @@ Name = TM43 NamePlural = TM43s Pocket = 4 Price = 3000 +BPPrice = 32 FieldUse = TR Flags = Fling_70 Move = VOLTSWITCH @@ -4119,6 +4347,7 @@ Name = TM44 NamePlural = TM44s Pocket = 4 Price = 3000 +BPPrice = 32 FieldUse = TR Flags = Fling_10 Move = REST @@ -4129,6 +4358,7 @@ Name = TM45 NamePlural = TM45s Pocket = 4 Price = 3000 +BPPrice = 32 FieldUse = TR Flags = Fling_10 Move = ATTRACT @@ -4139,6 +4369,7 @@ Name = TM46 NamePlural = TM46s Pocket = 4 Price = 2000 +BPPrice = 32 FieldUse = TR Flags = Fling_60 Move = THIEF @@ -4149,6 +4380,7 @@ Name = TM47 NamePlural = TM47s Pocket = 4 Price = 3000 +BPPrice = 32 FieldUse = TR Flags = Fling_70 Move = STEELWING @@ -4159,6 +4391,7 @@ Name = TM48 NamePlural = TM48s Pocket = 4 Price = 3000 +BPPrice = 32 FieldUse = TR Flags = Fling_10 Move = SKILLSWAP @@ -4169,6 +4402,7 @@ Name = TM49 NamePlural = TM49s Pocket = 4 Price = 3000 +BPPrice = 32 FieldUse = TR Flags = Fling_80 Move = SCALD @@ -4179,6 +4413,7 @@ Name = TM50 NamePlural = TM50s Pocket = 4 Price = 5500 +BPPrice = 32 FieldUse = TR Flags = Fling_130 Move = OVERHEAT @@ -4189,6 +4424,7 @@ Name = TM51 NamePlural = TM51s Pocket = 4 Price = 2000 +BPPrice = 32 FieldUse = TR Flags = Fling_10 Move = ROOST @@ -4199,6 +4435,7 @@ Name = TM52 NamePlural = TM52s Pocket = 4 Price = 5500 +BPPrice = 32 FieldUse = TR Flags = Fling_120 Move = FOCUSBLAST @@ -4209,6 +4446,7 @@ Name = TM53 NamePlural = TM53s Pocket = 4 Price = 3000 +BPPrice = 64 FieldUse = TR Flags = Fling_90 Move = ENERGYBALL @@ -4219,6 +4457,7 @@ Name = TM54 NamePlural = TM54s Pocket = 4 Price = 2000 +BPPrice = 32 FieldUse = TR Flags = Fling_40 Move = FALSESWIPE @@ -4229,6 +4468,7 @@ Name = TM55 NamePlural = TM55s Pocket = 4 Price = 3000 +BPPrice = 32 FieldUse = TR Flags = Fling_65 Move = BRINE @@ -4239,6 +4479,7 @@ Name = TM56 NamePlural = TM56s Pocket = 4 Price = 2000 +BPPrice = 32 FieldUse = TR Flags = Fling_10 Move = FLING @@ -4249,6 +4490,7 @@ Name = TM57 NamePlural = TM57s Pocket = 4 Price = 3000 +BPPrice = 32 FieldUse = TR Flags = Fling_50 Move = CHARGEBEAM @@ -4259,6 +4501,7 @@ Name = TM58 NamePlural = TM58s Pocket = 4 Price = 2000 +BPPrice = 32 FieldUse = TR Flags = Fling_10 Move = ENDURE @@ -4269,6 +4512,7 @@ Name = TM59 NamePlural = TM59s Pocket = 4 Price = 3000 +BPPrice = 80 FieldUse = TR Flags = Fling_85 Move = DRAGONPULSE @@ -4279,6 +4523,7 @@ Name = TM60 NamePlural = TM60s Pocket = 4 Price = 3000 +BPPrice = 32 FieldUse = TR Flags = Fling_75 Move = DRAINPUNCH @@ -4289,6 +4534,7 @@ Name = TM61 NamePlural = TM61s Pocket = 4 Price = 2000 +BPPrice = 32 FieldUse = TR Flags = Fling_10 Move = WILLOWISP @@ -4299,6 +4545,7 @@ Name = TM62 NamePlural = TM62s Pocket = 4 Price = 3000 +BPPrice = 32 FieldUse = TR Flags = Fling_90 Move = BUGBUZZ @@ -4309,6 +4556,7 @@ Name = TM63 NamePlural = TM63s Pocket = 4 Price = 2000 +BPPrice = 32 FieldUse = TR Flags = Fling_10 Move = NASTYPLOT @@ -4319,6 +4567,7 @@ Name = TM64 NamePlural = TM64s Pocket = 4 Price = 7500 +BPPrice = 32 FieldUse = TR Flags = Fling_250 Move = EXPLOSION @@ -4329,6 +4578,7 @@ Name = TM65 NamePlural = TM65s Pocket = 4 Price = 3000 +BPPrice = 32 FieldUse = TR Flags = Fling_70 Move = SHADOWCLAW @@ -4339,6 +4589,7 @@ Name = TM66 NamePlural = TM66s Pocket = 4 Price = 3000 +BPPrice = 32 FieldUse = TR Flags = Fling_50 Move = PAYBACK @@ -4349,6 +4600,7 @@ Name = TM67 NamePlural = TM67s Pocket = 4 Price = 1000 +BPPrice = 32 FieldUse = TR Flags = Fling_10 Move = RECYCLE @@ -4359,6 +4611,7 @@ Name = TM68 NamePlural = TM68s Pocket = 4 Price = 7500 +BPPrice = 32 FieldUse = TR Flags = Fling_150 Move = GIGAIMPACT @@ -4369,6 +4622,7 @@ Name = TM69 NamePlural = TM69s Pocket = 4 Price = 1500 +BPPrice = 32 FieldUse = TR Flags = Fling_10 Move = ROCKPOLISH @@ -4379,6 +4633,7 @@ Name = TM70 NamePlural = TM70s Pocket = 4 Price = 1000 +BPPrice = 32 FieldUse = TR Flags = Fling_10 Move = FLASH @@ -4389,6 +4644,7 @@ Name = TM71 NamePlural = TM71s Pocket = 4 Price = 3000 +BPPrice = 80 FieldUse = TR Flags = Fling_100 Move = STONEEDGE @@ -4399,6 +4655,7 @@ Name = TM72 NamePlural = TM72s Pocket = 4 Price = 3000 +BPPrice = 32 FieldUse = TR Flags = Fling_60 Move = AVALANCHE @@ -4409,6 +4666,7 @@ Name = TM73 NamePlural = TM73s Pocket = 4 Price = 2000 +BPPrice = 32 FieldUse = TR Flags = Fling_10 Move = THUNDERWAVE @@ -4419,6 +4677,7 @@ Name = TM74 NamePlural = TM74s Pocket = 4 Price = 3000 +BPPrice = 32 FieldUse = TR Flags = Fling_10 Move = GYROBALL @@ -4429,6 +4688,7 @@ Name = TM75 NamePlural = TM75s Pocket = 4 Price = 1500 +BPPrice = 32 FieldUse = TR Flags = Fling_10 Move = SWORDSDANCE @@ -4439,6 +4699,7 @@ Name = TM76 NamePlural = TM76s Pocket = 4 Price = 2000 +BPPrice = 32 FieldUse = TR Flags = Fling_10 Move = STEALTHROCK @@ -4449,6 +4710,7 @@ Name = TM77 NamePlural = TM77s Pocket = 4 Price = 1500 +BPPrice = 32 FieldUse = TR Flags = Fling_10 Move = PSYCHUP @@ -4459,6 +4721,7 @@ Name = TM78 NamePlural = TM78s Pocket = 4 Price = 3000 +BPPrice = 32 FieldUse = TR Flags = Fling_55 Move = SNARL @@ -4469,6 +4732,7 @@ Name = TM79 NamePlural = TM79s Pocket = 4 Price = 3000 +BPPrice = 32 FieldUse = TR Flags = Fling_80 Move = DARKPULSE @@ -4479,6 +4743,7 @@ Name = TM80 NamePlural = TM80s Pocket = 4 Price = 3000 +BPPrice = 32 FieldUse = TR Flags = Fling_75 Move = ROCKSLIDE @@ -4489,6 +4754,7 @@ Name = TM81 NamePlural = TM81s Pocket = 4 Price = 3000 +BPPrice = 64 FieldUse = TR Flags = Fling_80 Move = XSCISSOR @@ -4499,6 +4765,7 @@ Name = TM82 NamePlural = TM82s Pocket = 4 Price = 1000 +BPPrice = 32 FieldUse = TR Flags = Fling_10 Move = SLEEPTALK @@ -4509,6 +4776,7 @@ Name = TM83 NamePlural = TM83s Pocket = 4 Price = 3000 +BPPrice = 32 FieldUse = TR Flags = Fling_60 Move = BULLDOZE @@ -4519,6 +4787,7 @@ Name = TM84 NamePlural = TM84s Pocket = 4 Price = 3000 +BPPrice = 32 FieldUse = TR Flags = Fling_80 Move = POISONJAB @@ -4529,6 +4798,7 @@ Name = TM85 NamePlural = TM85s Pocket = 4 Price = 3000 +BPPrice = 32 FieldUse = TR Flags = Fling_100 Move = DREAMEATER @@ -4539,6 +4809,7 @@ Name = TM86 NamePlural = TM86s Pocket = 4 Price = 3000 +BPPrice = 32 FieldUse = TR Flags = Fling_10 Move = GRASSKNOT @@ -4549,6 +4820,7 @@ Name = TM87 NamePlural = TM87s Pocket = 4 Price = 1500 +BPPrice = 32 FieldUse = TR Flags = Fling_10 Move = SWAGGER @@ -4559,6 +4831,7 @@ Name = TM88 NamePlural = TM88s Pocket = 4 Price = 3000 +BPPrice = 32 FieldUse = TR Flags = Fling_60 Move = PLUCK @@ -4569,6 +4842,7 @@ Name = TM89 NamePlural = TM89s Pocket = 4 Price = 3000 +BPPrice = 32 FieldUse = TR Flags = Fling_70 Move = UTURN @@ -4579,6 +4853,7 @@ Name = TM90 NamePlural = TM90s Pocket = 4 Price = 2000 +BPPrice = 32 FieldUse = TR Flags = Fling_10 Move = SUBSTITUTE @@ -4589,6 +4864,7 @@ Name = TM91 NamePlural = TM91s Pocket = 4 Price = 3000 +BPPrice = 32 FieldUse = TR Flags = Fling_80 Move = FLASHCANNON @@ -4599,6 +4875,7 @@ Name = TM92 NamePlural = TM92s Pocket = 4 Price = 5500 +BPPrice = 32 FieldUse = TR Flags = Fling_10 Move = TRICKROOM @@ -4609,6 +4886,7 @@ Name = TM93 NamePlural = TM93s Pocket = 4 Price = 2000 +BPPrice = 32 FieldUse = TR Flags = Fling_50 Move = CUT @@ -4619,6 +4897,7 @@ Name = TM94 NamePlural = TM94s Pocket = 4 Price = 2000 +BPPrice = 40 FieldUse = TR Flags = Fling_90 Move = FLY @@ -4629,6 +4908,7 @@ Name = TM95 NamePlural = TM95s Pocket = 4 Price = 2500 +BPPrice = 64 FieldUse = TR Flags = Fling_90 Move = SURF @@ -4639,6 +4919,7 @@ Name = TM96 NamePlural = TM96s Pocket = 4 Price = 2000 +BPPrice = 40 FieldUse = TR Flags = Fling_80 Move = STRENGTH @@ -4649,6 +4930,7 @@ Name = TM97 NamePlural = TM97s Pocket = 4 Price = 2000 +BPPrice = 32 FieldUse = TR Flags = Fling_10 Move = DEFOG @@ -4659,6 +4941,7 @@ Name = TM98 NamePlural = TM98s Pocket = 4 Price = 2000 +BPPrice = 40 FieldUse = TR Flags = Fling_40 Move = ROCKSMASH @@ -4669,6 +4952,7 @@ Name = TM99 NamePlural = TM99s Pocket = 4 Price = 2500 +BPPrice = 64 FieldUse = TR Flags = Fling_80 Move = WATERFALL @@ -4679,6 +4963,7 @@ Name = TM100 NamePlural = TM100s Pocket = 4 Price = 2000 +BPPrice = 32 FieldUse = TR Flags = Fling_90 Move = ROCKCLIMB @@ -5695,8 +5980,8 @@ Pocket = 7 Price = 20 FieldUse = OnPokemon BattleUse = OnPokemon -Consumable = false Flags = Fling_30 +Consumable = false Description = A blue flute made from blown glass. Its melody awakens a single Pokémon from sleep. #------------------------------- [YELLOWFLUTE] @@ -5705,8 +5990,8 @@ NamePlural = Yellow Flutes Pocket = 7 Price = 20 BattleUse = OnBattler -Consumable = false Flags = Fling_30 +Consumable = false Description = A yellow flute made from blown glass. Its melody snaps a single Pokémon out of confusion. #------------------------------- [REDFLUTE] @@ -5715,8 +6000,8 @@ NamePlural = Red Flutes Pocket = 7 Price = 20 BattleUse = OnBattler -Consumable = false Flags = Fling_30 +Consumable = false Description = A red flute made from blown glass. Its melody snaps a single Pokémon out of infatuation. #------------------------------- [POKEDOLL] diff --git a/PBS/items.txt b/PBS/items.txt index a1cdb6091..4642a646e 100644 --- a/PBS/items.txt +++ b/PBS/items.txt @@ -93,6 +93,7 @@ Name = Fire Stone NamePlural = Fire Stones Pocket = 1 Price = 3000 +BPPrice = 5 FieldUse = OnPokemon Flags = EvolutionStone,Fling_30 Description = A peculiar stone that makes certain species of Pokémon evolve. It is colored orange. @@ -102,6 +103,7 @@ Name = Thunder Stone NamePlural = Thunder Stones Pocket = 1 Price = 3000 +BPPrice = 5 FieldUse = OnPokemon Flags = EvolutionStone,Fling_30 Description = A peculiar stone that makes certain species of Pokémon evolve. It has a thunderbolt pattern. @@ -111,6 +113,7 @@ Name = Water Stone NamePlural = Water Stones Pocket = 1 Price = 3000 +BPPrice = 5 FieldUse = OnPokemon Flags = EvolutionStone,Fling_30 Description = A peculiar stone that makes certain species of Pokémon evolve. It is a clear, light blue. @@ -120,6 +123,7 @@ Name = Leaf Stone NamePlural = Leaf Stones Pocket = 1 Price = 3000 +BPPrice = 5 FieldUse = OnPokemon Flags = EvolutionStone,Fling_30 Description = A peculiar stone that makes certain species of Pokémon evolve. It has a leaf pattern. @@ -129,6 +133,7 @@ Name = Moon Stone NamePlural = Moon Stones Pocket = 1 Price = 3000 +BPPrice = 5 FieldUse = OnPokemon Flags = EvolutionStone,Fling_30 Description = A peculiar stone that makes certain species of Pokémon evolve. It is as black as the night sky. @@ -138,6 +143,7 @@ Name = Sun Stone NamePlural = Sun Stones Pocket = 1 Price = 3000 +BPPrice = 5 FieldUse = OnPokemon Flags = EvolutionStone,Fling_30 Description = A peculiar stone that makes certain species of Pokémon evolve. It is as red as the sun. @@ -147,6 +153,7 @@ Name = Dusk Stone NamePlural = Dusk Stones Pocket = 1 Price = 3000 +BPPrice = 5 FieldUse = OnPokemon Flags = EvolutionStone,Fling_80 Description = A peculiar stone that makes certain species of Pokémon evolve. It is as dark as dark can be. @@ -156,6 +163,7 @@ Name = Dawn Stone NamePlural = Dawn Stones Pocket = 1 Price = 3000 +BPPrice = 5 FieldUse = OnPokemon Flags = EvolutionStone,Fling_80 Description = A peculiar stone that makes certain species of Pokémon evolve. It sparkles like eyes. @@ -165,6 +173,7 @@ Name = Shiny Stone NamePlural = Shiny Stones Pocket = 1 Price = 3000 +BPPrice = 5 FieldUse = OnPokemon Flags = EvolutionStone,Fling_80 Description = A peculiar stone that makes certain species of Pokémon evolve. It shines with a dazzling light. @@ -174,6 +183,7 @@ Name = Ice Stone NamePlural = Ice Stones Pocket = 1 Price = 3000 +BPPrice = 5 FieldUse = OnPokemon Flags = EvolutionStone,Fling_30 Description = A peculiar stone that makes certain species of Pokémon evolve. It has a snowflake pattern. @@ -183,6 +193,7 @@ Name = Sweet Apple NamePlural = Sweet Apples Pocket = 1 Price = 2200 +BPPrice = 5 FieldUse = OnPokemon Flags = EvolutionStone,Fling_30 Description = A peculiar apple that can make a certain species of Pokémon evolve. It's exceptionally sweet. @@ -192,6 +203,7 @@ Name = Tart Apple NamePlural = Tart Apples Pocket = 1 Price = 2200 +BPPrice = 5 FieldUse = OnPokemon Flags = EvolutionStone,Fling_30 Description = A peculiar apple that can make a certain species of Pokémon evolve. It's exceptionally tart. @@ -202,6 +214,7 @@ NamePlural = Cracked Pots Pocket = 1 Price = 3000 SellPrice = 800 +BPPrice = 5 FieldUse = OnPokemon Flags = EvolutionStone,Fling_80 Description = A peculiar cracked teapot that can make a certain species of Pokémon evolve. It makes delicious tea. @@ -212,6 +225,7 @@ NamePlural = Chipped Pots Pocket = 1 Price = 3000 SellPrice = 19000 +BPPrice = 5 FieldUse = OnPokemon Flags = EvolutionStone,Fling_80 Description = A peculiar chipped teapot that can make a certain species of Pokémon evolve. It makes delicious tea. @@ -221,6 +235,7 @@ Name = Galarica Cuff NamePlural = Galarica Cuffs Pocket = 1 Price = 6000 +BPPrice = 5 FieldUse = OnPokemon Flags = EvolutionStone,Fling_30 Description = A cuff made from woven-together Galarica Twigs. Giving it to a Galarian Slowpoke would make it very happy. @@ -230,6 +245,7 @@ Name = Galarica Wreath NamePlural = Galarica Wreaths Pocket = 1 Price = 6000 +BPPrice = 5 FieldUse = OnPokemon Flags = EvolutionStone,Fling_30 Description = A wreath made from woven-together Galarica Twigs. A Galarian Slowpoke wearing this would be very happy. @@ -683,6 +699,7 @@ 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. #------------------------------- @@ -692,6 +709,7 @@ NamePlural = Bright Powders 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. #------------------------------- @@ -701,6 +719,7 @@ 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. #------------------------------- @@ -710,6 +729,7 @@ 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. #------------------------------- @@ -719,6 +739,7 @@ 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. #------------------------------- @@ -728,6 +749,7 @@ 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. #------------------------------- @@ -736,6 +758,7 @@ 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. #------------------------------- @@ -745,6 +768,7 @@ NamePlural = 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. #------------------------------- @@ -754,6 +778,7 @@ NamePlural = 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. #------------------------------- @@ -763,6 +788,7 @@ NamePlural = 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. #------------------------------- @@ -772,6 +798,7 @@ 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. #------------------------------- @@ -781,6 +808,7 @@ 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. #------------------------------- @@ -790,6 +818,7 @@ 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. #------------------------------- @@ -799,6 +828,7 @@ 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. #------------------------------- @@ -825,6 +855,7 @@ 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. #------------------------------- @@ -849,6 +880,7 @@ 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. #------------------------------- @@ -865,6 +897,7 @@ 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. #------------------------------- @@ -873,6 +906,7 @@ Name = Choice Specs NamePlural = 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. #------------------------------- @@ -881,6 +915,7 @@ 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. #------------------------------- @@ -889,6 +924,7 @@ 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. #------------------------------- @@ -897,6 +933,7 @@ 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. #------------------------------- @@ -905,6 +942,7 @@ 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. #------------------------------- @@ -913,6 +951,7 @@ 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. #------------------------------- @@ -921,6 +960,7 @@ 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. #------------------------------- @@ -929,6 +969,7 @@ Name = Light Clay NamePlural = Light Clays 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. #------------------------------- @@ -937,6 +978,7 @@ 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. #------------------------------- @@ -946,6 +988,7 @@ 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. #------------------------------- @@ -954,6 +997,7 @@ 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. #------------------------------- @@ -963,6 +1007,7 @@ NamePlural = Black Sludges 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. #------------------------------- @@ -971,6 +1016,7 @@ Name = Leftovers NamePlural = 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. #------------------------------- @@ -979,6 +1025,7 @@ 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. #------------------------------- @@ -987,6 +1034,7 @@ 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. #------------------------------- @@ -995,6 +1043,7 @@ 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. #------------------------------- @@ -1003,6 +1052,7 @@ 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. #------------------------------- @@ -1011,6 +1061,7 @@ 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. #------------------------------- @@ -1019,6 +1070,7 @@ 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. #------------------------------- @@ -1027,6 +1079,7 @@ Name = Luminous Moss NamePlural = Luminous Mosses 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. #------------------------------- @@ -1035,6 +1088,7 @@ 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. #------------------------------- @@ -1043,6 +1097,7 @@ 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. #------------------------------- @@ -1051,6 +1106,7 @@ 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. #------------------------------- @@ -1059,6 +1115,7 @@ Name = Throat Spray NamePlural = Throat Sprays Pocket = 1 Price = 4000 +BPPrice = 10 Flags = Fling_30 Description = Raises Sp. Atk when a Pokémon uses a sound-based move. #------------------------------- @@ -1067,6 +1124,7 @@ 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. #------------------------------- @@ -1075,6 +1133,7 @@ Name = Room Service NamePlural = Room Services 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. #------------------------------- @@ -1119,6 +1178,7 @@ 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. #------------------------------- @@ -1127,6 +1187,7 @@ 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. #------------------------------- @@ -1136,6 +1197,7 @@ 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. #------------------------------- @@ -1144,6 +1206,7 @@ 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. #------------------------------- @@ -1152,6 +1215,7 @@ Name = Wise Glasses NamePlural = 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. #------------------------------- @@ -1161,6 +1225,7 @@ 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. #------------------------------- @@ -1169,6 +1234,7 @@ 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. #------------------------------- @@ -1177,6 +1243,7 @@ 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. #------------------------------- @@ -1185,6 +1252,7 @@ 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. #------------------------------- @@ -1193,6 +1261,7 @@ 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. #------------------------------- @@ -1201,6 +1270,7 @@ 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. #------------------------------- @@ -1209,6 +1279,7 @@ 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. #------------------------------- @@ -1218,6 +1289,7 @@ 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. #------------------------------- @@ -1227,6 +1299,7 @@ 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. #------------------------------- @@ -1236,6 +1309,7 @@ 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. #------------------------------- @@ -1244,6 +1318,7 @@ 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. #------------------------------- @@ -1252,6 +1327,7 @@ 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. #------------------------------- @@ -1260,6 +1336,7 @@ 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. #------------------------------- @@ -1268,6 +1345,7 @@ 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. #------------------------------- @@ -1277,6 +1355,7 @@ 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. #------------------------------- @@ -1285,6 +1364,7 @@ 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. #------------------------------- @@ -1293,6 +1373,7 @@ 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. #------------------------------- @@ -1301,6 +1382,7 @@ 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. #------------------------------- @@ -1309,6 +1391,7 @@ 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. #------------------------------- @@ -1317,6 +1400,7 @@ 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. #------------------------------- @@ -1325,6 +1409,7 @@ 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. #------------------------------- @@ -1333,6 +1418,7 @@ 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. #------------------------------- @@ -1871,6 +1957,7 @@ 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. #------------------------------- @@ -1919,6 +2006,7 @@ 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. #------------------------------- @@ -1927,6 +2015,7 @@ 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. #------------------------------- @@ -2144,6 +2233,7 @@ 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. #------------------------------- @@ -2153,6 +2243,7 @@ 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. #------------------------------- @@ -2162,6 +2253,7 @@ 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. #------------------------------- @@ -2171,6 +2263,7 @@ 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. #------------------------------- @@ -2180,6 +2273,7 @@ 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. #------------------------------- @@ -2189,6 +2283,7 @@ 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. #------------------------------- @@ -2198,6 +2293,7 @@ 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. #------------------------------- @@ -2207,6 +2303,7 @@ NamePlural = Reaper Cloths 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. #------------------------------- @@ -2216,6 +2313,7 @@ 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. #------------------------------- @@ -2225,6 +2323,7 @@ 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. #------------------------------- @@ -2234,6 +2333,7 @@ NamePlural = Whipped Dreams 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. #------------------------------- @@ -2243,6 +2343,7 @@ 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. #------------------------------- @@ -2251,6 +2352,7 @@ 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. #------------------------------- @@ -2259,6 +2361,7 @@ 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. #------------------------------- @@ -2267,6 +2370,7 @@ 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. #------------------------------- @@ -2275,6 +2379,7 @@ 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. #------------------------------- @@ -2283,6 +2388,7 @@ 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. #------------------------------- @@ -2291,6 +2397,7 @@ 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. #------------------------------- @@ -2299,6 +2406,7 @@ 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. #------------------------------- @@ -2307,6 +2415,7 @@ 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. #------------------------------- @@ -2314,6 +2423,7 @@ Description = One of a variety of mysterious Mega Stones. Have Venusaur hold it, Name = Charizardite X NamePlural = Charizardite Xs Pocket = 1 +BPPrice = 50 Price = 0 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. @@ -2323,6 +2433,7 @@ 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. #------------------------------- @@ -2331,6 +2442,7 @@ 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. #------------------------------- @@ -2339,6 +2451,7 @@ 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. #------------------------------- @@ -2347,6 +2460,7 @@ 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. #------------------------------- @@ -2355,6 +2469,7 @@ 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. #------------------------------- @@ -2363,6 +2478,7 @@ 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. #------------------------------- @@ -2371,6 +2487,7 @@ 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. #------------------------------- @@ -2379,6 +2496,7 @@ 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. #------------------------------- @@ -2387,6 +2505,7 @@ 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. #------------------------------- @@ -2395,6 +2514,7 @@ 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. #------------------------------- @@ -2403,6 +2523,7 @@ 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. #------------------------------- @@ -2411,6 +2532,7 @@ 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. #------------------------------- @@ -2419,6 +2541,7 @@ 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. #------------------------------- @@ -2427,6 +2550,7 @@ 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. #------------------------------- @@ -2435,6 +2559,7 @@ 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. #------------------------------- @@ -2443,6 +2568,7 @@ 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. #------------------------------- @@ -2451,6 +2577,7 @@ 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. #------------------------------- @@ -2459,6 +2586,7 @@ 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. #------------------------------- @@ -2467,6 +2595,7 @@ 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. #------------------------------- @@ -2475,6 +2604,7 @@ 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. #------------------------------- @@ -2483,6 +2613,7 @@ 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. #------------------------------- @@ -2491,6 +2622,7 @@ 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. #------------------------------- @@ -2499,6 +2631,7 @@ 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. #------------------------------- @@ -2507,6 +2640,7 @@ 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. #------------------------------- @@ -2515,6 +2649,7 @@ 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. #------------------------------- @@ -2523,6 +2658,7 @@ 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. #------------------------------- @@ -2531,6 +2667,7 @@ 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. #------------------------------- @@ -2539,6 +2676,7 @@ 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. #------------------------------- @@ -2547,6 +2685,7 @@ 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. #------------------------------- @@ -2555,6 +2694,7 @@ 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. #------------------------------- @@ -2563,6 +2703,7 @@ 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. #------------------------------- @@ -2571,6 +2712,7 @@ 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. #------------------------------- @@ -2579,6 +2721,7 @@ 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. #------------------------------- @@ -2587,6 +2730,7 @@ 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. #------------------------------- @@ -2595,6 +2739,7 @@ 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. #------------------------------- @@ -2603,6 +2748,7 @@ 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. #------------------------------- @@ -2611,6 +2757,7 @@ 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. #------------------------------- @@ -2619,6 +2766,7 @@ 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. #------------------------------- @@ -2627,6 +2775,7 @@ 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. #------------------------------- @@ -2635,6 +2784,7 @@ 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. #------------------------------- @@ -2643,6 +2793,7 @@ 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. #------------------------------- @@ -2651,6 +2802,7 @@ 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. #------------------------------- @@ -2659,6 +2811,7 @@ 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. #------------------------------- @@ -2667,6 +2820,7 @@ 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. #------------------------------- @@ -2675,6 +2829,7 @@ 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. #------------------------------- @@ -2684,6 +2839,7 @@ 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] @@ -2692,6 +2848,7 @@ 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. #------------------------------- [POTION] @@ -2729,6 +2886,7 @@ Name = Max Potion NamePlural = Max Potions Pocket = 2 Price = 2500 +BPPrice = 2 FieldUse = OnPokemon BattleUse = OnPokemon Flags = Fling_30 @@ -2908,6 +3066,7 @@ Name = Max Revive NamePlural = Max Revives Pocket = 2 Price = 4000 +BPPrice = 20 FieldUse = OnPokemon BattleUse = OnPokemon Flags = Fling_30 @@ -3029,6 +3188,7 @@ Name = Ether NamePlural = Ethers Pocket = 2 Price = 1200 +BPPrice = 4 FieldUse = OnPokemon BattleUse = OnMove Flags = Fling_30 @@ -3069,6 +3229,7 @@ Name = PP Up NamePlural = PP Ups Pocket = 2 Price = 10000 +BPPrice = 10 FieldUse = OnPokemon Flags = Fling_30 Description = It slightly raises the maximum PP of a selected move that has been learned by the target Pokémon. @@ -3195,6 +3356,7 @@ Name = Lonely Mint NamePlural = Lonely Mints Pocket = 2 Price = 20 +BPPrice = 50 FieldUse = OnPokemon Flags = Fling_10 Description = When a Pokémon smells this mint, its Attack will grow more easily, but its Defense will grow more slowly. @@ -3204,6 +3366,7 @@ Name = Adamant Mint NamePlural = Adamant Mints Pocket = 2 Price = 20 +BPPrice = 50 FieldUse = OnPokemon Flags = Fling_10 Description = When a Pokémon smells this mint, its Attack will grow more easily, but its Sp. Atk will grow more slowly. @@ -3213,6 +3376,7 @@ Name = Naughty Mint NamePlural = Naughty Mints Pocket = 2 Price = 20 +BPPrice = 50 FieldUse = OnPokemon Flags = Fling_10 Description = When a Pokémon smells this mint, its Attack will grow more easily, but its Sp. Def will grow more slowly. @@ -3222,6 +3386,7 @@ Name = Brave Mint NamePlural = Brave Mints Pocket = 2 Price = 20 +BPPrice = 50 FieldUse = OnPokemon Flags = Fling_10 Description = When a Pokémon smells this mint, its Attack will grow more easily, but its Speed will grow more slowly. @@ -3231,6 +3396,7 @@ Name = Bold Mint NamePlural = Bold Mints Pocket = 2 Price = 20 +BPPrice = 50 FieldUse = OnPokemon Flags = Fling_10 Description = When a Pokémon smells this mint, its Defense will grow more easily, but its Attack will grow more slowly. @@ -3240,6 +3406,7 @@ Name = Impish Mint NamePlural = Impish Mints Pocket = 2 Price = 20 +BPPrice = 50 FieldUse = OnPokemon Flags = Fling_10 Description = When a Pokémon smells this mint, its Defense will grow more easily, but its Sp. Atk will grow more slowly. @@ -3249,6 +3416,7 @@ Name = Lax Mint NamePlural = Lax Mints Pocket = 2 Price = 20 +BPPrice = 50 FieldUse = OnPokemon Flags = Fling_10 Description = When a Pokémon smells this mint, its Defense will grow more easily, but its Sp. Def will grow more slowly. @@ -3258,6 +3426,7 @@ Name = Relaxed Mint NamePlural = Relaxed Mints Pocket = 2 Price = 20 +BPPrice = 50 FieldUse = OnPokemon Flags = Fling_10 Description = When a Pokémon smells this mint, its Defense will grow more easily, but its Speed will grow more slowly. @@ -3267,6 +3436,7 @@ Name = Modest Mint NamePlural = Modest Mints Pocket = 2 Price = 20 +BPPrice = 50 FieldUse = OnPokemon Flags = Fling_10 Description = When a Pokémon smells this mint, its Sp. Atk will grow more easily, but its Attack will grow more slowly. @@ -3276,6 +3446,7 @@ Name = Mild Mint NamePlural = Mild Mints Pocket = 2 Price = 20 +BPPrice = 50 FieldUse = OnPokemon Flags = Fling_10 Description = When a Pokémon smells this mint, its Sp. Atk will grow more easily, but its Defense will grow more slowly. @@ -3285,6 +3456,7 @@ Name = Rash Mint NamePlural = Rash Mints Pocket = 2 Price = 20 +BPPrice = 50 FieldUse = OnPokemon Flags = Fling_10 Description = When a Pokémon smells this mint, its Sp. Atk will grow more easily, but its Sp. Def will grow more slowly. @@ -3294,6 +3466,7 @@ Name = Quiet Mint NamePlural = Quiet Mints Pocket = 2 Price = 20 +BPPrice = 50 FieldUse = OnPokemon Flags = Fling_10 Description = When a Pokémon smells this mint, its Sp. Atk will grow more easily, but its Speed will grow more slowly. @@ -3303,6 +3476,7 @@ Name = Calm Mint NamePlural = Calm Mints Pocket = 2 Price = 20 +BPPrice = 50 FieldUse = OnPokemon Flags = Fling_10 Description = When a Pokémon smells this mint, its Sp. Def will grow more easily, but its Attack will grow more slowly. @@ -3312,6 +3486,7 @@ Name = Gentle Mint NamePlural = Gentle Mints Pocket = 2 Price = 20 +BPPrice = 50 FieldUse = OnPokemon Flags = Fling_10 Description = When a Pokémon smells this mint, its Sp. Def will grow more easily, but its Defense will grow more slowly. @@ -3321,6 +3496,7 @@ Name = Careful Mint NamePlural = Careful Mints Pocket = 2 Price = 20 +BPPrice = 50 FieldUse = OnPokemon Flags = Fling_10 Description = When a Pokémon smells this mint, its Sp. Def will grow more easily, but its Sp. Atk will grow more slowly. @@ -3330,6 +3506,7 @@ Name = Sassy Mint NamePlural = Sassy Mints Pocket = 2 Price = 20 +BPPrice = 50 FieldUse = OnPokemon Flags = Fling_10 Description = When a Pokémon smells this mint, its Sp. Def will grow more easily, but its Speed will grow more slowly. @@ -3339,6 +3516,7 @@ Name = Timid Mint NamePlural = Timid Mints Pocket = 2 Price = 20 +BPPrice = 50 FieldUse = OnPokemon Flags = Fling_10 Description = When a Pokémon smells this mint, its Speed will grow more easily, but its Attack will grow more slowly. @@ -3348,6 +3526,7 @@ Name = Hasty Mint NamePlural = Hasty Mints Pocket = 2 Price = 20 +BPPrice = 50 FieldUse = OnPokemon Flags = Fling_10 Description = When a Pokémon smells this mint, its Speed will grow more easily, but its Defense will grow more slowly. @@ -3357,6 +3536,7 @@ Name = Jolly Mint NamePlural = Jolly Mints Pocket = 2 Price = 20 +BPPrice = 50 FieldUse = OnPokemon Flags = Fling_10 Description = When a Pokémon smells this mint, its Speed will grow more easily, but its Sp. Atk will grow more slowly. @@ -3366,6 +3546,7 @@ Name = Naive Mint NamePlural = Naive Mints Pocket = 2 Price = 20 +BPPrice = 50 FieldUse = OnPokemon Flags = Fling_10 Description = When a Pokémon smells this mint, its Speed will grow more easily, but its Sp. Def will grow more slowly. @@ -3375,6 +3556,7 @@ Name = Serious Mint NamePlural = Serious Mints Pocket = 2 Price = 20 +BPPrice = 50 FieldUse = OnPokemon Flags = Fling_10 Description = When a Pokémon smells this mint, all of its stats will grow at an equal rate. @@ -3384,6 +3566,7 @@ Name = Ability Capsule NamePlural = Ability Capsule Pocket = 2 Price = 10000 +BPPrice = 50 FieldUse = OnPokemon Description = A capsule that allows a Pokémon with two Abilities to switch between these Abilities when it is used. #------------------------------- @@ -3392,6 +3575,7 @@ Name = Ability Patch NamePlural = Ability Patches Pocket = 2 Price = 10000 +BPPrice = 200 FieldUse = OnPokemon Description = A patch that allows a Pokémon with a regular Ability to have a rare Ability. #------------------------------- @@ -3445,6 +3629,7 @@ Name = Rare Candy NamePlural = Rare Candies Pocket = 2 Price = 10000 +BPPrice = 20 FieldUse = OnPokemon Flags = Fling_30 Description = A candy that is packed with energy. It raises the level of a single Pokémon by one. @@ -3689,6 +3874,7 @@ Name = TM01 NamePlural = TM01s Pocket = 4 Price = 3000 +BPPrice = 32 FieldUse = TR Flags = Fling_150 Move = FOCUSPUNCH @@ -3699,6 +3885,7 @@ Name = TM02 NamePlural = TM02s Pocket = 4 Price = 3000 +BPPrice = 32 FieldUse = TR Flags = Fling_80 Move = DRAGONCLAW @@ -3709,6 +3896,7 @@ Name = TM03 NamePlural = TM03s Pocket = 4 Price = 3000 +BPPrice = 32 FieldUse = TR Flags = Fling_60 Move = WATERPULSE @@ -3719,6 +3907,7 @@ Name = TM04 NamePlural = TM04s Pocket = 4 Price = 1500 +BPPrice = 48 FieldUse = TR Flags = Fling_10 Move = CALMMIND @@ -3729,6 +3918,7 @@ Name = TM05 NamePlural = TM05s Pocket = 4 Price = 1000 +BPPrice = 32 FieldUse = TR Flags = Fling_10 Move = ROAR @@ -3739,6 +3929,7 @@ Name = TM06 NamePlural = TM06s Pocket = 4 Price = 3000 +BPPrice = 32 FieldUse = TR Flags = Fling_10 Move = TOXIC @@ -3749,6 +3940,7 @@ Name = TM07 NamePlural = TM07s Pocket = 4 Price = 2000 +BPPrice = 32 FieldUse = TR Flags = Fling_10 Move = HAIL @@ -3759,6 +3951,7 @@ Name = TM08 NamePlural = TM08s Pocket = 4 Price = 1500 +BPPrice = 48 FieldUse = TR Flags = Fling_10 Move = BULKUP @@ -3769,6 +3962,7 @@ Name = TM09 NamePlural = TM09s Pocket = 4 Price = 2000 +BPPrice = 32 FieldUse = TR Flags = Fling_25 Move = BULLETSEED @@ -3779,6 +3973,7 @@ Name = TM10 NamePlural = TM10s Pocket = 4 Price = 1500 +BPPrice = 32 FieldUse = TR Flags = Fling_10 Move = WORKUP @@ -3789,6 +3984,7 @@ Name = TM11 NamePlural = TM11s Pocket = 4 Price = 2000 +BPPrice = 32 FieldUse = TR Flags = Fling_10 Move = SUNNYDAY @@ -3799,6 +3995,7 @@ Name = TM12 NamePlural = TM12s Pocket = 4 Price = 1500 +BPPrice = 32 FieldUse = TR Flags = Fling_10 Move = TAUNT @@ -3809,6 +4006,7 @@ Name = TM13 NamePlural = TM13s Pocket = 4 Price = 3000 +BPPrice = 32 FieldUse = TR Flags = Fling_90 Move = ICEBEAM @@ -3819,6 +4017,7 @@ Name = TM14 NamePlural = TM14s Pocket = 4 Price = 5500 +BPPrice = 32 FieldUse = TR Flags = Fling_110 Move = BLIZZARD @@ -3829,6 +4028,7 @@ Name = TM15 NamePlural = TM15s Pocket = 4 Price = 7500 +BPPrice = 32 FieldUse = TR Flags = Fling_150 Move = HYPERBEAM @@ -3839,6 +4039,7 @@ Name = TM16 NamePlural = TM16s Pocket = 4 Price = 2000 +BPPrice = 32 FieldUse = TR Flags = Fling_10 Move = LIGHTSCREEN @@ -3849,6 +4050,7 @@ Name = TM17 NamePlural = TM17s Pocket = 4 Price = 2000 +BPPrice = 32 FieldUse = TR Flags = Fling_10 Move = PROTECT @@ -3859,6 +4061,7 @@ Name = TM18 NamePlural = TM18s Pocket = 4 Price = 2000 +BPPrice = 32 FieldUse = TR Flags = Fling_10 Move = RAINDANCE @@ -3869,6 +4072,7 @@ Name = TM19 NamePlural = TM19s Pocket = 4 Price = 3000 +BPPrice = 32 FieldUse = TR Flags = Fling_75 Move = GIGADRAIN @@ -3879,6 +4083,7 @@ Name = TM20 NamePlural = TM20s Pocket = 4 Price = 2000 +BPPrice = 32 FieldUse = TR Flags = Fling_10 Move = SAFEGUARD @@ -3889,6 +4094,7 @@ Name = TM21 NamePlural = TM21s Pocket = 4 Price = 3000 +BPPrice = 32 FieldUse = TR Flags = Fling_80 Move = DAZZLINGGLEAM @@ -3899,6 +4105,7 @@ Name = TM22 NamePlural = TM22s Pocket = 4 Price = 3000 +BPPrice = 32 FieldUse = TR Flags = Fling_120 Move = SOLARBEAM @@ -3909,6 +4116,7 @@ Name = TM23 NamePlural = TM23s Pocket = 4 Price = 3000 +BPPrice = 32 FieldUse = TR Flags = Fling_100 Move = IRONTAIL @@ -3919,6 +4127,7 @@ Name = TM24 NamePlural = TM24s Pocket = 4 Price = 3000 +BPPrice = 32 FieldUse = TR Flags = Fling_90 Move = THUNDERBOLT @@ -3929,6 +4138,7 @@ Name = TM25 NamePlural = TM25s Pocket = 4 Price = 5500 +BPPrice = 32 FieldUse = TR Flags = Fling_110 Move = THUNDER @@ -3939,6 +4149,7 @@ Name = TM26 NamePlural = TM26s Pocket = 4 Price = 3000 +BPPrice = 80 FieldUse = TR Flags = Fling_100 Move = EARTHQUAKE @@ -3949,6 +4160,7 @@ Name = TM27 NamePlural = TM27s Pocket = 4 Price = 3000 +BPPrice = 32 FieldUse = TR Flags = Fling_65 Move = LOWSWEEP @@ -3959,6 +4171,7 @@ Name = TM28 NamePlural = TM28s Pocket = 4 Price = 2000 +BPPrice = 32 FieldUse = TR Flags = Fling_80 Move = DIG @@ -3969,6 +4182,7 @@ Name = TM29 NamePlural = TM29s Pocket = 4 Price = 3000 +BPPrice = 32 FieldUse = TR Flags = Fling_90 Move = PSYCHIC @@ -3979,6 +4193,7 @@ Name = TM30 NamePlural = TM30s Pocket = 4 Price = 3000 +BPPrice = 64 FieldUse = TR Flags = Fling_80 Move = SHADOWBALL @@ -3989,6 +4204,7 @@ Name = TM31 NamePlural = TM31s Pocket = 4 Price = 3000 +BPPrice = 40 FieldUse = TR Flags = Fling_75 Move = BRICKBREAK @@ -3999,6 +4215,7 @@ Name = TM32 NamePlural = TM32s Pocket = 4 Price = 1000 +BPPrice = 32 FieldUse = TR Flags = Fling_10 Move = DOUBLETEAM @@ -4009,6 +4226,7 @@ Name = TM33 NamePlural = TM33s Pocket = 4 Price = 2000 +BPPrice = 32 FieldUse = TR Flags = Fling_10 Move = REFLECT @@ -4019,6 +4237,7 @@ Name = TM34 NamePlural = TM34s Pocket = 4 Price = 3000 +BPPrice = 32 FieldUse = TR Flags = Fling_60 Move = SHOCKWAVE @@ -4029,6 +4248,7 @@ Name = TM35 NamePlural = TM35s Pocket = 4 Price = 3000 +BPPrice = 32 FieldUse = TR Flags = Fling_90 Move = FLAMETHROWER @@ -4039,6 +4259,7 @@ Name = TM36 NamePlural = TM36s Pocket = 4 Price = 3000 +BPPrice = 80 FieldUse = TR Flags = Fling_90 Move = SLUDGEBOMB @@ -4049,6 +4270,7 @@ Name = TM37 NamePlural = TM37s Pocket = 4 Price = 2000 +BPPrice = 32 FieldUse = TR Flags = Fling_10 Move = SANDSTORM @@ -4059,6 +4281,7 @@ Name = TM38 NamePlural = TM38s Pocket = 4 Price = 5500 +BPPrice = 32 FieldUse = TR Flags = Fling_110 Move = FIREBLAST @@ -4069,6 +4292,7 @@ Name = TM39 NamePlural = TM39s Pocket = 4 Price = 3000 +BPPrice = 32 FieldUse = TR Flags = Fling_60 Move = ROCKTOMB @@ -4079,6 +4303,7 @@ Name = TM40 NamePlural = TM40s Pocket = 4 Price = 3000 +BPPrice = 40 FieldUse = TR Flags = Fling_60 Move = AERIALACE @@ -4089,6 +4314,7 @@ Name = TM41 NamePlural = TM41s Pocket = 4 Price = 1500 +BPPrice = 32 FieldUse = TR Flags = Fling_10 Move = TORMENT @@ -4099,6 +4325,7 @@ Name = TM42 NamePlural = TM42s Pocket = 4 Price = 3000 +BPPrice = 32 FieldUse = TR Flags = Fling_70 Move = FACADE @@ -4109,6 +4336,7 @@ Name = TM43 NamePlural = TM43s Pocket = 4 Price = 3000 +BPPrice = 32 FieldUse = TR Flags = Fling_70 Move = VOLTSWITCH @@ -4119,6 +4347,7 @@ Name = TM44 NamePlural = TM44s Pocket = 4 Price = 3000 +BPPrice = 32 FieldUse = TR Flags = Fling_10 Move = REST @@ -4129,6 +4358,7 @@ Name = TM45 NamePlural = TM45s Pocket = 4 Price = 3000 +BPPrice = 32 FieldUse = TR Flags = Fling_10 Move = ATTRACT @@ -4139,6 +4369,7 @@ Name = TM46 NamePlural = TM46s Pocket = 4 Price = 2000 +BPPrice = 32 FieldUse = TR Flags = Fling_60 Move = THIEF @@ -4149,6 +4380,7 @@ Name = TM47 NamePlural = TM47s Pocket = 4 Price = 3000 +BPPrice = 32 FieldUse = TR Flags = Fling_70 Move = STEELWING @@ -4159,6 +4391,7 @@ Name = TM48 NamePlural = TM48s Pocket = 4 Price = 3000 +BPPrice = 32 FieldUse = TR Flags = Fling_10 Move = SKILLSWAP @@ -4169,6 +4402,7 @@ Name = TM49 NamePlural = TM49s Pocket = 4 Price = 3000 +BPPrice = 32 FieldUse = TR Flags = Fling_80 Move = SCALD @@ -4179,6 +4413,7 @@ Name = TM50 NamePlural = TM50s Pocket = 4 Price = 5500 +BPPrice = 32 FieldUse = TR Flags = Fling_130 Move = OVERHEAT @@ -4189,6 +4424,7 @@ Name = TM51 NamePlural = TM51s Pocket = 4 Price = 2000 +BPPrice = 32 FieldUse = TR Flags = Fling_10 Move = ROOST @@ -4199,6 +4435,7 @@ Name = TM52 NamePlural = TM52s Pocket = 4 Price = 5500 +BPPrice = 32 FieldUse = TR Flags = Fling_120 Move = FOCUSBLAST @@ -4209,6 +4446,7 @@ Name = TM53 NamePlural = TM53s Pocket = 4 Price = 3000 +BPPrice = 64 FieldUse = TR Flags = Fling_90 Move = ENERGYBALL @@ -4219,6 +4457,7 @@ Name = TM54 NamePlural = TM54s Pocket = 4 Price = 2000 +BPPrice = 32 FieldUse = TR Flags = Fling_40 Move = FALSESWIPE @@ -4229,6 +4468,7 @@ Name = TM55 NamePlural = TM55s Pocket = 4 Price = 3000 +BPPrice = 32 FieldUse = TR Flags = Fling_65 Move = BRINE @@ -4239,6 +4479,7 @@ Name = TM56 NamePlural = TM56s Pocket = 4 Price = 2000 +BPPrice = 32 FieldUse = TR Flags = Fling_10 Move = FLING @@ -4249,6 +4490,7 @@ Name = TM57 NamePlural = TM57s Pocket = 4 Price = 3000 +BPPrice = 32 FieldUse = TR Flags = Fling_50 Move = CHARGEBEAM @@ -4259,6 +4501,7 @@ Name = TM58 NamePlural = TM58s Pocket = 4 Price = 2000 +BPPrice = 32 FieldUse = TR Flags = Fling_10 Move = ENDURE @@ -4269,6 +4512,7 @@ Name = TM59 NamePlural = TM59s Pocket = 4 Price = 3000 +BPPrice = 80 FieldUse = TR Flags = Fling_85 Move = DRAGONPULSE @@ -4279,6 +4523,7 @@ Name = TM60 NamePlural = TM60s Pocket = 4 Price = 3000 +BPPrice = 32 FieldUse = TR Flags = Fling_75 Move = DRAINPUNCH @@ -4289,6 +4534,7 @@ Name = TM61 NamePlural = TM61s Pocket = 4 Price = 2000 +BPPrice = 32 FieldUse = TR Flags = Fling_10 Move = WILLOWISP @@ -4299,6 +4545,7 @@ Name = TM62 NamePlural = TM62s Pocket = 4 Price = 3000 +BPPrice = 32 FieldUse = TR Flags = Fling_90 Move = BUGBUZZ @@ -4309,6 +4556,7 @@ Name = TM63 NamePlural = TM63s Pocket = 4 Price = 2000 +BPPrice = 32 FieldUse = TR Flags = Fling_10 Move = NASTYPLOT @@ -4319,6 +4567,7 @@ Name = TM64 NamePlural = TM64s Pocket = 4 Price = 7500 +BPPrice = 32 FieldUse = TR Flags = Fling_250 Move = EXPLOSION @@ -4329,6 +4578,7 @@ Name = TM65 NamePlural = TM65s Pocket = 4 Price = 3000 +BPPrice = 32 FieldUse = TR Flags = Fling_70 Move = SHADOWCLAW @@ -4339,6 +4589,7 @@ Name = TM66 NamePlural = TM66s Pocket = 4 Price = 3000 +BPPrice = 32 FieldUse = TR Flags = Fling_50 Move = PAYBACK @@ -4349,6 +4600,7 @@ Name = TM67 NamePlural = TM67s Pocket = 4 Price = 1000 +BPPrice = 32 FieldUse = TR Flags = Fling_10 Move = RECYCLE @@ -4359,6 +4611,7 @@ Name = TM68 NamePlural = TM68s Pocket = 4 Price = 7500 +BPPrice = 32 FieldUse = TR Flags = Fling_150 Move = GIGAIMPACT @@ -4369,6 +4622,7 @@ Name = TM69 NamePlural = TM69s Pocket = 4 Price = 1500 +BPPrice = 32 FieldUse = TR Flags = Fling_10 Move = ROCKPOLISH @@ -4379,6 +4633,7 @@ Name = TM70 NamePlural = TM70s Pocket = 4 Price = 1000 +BPPrice = 32 FieldUse = TR Flags = Fling_10 Move = FLASH @@ -4389,6 +4644,7 @@ Name = TM71 NamePlural = TM71s Pocket = 4 Price = 3000 +BPPrice = 80 FieldUse = TR Flags = Fling_100 Move = STONEEDGE @@ -4399,6 +4655,7 @@ Name = TM72 NamePlural = TM72s Pocket = 4 Price = 3000 +BPPrice = 32 FieldUse = TR Flags = Fling_60 Move = AVALANCHE @@ -4409,6 +4666,7 @@ Name = TM73 NamePlural = TM73s Pocket = 4 Price = 2000 +BPPrice = 32 FieldUse = TR Flags = Fling_10 Move = THUNDERWAVE @@ -4419,6 +4677,7 @@ Name = TM74 NamePlural = TM74s Pocket = 4 Price = 3000 +BPPrice = 32 FieldUse = TR Flags = Fling_10 Move = GYROBALL @@ -4429,6 +4688,7 @@ Name = TM75 NamePlural = TM75s Pocket = 4 Price = 1500 +BPPrice = 32 FieldUse = TR Flags = Fling_10 Move = SWORDSDANCE @@ -4439,6 +4699,7 @@ Name = TM76 NamePlural = TM76s Pocket = 4 Price = 2000 +BPPrice = 32 FieldUse = TR Flags = Fling_10 Move = STEALTHROCK @@ -4449,6 +4710,7 @@ Name = TM77 NamePlural = TM77s Pocket = 4 Price = 1500 +BPPrice = 32 FieldUse = TR Flags = Fling_10 Move = PSYCHUP @@ -4459,6 +4721,7 @@ Name = TM78 NamePlural = TM78s Pocket = 4 Price = 3000 +BPPrice = 32 FieldUse = TR Flags = Fling_55 Move = SNARL @@ -4469,6 +4732,7 @@ Name = TM79 NamePlural = TM79s Pocket = 4 Price = 3000 +BPPrice = 32 FieldUse = TR Flags = Fling_80 Move = DARKPULSE @@ -4479,6 +4743,7 @@ Name = TM80 NamePlural = TM80s Pocket = 4 Price = 3000 +BPPrice = 32 FieldUse = TR Flags = Fling_75 Move = ROCKSLIDE @@ -4489,6 +4754,7 @@ Name = TM81 NamePlural = TM81s Pocket = 4 Price = 3000 +BPPrice = 64 FieldUse = TR Flags = Fling_80 Move = XSCISSOR @@ -4499,6 +4765,7 @@ Name = TM82 NamePlural = TM82s Pocket = 4 Price = 1000 +BPPrice = 32 FieldUse = TR Flags = Fling_10 Move = SLEEPTALK @@ -4509,6 +4776,7 @@ Name = TM83 NamePlural = TM83s Pocket = 4 Price = 3000 +BPPrice = 32 FieldUse = TR Flags = Fling_60 Move = BULLDOZE @@ -4519,6 +4787,7 @@ Name = TM84 NamePlural = TM84s Pocket = 4 Price = 3000 +BPPrice = 32 FieldUse = TR Flags = Fling_80 Move = POISONJAB @@ -4529,6 +4798,7 @@ Name = TM85 NamePlural = TM85s Pocket = 4 Price = 3000 +BPPrice = 32 FieldUse = TR Flags = Fling_100 Move = DREAMEATER @@ -4539,6 +4809,7 @@ Name = TM86 NamePlural = TM86s Pocket = 4 Price = 3000 +BPPrice = 32 FieldUse = TR Flags = Fling_10 Move = GRASSKNOT @@ -4549,6 +4820,7 @@ Name = TM87 NamePlural = TM87s Pocket = 4 Price = 1500 +BPPrice = 32 FieldUse = TR Flags = Fling_10 Move = SWAGGER @@ -4559,6 +4831,7 @@ Name = TM88 NamePlural = TM88s Pocket = 4 Price = 3000 +BPPrice = 32 FieldUse = TR Flags = Fling_60 Move = PLUCK @@ -4569,6 +4842,7 @@ Name = TM89 NamePlural = TM89s Pocket = 4 Price = 3000 +BPPrice = 32 FieldUse = TR Flags = Fling_70 Move = UTURN @@ -4579,6 +4853,7 @@ Name = TM90 NamePlural = TM90s Pocket = 4 Price = 2000 +BPPrice = 32 FieldUse = TR Flags = Fling_10 Move = SUBSTITUTE @@ -4589,6 +4864,7 @@ Name = TM91 NamePlural = TM91s Pocket = 4 Price = 3000 +BPPrice = 32 FieldUse = TR Flags = Fling_80 Move = FLASHCANNON @@ -4599,6 +4875,7 @@ Name = TM92 NamePlural = TM92s Pocket = 4 Price = 5500 +BPPrice = 32 FieldUse = TR Flags = Fling_10 Move = TRICKROOM @@ -4609,6 +4886,7 @@ Name = TM93 NamePlural = TM93s Pocket = 4 Price = 2000 +BPPrice = 32 FieldUse = TR Flags = Fling_50 Move = CUT @@ -4619,6 +4897,7 @@ Name = TM94 NamePlural = TM94s Pocket = 4 Price = 2000 +BPPrice = 40 FieldUse = TR Flags = Fling_90 Move = FLY @@ -4629,6 +4908,7 @@ Name = TM95 NamePlural = TM95s Pocket = 4 Price = 2500 +BPPrice = 64 FieldUse = TR Flags = Fling_90 Move = SURF @@ -4639,6 +4919,7 @@ Name = TM96 NamePlural = TM96s Pocket = 4 Price = 2000 +BPPrice = 40 FieldUse = TR Flags = Fling_80 Move = STRENGTH @@ -4649,6 +4930,7 @@ Name = TM97 NamePlural = TM97s Pocket = 4 Price = 2000 +BPPrice = 32 FieldUse = TR Flags = Fling_10 Move = DEFOG @@ -4659,6 +4941,7 @@ Name = TM98 NamePlural = TM98s Pocket = 4 Price = 2000 +BPPrice = 40 FieldUse = TR Flags = Fling_40 Move = ROCKSMASH @@ -4669,6 +4952,7 @@ Name = TM99 NamePlural = TM99s Pocket = 4 Price = 2500 +BPPrice = 64 FieldUse = TR Flags = Fling_80 Move = WATERFALL @@ -4679,6 +4963,7 @@ Name = TM100 NamePlural = TM100s Pocket = 4 Price = 2000 +BPPrice = 32 FieldUse = TR Flags = Fling_90 Move = ROCKCLIMB