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 c367243a1..388142b1b 100644 --- a/Data/Scripts/010_Data/002_PBS data/006_Item.rb +++ b/Data/Scripts/010_Data/002_PBS data/006_Item.rb @@ -5,6 +5,7 @@ module GameData attr_reader :real_name_plural attr_reader :pocket attr_reader :price + attr_reader :sell_price attr_reader :real_description attr_reader :field_use attr_reader :battle_use @@ -19,6 +20,7 @@ module GameData "NamePlural" => [:name_plural, "s"], "Pocket" => [:pocket, "v"], "Price" => [:price, "u"], + "SellPrice" => [:sell_price, "u"], "Description" => [:description, "q"], "FieldUse" => [:field_use, "e", {"OnPokemon" => 1, "Direct" => 2, "TM" => 3, "HM" => 4, "OnPokemonReusable" => 5, "TR" => 6}], @@ -87,6 +89,7 @@ module GameData @real_name_plural = hash[:name_plural] || "Unnamed" @pocket = hash[:pocket] || 1 @price = hash[:price] || 0 + @sell_price = hash[:sell_price] || (@price / 2) @real_description = hash[:description] || "???" @field_use = hash[:field_use] || 0 @battle_use = hash[:battle_use] || 0 diff --git a/Data/Scripts/011_Battle/003_Battle/004_Battle_ExpAndMoveLearning.rb b/Data/Scripts/011_Battle/003_Battle/004_Battle_ExpAndMoveLearning.rb index a1ec33985..deb0934ed 100644 --- a/Data/Scripts/011_Battle/003_Battle/004_Battle_ExpAndMoveLearning.rb +++ b/Data/Scripts/011_Battle/003_Battle/004_Battle_ExpAndMoveLearning.rb @@ -228,10 +228,10 @@ class PokeBattle_Battle battler = pbFindBattler(idxParty) moveName = GameData::Move.get(newMove).name # Pokémon already knows the move - return if pkmn.moves.any? { |m| m && m.id == newMove } + return if pkmn.hasMove?(newMove) # Pokémon has space for the new move; just learn it - if pkmn.moves.length < Pokemon::MAX_MOVES - pkmn.moves.push(Pokemon::Move.new(newMove)) + if pkmn.numMoves < Pokemon::MAX_MOVES + pkmn.learn_move(newMove) pbDisplay(_INTL("{1} learned {2}!",pkmnName,moveName)) { pbSEPlay("Pkmn move learnt") } if battler battler.moves.push(PokeBattle_Move.from_pokemon_move(self, pkmn.moves.last)) @@ -240,17 +240,16 @@ class PokeBattle_Battle return end # Pokémon already knows the maximum number of moves; try to forget one to learn the new move - loop do - pbDisplayPaused(_INTL("{1} wants to learn {2}, but it already knows {3} moves.", - pkmnName, moveName, pkmn.moves.length.to_word)) - if pbDisplayConfirm(_INTL("Forget a move to learn {1}?",moveName)) - pbDisplayPaused(_INTL("Which move should be forgotten?")) + pbDisplayPaused(_INTL("{1} wants to learn {2}, but it already knows {3} moves.", + pkmnName, moveName, pkmn.numMoves.to_word)) + if pbDisplayConfirm(_INTL("Should {1} forget a move to learn {2}?", pkmnName, moveName)) + loop do forgetMove = @scene.pbForgetMove(pkmn,newMove) if forgetMove>=0 oldMoveName = pkmn.moves[forgetMove].name pkmn.moves[forgetMove] = Pokemon::Move.new(newMove) # Replaces current/total PP battler.moves[forgetMove] = PokeBattle_Move.from_pokemon_move(self, pkmn.moves[forgetMove]) if battler - pbDisplayPaused(_INTL("1, 2, and... ... ... Ta-da!")) + pbDisplayPaused(_INTL("1, 2, and... ... ... Ta-da!")) { pbSEPlay("Battle ball drop") } pbDisplayPaused(_INTL("{1} forgot how to use {2}. And...",pkmnName,oldMoveName)) pbDisplay(_INTL("{1} learned {2}!",pkmnName,moveName)) { pbSEPlay("Pkmn move learnt") } battler.pbCheckFormOnMovesetChange if battler @@ -259,10 +258,9 @@ class PokeBattle_Battle pbDisplay(_INTL("{1} did not learn {2}.",pkmnName,moveName)) break end - elsif pbDisplayConfirm(_INTL("Give up on learning {1}?",moveName)) - pbDisplay(_INTL("{1} did not learn {2}.",pkmnName,moveName)) - break end + else + pbDisplay(_INTL("{1} did not learn {2}.", pkmnName, moveName)) end end end diff --git a/Data/Scripts/013_Items/001_Item_Utilities.rb b/Data/Scripts/013_Items/001_Item_Utilities.rb index 9a0d6ee08..909df7772 100644 --- a/Data/Scripts/013_Items/001_Item_Utilities.rb +++ b/Data/Scripts/013_Items/001_Item_Utilities.rb @@ -484,50 +484,52 @@ end #=============================================================================== # Teach and forget a move #=============================================================================== -def pbLearnMove(pkmn,move,ignoreifknown=false,bymachine=false,&block) +def pbLearnMove(pkmn, move, ignore_if_known = false, by_machine = false, &block) return false if !pkmn move = GameData::Move.get(move).id if pkmn.egg? && !$DEBUG - pbMessage(_INTL("Eggs can't be taught any moves."),&block) + pbMessage(_INTL("Eggs can't be taught any moves."), &block) + return false + elsif pkmn.shadowPokemon? + pbMessage(_INTL("Shadow Pokémon can't be taught any moves."), &block) return false end - if pkmn.shadowPokemon? - pbMessage(_INTL("Shadow Pokémon can't be taught any moves."),&block) - return false - end - pkmnname = pkmn.name - movename = GameData::Move.get(move).name + pkmn_name = pkmn.name + move_name = GameData::Move.get(move).name if pkmn.hasMove?(move) - pbMessage(_INTL("{1} already knows {2}.",pkmnname,movename),&block) if !ignoreifknown + pbMessage(_INTL("{1} already knows {2}.", pkmn_name, move_name), &block) if !ignore_if_known return false - end - if pkmn.numMoves=0 - oldmovename = pkmn.moves[forgetmove].name - oldmovepp = pkmn.moves[forgetmove].pp - pkmn.moves[forgetmove] = Pokemon::Move.new(move) # Replaces current/total PP - if bymachine && Settings::TAUGHT_MACHINES_KEEP_OLD_PP - pkmn.moves[forgetmove].pp = [oldmovepp,pkmn.moves[forgetmove].total_pp].min + pbMessage(_INTL("{1} wants to learn {2}, but it already knows {3} moves.\1", + pkmn_name, move_name, pkmn.numMoves.to_word), &block) + if pbConfirmMessage(_INTL("Should {1} forget a move to learn {2}?", pkmn_name, move_name), &block) + loop do + move_index = pbForgetMove(pkmn, move) + if move_index >= 0 + old_move_name = pkmn.moves[move_index].name + oldmovepp = pkmn.moves[move_index].pp + pkmn.moves[move_index] = Pokemon::Move.new(move) # Replaces current/total PP + if by_machine && Settings::TAUGHT_MACHINES_KEEP_OLD_PP + pkmn.moves[move_index].pp = [oldmovepp,pkmn.moves[move_index].total_pp].min + end + pbMessage(_INTL("1, 2, and...\\wt[16] ...\\wt[16] ...\\wt[16] Ta-da!\\se[Battle ball drop]\1"), &block) + pbMessage(_INTL("{1} forgot how to use {2}.\\nAnd...\1", pkmn_name, old_move_name), &block) + pbMessage(_INTL("\\se[]{1} learned {2}!\\se[Pkmn move learnt]", pkmn_name, move_name), &block) + pkmn.changeHappiness("machine") if by_machine + return true + elsif pbConfirmMessage(_INTL("Give up on learning {1}?", move_name), &block) + pbMessage(_INTL("{1} did not learn {2}.", pkmn_name, move_name), &block) + return false end - pbMessage(_INTL("1, 2, and...\\wt[16] ...\\wt[16] ... Ta-da!\\se[Battle ball drop]\1"),&block) - pbMessage(_INTL("{1} forgot how to use {2}.\\nAnd...\1",pkmnname,oldmovename),&block) - pbMessage(_INTL("\\se[]{1} learned {2}!\\se[Pkmn move learnt]",pkmnname,movename),&block) - pkmn.changeHappiness("machine") if bymachine - return true - elsif pbConfirmMessage(_INTL("Give up on learning {1}?",movename),&block) - pbMessage(_INTL("{1} did not learn {2}.",pkmnname,movename),&block) - return false end + else + pbMessage(_INTL("{1} did not learn {2}.", pkmn_name, move_name), &block) end + return false end def pbForgetMove(pkmn,moveToLearn) diff --git a/Data/Scripts/016_UI/020_UI_PokeMart.rb b/Data/Scripts/016_UI/020_UI_PokeMart.rb index 6ea133501..7769ca054 100644 --- a/Data/Scripts/016_UI/020_UI_PokeMart.rb +++ b/Data/Scripts/016_UI/020_UI_PokeMart.rb @@ -60,6 +60,7 @@ class PokemonMartAdapter return $game_temp.mart_prices[item][0] if $game_temp.mart_prices[item][0] > 0 end end + return GameData::Item.get(item).sell_price if selling return GameData::Item.get(item).price end @@ -623,11 +624,11 @@ class PokemonMartScreen item=@scene.pbChooseSellItem break if !item itemname=@adapter.getDisplayName(item) - price=@adapter.getPrice(item,true) if !@adapter.canSell?(item) pbDisplayPaused(_INTL("{1}? Oh, no. I can't buy that.",itemname)) next end + price=@adapter.getPrice(item,true) qty=@adapter.getQuantity(item) next if qty==0 @scene.pbShowMoney diff --git a/Data/Scripts/020_Debug/001_Editor screens/001_EditorScreens.rb b/Data/Scripts/020_Debug/001_Editor screens/001_EditorScreens.rb index 9f9fe0964..354c0a50d 100644 --- a/Data/Scripts/020_Debug/001_Editor screens/001_EditorScreens.rb +++ b/Data/Scripts/020_Debug/001_Editor screens/001_EditorScreens.rb @@ -811,6 +811,7 @@ def pbItemEditor [_INTL("NamePlural"), ItemNameProperty, _INTL("Plural name of this item as displayed by the game.")], [_INTL("Pocket"), PocketProperty, _INTL("Pocket in the Bag where this item is stored.")], [_INTL("Price"), LimitProperty.new(999999), _INTL("Purchase price of this item.")], + [_INTL("SellPrice"), LimitProperty.new(999999), _INTL("Sell price of this item. If blank, is half the purchase price.")], [_INTL("Description"), StringProperty, _INTL("Description of this item")], [_INTL("FieldUse"), EnumProperty.new(field_use_array), _INTL("How this item can be used outside of battle.")], [_INTL("BattleUse"), EnumProperty.new(battle_use_array), _INTL("How this item can be used within a battle.")], @@ -837,6 +838,7 @@ def pbItemEditor itm.real_name_plural, itm.pocket, itm.price, + itm.sell_price, itm.real_description, itm.field_use, itm.battle_use, @@ -851,11 +853,12 @@ def pbItemEditor :name_plural => data[2], :pocket => data[3], :price => data[4], - :description => data[5], - :field_use => data[6], - :battle_use => data[7], - :type => data[8], - :move => data[9] + :sell_price => data[5], + :description => data[6], + :field_use => data[7], + :battle_use => data[8], + :type => data[9], + :move => data[10] } # Add item's data to records GameData::Item.register(item_hash) diff --git a/Data/Scripts/021_Compiler/003_Compiler_WritePBS.rb b/Data/Scripts/021_Compiler/003_Compiler_WritePBS.rb index 165335f91..f58cbb6fd 100644 --- a/Data/Scripts/021_Compiler/003_Compiler_WritePBS.rb +++ b/Data/Scripts/021_Compiler/003_Compiler_WritePBS.rb @@ -209,6 +209,7 @@ module Compiler f.write(sprintf("NamePlural = %s\r\n", item.real_name_plural)) f.write(sprintf("Pocket = %d\r\n", item.pocket)) f.write(sprintf("Price = %d\r\n", item.price)) + f.write(sprintf("SellPrice = %d\r\n", item.sell_price)) if item.sell_price != item.price / 2 field_use = GameData::Item::SCHEMA["FieldUse"][2].key(item.field_use) f.write(sprintf("FieldUse = %s\r\n", field_use)) if field_use battle_use = GameData::Item::SCHEMA["BattleUse"][2].key(item.battle_use) diff --git a/PBS/Gen 8/items.txt b/PBS/Gen 8/items.txt index a4557ad4f..2c4cb79e1 100644 --- a/PBS/Gen 8/items.txt +++ b/PBS/Gen 8/items.txt @@ -28,7 +28,7 @@ Description = An item that prevents weak wild Pokémon from appearing for 250 st Name = Black Flute NamePlural = Black Flutes Pocket = 1 -Price = 400 +Price = 20 FieldUse = Direct Description = A black flute made from blown glass. Its melody makes wild Pokémon less likely to appear. #------------------------------- @@ -36,7 +36,7 @@ Description = A black flute made from blown glass. Its melody makes wild Pokémo Name = White Flute NamePlural = White Flutes Pocket = 1 -Price = 500 +Price = 20 FieldUse = Direct Description = A white flute made from blown glass. Its melody makes wild Pokémon more likely to appear. #------------------------------- @@ -44,17 +44,9 @@ Description = A white flute made from blown glass. Its melody makes wild Pokémo Name = Honey NamePlural = Honey Pocket = 1 -Price = 300 +Price = 900 FieldUse = Direct -Description = A sweet honey with an aroma that attracts wild Pokémon when used in grass, caves or on special trees. -#------------------------------- -[ESCAPEROPE] -Name = Escape Rope -NamePlural = Escape Ropes -Pocket = 1 -Price = 1000 -FieldUse = Direct -Description = A long, durable rope. Use it to escape instantly from a cave or a dungeon. +Description = A sweet honey with a lush aroma that attracts wild Pokémon when used in tall grass, in caves, or elsewhere. #------------------------------- [REDSHARD] Name = Red Shard @@ -197,6 +189,7 @@ Name = Cracked Pot NamePlural = Cracked Pots Pocket = 1 Price = 3000 +SellPrice = 800 FieldUse = OnPokemon Type = EvolutionStone Description = A peculiar teapot that can make a certain species of Pokémon evolve. It may be cracked, but tea poured from it is delicious. @@ -206,6 +199,7 @@ Name = Chipped Pot NamePlural = Chipped Pots Pocket = 1 Price = 3000 +SellPrice = 19000 FieldUse = OnPokemon Type = EvolutionStone Description = A peculiar teapot that can make a certain species of Pokémon evolve. It may be chipped, but tea poured from it is delicious. @@ -232,7 +226,7 @@ Description = A wreath made from woven-together Galarica Twigs. Placing it on th Name = Red Apricorn NamePlural = Red Apricorns Pocket = 1 -Price = 20 +Price = 200 Type = Apricorn Description = A red Apricorn. It assails your nostrils. #------------------------------- @@ -240,7 +234,7 @@ Description = A red Apricorn. It assails your nostrils. Name = Yellow Apricorn NamePlural = Yellow Apricorns Pocket = 1 -Price = 20 +Price = 200 Type = Apricorn Description = A yellow Apricorn. It has an invigorating scent. #------------------------------- @@ -248,7 +242,7 @@ Description = A yellow Apricorn. It has an invigorating scent. Name = Blue Apricorn NamePlural = Blue Apricorns Pocket = 1 -Price = 20 +Price = 200 Type = Apricorn Description = A blue Apricorn. It smells a bit like grass. #------------------------------- @@ -256,7 +250,7 @@ Description = A blue Apricorn. It smells a bit like grass. Name = Green Apricorn NamePlural = Green Apricorns Pocket = 1 -Price = 20 +Price = 200 Type = Apricorn Description = A green Apricorn. It has a mysterious, aromatic scent. #------------------------------- @@ -264,7 +258,7 @@ Description = A green Apricorn. It has a mysterious, aromatic scent. Name = Pink Apricorn NamePlural = Pink Apricorns Pocket = 1 -Price = 20 +Price = 200 Type = Apricorn Description = A pink Apricorn. It has a nice, sweet scent. #------------------------------- @@ -272,7 +266,7 @@ Description = A pink Apricorn. It has a nice, sweet scent. Name = White Apricorn NamePlural = White Apricorns Pocket = 1 -Price = 20 +Price = 200 Type = Apricorn Description = A white Apricorn. It doesn't smell like anything. #------------------------------- @@ -280,7 +274,7 @@ Description = A white Apricorn. It doesn't smell like anything. Name = Black Apricorn NamePlural = Black Apricorns Pocket = 1 -Price = 20 +Price = 200 Type = Apricorn Description = A black Apricorn. It has an indescribable scent. #------------------------------- @@ -446,7 +440,7 @@ Description = A quite-large pearl that sparkles in a pretty silver color. It can Name = Pearl String NamePlural = Pearl Strings Pocket = 1 -Price = 30000 +Price = 20000 Description = Very large pearls that sparkle in a pretty silver color. A maniac will buy them for a high price. #------------------------------- [STARDUST] @@ -467,7 +461,7 @@ Description = A shard of a pretty gem that sparkles in a red color. It can be so Name = Comet Shard NamePlural = Comet Shards Pocket = 1 -Price = 60000 +Price = 25000 Description = A shard which fell to the ground when a comet approached. A maniac will buy it for a high price. #------------------------------- [NUGGET] @@ -523,7 +517,7 @@ Description = A silver coin used in a civilization about 3,000 years ago. A mani Name = Relic Gold NamePlural = Relic Golds Pocket = 1 -Price = 0 +Price = 60000 Description = A gold coin used in a civilization about 3,000 years ago. A maniac will buy it for a high price. #------------------------------- [RELICVASE] @@ -643,42 +637,48 @@ Description = A flower nectar obtained at Poni Meadow. It changes the form of ce Name = Air Balloon NamePlural = Air Balloons Pocket = 1 -Price = 4000 +Price = 3000 +SellPrice = 2000 Description = An item to be held by a Pokémon. The holder will float in the air until hit. Once hit, this item will burst. #------------------------------- [BRIGHTPOWDER] Name = Bright Powder NamePlural = Bright Powders Pocket = 1 -Price = 4000 +Price = 3000 +SellPrice = 2000 Description = An item to be held by a Pokémon. It casts a tricky glare that lowers the opponent's accuracy. #------------------------------- [EVIOLITE] Name = Eviolite NamePlural = Eviolites Pocket = 1 -Price = 4000 +Price = 3000 +SellPrice = 2000 Description = A mysterious evolutionary lump. When held, it raises the Defense and Sp. Def if the holder can still evolve. #------------------------------- [FLOATSTONE] Name = Float Stone NamePlural = Float Stones Pocket = 1 -Price = 4000 +Price = 3000 +SellPrice = 2000 Description = A very light stone. It reduces the weight of a Pokémon when held. #------------------------------- [DESTINYKNOT] Name = Destiny Knot NamePlural = Destiny Knots Pocket = 1 -Price = 4000 +Price = 3000 +SellPrice = 2000 Description = A long, thin, bright-red string to be held by a Pokémon. If the holder becomes infatuated, so does the foe. #------------------------------- [ROCKYHELMET] Name = Rocky Helmet NamePlural = Rocky Helmets Pocket = 1 -Price = 4000 +Price = 3000 +SellPrice = 2000 Description = If the holder of this item takes damage, the attacker will also be damaged upon contact. #------------------------------- [ASSAULTVEST] @@ -692,63 +692,72 @@ Description = An item to be held by a Pokémon. This offensive vest raises Sp. D Name = Safety Goggles NamePlural = Safety Goggles Pocket = 1 -Price = 4000 +Price = 3000 +SellPrice = 2000 Description = An item to be held by a Pokémon. They protect the holder from weather-related damage and powder. #------------------------------- [PROTECTIVEPADS] Name = Protective Pads NamePlural = Protective Pads Pocket = 1 -Price = 4000 +Price = 3000 +SellPrice = 2000 Description = An item to be held by a Pokémon. They protect the holder from effects caused by making contact. #------------------------------- [HEAVYDUTYBOOTS] Name = Heavy-Duty Boots NamePlural = pairs of Heavy-Duty Boots Pocket = 1 -Price = 4000 +Price = 3000 +SellPrice = 2000 Description = These boots prevent the effects of traps set on the battlefield. #------------------------------- [UTILITYUMBRELLA] Name = Utility Umbrella NamePlural = Utility Umbrellas Pocket = 1 -Price = 4000 +Price = 3000 +SellPrice = 2000 Description = An item to be held by a Pokémon. This sturdy umbrella protects the holder from the effects of rain and harsh sunlight. #------------------------------- [EJECTBUTTON] Name = Eject Button NamePlural = Eject Buttons Pocket = 1 -Price = 4000 +Price = 3000 +SellPrice = 2000 Description = If the holder is hit by an attack, it will switch with another Pokémon in your party. #------------------------------- [EJECTPACK] Name = Eject Pack NamePlural = Eject Packs Pocket = 1 -Price = 4000 +Price = 3000 +SellPrice = 2000 Description = An item to be held by a Pokémon. When the holder's stats are lowered, it will be switched out of battle. #------------------------------- [REDCARD] Name = Red Card NamePlural = Red Cards Pocket = 1 -Price = 4000 +Price = 3000 +SellPrice = 2000 Description = A card with a mysterious power. When the holder is struck by a foe, the attacker is removed from battle. #------------------------------- [SHEDSHELL] Name = Shed Shell NamePlural = Shed Shells Pocket = 1 -Price = 4000 +Price = 3000 +SellPrice = 2000 Description = An item to be held by a Pokémon. This discarded carapace lets the holder switch out of battle without fail. #------------------------------- [SMOKEBALL] Name = Smoke Ball NamePlural = Smoke Balls Pocket = 1 -Price = 4000 +Price = 3000 +SellPrice = 2000 Description = An item to be held by a Pokémon. It enables the holder to flee from any wild Pokémon without fail. #------------------------------- [LUCKYEGG] @@ -860,7 +869,8 @@ Description = A Pokémon held item that extends the duration of multiturn attack Name = Binding Band NamePlural = Binding Bands Pocket = 1 -Price = 4000 +Price = 3000 +SellPrice = 2000 Description = A band that increases the power of binding moves when held. #------------------------------- [BIGROOT] @@ -874,7 +884,8 @@ Description = A Pokémon held item that boosts the power of HP-stealing moves to Name = Black Sludge NamePlural = Black Sludges Pocket = 1 -Price = 4000 +Price = 3000 +SellPrice = 2000 Description = A held item that gradually restores the HP of Poison-type Pokémon. It inflicts damage on all other types. #------------------------------- [LEFTOVERS] @@ -979,28 +990,32 @@ Description = An item to be held by a Pokémon. Lowers Speed when Trick Room tak Name = Electric Seed NamePlural = Electric Seeds Pocket = 1 -Price = 4000 +Price = 3000 +SellPrice = 2000 Description = An item to be held by a Pokémon. It boosts Defense on Electric Terrain. It can only be used once. #------------------------------- [GRASSYSEED] Name = Grassy Seed NamePlural = Grassy Seeds Pocket = 1 -Price = 4000 +Price = 3000 +SellPrice = 2000 Description = An item to be held by a Pokémon. It boosts Defense on Grassy Terrain. It can only be used once. #------------------------------- [MISTYSEED] Name = Misty Seed NamePlural = Misty Seeds Pocket = 1 -Price = 4000 +Price = 3000 +SellPrice = 2000 Description = An item to be held by a Pokémon. It boosts Sp. Def on Misty Terrain. It can only be used once. #------------------------------- [PSYCHICSEED] Name = Psychic Seed NamePlural = Psychic Seeds Pocket = 1 -Price = 4000 +Price = 3000 +SellPrice = 2000 Description = An item to be held by a Pokémon. It boosts Sp. Def on Psychic Terrain. It can only be used once. #------------------------------- [LIFEORB] @@ -1021,7 +1036,8 @@ Description = An item to be held by a Pokémon. It is a well-worn belt that slig Name = Metronome NamePlural = Metronomes Pocket = 1 -Price = 4000 +Price = 3000 +SellPrice = 2000 Description = A Pokémon held item that boosts a move used consecutively. Its effect is reset if another move is used. #------------------------------- [MUSCLEBAND] @@ -1042,7 +1058,8 @@ Description = An item to be held by a Pokémon. It is a thick pair of glasses th Name = Razor Claw NamePlural = Razor Claws Pocket = 1 -Price = 5000 +Price = 3000 +SellPrice = 2500 Description = An item to be held by a Pokémon. It is a sharply hooked claw that ups the holder's critical-hit ratio. #------------------------------- [SCOPELENS] @@ -1091,21 +1108,24 @@ Description = An item to be held by a Pokémon. It is tremendously heavy and mak Name = Quick Claw NamePlural = Quick Claws Pocket = 1 -Price = 4000 +Price = 3000 +SellPrice = 2000 Description = An item to be held by a Pokémon. A light, sharp claw that lets the bearer move first occasionally. #------------------------------- [FOCUSBAND] Name = Focus Band NamePlural = Focus Bands Pocket = 1 -Price = 4000 +Price = 3000 +SellPrice = 2000 Description = An item to be held by a Pokémon. The holder may endure a potential KO attack, leaving it with just 1 HP. #------------------------------- [FOCUSSASH] Name = Focus Sash NamePlural = Focus Sashes Pocket = 1 -Price = 4000 +Price = 3000 +SellPrice = 2000 Description = An item to be held by a Pokémon. If it has full HP, the holder will endure one potential KO attack, leaving 1 HP. #------------------------------- [FLAMEORB] @@ -1140,7 +1160,8 @@ Description = A Pokémon held item that cuts Speed. It makes Flying-type and lev Name = Ring Target NamePlural = Ring Targets Pocket = 1 -Price = 4000 +Price = 3000 +SellPrice = 2000 Description = Moves that would otherwise have no effect will land on the Pokémon that holds it. #------------------------------- [MACHOBRACE] @@ -1259,245 +1280,279 @@ Description = An item to be held by a Pokémon. This exotic-smelling incense boo Name = Charcoal NamePlural = Charcoals Pocket = 1 -Price = 1000 +Price = 3000 +SellPrice = 500 Description = An item to be held by a Pokémon. It is a combustible fuel that boosts the power of Fire-type moves. #------------------------------- [MYSTICWATER] Name = Mystic Water NamePlural = Mystic Waters Pocket = 1 -Price = 1000 +Price = 3000 +SellPrice = 500 Description = An item to be held by a Pokémon. It is a teardrop-shaped gem that ups the power of Water-type moves. #------------------------------- [MAGNET] Name = Magnet NamePlural = Magnets Pocket = 1 -Price = 1000 +Price = 3000 +SellPrice = 500 Description = An item to be held by a Pokémon. It is a powerful magnet that boosts the power of Electric-type moves. #------------------------------- [MIRACLESEED] Name = Miracle Seed NamePlural = Miracle Seeds Pocket = 1 -Price = 1000 +Price = 3000 +SellPrice = 500 Description = An item to be held by a Pokémon. It is a seed imbued with life that ups the power of Grass-type moves. #------------------------------- [NEVERMELTICE] Name = Never-Melt Ice NamePlural = Never-Melt Ices Pocket = 1 -Price = 1000 +Price = 3000 +SellPrice = 500 Description = An item to be held by a Pokémon. It is a piece of ice that repels heat and boosts Ice-type moves. #------------------------------- [BLACKBELT] Name = Black Belt NamePlural = Black Belts Pocket = 1 -Price = 1000 +Price = 3000 +SellPrice = 500 Description = An item to be held by a Pokémon. It is a belt that boosts determination and Fighting-type moves. #------------------------------- [POISONBARB] Name = Poison Barb NamePlural = Poison Barbs Pocket = 1 -Price = 1000 +Price = 3000 +SellPrice = 500 Description = An item to be held by a Pokémon. It is a small, poisonous barb that ups the power of Poison-type moves. #------------------------------- [SOFTSAND] Name = Soft Sand NamePlural = Soft Sand Pocket = 1 -Price = 1000 +Price = 3000 +SellPrice = 500 Description = An item to be held by a Pokémon. It is a loose, silky sand that boosts the power of Ground-type moves. #------------------------------- [SHARPBEAK] Name = Sharp Beak NamePlural = Sharp Beaks Pocket = 1 -Price = 1000 +Price = 3000 +SellPrice = 500 Description = An item to be held by a Pokémon. It is a long, sharp beak that boosts the power of Flying-type moves. #------------------------------- [TWISTEDSPOON] Name = Twisted Spoon NamePlural = Twisted Spoons Pocket = 1 -Price = 1000 +Price = 3000 +SellPrice = 500 Description = An item to be held by a Pokémon. It is a spoon imbued with telekinetic power that boosts Psychic-type moves. #------------------------------- [SILVERPOWDER] Name = Silver Powder NamePlural = Silver Powders Pocket = 1 -Price = 1000 +Price = 3000 +SellPrice = 500 Description = An item to be held by a Pokémon. It is a shiny, silver powder that ups the power of Bug-type moves. #------------------------------- [HARDSTONE] Name = Hard Stone NamePlural = Hard Stones Pocket = 1 -Price = 1000 +Price = 3000 +SellPrice = 500 Description = An item to be held by a Pokémon. It is an unbreakable stone that ups the power of Rock-type moves. #------------------------------- [SPELLTAG] Name = Spell Tag NamePlural = Spell Tags Pocket = 1 -Price = 1000 +Price = 3000 +SellPrice = 500 Description = An item to be held by a Pokémon. It is a sinister, eerie tag that boosts the power of Ghost-type moves. #------------------------------- [DRAGONFANG] Name = Dragon Fang NamePlural = Dragon Fangs Pocket = 1 -Price = 1000 +Price = 3000 +SellPrice = 500 Description = An item to be held by a Pokémon. It is a hard and sharp fang that ups the power of Dragon-type moves. #------------------------------- [BLACKGLASSES] Name = Black Glasses NamePlural = Black Glasses Pocket = 1 -Price = 1000 +Price = 3000 +SellPrice = 500 Description = An item to be held by a Pokémon. It is a shady-looking pair of glasses that boosts Dark-type moves. #------------------------------- [METALCOAT] Name = Metal Coat NamePlural = Metal Coats Pocket = 1 -Price = 2000 +Price = 3000 +SellPrice = 1000 Description = An item to be held by a Pokémon. It is a special metallic film that ups the power of Steel-type moves. #------------------------------- [SILKSCARF] Name = Silk Scarf NamePlural = Silk Scarves Pocket = 1 -Price = 1000 +Price = 3000 +SellPrice = 500 Description = An item to be held by a Pokémon. It is a sumptuous scarf that boosts the power of Normal-type moves. #------------------------------- [FLAMEPLATE] Name = Flame Plate NamePlural = Flame Plates Pocket = 1 -Price = 1000 +Price = 10000 +SellPrice = 500 Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Fire-type moves. #------------------------------- [SPLASHPLATE] Name = Splash Plate NamePlural = Splash Plates Pocket = 1 -Price = 1000 +Price = 10000 +SellPrice = 500 Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Water-type moves. #------------------------------- [ZAPPLATE] Name = Zap Plate NamePlural = Zap Plates Pocket = 1 -Price = 1000 +Price = 10000 +SellPrice = 500 Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Electric-type moves. #------------------------------- [MEADOWPLATE] Name = Meadow Plate NamePlural = Meadow Plates Pocket = 1 -Price = 1000 +Price = 10000 +SellPrice = 500 Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Grass-type moves. #------------------------------- [ICICLEPLATE] Name = Icicle Plate NamePlural = Icicle Plates Pocket = 1 -Price = 1000 +Price = 10000 +SellPrice = 500 Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Ice-type moves. #------------------------------- [FISTPLATE] Name = Fist Plate NamePlural = Fist Plates Pocket = 1 -Price = 1000 +Price = 10000 +SellPrice = 500 Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Fighting-type moves. #------------------------------- [TOXICPLATE] Name = Toxic Plate NamePlural = Toxic Plates Pocket = 1 -Price = 1000 +Price = 10000 +SellPrice = 500 Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Poison-type moves. #------------------------------- [EARTHPLATE] Name = Earth Plate NamePlural = Earth Plates Pocket = 1 -Price = 1000 +Price = 10000 +SellPrice = 500 Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Ground-type moves. #------------------------------- [SKYPLATE] Name = Sky Plate NamePlural = Sky Plates Pocket = 1 -Price = 1000 +Price = 10000 +SellPrice = 500 Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Flying-type moves. #------------------------------- [MINDPLATE] Name = Mind Plate NamePlural = Mind Plates Pocket = 1 -Price = 1000 +Price = 10000 +SellPrice = 500 Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Psychic-type moves. #------------------------------- [INSECTPLATE] Name = Insect Plate NamePlural = Insect Plates Pocket = 1 -Price = 1000 +Price = 10000 +SellPrice = 500 Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Bug-type moves. #------------------------------- [STONEPLATE] Name = Stone Plate NamePlural = Stone Plates Pocket = 1 -Price = 1000 +Price = 10000 +SellPrice = 500 Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Rock-type moves. #------------------------------- [SPOOKYPLATE] Name = Spooky Plate NamePlural = Spooky Plates Pocket = 1 -Price = 1000 +Price = 10000 +SellPrice = 500 Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Ghost-type moves. #------------------------------- [DRACOPLATE] Name = Draco Plate NamePlural = Draco Plates Pocket = 1 -Price = 1000 +Price = 10000 +SellPrice = 500 Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Dragon-type moves. #------------------------------- [DREADPLATE] Name = Dread Plate NamePlural = Dread Plates Pocket = 1 -Price = 1000 +Price = 10000 +SellPrice = 500 Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Dark-type moves. #------------------------------- [IRONPLATE] Name = Iron Plate NamePlural = Iron Plates Pocket = 1 -Price = 1000 +Price = 10000 +SellPrice = 500 Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Steel-type moves. #------------------------------- [PIXIEPLATE] Name = Pixie Plate NamePlural = Pixie Plates Pocket = 1 -Price = 1000 +Price = 10000 +SellPrice = 500 Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Fairy-type moves. #------------------------------- [FIREGEM] Name = Fire Gem NamePlural = Fire Gems Pocket = 1 -Price = 200 +Price = 4000 Type = TypeGem Description = A gem with an essence of fire. When held, it strengthens the power of a Fire-type move only once. #------------------------------- @@ -1505,7 +1560,7 @@ Description = A gem with an essence of fire. When held, it strengthens the power Name = Water Gem NamePlural = Water Gems Pocket = 1 -Price = 200 +Price = 4000 Type = TypeGem Description = A gem with an essence of water. When held, it strengthens the power of a Water-type move only once. #------------------------------- @@ -1513,7 +1568,7 @@ Description = A gem with an essence of water. When held, it strengthens the powe Name = Electric Gem NamePlural = Electric Gems Pocket = 1 -Price = 200 +Price = 4000 Type = TypeGem Description = A gem with an essence of electricity. When held, it strengthens the power of an Electric-type move only once. #------------------------------- @@ -1521,7 +1576,7 @@ Description = A gem with an essence of electricity. When held, it strengthens th Name = Grass Gem NamePlural = Grass Gems Pocket = 1 -Price = 200 +Price = 4000 Type = TypeGem Description = A gem with an essence of nature. When held, it strengthens the power of a Grass-type move only once. #------------------------------- @@ -1529,7 +1584,7 @@ Description = A gem with an essence of nature. When held, it strengthens the pow Name = Ice Gem NamePlural = Ice Gems Pocket = 1 -Price = 200 +Price = 4000 Type = TypeGem Description = A gem with an essence of ice. When held, it strengthens the power of an Ice-type move only once. #------------------------------- @@ -1537,7 +1592,7 @@ Description = A gem with an essence of ice. When held, it strengthens the power Name = Fighting Gem NamePlural = Fighting Gems Pocket = 1 -Price = 200 +Price = 4000 Type = TypeGem Description = A gem with an essence of combat. When held, it strengthens the power of a Fighting-type move only once. #------------------------------- @@ -1545,7 +1600,7 @@ Description = A gem with an essence of combat. When held, it strengthens the pow Name = Poison Gem NamePlural = Poison Gems Pocket = 1 -Price = 200 +Price = 4000 Type = TypeGem Description = A gem with an essence of poison. When held, it strengthens the power of a Poison-type move only once. #------------------------------- @@ -1553,7 +1608,7 @@ Description = A gem with an essence of poison. When held, it strengthens the pow Name = Ground Gem NamePlural = Ground Gems Pocket = 1 -Price = 200 +Price = 4000 Type = TypeGem Description = A gem with an essence of land. When held, it strengthens the power of a Ground-type move only once. #------------------------------- @@ -1561,7 +1616,7 @@ Description = A gem with an essence of land. When held, it strengthens the power Name = Flying Gem NamePlural = Flying Gems Pocket = 1 -Price = 200 +Price = 4000 Type = TypeGem Description = A gem with an essence of air. When held, it strengthens the power of a Flying-type move only once. #------------------------------- @@ -1569,7 +1624,7 @@ Description = A gem with an essence of air. When held, it strengthens the power Name = Psychic Gem NamePlural = Psychic Gems Pocket = 1 -Price = 200 +Price = 4000 Type = TypeGem Description = A gem with an essence of the mind. When held, it strengthens the power of a Psychic-type move only once. #------------------------------- @@ -1577,7 +1632,7 @@ Description = A gem with an essence of the mind. When held, it strengthens the p Name = Bug Gem NamePlural = Bug Gems Pocket = 1 -Price = 200 +Price = 4000 Type = TypeGem Description = A gem with an insect-like essence. When held, it strengthens the power of a Bug-type move only once. #------------------------------- @@ -1585,7 +1640,7 @@ Description = A gem with an insect-like essence. When held, it strengthens the p Name = Rock Gem NamePlural = Rock Gems Pocket = 1 -Price = 200 +Price = 4000 Type = TypeGem Description = A gem with an essence of rock. When held, it strengthens the power of a Rock-type move only once. #------------------------------- @@ -1593,7 +1648,7 @@ Description = A gem with an essence of rock. When held, it strengthens the power Name = Ghost Gem NamePlural = Ghost Gems Pocket = 1 -Price = 200 +Price = 4000 Type = TypeGem Description = A gem with a spectral essence. When held, it strengthens the power of a Ghost-type move only once. #------------------------------- @@ -1601,7 +1656,7 @@ Description = A gem with a spectral essence. When held, it strengthens the power Name = Dragon Gem NamePlural = Dragon Gems Pocket = 1 -Price = 200 +Price = 4000 Type = TypeGem Description = A gem with a draconic essence. When held, it strengthens the power of a Dragon-type move only once. #------------------------------- @@ -1609,7 +1664,7 @@ Description = A gem with a draconic essence. When held, it strengthens the power Name = Dark Gem NamePlural = Dark Gems Pocket = 1 -Price = 200 +Price = 4000 Type = TypeGem Description = A gem with an essence of darkness. When held, it strengthens the power of a Dark-type move only once. #------------------------------- @@ -1617,7 +1672,7 @@ Description = A gem with an essence of darkness. When held, it strengthens the p Name = Steel Gem NamePlural = Steel Gems Pocket = 1 -Price = 200 +Price = 4000 Type = TypeGem Description = A gem with an essence of steel. When held, it strengthens the power of a Steel-type move only once. #------------------------------- @@ -1625,7 +1680,7 @@ Description = A gem with an essence of steel. When held, it strengthens the powe Name = Fairy Gem NamePlural = Fairy Gems Pocket = 1 -Price = 200 +Price = 4000 Type = TypeGem Description = A gem with an essence of the fey. When held, it strengthens the power of a Fairy-type move only once. #------------------------------- @@ -1633,7 +1688,7 @@ Description = A gem with an essence of the fey. When held, it strengthens the po Name = Normal Gem NamePlural = Normal Gems Pocket = 1 -Price = 200 +Price = 4000 Type = TypeGem Description = A gem with an ordinary essence. When held, it strengthens the power of a Normal-type move only once. #------------------------------- @@ -1705,6 +1760,7 @@ Name = Adamant Orb NamePlural = Adamant Orbs Pocket = 1 Price = 10000 +SellPrice = 0 Description = A brightly gleaming orb to be held by Dialga. It boosts the power of Dragon- and Steel-type moves. #------------------------------- [LUSTROUSORB] @@ -1712,6 +1768,7 @@ Name = Lustrous Orb NamePlural = Lustrous Orbs Pocket = 1 Price = 10000 +SellPrice = 0 Description = A beautifully glowing orb to be held by Palkia. It boosts the power of Dragon- and Water-type moves. #------------------------------- [GRISEOUSORB] @@ -1719,6 +1776,7 @@ Name = Griseous Orb NamePlural = Griseous Orbs Pocket = 1 Price = 10000 +SellPrice = 0 Description = A glowing orb to be held by Giratina. It boosts the power of Dragon- and Ghost-type moves. #------------------------------- [RUSTEDSWORD] @@ -1739,28 +1797,28 @@ Description = It is said that a hero used this shield to halt a terrible disaste Name = Douse Drive NamePlural = Douse Drives Pocket = 1 -Price = 1000 +Price = 0 Description = A cassette to be held by Genesect. It changes Techno Blast to a Water-type move. #------------------------------- [SHOCKDRIVE] Name = Shock Drive NamePlural = Shock Drives Pocket = 1 -Price = 1000 +Price = 0 Description = A cassette to be held by Genesect. It changes Techno Blast to an Electric-type move. #------------------------------- [BURNDRIVE] Name = Burn Drive NamePlural = Burn Drives Pocket = 1 -Price = 1000 +Price = 0 Description = A cassette to be held by Genesect. It changes Techno Blast to a Fire-type move. #------------------------------- [CHILLDRIVE] Name = Chill Drive NamePlural = Chill Drives Pocket = 1 -Price = 1000 +Price = 0 Description = A cassette to be held by Genesect. It changes Techno Blast to an Ice-type move. #------------------------------- [FIREMEMORY] @@ -1893,77 +1951,88 @@ Description = An item to be held by a Pokémon. The Pokémon holding this peculi Name = Dragon Scale NamePlural = Dragon Scales Pocket = 1 -Price = 2000 +Price = 3000 +SellPrice = 1000 Description = A thick and tough scale. Dragon-type Pokémon may be holding this item when caught. #------------------------------- [UPGRADE] Name = Upgrade NamePlural = Upgrades Pocket = 1 -Price = 2000 +Price = 3000 +SellPrice = 1000 Description = A transparent device filled with all sorts of data. It was produced by Silph Co. #------------------------------- [DUBIOUSDISC] Name = Dubious Disc NamePlural = Dubious Discs Pocket = 1 -Price = 2000 +Price = 3000 +SellPrice = 1000 Description = A transparent device overflowing with dubious data. Its producer is unknown. #------------------------------- [PROTECTOR] Name = Protector NamePlural = Protectors Pocket = 1 -Price = 2000 +Price = 3000 +SellPrice = 1000 Description = A protective item of some sort. It is extremely stiff and heavy. It is loved by a certain Pokémon. #------------------------------- [ELECTIRIZER] Name = Electirizer NamePlural = Electirizers Pocket = 1 -Price = 2000 +Price = 3000 +SellPrice = 1000 Description = A box packed with a tremendous amount of electric energy. It is loved by a certain Pokémon. #------------------------------- [MAGMARIZER] Name = Magmarizer NamePlural = Magmarizers Pocket = 1 -Price = 2000 +Price = 3000 +SellPrice = 1000 Description = A box packed with a tremendous amount of magma energy. It is loved by a certain Pokémon. #------------------------------- [REAPERCLOTH] Name = Reaper Cloth NamePlural = Reaper Cloths Pocket = 1 -Price = 2000 +Price = 3000 +SellPrice = 1000 Description = A cloth imbued with horrifyingly strong spiritual energy. It is loved by a certain Pokémon. #------------------------------- [PRISMSCALE] Name = Prism Scale NamePlural = Prism Scales Pocket = 1 -Price = 2000 +Price = 3000 +SellPrice = 1000 Description = A mysterious scale that evolves certain Pokémon. It shines in rainbow colors. #------------------------------- [OVALSTONE] Name = Oval Stone NamePlural = Oval Stones Pocket = 1 -Price = 2000 +Price = 3000 +SellPrice = 1000 Description = A peculiar stone that makes certain species of Pokémon evolve. It is shaped like an egg. #------------------------------- [WHIPPEDDREAM] Name = Whipped Dream NamePlural = Whipped Dreams Pocket = 1 -Price = 2000 +Price = 3000 +SellPrice = 1000 Description = A soft and sweet treat made of fluffy, puffy and whirled cream. It's loved by a certain Pokémon. #------------------------------- [SACHET] Name = Sachet NamePlural = Sachets Pocket = 1 -Price = 2000 +Price = 3000 +SellPrice = 1000 Description = A sachet filled with slightly overwhelming fragrant perfumes. Yet it's loved by a certain Pokémon. #------------------------------- [STRAWBERRYSWEET] @@ -2015,41 +2084,6 @@ Pocket = 1 Price = 500 Description = A ribbon-shaped sweet. When a Milcery holds this, it spins around happily. #------------------------------- -[REDSCARF] -Name = Red Scarf -NamePlural = Red Scarves -Pocket = 1 -Price = 100 -Description = An item to be held by a Pokémon. It boosts the Cool aspect of the holder in a Contest. -#------------------------------- -[BLUESCARF] -Name = Blue Scarf -NamePlural = Blue Scarves -Pocket = 1 -Price = 100 -Description = An item to be held by a Pokémon. It boosts the Beauty aspect of the holder in a Contest. -#------------------------------- -[PINKSCARF] -Name = Pink Scarf -NamePlural = Pink Scarves -Pocket = 1 -Price = 100 -Description = An item to be held by a Pokémon. It boosts the Cute aspect of the holder in a Contest. -#------------------------------- -[GREENSCARF] -Name = Green Scarf -NamePlural = Green Scarves -Pocket = 1 -Price = 100 -Description = An item to be held by a Pokémon. It boosts the Smart aspect of the holder in a Contest. -#------------------------------- -[YELLOWSCARF] -Name = Yellow Scarf -NamePlural = Yellow Scarves -Pocket = 1 -Price = 100 -Description = An item to be held by a Pokémon. It boosts the Tough aspect of the holder in a Contest. -#------------------------------- [VENUSAURITE] Name = Venusaurite NamePlural = Venusaurites @@ -2430,14 +2464,16 @@ Description = One of a variety of mysterious Mega Stones. Have Diancie hold it, Name = Red Orb NamePlural = Red Orbs Pocket = 1 -Price = 0 +Price = 10000 +SellPrice = 0 Description = A shiny red orb that is said to have a legend tied to it. It's known to be connected with the Hoenn region. #------------------------------- [BLUEORB] Name = Blue Orb NamePlural = Blue Orbs Pocket = 1 -Price = 0 +Price = 10000 +SellPrice = 0 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] @@ -2497,7 +2533,7 @@ Description = It revives all fainted Pokémon. In doing so, it also fully restor Name = Awakening NamePlural = Awakenings Pocket = 2 -Price = 100 +Price = 200 FieldUse = OnPokemon BattleUse = OnPokemon Description = A spray-type medicine. It awakens a Pokémon from the clutches of sleep. @@ -2515,7 +2551,7 @@ Description = A spray-type medicine. It lifts the effect of poison from one Pok Name = Burn Heal NamePlural = Burn Heals Pocket = 2 -Price = 300 +Price = 200 FieldUse = OnPokemon BattleUse = OnPokemon Description = A spray-type medicine. It heals a single Pokémon that is suffering from a burn. @@ -2524,7 +2560,7 @@ Description = A spray-type medicine. It heals a single Pokémon that is sufferin Name = Paralyze Heal NamePlural = Paralyze Heals Pocket = 2 -Price = 300 +Price = 200 FieldUse = OnPokemon BattleUse = OnPokemon Description = A spray-type medicine. It eliminates paralysis from a single Pokémon. @@ -2533,7 +2569,7 @@ Description = A spray-type medicine. It eliminates paralysis from a single Poké Name = Ice Heal NamePlural = Ice Heals Pocket = 2 -Price = 100 +Price = 200 FieldUse = OnPokemon BattleUse = OnPokemon Description = A spray-type medicine. It defrosts a Pokémon that has been frozen solid. @@ -2547,6 +2583,15 @@ FieldUse = OnPokemon BattleUse = OnPokemon Description = A spray-type medicine. It heals all the status problems of a single Pokémon. #------------------------------- +[PEWTERCRUNCHIES] +Name = Pewter Crunchies +NamePlural = Pewter Crunchies +Pocket = 2 +Price = 250 +FieldUse = OnPokemon +BattleUse = OnPokemon +Description = Pewter City's famous crunchy snack. They can be used to heal all status conditions of a single Pokémon. +#------------------------------- [RAGECANDYBAR] Name = Rage Candy Bar NamePlural = Rage Candy Bars @@ -2669,6 +2714,7 @@ Name = Lemonade NamePlural = Lemonades Pocket = 2 Price = 350 +SellPrice = 200 FieldUse = OnPokemon BattleUse = OnPokemon Description = A very sweet and refreshing drink. It can be used to restore 70 HP to a single Pokémon. @@ -3210,7 +3256,7 @@ Description = A somewhat different Ball that becomes progressively better the mo Name = Luxury Ball NamePlural = Luxury Balls Pocket = 3 -Price = 1000 +Price = 3000 BattleUse = OnFoe Type = PokeBall Description = A comfortable Poké Ball that makes a caught wild Pokémon quickly grow friendly. @@ -3219,7 +3265,8 @@ Description = A comfortable Poké Ball that makes a caught wild Pokémon quickly Name = Premier Ball NamePlural = Premier Balls Pocket = 3 -Price = 20 +Price = 200 +SellPrice = 10 BattleUse = OnFoe Type = PokeBall Description = A somewhat rare Poké Ball that has been specially made to commemorate an event of some sort. @@ -3327,7 +3374,7 @@ Description = A Poké Ball for catching Pokémon that evolve using the Moon Ston Name = Dream Ball NamePlural = Dream Balls Pocket = 3 -Price = 0 +Price = 300 BattleUse = OnFoe Type = PokeBall Description = A somewhat different Poké Ball that makes it easier to catch wild Pokémon while they're asleep. @@ -6107,7 +6154,7 @@ Description = When used, it causes an ally Pokémon to drop a held item. Name = Blue Flute NamePlural = Blue Flutes Pocket = 7 -Price = 100 +Price = 20 FieldUse = OnPokemonReusable BattleUse = OnPokemonReusable Description = A blue flute made from blown glass. Its melody awakens a single Pokémon from sleep. @@ -6116,7 +6163,7 @@ Description = A blue flute made from blown glass. Its melody awakens a single Po Name = Yellow Flute NamePlural = Yellow Flutes Pocket = 7 -Price = 300 +Price = 20 BattleUse = OnBattlerReusable Description = A yellow flute made from blown glass. Its melody snaps a single Pokémon out of confusion. #------------------------------- @@ -6124,7 +6171,7 @@ Description = A yellow flute made from blown glass. Its melody snaps a single Po Name = Red Flute NamePlural = Red Flutes Pocket = 7 -Price = 200 +Price = 20 BattleUse = OnBattlerReusable Description = A red flute made from blown glass. Its melody snaps a single Pokémon out of infatuation. #------------------------------- @@ -6132,7 +6179,7 @@ Description = A red flute made from blown glass. Its melody snaps a single Poké Name = Poké Doll NamePlural = Poké Dolls Pocket = 7 -Price = 100 +Price = 300 BattleUse = Direct Description = A doll that attracts Pokémon. Use it to flee from any battle with a wild Pokémon. #------------------------------- @@ -6140,7 +6187,7 @@ Description = A doll that attracts Pokémon. Use it to flee from any battle with Name = Fluffy Tail NamePlural = Fluffy Tails Pocket = 7 -Price = 100 +Price = 300 BattleUse = Direct Description = An item that attracts Pokémon. Use it to flee from any battle with a wild Pokémon. #------------------------------- @@ -6148,7 +6195,7 @@ Description = An item that attracts Pokémon. Use it to flee from any battle wit Name = Poké Toy NamePlural = Poké Toys Pocket = 7 -Price = 100 +Price = 300 BattleUse = Direct Description = An item that attracts Pokémon. Use it to flee from any battle with a wild Pokémon. #------------------------------- @@ -6224,6 +6271,15 @@ FieldUse = Direct Type = KeyItem Description = A very convenient map that can be viewed anytime. It even shows your present location. #------------------------------- +[ESCAPEROPE] +Name = Escape Rope +NamePlural = Escape Ropes +Pocket = 8 +Price = 0 +FieldUse = Direct +Type = KeyItem +Description = A long, durable rope. Use it to escape instantly from a cave or a dungeon. +#------------------------------- [POKEFLUTE] Name = Poké Flute NamePlural = Poké Flutes diff --git a/PBS/items.txt b/PBS/items.txt index a4557ad4f..2c4cb79e1 100644 --- a/PBS/items.txt +++ b/PBS/items.txt @@ -28,7 +28,7 @@ Description = An item that prevents weak wild Pokémon from appearing for 250 st Name = Black Flute NamePlural = Black Flutes Pocket = 1 -Price = 400 +Price = 20 FieldUse = Direct Description = A black flute made from blown glass. Its melody makes wild Pokémon less likely to appear. #------------------------------- @@ -36,7 +36,7 @@ Description = A black flute made from blown glass. Its melody makes wild Pokémo Name = White Flute NamePlural = White Flutes Pocket = 1 -Price = 500 +Price = 20 FieldUse = Direct Description = A white flute made from blown glass. Its melody makes wild Pokémon more likely to appear. #------------------------------- @@ -44,17 +44,9 @@ Description = A white flute made from blown glass. Its melody makes wild Pokémo Name = Honey NamePlural = Honey Pocket = 1 -Price = 300 +Price = 900 FieldUse = Direct -Description = A sweet honey with an aroma that attracts wild Pokémon when used in grass, caves or on special trees. -#------------------------------- -[ESCAPEROPE] -Name = Escape Rope -NamePlural = Escape Ropes -Pocket = 1 -Price = 1000 -FieldUse = Direct -Description = A long, durable rope. Use it to escape instantly from a cave or a dungeon. +Description = A sweet honey with a lush aroma that attracts wild Pokémon when used in tall grass, in caves, or elsewhere. #------------------------------- [REDSHARD] Name = Red Shard @@ -197,6 +189,7 @@ Name = Cracked Pot NamePlural = Cracked Pots Pocket = 1 Price = 3000 +SellPrice = 800 FieldUse = OnPokemon Type = EvolutionStone Description = A peculiar teapot that can make a certain species of Pokémon evolve. It may be cracked, but tea poured from it is delicious. @@ -206,6 +199,7 @@ Name = Chipped Pot NamePlural = Chipped Pots Pocket = 1 Price = 3000 +SellPrice = 19000 FieldUse = OnPokemon Type = EvolutionStone Description = A peculiar teapot that can make a certain species of Pokémon evolve. It may be chipped, but tea poured from it is delicious. @@ -232,7 +226,7 @@ Description = A wreath made from woven-together Galarica Twigs. Placing it on th Name = Red Apricorn NamePlural = Red Apricorns Pocket = 1 -Price = 20 +Price = 200 Type = Apricorn Description = A red Apricorn. It assails your nostrils. #------------------------------- @@ -240,7 +234,7 @@ Description = A red Apricorn. It assails your nostrils. Name = Yellow Apricorn NamePlural = Yellow Apricorns Pocket = 1 -Price = 20 +Price = 200 Type = Apricorn Description = A yellow Apricorn. It has an invigorating scent. #------------------------------- @@ -248,7 +242,7 @@ Description = A yellow Apricorn. It has an invigorating scent. Name = Blue Apricorn NamePlural = Blue Apricorns Pocket = 1 -Price = 20 +Price = 200 Type = Apricorn Description = A blue Apricorn. It smells a bit like grass. #------------------------------- @@ -256,7 +250,7 @@ Description = A blue Apricorn. It smells a bit like grass. Name = Green Apricorn NamePlural = Green Apricorns Pocket = 1 -Price = 20 +Price = 200 Type = Apricorn Description = A green Apricorn. It has a mysterious, aromatic scent. #------------------------------- @@ -264,7 +258,7 @@ Description = A green Apricorn. It has a mysterious, aromatic scent. Name = Pink Apricorn NamePlural = Pink Apricorns Pocket = 1 -Price = 20 +Price = 200 Type = Apricorn Description = A pink Apricorn. It has a nice, sweet scent. #------------------------------- @@ -272,7 +266,7 @@ Description = A pink Apricorn. It has a nice, sweet scent. Name = White Apricorn NamePlural = White Apricorns Pocket = 1 -Price = 20 +Price = 200 Type = Apricorn Description = A white Apricorn. It doesn't smell like anything. #------------------------------- @@ -280,7 +274,7 @@ Description = A white Apricorn. It doesn't smell like anything. Name = Black Apricorn NamePlural = Black Apricorns Pocket = 1 -Price = 20 +Price = 200 Type = Apricorn Description = A black Apricorn. It has an indescribable scent. #------------------------------- @@ -446,7 +440,7 @@ Description = A quite-large pearl that sparkles in a pretty silver color. It can Name = Pearl String NamePlural = Pearl Strings Pocket = 1 -Price = 30000 +Price = 20000 Description = Very large pearls that sparkle in a pretty silver color. A maniac will buy them for a high price. #------------------------------- [STARDUST] @@ -467,7 +461,7 @@ Description = A shard of a pretty gem that sparkles in a red color. It can be so Name = Comet Shard NamePlural = Comet Shards Pocket = 1 -Price = 60000 +Price = 25000 Description = A shard which fell to the ground when a comet approached. A maniac will buy it for a high price. #------------------------------- [NUGGET] @@ -523,7 +517,7 @@ Description = A silver coin used in a civilization about 3,000 years ago. A mani Name = Relic Gold NamePlural = Relic Golds Pocket = 1 -Price = 0 +Price = 60000 Description = A gold coin used in a civilization about 3,000 years ago. A maniac will buy it for a high price. #------------------------------- [RELICVASE] @@ -643,42 +637,48 @@ Description = A flower nectar obtained at Poni Meadow. It changes the form of ce Name = Air Balloon NamePlural = Air Balloons Pocket = 1 -Price = 4000 +Price = 3000 +SellPrice = 2000 Description = An item to be held by a Pokémon. The holder will float in the air until hit. Once hit, this item will burst. #------------------------------- [BRIGHTPOWDER] Name = Bright Powder NamePlural = Bright Powders Pocket = 1 -Price = 4000 +Price = 3000 +SellPrice = 2000 Description = An item to be held by a Pokémon. It casts a tricky glare that lowers the opponent's accuracy. #------------------------------- [EVIOLITE] Name = Eviolite NamePlural = Eviolites Pocket = 1 -Price = 4000 +Price = 3000 +SellPrice = 2000 Description = A mysterious evolutionary lump. When held, it raises the Defense and Sp. Def if the holder can still evolve. #------------------------------- [FLOATSTONE] Name = Float Stone NamePlural = Float Stones Pocket = 1 -Price = 4000 +Price = 3000 +SellPrice = 2000 Description = A very light stone. It reduces the weight of a Pokémon when held. #------------------------------- [DESTINYKNOT] Name = Destiny Knot NamePlural = Destiny Knots Pocket = 1 -Price = 4000 +Price = 3000 +SellPrice = 2000 Description = A long, thin, bright-red string to be held by a Pokémon. If the holder becomes infatuated, so does the foe. #------------------------------- [ROCKYHELMET] Name = Rocky Helmet NamePlural = Rocky Helmets Pocket = 1 -Price = 4000 +Price = 3000 +SellPrice = 2000 Description = If the holder of this item takes damage, the attacker will also be damaged upon contact. #------------------------------- [ASSAULTVEST] @@ -692,63 +692,72 @@ Description = An item to be held by a Pokémon. This offensive vest raises Sp. D Name = Safety Goggles NamePlural = Safety Goggles Pocket = 1 -Price = 4000 +Price = 3000 +SellPrice = 2000 Description = An item to be held by a Pokémon. They protect the holder from weather-related damage and powder. #------------------------------- [PROTECTIVEPADS] Name = Protective Pads NamePlural = Protective Pads Pocket = 1 -Price = 4000 +Price = 3000 +SellPrice = 2000 Description = An item to be held by a Pokémon. They protect the holder from effects caused by making contact. #------------------------------- [HEAVYDUTYBOOTS] Name = Heavy-Duty Boots NamePlural = pairs of Heavy-Duty Boots Pocket = 1 -Price = 4000 +Price = 3000 +SellPrice = 2000 Description = These boots prevent the effects of traps set on the battlefield. #------------------------------- [UTILITYUMBRELLA] Name = Utility Umbrella NamePlural = Utility Umbrellas Pocket = 1 -Price = 4000 +Price = 3000 +SellPrice = 2000 Description = An item to be held by a Pokémon. This sturdy umbrella protects the holder from the effects of rain and harsh sunlight. #------------------------------- [EJECTBUTTON] Name = Eject Button NamePlural = Eject Buttons Pocket = 1 -Price = 4000 +Price = 3000 +SellPrice = 2000 Description = If the holder is hit by an attack, it will switch with another Pokémon in your party. #------------------------------- [EJECTPACK] Name = Eject Pack NamePlural = Eject Packs Pocket = 1 -Price = 4000 +Price = 3000 +SellPrice = 2000 Description = An item to be held by a Pokémon. When the holder's stats are lowered, it will be switched out of battle. #------------------------------- [REDCARD] Name = Red Card NamePlural = Red Cards Pocket = 1 -Price = 4000 +Price = 3000 +SellPrice = 2000 Description = A card with a mysterious power. When the holder is struck by a foe, the attacker is removed from battle. #------------------------------- [SHEDSHELL] Name = Shed Shell NamePlural = Shed Shells Pocket = 1 -Price = 4000 +Price = 3000 +SellPrice = 2000 Description = An item to be held by a Pokémon. This discarded carapace lets the holder switch out of battle without fail. #------------------------------- [SMOKEBALL] Name = Smoke Ball NamePlural = Smoke Balls Pocket = 1 -Price = 4000 +Price = 3000 +SellPrice = 2000 Description = An item to be held by a Pokémon. It enables the holder to flee from any wild Pokémon without fail. #------------------------------- [LUCKYEGG] @@ -860,7 +869,8 @@ Description = A Pokémon held item that extends the duration of multiturn attack Name = Binding Band NamePlural = Binding Bands Pocket = 1 -Price = 4000 +Price = 3000 +SellPrice = 2000 Description = A band that increases the power of binding moves when held. #------------------------------- [BIGROOT] @@ -874,7 +884,8 @@ Description = A Pokémon held item that boosts the power of HP-stealing moves to Name = Black Sludge NamePlural = Black Sludges Pocket = 1 -Price = 4000 +Price = 3000 +SellPrice = 2000 Description = A held item that gradually restores the HP of Poison-type Pokémon. It inflicts damage on all other types. #------------------------------- [LEFTOVERS] @@ -979,28 +990,32 @@ Description = An item to be held by a Pokémon. Lowers Speed when Trick Room tak Name = Electric Seed NamePlural = Electric Seeds Pocket = 1 -Price = 4000 +Price = 3000 +SellPrice = 2000 Description = An item to be held by a Pokémon. It boosts Defense on Electric Terrain. It can only be used once. #------------------------------- [GRASSYSEED] Name = Grassy Seed NamePlural = Grassy Seeds Pocket = 1 -Price = 4000 +Price = 3000 +SellPrice = 2000 Description = An item to be held by a Pokémon. It boosts Defense on Grassy Terrain. It can only be used once. #------------------------------- [MISTYSEED] Name = Misty Seed NamePlural = Misty Seeds Pocket = 1 -Price = 4000 +Price = 3000 +SellPrice = 2000 Description = An item to be held by a Pokémon. It boosts Sp. Def on Misty Terrain. It can only be used once. #------------------------------- [PSYCHICSEED] Name = Psychic Seed NamePlural = Psychic Seeds Pocket = 1 -Price = 4000 +Price = 3000 +SellPrice = 2000 Description = An item to be held by a Pokémon. It boosts Sp. Def on Psychic Terrain. It can only be used once. #------------------------------- [LIFEORB] @@ -1021,7 +1036,8 @@ Description = An item to be held by a Pokémon. It is a well-worn belt that slig Name = Metronome NamePlural = Metronomes Pocket = 1 -Price = 4000 +Price = 3000 +SellPrice = 2000 Description = A Pokémon held item that boosts a move used consecutively. Its effect is reset if another move is used. #------------------------------- [MUSCLEBAND] @@ -1042,7 +1058,8 @@ Description = An item to be held by a Pokémon. It is a thick pair of glasses th Name = Razor Claw NamePlural = Razor Claws Pocket = 1 -Price = 5000 +Price = 3000 +SellPrice = 2500 Description = An item to be held by a Pokémon. It is a sharply hooked claw that ups the holder's critical-hit ratio. #------------------------------- [SCOPELENS] @@ -1091,21 +1108,24 @@ Description = An item to be held by a Pokémon. It is tremendously heavy and mak Name = Quick Claw NamePlural = Quick Claws Pocket = 1 -Price = 4000 +Price = 3000 +SellPrice = 2000 Description = An item to be held by a Pokémon. A light, sharp claw that lets the bearer move first occasionally. #------------------------------- [FOCUSBAND] Name = Focus Band NamePlural = Focus Bands Pocket = 1 -Price = 4000 +Price = 3000 +SellPrice = 2000 Description = An item to be held by a Pokémon. The holder may endure a potential KO attack, leaving it with just 1 HP. #------------------------------- [FOCUSSASH] Name = Focus Sash NamePlural = Focus Sashes Pocket = 1 -Price = 4000 +Price = 3000 +SellPrice = 2000 Description = An item to be held by a Pokémon. If it has full HP, the holder will endure one potential KO attack, leaving 1 HP. #------------------------------- [FLAMEORB] @@ -1140,7 +1160,8 @@ Description = A Pokémon held item that cuts Speed. It makes Flying-type and lev Name = Ring Target NamePlural = Ring Targets Pocket = 1 -Price = 4000 +Price = 3000 +SellPrice = 2000 Description = Moves that would otherwise have no effect will land on the Pokémon that holds it. #------------------------------- [MACHOBRACE] @@ -1259,245 +1280,279 @@ Description = An item to be held by a Pokémon. This exotic-smelling incense boo Name = Charcoal NamePlural = Charcoals Pocket = 1 -Price = 1000 +Price = 3000 +SellPrice = 500 Description = An item to be held by a Pokémon. It is a combustible fuel that boosts the power of Fire-type moves. #------------------------------- [MYSTICWATER] Name = Mystic Water NamePlural = Mystic Waters Pocket = 1 -Price = 1000 +Price = 3000 +SellPrice = 500 Description = An item to be held by a Pokémon. It is a teardrop-shaped gem that ups the power of Water-type moves. #------------------------------- [MAGNET] Name = Magnet NamePlural = Magnets Pocket = 1 -Price = 1000 +Price = 3000 +SellPrice = 500 Description = An item to be held by a Pokémon. It is a powerful magnet that boosts the power of Electric-type moves. #------------------------------- [MIRACLESEED] Name = Miracle Seed NamePlural = Miracle Seeds Pocket = 1 -Price = 1000 +Price = 3000 +SellPrice = 500 Description = An item to be held by a Pokémon. It is a seed imbued with life that ups the power of Grass-type moves. #------------------------------- [NEVERMELTICE] Name = Never-Melt Ice NamePlural = Never-Melt Ices Pocket = 1 -Price = 1000 +Price = 3000 +SellPrice = 500 Description = An item to be held by a Pokémon. It is a piece of ice that repels heat and boosts Ice-type moves. #------------------------------- [BLACKBELT] Name = Black Belt NamePlural = Black Belts Pocket = 1 -Price = 1000 +Price = 3000 +SellPrice = 500 Description = An item to be held by a Pokémon. It is a belt that boosts determination and Fighting-type moves. #------------------------------- [POISONBARB] Name = Poison Barb NamePlural = Poison Barbs Pocket = 1 -Price = 1000 +Price = 3000 +SellPrice = 500 Description = An item to be held by a Pokémon. It is a small, poisonous barb that ups the power of Poison-type moves. #------------------------------- [SOFTSAND] Name = Soft Sand NamePlural = Soft Sand Pocket = 1 -Price = 1000 +Price = 3000 +SellPrice = 500 Description = An item to be held by a Pokémon. It is a loose, silky sand that boosts the power of Ground-type moves. #------------------------------- [SHARPBEAK] Name = Sharp Beak NamePlural = Sharp Beaks Pocket = 1 -Price = 1000 +Price = 3000 +SellPrice = 500 Description = An item to be held by a Pokémon. It is a long, sharp beak that boosts the power of Flying-type moves. #------------------------------- [TWISTEDSPOON] Name = Twisted Spoon NamePlural = Twisted Spoons Pocket = 1 -Price = 1000 +Price = 3000 +SellPrice = 500 Description = An item to be held by a Pokémon. It is a spoon imbued with telekinetic power that boosts Psychic-type moves. #------------------------------- [SILVERPOWDER] Name = Silver Powder NamePlural = Silver Powders Pocket = 1 -Price = 1000 +Price = 3000 +SellPrice = 500 Description = An item to be held by a Pokémon. It is a shiny, silver powder that ups the power of Bug-type moves. #------------------------------- [HARDSTONE] Name = Hard Stone NamePlural = Hard Stones Pocket = 1 -Price = 1000 +Price = 3000 +SellPrice = 500 Description = An item to be held by a Pokémon. It is an unbreakable stone that ups the power of Rock-type moves. #------------------------------- [SPELLTAG] Name = Spell Tag NamePlural = Spell Tags Pocket = 1 -Price = 1000 +Price = 3000 +SellPrice = 500 Description = An item to be held by a Pokémon. It is a sinister, eerie tag that boosts the power of Ghost-type moves. #------------------------------- [DRAGONFANG] Name = Dragon Fang NamePlural = Dragon Fangs Pocket = 1 -Price = 1000 +Price = 3000 +SellPrice = 500 Description = An item to be held by a Pokémon. It is a hard and sharp fang that ups the power of Dragon-type moves. #------------------------------- [BLACKGLASSES] Name = Black Glasses NamePlural = Black Glasses Pocket = 1 -Price = 1000 +Price = 3000 +SellPrice = 500 Description = An item to be held by a Pokémon. It is a shady-looking pair of glasses that boosts Dark-type moves. #------------------------------- [METALCOAT] Name = Metal Coat NamePlural = Metal Coats Pocket = 1 -Price = 2000 +Price = 3000 +SellPrice = 1000 Description = An item to be held by a Pokémon. It is a special metallic film that ups the power of Steel-type moves. #------------------------------- [SILKSCARF] Name = Silk Scarf NamePlural = Silk Scarves Pocket = 1 -Price = 1000 +Price = 3000 +SellPrice = 500 Description = An item to be held by a Pokémon. It is a sumptuous scarf that boosts the power of Normal-type moves. #------------------------------- [FLAMEPLATE] Name = Flame Plate NamePlural = Flame Plates Pocket = 1 -Price = 1000 +Price = 10000 +SellPrice = 500 Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Fire-type moves. #------------------------------- [SPLASHPLATE] Name = Splash Plate NamePlural = Splash Plates Pocket = 1 -Price = 1000 +Price = 10000 +SellPrice = 500 Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Water-type moves. #------------------------------- [ZAPPLATE] Name = Zap Plate NamePlural = Zap Plates Pocket = 1 -Price = 1000 +Price = 10000 +SellPrice = 500 Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Electric-type moves. #------------------------------- [MEADOWPLATE] Name = Meadow Plate NamePlural = Meadow Plates Pocket = 1 -Price = 1000 +Price = 10000 +SellPrice = 500 Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Grass-type moves. #------------------------------- [ICICLEPLATE] Name = Icicle Plate NamePlural = Icicle Plates Pocket = 1 -Price = 1000 +Price = 10000 +SellPrice = 500 Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Ice-type moves. #------------------------------- [FISTPLATE] Name = Fist Plate NamePlural = Fist Plates Pocket = 1 -Price = 1000 +Price = 10000 +SellPrice = 500 Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Fighting-type moves. #------------------------------- [TOXICPLATE] Name = Toxic Plate NamePlural = Toxic Plates Pocket = 1 -Price = 1000 +Price = 10000 +SellPrice = 500 Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Poison-type moves. #------------------------------- [EARTHPLATE] Name = Earth Plate NamePlural = Earth Plates Pocket = 1 -Price = 1000 +Price = 10000 +SellPrice = 500 Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Ground-type moves. #------------------------------- [SKYPLATE] Name = Sky Plate NamePlural = Sky Plates Pocket = 1 -Price = 1000 +Price = 10000 +SellPrice = 500 Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Flying-type moves. #------------------------------- [MINDPLATE] Name = Mind Plate NamePlural = Mind Plates Pocket = 1 -Price = 1000 +Price = 10000 +SellPrice = 500 Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Psychic-type moves. #------------------------------- [INSECTPLATE] Name = Insect Plate NamePlural = Insect Plates Pocket = 1 -Price = 1000 +Price = 10000 +SellPrice = 500 Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Bug-type moves. #------------------------------- [STONEPLATE] Name = Stone Plate NamePlural = Stone Plates Pocket = 1 -Price = 1000 +Price = 10000 +SellPrice = 500 Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Rock-type moves. #------------------------------- [SPOOKYPLATE] Name = Spooky Plate NamePlural = Spooky Plates Pocket = 1 -Price = 1000 +Price = 10000 +SellPrice = 500 Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Ghost-type moves. #------------------------------- [DRACOPLATE] Name = Draco Plate NamePlural = Draco Plates Pocket = 1 -Price = 1000 +Price = 10000 +SellPrice = 500 Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Dragon-type moves. #------------------------------- [DREADPLATE] Name = Dread Plate NamePlural = Dread Plates Pocket = 1 -Price = 1000 +Price = 10000 +SellPrice = 500 Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Dark-type moves. #------------------------------- [IRONPLATE] Name = Iron Plate NamePlural = Iron Plates Pocket = 1 -Price = 1000 +Price = 10000 +SellPrice = 500 Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Steel-type moves. #------------------------------- [PIXIEPLATE] Name = Pixie Plate NamePlural = Pixie Plates Pocket = 1 -Price = 1000 +Price = 10000 +SellPrice = 500 Description = An item to be held by a Pokémon. It is a stone tablet that boosts the power of Fairy-type moves. #------------------------------- [FIREGEM] Name = Fire Gem NamePlural = Fire Gems Pocket = 1 -Price = 200 +Price = 4000 Type = TypeGem Description = A gem with an essence of fire. When held, it strengthens the power of a Fire-type move only once. #------------------------------- @@ -1505,7 +1560,7 @@ Description = A gem with an essence of fire. When held, it strengthens the power Name = Water Gem NamePlural = Water Gems Pocket = 1 -Price = 200 +Price = 4000 Type = TypeGem Description = A gem with an essence of water. When held, it strengthens the power of a Water-type move only once. #------------------------------- @@ -1513,7 +1568,7 @@ Description = A gem with an essence of water. When held, it strengthens the powe Name = Electric Gem NamePlural = Electric Gems Pocket = 1 -Price = 200 +Price = 4000 Type = TypeGem Description = A gem with an essence of electricity. When held, it strengthens the power of an Electric-type move only once. #------------------------------- @@ -1521,7 +1576,7 @@ Description = A gem with an essence of electricity. When held, it strengthens th Name = Grass Gem NamePlural = Grass Gems Pocket = 1 -Price = 200 +Price = 4000 Type = TypeGem Description = A gem with an essence of nature. When held, it strengthens the power of a Grass-type move only once. #------------------------------- @@ -1529,7 +1584,7 @@ Description = A gem with an essence of nature. When held, it strengthens the pow Name = Ice Gem NamePlural = Ice Gems Pocket = 1 -Price = 200 +Price = 4000 Type = TypeGem Description = A gem with an essence of ice. When held, it strengthens the power of an Ice-type move only once. #------------------------------- @@ -1537,7 +1592,7 @@ Description = A gem with an essence of ice. When held, it strengthens the power Name = Fighting Gem NamePlural = Fighting Gems Pocket = 1 -Price = 200 +Price = 4000 Type = TypeGem Description = A gem with an essence of combat. When held, it strengthens the power of a Fighting-type move only once. #------------------------------- @@ -1545,7 +1600,7 @@ Description = A gem with an essence of combat. When held, it strengthens the pow Name = Poison Gem NamePlural = Poison Gems Pocket = 1 -Price = 200 +Price = 4000 Type = TypeGem Description = A gem with an essence of poison. When held, it strengthens the power of a Poison-type move only once. #------------------------------- @@ -1553,7 +1608,7 @@ Description = A gem with an essence of poison. When held, it strengthens the pow Name = Ground Gem NamePlural = Ground Gems Pocket = 1 -Price = 200 +Price = 4000 Type = TypeGem Description = A gem with an essence of land. When held, it strengthens the power of a Ground-type move only once. #------------------------------- @@ -1561,7 +1616,7 @@ Description = A gem with an essence of land. When held, it strengthens the power Name = Flying Gem NamePlural = Flying Gems Pocket = 1 -Price = 200 +Price = 4000 Type = TypeGem Description = A gem with an essence of air. When held, it strengthens the power of a Flying-type move only once. #------------------------------- @@ -1569,7 +1624,7 @@ Description = A gem with an essence of air. When held, it strengthens the power Name = Psychic Gem NamePlural = Psychic Gems Pocket = 1 -Price = 200 +Price = 4000 Type = TypeGem Description = A gem with an essence of the mind. When held, it strengthens the power of a Psychic-type move only once. #------------------------------- @@ -1577,7 +1632,7 @@ Description = A gem with an essence of the mind. When held, it strengthens the p Name = Bug Gem NamePlural = Bug Gems Pocket = 1 -Price = 200 +Price = 4000 Type = TypeGem Description = A gem with an insect-like essence. When held, it strengthens the power of a Bug-type move only once. #------------------------------- @@ -1585,7 +1640,7 @@ Description = A gem with an insect-like essence. When held, it strengthens the p Name = Rock Gem NamePlural = Rock Gems Pocket = 1 -Price = 200 +Price = 4000 Type = TypeGem Description = A gem with an essence of rock. When held, it strengthens the power of a Rock-type move only once. #------------------------------- @@ -1593,7 +1648,7 @@ Description = A gem with an essence of rock. When held, it strengthens the power Name = Ghost Gem NamePlural = Ghost Gems Pocket = 1 -Price = 200 +Price = 4000 Type = TypeGem Description = A gem with a spectral essence. When held, it strengthens the power of a Ghost-type move only once. #------------------------------- @@ -1601,7 +1656,7 @@ Description = A gem with a spectral essence. When held, it strengthens the power Name = Dragon Gem NamePlural = Dragon Gems Pocket = 1 -Price = 200 +Price = 4000 Type = TypeGem Description = A gem with a draconic essence. When held, it strengthens the power of a Dragon-type move only once. #------------------------------- @@ -1609,7 +1664,7 @@ Description = A gem with a draconic essence. When held, it strengthens the power Name = Dark Gem NamePlural = Dark Gems Pocket = 1 -Price = 200 +Price = 4000 Type = TypeGem Description = A gem with an essence of darkness. When held, it strengthens the power of a Dark-type move only once. #------------------------------- @@ -1617,7 +1672,7 @@ Description = A gem with an essence of darkness. When held, it strengthens the p Name = Steel Gem NamePlural = Steel Gems Pocket = 1 -Price = 200 +Price = 4000 Type = TypeGem Description = A gem with an essence of steel. When held, it strengthens the power of a Steel-type move only once. #------------------------------- @@ -1625,7 +1680,7 @@ Description = A gem with an essence of steel. When held, it strengthens the powe Name = Fairy Gem NamePlural = Fairy Gems Pocket = 1 -Price = 200 +Price = 4000 Type = TypeGem Description = A gem with an essence of the fey. When held, it strengthens the power of a Fairy-type move only once. #------------------------------- @@ -1633,7 +1688,7 @@ Description = A gem with an essence of the fey. When held, it strengthens the po Name = Normal Gem NamePlural = Normal Gems Pocket = 1 -Price = 200 +Price = 4000 Type = TypeGem Description = A gem with an ordinary essence. When held, it strengthens the power of a Normal-type move only once. #------------------------------- @@ -1705,6 +1760,7 @@ Name = Adamant Orb NamePlural = Adamant Orbs Pocket = 1 Price = 10000 +SellPrice = 0 Description = A brightly gleaming orb to be held by Dialga. It boosts the power of Dragon- and Steel-type moves. #------------------------------- [LUSTROUSORB] @@ -1712,6 +1768,7 @@ Name = Lustrous Orb NamePlural = Lustrous Orbs Pocket = 1 Price = 10000 +SellPrice = 0 Description = A beautifully glowing orb to be held by Palkia. It boosts the power of Dragon- and Water-type moves. #------------------------------- [GRISEOUSORB] @@ -1719,6 +1776,7 @@ Name = Griseous Orb NamePlural = Griseous Orbs Pocket = 1 Price = 10000 +SellPrice = 0 Description = A glowing orb to be held by Giratina. It boosts the power of Dragon- and Ghost-type moves. #------------------------------- [RUSTEDSWORD] @@ -1739,28 +1797,28 @@ Description = It is said that a hero used this shield to halt a terrible disaste Name = Douse Drive NamePlural = Douse Drives Pocket = 1 -Price = 1000 +Price = 0 Description = A cassette to be held by Genesect. It changes Techno Blast to a Water-type move. #------------------------------- [SHOCKDRIVE] Name = Shock Drive NamePlural = Shock Drives Pocket = 1 -Price = 1000 +Price = 0 Description = A cassette to be held by Genesect. It changes Techno Blast to an Electric-type move. #------------------------------- [BURNDRIVE] Name = Burn Drive NamePlural = Burn Drives Pocket = 1 -Price = 1000 +Price = 0 Description = A cassette to be held by Genesect. It changes Techno Blast to a Fire-type move. #------------------------------- [CHILLDRIVE] Name = Chill Drive NamePlural = Chill Drives Pocket = 1 -Price = 1000 +Price = 0 Description = A cassette to be held by Genesect. It changes Techno Blast to an Ice-type move. #------------------------------- [FIREMEMORY] @@ -1893,77 +1951,88 @@ Description = An item to be held by a Pokémon. The Pokémon holding this peculi Name = Dragon Scale NamePlural = Dragon Scales Pocket = 1 -Price = 2000 +Price = 3000 +SellPrice = 1000 Description = A thick and tough scale. Dragon-type Pokémon may be holding this item when caught. #------------------------------- [UPGRADE] Name = Upgrade NamePlural = Upgrades Pocket = 1 -Price = 2000 +Price = 3000 +SellPrice = 1000 Description = A transparent device filled with all sorts of data. It was produced by Silph Co. #------------------------------- [DUBIOUSDISC] Name = Dubious Disc NamePlural = Dubious Discs Pocket = 1 -Price = 2000 +Price = 3000 +SellPrice = 1000 Description = A transparent device overflowing with dubious data. Its producer is unknown. #------------------------------- [PROTECTOR] Name = Protector NamePlural = Protectors Pocket = 1 -Price = 2000 +Price = 3000 +SellPrice = 1000 Description = A protective item of some sort. It is extremely stiff and heavy. It is loved by a certain Pokémon. #------------------------------- [ELECTIRIZER] Name = Electirizer NamePlural = Electirizers Pocket = 1 -Price = 2000 +Price = 3000 +SellPrice = 1000 Description = A box packed with a tremendous amount of electric energy. It is loved by a certain Pokémon. #------------------------------- [MAGMARIZER] Name = Magmarizer NamePlural = Magmarizers Pocket = 1 -Price = 2000 +Price = 3000 +SellPrice = 1000 Description = A box packed with a tremendous amount of magma energy. It is loved by a certain Pokémon. #------------------------------- [REAPERCLOTH] Name = Reaper Cloth NamePlural = Reaper Cloths Pocket = 1 -Price = 2000 +Price = 3000 +SellPrice = 1000 Description = A cloth imbued with horrifyingly strong spiritual energy. It is loved by a certain Pokémon. #------------------------------- [PRISMSCALE] Name = Prism Scale NamePlural = Prism Scales Pocket = 1 -Price = 2000 +Price = 3000 +SellPrice = 1000 Description = A mysterious scale that evolves certain Pokémon. It shines in rainbow colors. #------------------------------- [OVALSTONE] Name = Oval Stone NamePlural = Oval Stones Pocket = 1 -Price = 2000 +Price = 3000 +SellPrice = 1000 Description = A peculiar stone that makes certain species of Pokémon evolve. It is shaped like an egg. #------------------------------- [WHIPPEDDREAM] Name = Whipped Dream NamePlural = Whipped Dreams Pocket = 1 -Price = 2000 +Price = 3000 +SellPrice = 1000 Description = A soft and sweet treat made of fluffy, puffy and whirled cream. It's loved by a certain Pokémon. #------------------------------- [SACHET] Name = Sachet NamePlural = Sachets Pocket = 1 -Price = 2000 +Price = 3000 +SellPrice = 1000 Description = A sachet filled with slightly overwhelming fragrant perfumes. Yet it's loved by a certain Pokémon. #------------------------------- [STRAWBERRYSWEET] @@ -2015,41 +2084,6 @@ Pocket = 1 Price = 500 Description = A ribbon-shaped sweet. When a Milcery holds this, it spins around happily. #------------------------------- -[REDSCARF] -Name = Red Scarf -NamePlural = Red Scarves -Pocket = 1 -Price = 100 -Description = An item to be held by a Pokémon. It boosts the Cool aspect of the holder in a Contest. -#------------------------------- -[BLUESCARF] -Name = Blue Scarf -NamePlural = Blue Scarves -Pocket = 1 -Price = 100 -Description = An item to be held by a Pokémon. It boosts the Beauty aspect of the holder in a Contest. -#------------------------------- -[PINKSCARF] -Name = Pink Scarf -NamePlural = Pink Scarves -Pocket = 1 -Price = 100 -Description = An item to be held by a Pokémon. It boosts the Cute aspect of the holder in a Contest. -#------------------------------- -[GREENSCARF] -Name = Green Scarf -NamePlural = Green Scarves -Pocket = 1 -Price = 100 -Description = An item to be held by a Pokémon. It boosts the Smart aspect of the holder in a Contest. -#------------------------------- -[YELLOWSCARF] -Name = Yellow Scarf -NamePlural = Yellow Scarves -Pocket = 1 -Price = 100 -Description = An item to be held by a Pokémon. It boosts the Tough aspect of the holder in a Contest. -#------------------------------- [VENUSAURITE] Name = Venusaurite NamePlural = Venusaurites @@ -2430,14 +2464,16 @@ Description = One of a variety of mysterious Mega Stones. Have Diancie hold it, Name = Red Orb NamePlural = Red Orbs Pocket = 1 -Price = 0 +Price = 10000 +SellPrice = 0 Description = A shiny red orb that is said to have a legend tied to it. It's known to be connected with the Hoenn region. #------------------------------- [BLUEORB] Name = Blue Orb NamePlural = Blue Orbs Pocket = 1 -Price = 0 +Price = 10000 +SellPrice = 0 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] @@ -2497,7 +2533,7 @@ Description = It revives all fainted Pokémon. In doing so, it also fully restor Name = Awakening NamePlural = Awakenings Pocket = 2 -Price = 100 +Price = 200 FieldUse = OnPokemon BattleUse = OnPokemon Description = A spray-type medicine. It awakens a Pokémon from the clutches of sleep. @@ -2515,7 +2551,7 @@ Description = A spray-type medicine. It lifts the effect of poison from one Pok Name = Burn Heal NamePlural = Burn Heals Pocket = 2 -Price = 300 +Price = 200 FieldUse = OnPokemon BattleUse = OnPokemon Description = A spray-type medicine. It heals a single Pokémon that is suffering from a burn. @@ -2524,7 +2560,7 @@ Description = A spray-type medicine. It heals a single Pokémon that is sufferin Name = Paralyze Heal NamePlural = Paralyze Heals Pocket = 2 -Price = 300 +Price = 200 FieldUse = OnPokemon BattleUse = OnPokemon Description = A spray-type medicine. It eliminates paralysis from a single Pokémon. @@ -2533,7 +2569,7 @@ Description = A spray-type medicine. It eliminates paralysis from a single Poké Name = Ice Heal NamePlural = Ice Heals Pocket = 2 -Price = 100 +Price = 200 FieldUse = OnPokemon BattleUse = OnPokemon Description = A spray-type medicine. It defrosts a Pokémon that has been frozen solid. @@ -2547,6 +2583,15 @@ FieldUse = OnPokemon BattleUse = OnPokemon Description = A spray-type medicine. It heals all the status problems of a single Pokémon. #------------------------------- +[PEWTERCRUNCHIES] +Name = Pewter Crunchies +NamePlural = Pewter Crunchies +Pocket = 2 +Price = 250 +FieldUse = OnPokemon +BattleUse = OnPokemon +Description = Pewter City's famous crunchy snack. They can be used to heal all status conditions of a single Pokémon. +#------------------------------- [RAGECANDYBAR] Name = Rage Candy Bar NamePlural = Rage Candy Bars @@ -2669,6 +2714,7 @@ Name = Lemonade NamePlural = Lemonades Pocket = 2 Price = 350 +SellPrice = 200 FieldUse = OnPokemon BattleUse = OnPokemon Description = A very sweet and refreshing drink. It can be used to restore 70 HP to a single Pokémon. @@ -3210,7 +3256,7 @@ Description = A somewhat different Ball that becomes progressively better the mo Name = Luxury Ball NamePlural = Luxury Balls Pocket = 3 -Price = 1000 +Price = 3000 BattleUse = OnFoe Type = PokeBall Description = A comfortable Poké Ball that makes a caught wild Pokémon quickly grow friendly. @@ -3219,7 +3265,8 @@ Description = A comfortable Poké Ball that makes a caught wild Pokémon quickly Name = Premier Ball NamePlural = Premier Balls Pocket = 3 -Price = 20 +Price = 200 +SellPrice = 10 BattleUse = OnFoe Type = PokeBall Description = A somewhat rare Poké Ball that has been specially made to commemorate an event of some sort. @@ -3327,7 +3374,7 @@ Description = A Poké Ball for catching Pokémon that evolve using the Moon Ston Name = Dream Ball NamePlural = Dream Balls Pocket = 3 -Price = 0 +Price = 300 BattleUse = OnFoe Type = PokeBall Description = A somewhat different Poké Ball that makes it easier to catch wild Pokémon while they're asleep. @@ -6107,7 +6154,7 @@ Description = When used, it causes an ally Pokémon to drop a held item. Name = Blue Flute NamePlural = Blue Flutes Pocket = 7 -Price = 100 +Price = 20 FieldUse = OnPokemonReusable BattleUse = OnPokemonReusable Description = A blue flute made from blown glass. Its melody awakens a single Pokémon from sleep. @@ -6116,7 +6163,7 @@ Description = A blue flute made from blown glass. Its melody awakens a single Po Name = Yellow Flute NamePlural = Yellow Flutes Pocket = 7 -Price = 300 +Price = 20 BattleUse = OnBattlerReusable Description = A yellow flute made from blown glass. Its melody snaps a single Pokémon out of confusion. #------------------------------- @@ -6124,7 +6171,7 @@ Description = A yellow flute made from blown glass. Its melody snaps a single Po Name = Red Flute NamePlural = Red Flutes Pocket = 7 -Price = 200 +Price = 20 BattleUse = OnBattlerReusable Description = A red flute made from blown glass. Its melody snaps a single Pokémon out of infatuation. #------------------------------- @@ -6132,7 +6179,7 @@ Description = A red flute made from blown glass. Its melody snaps a single Poké Name = Poké Doll NamePlural = Poké Dolls Pocket = 7 -Price = 100 +Price = 300 BattleUse = Direct Description = A doll that attracts Pokémon. Use it to flee from any battle with a wild Pokémon. #------------------------------- @@ -6140,7 +6187,7 @@ Description = A doll that attracts Pokémon. Use it to flee from any battle with Name = Fluffy Tail NamePlural = Fluffy Tails Pocket = 7 -Price = 100 +Price = 300 BattleUse = Direct Description = An item that attracts Pokémon. Use it to flee from any battle with a wild Pokémon. #------------------------------- @@ -6148,7 +6195,7 @@ Description = An item that attracts Pokémon. Use it to flee from any battle wit Name = Poké Toy NamePlural = Poké Toys Pocket = 7 -Price = 100 +Price = 300 BattleUse = Direct Description = An item that attracts Pokémon. Use it to flee from any battle with a wild Pokémon. #------------------------------- @@ -6224,6 +6271,15 @@ FieldUse = Direct Type = KeyItem Description = A very convenient map that can be viewed anytime. It even shows your present location. #------------------------------- +[ESCAPEROPE] +Name = Escape Rope +NamePlural = Escape Ropes +Pocket = 8 +Price = 0 +FieldUse = Direct +Type = KeyItem +Description = A long, durable rope. Use it to escape instantly from a cave or a dungeon. +#------------------------------- [POKEFLUTE] Name = Poké Flute NamePlural = Poké Flutes