mirror of
https://github.com/P3D-Legacy/P3D-Legacy.git
synced 2025-04-08 18:35:09 +02:00
Fixed price for standard items
This commit is contained in:
parent
df3aad92a8
commit
88655d7c6a
2.5DHero/2.5DHero/Pokemon/Items/Standard
AbilityCapsule.vbAmuletCoin.vbBalmMushroom.vbBigMushroom.vbBigNugget.vbBigPearl.vbBlackBelt.vbBlackGlasses.vbBlackSludge.vbBrickPiece.vbCharcoal.vbCleanseTag.vbCometShard.vbDeepSeaScale.vbDeepSeaTooth.vbDragonFang.vbDragonScale.vbDubiousDisc.vbElectirizer.vbExpShare.vbFullIncense.vbGoldLeaf.vbGripClaw.vbHardStone.vbHeartScale.vbHoney.vbLaggingTail.vbLaxIncense.vbLifeOrb.vbLightBall.vbLuckIncense.vbLuckyEgg.vbLuckyPunch.vbMagmarizer.vbMagnet.vbMetalCoat.vbMetalPowder.vbMiracleSeed.vbMysticWater.vbNeverMeltIce.vbNugget.vbOddIncense.vbOvalStone.vbPearl.vbPearlString.vbPinkBow.vbPoisonBarb.vbPokeDoll.vbPolkadotBow.vbPrismScale.vbProtector.vbPureIncense.vbQuickPowder.vbRareBone.vbReaperCloth.vbRockIncense.vbRoseIncense.vbSachet.vbSeaIncense.vbSharpBeak.vbShedShell.vbSilkScarf.vbSilverLeaf.vbSilverPowder.vbSlowPokeTail.vbSmokeBall.vbSoftSand.vbSootheBell.vbSpellTag.vbStarPiece.vbStardust.vbStick.vbStickyBarb.vbThickClub.vbTinyMushroom.vbTwistedSpoon.vbUpGrade.vbWaveIncense.vbWhippedDream.vbWhiteFlute.vbWideLens.vbZoomLens.vb
@ -6,7 +6,7 @@ Namespace Items.Standard
|
||||
Inherits Item
|
||||
|
||||
Public Overrides ReadOnly Property Description As String = "A capsule that allows a Pokémon with two Abilities to switch between these Abilities when it is used."
|
||||
Public Overrides ReadOnly Property BattlePointsPrice As Integer = 1000
|
||||
Public Overrides ReadOnly Property PokeDollarPrice As Integer = 1000
|
||||
Public Overrides ReadOnly Property CanBeUsedInBattle As Boolean = False
|
||||
|
||||
Public Sub New()
|
||||
|
@ -6,7 +6,7 @@ Namespace Items.Standard
|
||||
Inherits Item
|
||||
|
||||
Public Overrides ReadOnly Property Description As String = "An item to be held by a Pokémon. It doubles any prize money received if the holding Pokémon joins in a battle."
|
||||
Public Overrides ReadOnly Property BattlePointsPrice As Integer = 100
|
||||
Public Overrides ReadOnly Property PokeDollarPrice As Integer = 100
|
||||
Public Overrides ReadOnly Property CanBeUsedInBattle As Boolean = False
|
||||
Public Overrides ReadOnly Property CanBeUsed As Boolean = False
|
||||
|
||||
|
@ -6,7 +6,7 @@ Namespace Items.Standard
|
||||
Inherits Item
|
||||
|
||||
Public Overrides ReadOnly Property Description As String = "A rare mushroom which gives off a nice fragrance. A maniac will buy it for a high price."
|
||||
Public Overrides ReadOnly Property BattlePointsPrice As Integer = 50000
|
||||
Public Overrides ReadOnly Property PokeDollarPrice As Integer = 50000
|
||||
Public Overrides ReadOnly Property CanBeUsedInBattle As Boolean = False
|
||||
Public Overrides ReadOnly Property CanBeUsed As Boolean = False
|
||||
|
||||
|
@ -7,7 +7,7 @@ Namespace Items.Plants
|
||||
|
||||
Public Overrides ReadOnly Property ItemType As ItemTypes = ItemTypes.Plants
|
||||
Public Overrides ReadOnly Property Description As String = "A very large and rare mushroom. It's popular with a certain class of collectors and sought out by them."
|
||||
Public Overrides ReadOnly Property BattlePointsPrice As Integer = 5000
|
||||
Public Overrides ReadOnly Property PokeDollarPrice As Integer = 5000
|
||||
Public Overrides ReadOnly Property CanBeUsedInBattle As Boolean = False
|
||||
Public Overrides ReadOnly Property CanBeUsed As Boolean = False
|
||||
|
||||
|
@ -6,7 +6,7 @@ Namespace Items.Standard
|
||||
Inherits Item
|
||||
|
||||
Public Overrides ReadOnly Property Description As String = "A big nugget of pure gold that gives off a lustrous gleam. It can be sold at a high price to shops."
|
||||
Public Overrides ReadOnly Property BattlePointsPrice As Integer = 20000
|
||||
Public Overrides ReadOnly Property PokeDollarPrice As Integer = 20000
|
||||
Public Overrides ReadOnly Property CanBeUsedInBattle As Boolean = False
|
||||
Public Overrides ReadOnly Property CanBeUsed As Boolean = False
|
||||
|
||||
|
@ -6,7 +6,7 @@ Namespace Items.Standard
|
||||
Inherits Item
|
||||
|
||||
Public Overrides ReadOnly Property Description As String = "A rather large pearl that has a very nice silvery sheen. It can be sold to shops for a high price."
|
||||
Public Overrides ReadOnly Property BattlePointsPrice As Integer = 7500
|
||||
Public Overrides ReadOnly Property PokeDollarPrice As Integer = 7500
|
||||
Public Overrides ReadOnly Property CanBeUsedInBattle As Boolean = False
|
||||
Public Overrides ReadOnly Property CanBeUsed As Boolean = False
|
||||
|
||||
|
@ -6,7 +6,7 @@ Namespace Items.Standard
|
||||
Inherits Item
|
||||
|
||||
Public Overrides ReadOnly Property Description As String = "An item to be held by a Pokémon. This belt helps the wearer to focus and boosts the power of Fighting-type moves."
|
||||
Public Overrides ReadOnly Property BattlePointsPrice As Integer = 100
|
||||
Public Overrides ReadOnly Property PokeDollarPrice As Integer = 100
|
||||
Public Overrides ReadOnly Property CanBeUsedInBattle As Boolean = False
|
||||
Public Overrides ReadOnly Property CanBeUsed As Boolean = False
|
||||
|
||||
|
@ -6,7 +6,7 @@ Namespace Items.Standard
|
||||
Inherits Item
|
||||
|
||||
Public Overrides ReadOnly Property Description As String = "An item to be held by a Pokemon. A pair of shady-looking glasses that boost the power of Dark-type moves."
|
||||
Public Overrides ReadOnly Property BattlePointsPrice As Integer = 100
|
||||
Public Overrides ReadOnly Property PokeDollarPrice As Integer = 100
|
||||
Public Overrides ReadOnly Property CanBeUsedInBattle As Boolean = False
|
||||
Public Overrides ReadOnly Property CanBeUsed As Boolean = False
|
||||
|
||||
|
@ -6,7 +6,7 @@ Namespace Items.Standard
|
||||
Inherits Item
|
||||
|
||||
Public Overrides ReadOnly Property Description As String = "A held item that gradually restores the HP of Poison-type Pokémon. It inflicts damage on all other types."
|
||||
Public Overrides ReadOnly Property BattlePointsPrice As Integer = 200
|
||||
Public Overrides ReadOnly Property PokeDollarPrice As Integer = 200
|
||||
Public Overrides ReadOnly Property CanBeUsedInBattle As Boolean = False
|
||||
Public Overrides ReadOnly Property CanBeUsed As Boolean = False
|
||||
|
||||
|
@ -6,7 +6,7 @@ Namespace Items.Standard
|
||||
Inherits Item
|
||||
|
||||
Public Overrides ReadOnly Property Description As String = "A rare chunk of brick."
|
||||
Public Overrides ReadOnly Property BattlePointsPrice As Integer = 100
|
||||
Public Overrides ReadOnly Property PokeDollarPrice As Integer = 100
|
||||
Public Overrides ReadOnly Property CanBeUsedInBattle As Boolean = False
|
||||
Public Overrides ReadOnly Property CanBeUsed As Boolean = False
|
||||
|
||||
|
@ -6,7 +6,7 @@ Namespace Items.Standard
|
||||
Inherits Item
|
||||
|
||||
Public Overrides ReadOnly Property Description As String = "An item to be held by a Pokémon. It is a combustible fuel that boosts the power of Fire-type moves."
|
||||
Public Overrides ReadOnly Property BattlePointsPrice As Integer = 4900
|
||||
Public Overrides ReadOnly Property PokeDollarPrice As Integer = 4900
|
||||
Public Overrides ReadOnly Property CanBeUsedInBattle As Boolean = False
|
||||
Public Overrides ReadOnly Property CanBeUsed As Boolean = False
|
||||
|
||||
|
@ -6,7 +6,7 @@ Namespace Items.Standard
|
||||
Inherits Item
|
||||
|
||||
Public Overrides ReadOnly Property Description As String = "An item to be held by a Pokémon. It helps keep wild Pokémon away if the holder is the head of the party."
|
||||
Public Overrides ReadOnly Property BattlePointsPrice As Integer = 200
|
||||
Public Overrides ReadOnly Property PokeDollarPrice As Integer = 200
|
||||
Public Overrides ReadOnly Property CanBeUsedInBattle As Boolean = False
|
||||
Public Overrides ReadOnly Property CanBeUsed As Boolean = False
|
||||
|
||||
|
@ -6,7 +6,7 @@ Namespace Items.Standard
|
||||
Inherits Item
|
||||
|
||||
Public Overrides ReadOnly Property Description As String = "A shard which fell to the ground when a comet approached. A maniac will buy it for a high price."
|
||||
Public Overrides ReadOnly Property BattlePointsPrice As Integer = 120000
|
||||
Public Overrides ReadOnly Property PokeDollarPrice As Integer = 120000
|
||||
Public Overrides ReadOnly Property CanBeUsedInBattle As Boolean = False
|
||||
Public Overrides ReadOnly Property CanBeUsed As Boolean = False
|
||||
|
||||
|
@ -6,7 +6,7 @@ Namespace Items.Standard
|
||||
Inherits Item
|
||||
|
||||
Public Overrides ReadOnly Property Description As String = "An item to be held by Clamperl. This scale shines with a faint pink and raises the holder's Sp. Def stat."
|
||||
Public Overrides ReadOnly Property BattlePointsPrice As Integer = 200
|
||||
Public Overrides ReadOnly Property PokeDollarPrice As Integer = 200
|
||||
Public Overrides ReadOnly Property CanBeUsedInBattle As Boolean = False
|
||||
Public Overrides ReadOnly Property CanBeUsed As Boolean = False
|
||||
|
||||
|
@ -6,7 +6,7 @@ Namespace Items.Standard
|
||||
Inherits Item
|
||||
|
||||
Public Overrides ReadOnly Property Description As String = "An item to be held by Clamperl. This fang gleams a sharp silver and raises the holder's Sp. Atk stat."
|
||||
Public Overrides ReadOnly Property BattlePointsPrice As Integer = 200
|
||||
Public Overrides ReadOnly Property PokeDollarPrice As Integer = 200
|
||||
Public Overrides ReadOnly Property FlingDamage As Integer = 90
|
||||
Public Overrides ReadOnly Property CanBeUsedInBattle As Boolean = False
|
||||
Public Overrides ReadOnly Property CanBeUsed As Boolean = False
|
||||
|
@ -6,7 +6,7 @@ Namespace Items.Standard
|
||||
Inherits Item
|
||||
|
||||
Public Overrides ReadOnly Property Description As String = "An item to be held by a Pokémon. This hard and sharp fang boosts the power of Dragon-type moves."
|
||||
Public Overrides ReadOnly Property BattlePointsPrice As Integer = 100
|
||||
Public Overrides ReadOnly Property PokeDollarPrice As Integer = 100
|
||||
Public Overrides ReadOnly Property FlingDamage As Integer = 70
|
||||
Public Overrides ReadOnly Property CanBeUsedInBattle As Boolean = False
|
||||
Public Overrides ReadOnly Property CanBeUsed As Boolean = False
|
||||
|
@ -6,7 +6,7 @@ Namespace Items.Standard
|
||||
Inherits Item
|
||||
|
||||
Public Overrides ReadOnly Property Description As String = "A very tough and inflexible scale. Dragon-type Pokémon may be holding this item when caught."
|
||||
Public Overrides ReadOnly Property BattlePointsPrice As Integer = 2100
|
||||
Public Overrides ReadOnly Property PokeDollarPrice As Integer = 2100
|
||||
Public Overrides ReadOnly Property CanBeUsedInBattle As Boolean = False
|
||||
Public Overrides ReadOnly Property CanBeUsed As Boolean = False
|
||||
|
||||
|
@ -6,7 +6,7 @@ Namespace Items.Standard
|
||||
Inherits Item
|
||||
|
||||
Public Overrides ReadOnly Property Description As String = "A transparent device overflowing with dubious data. Its producer is unknown."
|
||||
Public Overrides ReadOnly Property BattlePointsPrice As Integer = 2100
|
||||
Public Overrides ReadOnly Property PokeDollarPrice As Integer = 2100
|
||||
Public Overrides ReadOnly Property FlingDamage As Integer = 50
|
||||
Public Overrides ReadOnly Property CanBeUsedInBattle As Boolean = False
|
||||
Public Overrides ReadOnly Property CanBeUsed As Boolean = False
|
||||
|
@ -6,7 +6,7 @@ Namespace Items.Standard
|
||||
Inherits Item
|
||||
|
||||
Public Overrides ReadOnly Property Description As String = "A box packed with a tremendous amount of electric energy. It is loved by a certain Pokémon."
|
||||
Public Overrides ReadOnly Property BattlePointsPrice As Integer = 2100
|
||||
Public Overrides ReadOnly Property PokeDollarPrice As Integer = 2100
|
||||
Public Overrides ReadOnly Property FlingDamage As Integer = 80
|
||||
Public Overrides ReadOnly Property CanBeUsedInBattle As Boolean = False
|
||||
Public Overrides ReadOnly Property CanBeUsed As Boolean = False
|
||||
|
@ -6,7 +6,7 @@ Namespace Items.Standard
|
||||
Inherits Item
|
||||
|
||||
Public Overrides ReadOnly Property Description As String = "An item to be held by a Pokémon. The holder gets a share of a battle's Exp. Points without battling."
|
||||
Public Overrides ReadOnly Property BattlePointsPrice As Integer = 3000
|
||||
Public Overrides ReadOnly Property PokeDollarPrice As Integer = 3000
|
||||
Public Overrides ReadOnly Property CanBeUsedInBattle As Boolean = False
|
||||
Public Overrides ReadOnly Property CanBeUsed As Boolean = False
|
||||
|
||||
|
@ -6,7 +6,7 @@ Namespace Items.Standard
|
||||
Inherits Item
|
||||
|
||||
Public Overrides ReadOnly Property Description As String = "An item to be held by a Pokémon. This exotic-smelling incense makes the holder bloated and slow moving."
|
||||
Public Overrides ReadOnly Property BattlePointsPrice As Integer = 9600
|
||||
Public Overrides ReadOnly Property PokeDollarPrice As Integer = 9600
|
||||
Public Overrides ReadOnly Property FlingDamage As Integer = 10
|
||||
Public Overrides ReadOnly Property CanBeUsedInBattle As Boolean = False
|
||||
Public Overrides ReadOnly Property CanBeUsed As Boolean = False
|
||||
|
@ -6,7 +6,7 @@ Namespace Items.Standard
|
||||
Inherits Item
|
||||
|
||||
Public Overrides ReadOnly Property Description As String = "A strange, gold-colored leaf."
|
||||
Public Overrides ReadOnly Property BattlePointsPrice As Integer = 2000
|
||||
Public Overrides ReadOnly Property PokeDollarPrice As Integer = 2000
|
||||
Public Overrides ReadOnly Property CanBeUsedInBattle As Boolean = False
|
||||
Public Overrides ReadOnly Property CanBeUsed As Boolean = False
|
||||
|
||||
|
@ -6,7 +6,7 @@ Namespace Items.Standard
|
||||
Inherits Item
|
||||
|
||||
Public Overrides ReadOnly Property Description As String = "A Pokémon hold item that extends the duration of multiturn attacks like Bind and Wrap."
|
||||
Public Overrides ReadOnly Property BattlePointsPrice As Integer = 200
|
||||
Public Overrides ReadOnly Property PokeDollarPrice As Integer = 200
|
||||
Public Overrides ReadOnly Property FlingDamage As Integer = 90
|
||||
Public Overrides ReadOnly Property CanBeUsedInBattle As Boolean = False
|
||||
Public Overrides ReadOnly Property CanBeUsed As Boolean = False
|
||||
|
@ -6,7 +6,7 @@ Namespace Items.Standard
|
||||
Inherits Item
|
||||
|
||||
Public Overrides ReadOnly Property Description As String = "An item to be held by a Pokémon. It is a durable stone that boosts the power of Rock-type moves."
|
||||
Public Overrides ReadOnly Property BattlePointsPrice As Integer = 100
|
||||
Public Overrides ReadOnly Property PokeDollarPrice As Integer = 100
|
||||
Public Overrides ReadOnly Property FlingDamage As Integer = 100
|
||||
Public Overrides ReadOnly Property CanBeUsedInBattle As Boolean = False
|
||||
Public Overrides ReadOnly Property CanBeUsed As Boolean = False
|
||||
|
@ -5,7 +5,7 @@ Namespace Items.Standard
|
||||
Inherits Item
|
||||
|
||||
Public Overrides ReadOnly Property Description As String = "A pretty, heart-shaped scale that is extremely rare. It glows faintly with all of the colors of the rainbow."
|
||||
Public Overrides ReadOnly Property BattlePointsPrice As Integer = 100
|
||||
Public Overrides ReadOnly Property PokeDollarPrice As Integer = 100
|
||||
Public Overrides ReadOnly Property CanBeUsedInBattle As Boolean = False
|
||||
Public Overrides ReadOnly Property CanBeUsed As Boolean = False
|
||||
|
||||
|
@ -7,7 +7,7 @@ Namespace Items.Plants
|
||||
|
||||
Public Overrides ReadOnly Property ItemType As ItemTypes = ItemTypes.Plants
|
||||
Public Overrides ReadOnly Property Description As String = "Honey produced by a Pokémon."
|
||||
Public Overrides ReadOnly Property BattlePointsPrice As Integer = 100
|
||||
Public Overrides ReadOnly Property PokeDollarPrice As Integer = 100
|
||||
Public Overrides ReadOnly Property CanBeUsedInBattle As Boolean = False
|
||||
Public Overrides ReadOnly Property CanBeUsed As Boolean = False
|
||||
|
||||
|
@ -6,7 +6,7 @@ Namespace Items.Standard
|
||||
Inherits Item
|
||||
|
||||
Public Overrides ReadOnly Property Description As String = "An item to be held by a Pokémon. It is tremendously heavy and makes the holder move slower than usual."
|
||||
Public Overrides ReadOnly Property BattlePointsPrice As Integer = 200
|
||||
Public Overrides ReadOnly Property PokeDollarPrice As Integer = 200
|
||||
Public Overrides ReadOnly Property FlingDamage As Integer = 10
|
||||
Public Overrides ReadOnly Property CanBeUsedInBattle As Boolean = False
|
||||
Public Overrides ReadOnly Property CanBeUsed As Boolean = False
|
||||
|
@ -6,7 +6,7 @@ Namespace Items.Standard
|
||||
Inherits Item
|
||||
|
||||
Public Overrides ReadOnly Property Description As String = "An item to be held by a Pokémon. The beguiling aroma of this incense may cause attacks to miss its holder."
|
||||
Public Overrides ReadOnly Property BattlePointsPrice As Integer = 9600
|
||||
Public Overrides ReadOnly Property PokeDollarPrice As Integer = 9600
|
||||
Public Overrides ReadOnly Property FlingDamage As Integer = 10
|
||||
Public Overrides ReadOnly Property CanBeUsedInBattle As Boolean = False
|
||||
Public Overrides ReadOnly Property CanBeUsed As Boolean = False
|
||||
|
@ -6,7 +6,7 @@ Namespace Items.Standard
|
||||
Inherits Item
|
||||
|
||||
Public Overrides ReadOnly Property Description As String = "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."
|
||||
Public Overrides ReadOnly Property BattlePointsPrice As Integer = 200
|
||||
Public Overrides ReadOnly Property PokeDollarPrice As Integer = 200
|
||||
Public Overrides ReadOnly Property CanBeUsedInBattle As Boolean = False
|
||||
Public Overrides ReadOnly Property CanBeUsed As Boolean = False
|
||||
|
||||
|
@ -6,7 +6,7 @@ Namespace Items.Standard
|
||||
Inherits Item
|
||||
|
||||
Public Overrides ReadOnly Property Description As String = "An item to be held by Pikachu. It's a puzzling orb that boosts its Attack and Sp. Atk stats."
|
||||
Public Overrides ReadOnly Property BattlePointsPrice As Integer = 100
|
||||
Public Overrides ReadOnly Property PokeDollarPrice As Integer = 100
|
||||
Public Overrides ReadOnly Property CanBeUsedInBattle As Boolean = False
|
||||
Public Overrides ReadOnly Property CanBeUsed As Boolean = False
|
||||
|
||||
|
@ -6,7 +6,7 @@ Namespace Items.Standard
|
||||
Inherits Item
|
||||
|
||||
Public Overrides ReadOnly Property Description As String = "An item to be held by a Pokémon. The beguiling aroma of this incense may cause attacks to miss its holder."
|
||||
Public Overrides ReadOnly Property BattlePointsPrice As Integer = 9600
|
||||
Public Overrides ReadOnly Property PokeDollarPrice As Integer = 9600
|
||||
Public Overrides ReadOnly Property FlingDamage As Integer = 10
|
||||
Public Overrides ReadOnly Property CanBeUsedInBattle As Boolean = False
|
||||
Public Overrides ReadOnly Property CanBeUsed As Boolean = False
|
||||
|
@ -6,7 +6,7 @@ Namespace Items.Standard
|
||||
Inherits Item
|
||||
|
||||
Public Overrides ReadOnly Property Description As String = "An item to be held by a Pokémon. It is an egg filled with happiness that earns extra Exp. Points in battle."
|
||||
Public Overrides ReadOnly Property BattlePointsPrice As Integer = 100
|
||||
Public Overrides ReadOnly Property PokeDollarPrice As Integer = 100
|
||||
Public Overrides ReadOnly Property CanBeUsedInBattle As Boolean = False
|
||||
Public Overrides ReadOnly Property CanBeUsed As Boolean = False
|
||||
|
||||
|
@ -6,7 +6,7 @@ Namespace Items.Standard
|
||||
Inherits Item
|
||||
|
||||
Public Overrides ReadOnly Property Description As String = "An item to be held by Chansey. This pair of lucky boxing gloves will boost Chansey's critical-hit ratio."
|
||||
Public Overrides ReadOnly Property BattlePointsPrice As Integer = 10
|
||||
Public Overrides ReadOnly Property PokeDollarPrice As Integer = 10
|
||||
Public Overrides ReadOnly Property FlingDamage As Integer = 40
|
||||
Public Overrides ReadOnly Property CanBeUsedInBattle As Boolean = False
|
||||
Public Overrides ReadOnly Property CanBeUsed As Boolean = False
|
||||
|
@ -6,7 +6,7 @@ Namespace Items.Standard
|
||||
Inherits Item
|
||||
|
||||
Public Overrides ReadOnly Property Description As String = "A box packed with a tremendous amount of magma energy. It is loved by a certain Pokémon."
|
||||
Public Overrides ReadOnly Property BattlePointsPrice As Integer = 2100
|
||||
Public Overrides ReadOnly Property PokeDollarPrice As Integer = 2100
|
||||
Public Overrides ReadOnly Property FlingDamage As Integer = 80
|
||||
Public Overrides ReadOnly Property CanBeUsedInBattle As Boolean = False
|
||||
Public Overrides ReadOnly Property CanBeUsed As Boolean = False
|
||||
|
@ -6,7 +6,7 @@ Namespace Items.Standard
|
||||
Inherits Item
|
||||
|
||||
Public Overrides ReadOnly Property Description As String = "An item to be held by a Pokémon. It is a powerful magnet that boosts the power of Electric-type moves."
|
||||
Public Overrides ReadOnly Property BattlePointsPrice As Integer = 100
|
||||
Public Overrides ReadOnly Property PokeDollarPrice As Integer = 100
|
||||
Public Overrides ReadOnly Property CanBeUsedInBattle As Boolean = False
|
||||
Public Overrides ReadOnly Property CanBeUsed As Boolean = False
|
||||
|
||||
|
@ -6,7 +6,7 @@ Namespace Items.Standard
|
||||
Inherits Item
|
||||
|
||||
Public Overrides ReadOnly Property Description As String = "An item to be held by a Pokémon. It is a special metallic film that can boost the power of Steel-type moves."
|
||||
Public Overrides ReadOnly Property BattlePointsPrice As Integer = 100
|
||||
Public Overrides ReadOnly Property PokeDollarPrice As Integer = 100
|
||||
Public Overrides ReadOnly Property CanBeUsedInBattle As Boolean = False
|
||||
Public Overrides ReadOnly Property CanBeUsed As Boolean = False
|
||||
|
||||
|
@ -6,7 +6,7 @@ Namespace Items.Standard
|
||||
Inherits Item
|
||||
|
||||
Public Overrides ReadOnly Property Description As String = "An item to be held by Ditto. Extremely fine yet hard, this odd powder boosts the Defense stat."
|
||||
Public Overrides ReadOnly Property BattlePointsPrice As Integer = 10
|
||||
Public Overrides ReadOnly Property PokeDollarPrice As Integer = 10
|
||||
Public Overrides ReadOnly Property FlingDamage As Integer = 10
|
||||
Public Overrides ReadOnly Property CanBeUsedInBattle As Boolean = False
|
||||
Public Overrides ReadOnly Property CanBeUsed As Boolean = False
|
||||
|
@ -6,7 +6,7 @@ Namespace Items.Standard
|
||||
Inherits Item
|
||||
|
||||
Public Overrides ReadOnly Property Description As String = "An item to be held by a Pokémon. It is a seed imbued with life force that boosts the power of Grass-type moves."
|
||||
Public Overrides ReadOnly Property BattlePointsPrice As Integer = 100
|
||||
Public Overrides ReadOnly Property PokeDollarPrice As Integer = 100
|
||||
Public Overrides ReadOnly Property CanBeUsedInBattle As Boolean = False
|
||||
Public Overrides ReadOnly Property CanBeUsed As Boolean = False
|
||||
|
||||
|
@ -6,7 +6,7 @@ Namespace Items.Standard
|
||||
Inherits Item
|
||||
|
||||
Public Overrides ReadOnly Property Description As String = "An item to be held by a Pokémon. This teardrop-shaped gem boosts the power of Water-type moves."
|
||||
Public Overrides ReadOnly Property BattlePointsPrice As Integer = 100
|
||||
Public Overrides ReadOnly Property PokeDollarPrice As Integer = 100
|
||||
Public Overrides ReadOnly Property CanBeUsedInBattle As Boolean = False
|
||||
Public Overrides ReadOnly Property CanBeUsed As Boolean = False
|
||||
|
||||
|
@ -6,7 +6,7 @@ Namespace Items.Standard
|
||||
Inherits Item
|
||||
|
||||
Public Overrides ReadOnly Property Description As String = "An item to be held by a Pokémon. It's a piece of ice that repels heat effects and boosts Ice-type moves."
|
||||
Public Overrides ReadOnly Property BattlePointsPrice As Integer = 100
|
||||
Public Overrides ReadOnly Property PokeDollarPrice As Integer = 100
|
||||
Public Overrides ReadOnly Property CanBeUsedInBattle As Boolean = False
|
||||
Public Overrides ReadOnly Property CanBeUsed As Boolean = False
|
||||
|
||||
|
@ -6,7 +6,7 @@ Namespace Items.Standard
|
||||
Inherits Item
|
||||
|
||||
Public Overrides ReadOnly Property Description As String = "A nugget of the purest gold that gives off a lustrous gleam in direct light. It can be sold at a high price to shops."
|
||||
Public Overrides ReadOnly Property BattlePointsPrice As Integer = 10000
|
||||
Public Overrides ReadOnly Property PokeDollarPrice As Integer = 10000
|
||||
Public Overrides ReadOnly Property CanBeUsedInBattle As Boolean = False
|
||||
Public Overrides ReadOnly Property CanBeUsed As Boolean = False
|
||||
|
||||
|
@ -6,7 +6,7 @@ Namespace Items.Standard
|
||||
Inherits Item
|
||||
|
||||
Public Overrides ReadOnly Property Description As String = "An item to be held by a Pokémon. This exotic-smelling incense boosts the power of Psychic-type moves."
|
||||
Public Overrides ReadOnly Property BattlePointsPrice As Integer = 9600
|
||||
Public Overrides ReadOnly Property PokeDollarPrice As Integer = 9600
|
||||
Public Overrides ReadOnly Property FlingDamage As Integer = 10
|
||||
Public Overrides ReadOnly Property CanBeUsedInBattle As Boolean = False
|
||||
Public Overrides ReadOnly Property CanBeUsed As Boolean = False
|
||||
|
@ -6,7 +6,7 @@ Namespace Items.Standard
|
||||
Inherits Item
|
||||
|
||||
Public Overrides ReadOnly Property Description As String = "A peculiar stone that makes certain species of Pokémon evolve. It is shaped like an egg."
|
||||
Public Overrides ReadOnly Property BattlePointsPrice As Integer = 2100
|
||||
Public Overrides ReadOnly Property PokeDollarPrice As Integer = 2100
|
||||
Public Overrides ReadOnly Property FlingDamage As Integer = 80
|
||||
Public Overrides ReadOnly Property CanBeUsedInBattle As Boolean = False
|
||||
Public Overrides ReadOnly Property CanBeUsed As Boolean = False
|
||||
|
@ -6,7 +6,7 @@ Namespace Items.Standard
|
||||
Inherits Item
|
||||
|
||||
Public Overrides ReadOnly Property Description As String = "A rather small pearl that has a very nice silvery sheen to it. It can be sold cheaply to shops."
|
||||
Public Overrides ReadOnly Property BattlePointsPrice As Integer = 1400
|
||||
Public Overrides ReadOnly Property PokeDollarPrice As Integer = 1400
|
||||
Public Overrides ReadOnly Property CanBeUsedInBattle As Boolean = False
|
||||
Public Overrides ReadOnly Property CanBeUsed As Boolean = False
|
||||
|
||||
|
@ -6,7 +6,7 @@ Namespace Items.Standard
|
||||
Inherits Item
|
||||
|
||||
Public Overrides ReadOnly Property Description As String = "Very large pearls that sparkle in a pretty silver color. They can be sold at a high price to shops."
|
||||
Public Overrides ReadOnly Property BattlePointsPrice As Integer = 50000
|
||||
Public Overrides ReadOnly Property PokeDollarPrice As Integer = 50000
|
||||
Public Overrides ReadOnly Property CanBeUsedInBattle As Boolean = False
|
||||
Public Overrides ReadOnly Property CanBeUsed As Boolean = False
|
||||
|
||||
|
@ -6,7 +6,7 @@ Namespace Items.Standard
|
||||
Inherits Item
|
||||
|
||||
Public Overrides ReadOnly Property Description As String = "Powers up Fairy-type moves."
|
||||
Public Overrides ReadOnly Property BattlePointsPrice As Integer = 100
|
||||
Public Overrides ReadOnly Property PokeDollarPrice As Integer = 100
|
||||
Public Overrides ReadOnly Property CanBeUsedInBattle As Boolean = False
|
||||
Public Overrides ReadOnly Property CanBeUsed As Boolean = False
|
||||
|
||||
|
@ -6,7 +6,7 @@ Namespace Items.Standard
|
||||
Inherits Item
|
||||
|
||||
Public Overrides ReadOnly Property Description As String = "An item to be held by a Pokémon. This small, poisonous barb boosts the power of Poison-type moves."
|
||||
Public Overrides ReadOnly Property BattlePointsPrice As Integer = 100
|
||||
Public Overrides ReadOnly Property PokeDollarPrice As Integer = 100
|
||||
Public Overrides ReadOnly Property FlingDamage As Integer = 70
|
||||
Public Overrides ReadOnly Property CanBeUsedInBattle As Boolean = False
|
||||
Public Overrides ReadOnly Property CanBeUsed As Boolean = False
|
||||
|
@ -7,7 +7,7 @@ Namespace Items.Standard
|
||||
|
||||
Public Overrides ReadOnly Property ItemType As ItemTypes = ItemTypes.BattleItems
|
||||
Public Overrides ReadOnly Property Description As String = "A doll that attracts the attention of a Pokémon. It guarantees escape from any battle with wild Pokémon."
|
||||
Public Overrides ReadOnly Property BattlePointsPrice As Integer = 1000
|
||||
Public Overrides ReadOnly Property PokeDollarPrice As Integer = 1000
|
||||
Public Overrides ReadOnly Property BattleSelectPokemon As Boolean = False
|
||||
Public Overrides ReadOnly Property CanBeUsed As Boolean = False
|
||||
|
||||
|
@ -6,7 +6,7 @@ Namespace Items.Standard
|
||||
Inherits Item
|
||||
|
||||
Public Overrides ReadOnly Property Description As String = "A pink bow. A certain Pokémon likes this item."
|
||||
Public Overrides ReadOnly Property BattlePointsPrice As Integer = 100
|
||||
Public Overrides ReadOnly Property PokeDollarPrice As Integer = 100
|
||||
Public Overrides ReadOnly Property CanBeUsedInBattle As Boolean = False
|
||||
Public Overrides ReadOnly Property CanBeUsed As Boolean = False
|
||||
|
||||
|
@ -6,7 +6,7 @@ Namespace Items.Standard
|
||||
Inherits Item
|
||||
|
||||
Public Overrides ReadOnly Property Description As String = "A mysterious scale that causes a certain Pokémon to evolve. It shines in rainbow colors."
|
||||
Public Overrides ReadOnly Property BattlePointsPrice As Integer = 500
|
||||
Public Overrides ReadOnly Property PokeDollarPrice As Integer = 500
|
||||
Public Overrides ReadOnly Property CanBeUsedInBattle As Boolean = False
|
||||
Public Overrides ReadOnly Property CanBeUsed As Boolean = False
|
||||
|
||||
|
@ -6,7 +6,7 @@ Namespace Items.Standard
|
||||
Inherits Item
|
||||
|
||||
Public Overrides ReadOnly Property Description As String = "A protective item of some sort. It is extremely stiff and heavy. It is loved by a certain Pokémon."
|
||||
Public Overrides ReadOnly Property BattlePointsPrice As Integer = 2100
|
||||
Public Overrides ReadOnly Property PokeDollarPrice As Integer = 2100
|
||||
Public Overrides ReadOnly Property FlingDamage As Integer = 80
|
||||
Public Overrides ReadOnly Property CanBeUsedInBattle As Boolean = False
|
||||
Public Overrides ReadOnly Property CanBeUsed As Boolean = False
|
||||
|
@ -6,7 +6,7 @@ Namespace Items.Standard
|
||||
Inherits Item
|
||||
|
||||
Public Overrides ReadOnly Property Description As String = "An item to be held by a Pokémon. It helps keep wild Pokémon away if the holder is the head of the party."
|
||||
Public Overrides ReadOnly Property BattlePointsPrice As Integer = 9600
|
||||
Public Overrides ReadOnly Property PokeDollarPrice As Integer = 9600
|
||||
Public Overrides ReadOnly Property FlingDamage As Integer = 10
|
||||
Public Overrides ReadOnly Property CanBeUsedInBattle As Boolean = False
|
||||
Public Overrides ReadOnly Property CanBeUsed As Boolean = False
|
||||
|
@ -6,7 +6,7 @@ Namespace Items.Standard
|
||||
Inherits Item
|
||||
|
||||
Public Overrides ReadOnly Property Description As String = "An item to be held by Ditto. Extremely fine yet hard, this odd powder boosts the Speed stat."
|
||||
Public Overrides ReadOnly Property BattlePointsPrice As Integer = 10
|
||||
Public Overrides ReadOnly Property PokeDollarPrice As Integer = 10
|
||||
Public Overrides ReadOnly Property FlingDamage As Integer = 10
|
||||
Public Overrides ReadOnly Property CanBeUsedInBattle As Boolean = False
|
||||
Public Overrides ReadOnly Property CanBeUsed As Boolean = False
|
||||
|
@ -6,7 +6,7 @@ Namespace Items.Standard
|
||||
Inherits Item
|
||||
|
||||
Public Overrides ReadOnly Property Description As String = "A rare bone that is extremely valuable for the study of Pokémon archeology. It can be sold for a high price to shops."
|
||||
Public Overrides ReadOnly Property BattlePointsPrice As Integer = 30000
|
||||
Public Overrides ReadOnly Property PokeDollarPrice As Integer = 30000
|
||||
Public Overrides ReadOnly Property CanBeUsedInBattle As Boolean = False
|
||||
Public Overrides ReadOnly Property CanBeUsed As Boolean = False
|
||||
|
||||
|
@ -6,7 +6,7 @@ Namespace Items.Standard
|
||||
Inherits Item
|
||||
|
||||
Public Overrides ReadOnly Property Description As String = "A cloth imbued with horrifyingly strong spiritual energy. It's loved by a certain Pokémon."
|
||||
Public Overrides ReadOnly Property BattlePointsPrice As Integer = 2100
|
||||
Public Overrides ReadOnly Property PokeDollarPrice As Integer = 2100
|
||||
Public Overrides ReadOnly Property FlingDamage As Integer = 10
|
||||
Public Overrides ReadOnly Property CanBeUsedInBattle As Boolean = False
|
||||
Public Overrides ReadOnly Property CanBeUsed As Boolean = False
|
||||
|
@ -6,7 +6,7 @@ Namespace Items.Standard
|
||||
Inherits Item
|
||||
|
||||
Public Overrides ReadOnly Property Description As String = "An item to be held by a Pokémon. This exotic-smelling incense boosts the power of Rock-type moves."
|
||||
Public Overrides ReadOnly Property BattlePointsPrice As Integer = 9600
|
||||
Public Overrides ReadOnly Property PokeDollarPrice As Integer = 9600
|
||||
Public Overrides ReadOnly Property FlingDamage As Integer = 10
|
||||
Public Overrides ReadOnly Property CanBeUsedInBattle As Boolean = False
|
||||
Public Overrides ReadOnly Property CanBeUsed As Boolean = False
|
||||
|
@ -6,7 +6,7 @@ Namespace Items.Standard
|
||||
Inherits Item
|
||||
|
||||
Public Overrides ReadOnly Property Description As String = "An item to be held by a Pokémon. This exotic-smelling incense boosts the power of Grass-type moves."
|
||||
Public Overrides ReadOnly Property BattlePointsPrice As Integer = 9600
|
||||
Public Overrides ReadOnly Property PokeDollarPrice As Integer = 9600
|
||||
Public Overrides ReadOnly Property FlingDamage As Integer = 10
|
||||
Public Overrides ReadOnly Property CanBeUsedInBattle As Boolean = False
|
||||
Public Overrides ReadOnly Property CanBeUsed As Boolean = False
|
||||
|
@ -6,7 +6,7 @@ Namespace Items.Standard
|
||||
Inherits Item
|
||||
|
||||
Public Overrides ReadOnly Property Description As String = "A sachet filled with fragrant perfumes that are just slightly too overwhelming. Yet it's loved by a certain Pokémon."
|
||||
Public Overrides ReadOnly Property BattlePointsPrice As Integer = 2100
|
||||
Public Overrides ReadOnly Property PokeDollarPrice As Integer = 2100
|
||||
Public Overrides ReadOnly Property CanBeUsedInBattle As Boolean = False
|
||||
Public Overrides ReadOnly Property CanBeUsed As Boolean = False
|
||||
|
||||
|
@ -6,7 +6,7 @@ Namespace Items.Standard
|
||||
Inherits Item
|
||||
|
||||
Public Overrides ReadOnly Property Description As String = "An item to be held by a Pokémon. This incense has a curious aroma that boosts the power of Water-type moves."
|
||||
Public Overrides ReadOnly Property BattlePointsPrice As Integer = 9600
|
||||
Public Overrides ReadOnly Property PokeDollarPrice As Integer = 9600
|
||||
Public Overrides ReadOnly Property FlingDamage As Integer = 10
|
||||
Public Overrides ReadOnly Property CanBeUsedInBattle As Boolean = False
|
||||
Public Overrides ReadOnly Property CanBeUsed As Boolean = False
|
||||
|
@ -6,7 +6,7 @@ Namespace Items.Standard
|
||||
Inherits Item
|
||||
|
||||
Public Overrides ReadOnly Property Description As String = "An item to be held by a Pokémon. It's a long, sharp beak that boosts the power of Flying-type moves."
|
||||
Public Overrides ReadOnly Property BattlePointsPrice As Integer = 100
|
||||
Public Overrides ReadOnly Property PokeDollarPrice As Integer = 100
|
||||
Public Overrides ReadOnly Property FlingDamage As Integer = 50
|
||||
Public Overrides ReadOnly Property CanBeUsedInBattle As Boolean = False
|
||||
Public Overrides ReadOnly Property CanBeUsed As Boolean = False
|
||||
|
@ -6,7 +6,7 @@ Namespace Items.Standard
|
||||
Inherits Item
|
||||
|
||||
Public Overrides ReadOnly Property Description As String = "A tough, discarded carapace to be held by a Pokémon. It enables the holder to switch with a waiting Pokémon in battle."
|
||||
Public Overrides ReadOnly Property BattlePointsPrice As Integer = 100
|
||||
Public Overrides ReadOnly Property PokeDollarPrice As Integer = 100
|
||||
Public Overrides ReadOnly Property FlingDamage As Integer = 10
|
||||
Public Overrides ReadOnly Property CanBeUsedInBattle As Boolean = False
|
||||
Public Overrides ReadOnly Property CanBeUsed As Boolean = False
|
||||
|
@ -6,7 +6,7 @@ Namespace Items.Standard
|
||||
Inherits Item
|
||||
|
||||
Public Overrides ReadOnly Property Description As String = "An item to be held by a Pokémon. It's a sumptuous scarf that boosts the power of Normal-type moves."
|
||||
Public Overrides ReadOnly Property BattlePointsPrice As Integer = 100
|
||||
Public Overrides ReadOnly Property PokeDollarPrice As Integer = 100
|
||||
Public Overrides ReadOnly Property FlingDamage As Integer = 10
|
||||
Public Overrides ReadOnly Property CanBeUsedInBattle As Boolean = False
|
||||
Public Overrides ReadOnly Property CanBeUsed As Boolean = False
|
||||
|
@ -6,7 +6,7 @@ Namespace Items.Standard
|
||||
Inherits Item
|
||||
|
||||
Public Overrides ReadOnly Property Description As String = "A strange, silver-colored leaf."
|
||||
Public Overrides ReadOnly Property BattlePointsPrice As Integer = 1000
|
||||
Public Overrides ReadOnly Property PokeDollarPrice As Integer = 1000
|
||||
Public Overrides ReadOnly Property CanBeUsedInBattle As Boolean = False
|
||||
Public Overrides ReadOnly Property CanBeUsed As Boolean = False
|
||||
|
||||
|
@ -6,7 +6,7 @@ Namespace Items.Standard
|
||||
Inherits Item
|
||||
|
||||
Public Overrides ReadOnly Property Description As String = "An item to be held by a Pokémon. It is a shiny, silver powder that will boost the power of Bug-type moves."
|
||||
Public Overrides ReadOnly Property BattlePointsPrice As Integer = 100
|
||||
Public Overrides ReadOnly Property PokeDollarPrice As Integer = 100
|
||||
Public Overrides ReadOnly Property FlingDamage As Integer = 10
|
||||
Public Overrides ReadOnly Property CanBeUsedInBattle As Boolean = False
|
||||
Public Overrides ReadOnly Property CanBeUsed As Boolean = False
|
||||
|
@ -6,7 +6,7 @@ Namespace Items.Standard
|
||||
Inherits Item
|
||||
|
||||
Public Overrides ReadOnly Property Description As String = "A very tasty tail of something. It sells for a high price."
|
||||
Public Overrides ReadOnly Property BattlePointsPrice As Integer = 9800
|
||||
Public Overrides ReadOnly Property PokeDollarPrice As Integer = 9800
|
||||
Public Overrides ReadOnly Property CanBeUsedInBattle As Boolean = False
|
||||
Public Overrides ReadOnly Property CanBeUsed As Boolean = False
|
||||
|
||||
|
@ -6,7 +6,7 @@ Namespace Items.Standard
|
||||
Inherits Item
|
||||
|
||||
Public Overrides ReadOnly Property Description As String = "An item to be held by a Pokémon. It enables the holder to flee from any wild Pokémon encounter without fail."
|
||||
Public Overrides ReadOnly Property BattlePointsPrice As Integer = 200
|
||||
Public Overrides ReadOnly Property PokeDollarPrice As Integer = 200
|
||||
Public Overrides ReadOnly Property CanBeUsedInBattle As Boolean = False
|
||||
Public Overrides ReadOnly Property CanBeUsed As Boolean = False
|
||||
|
||||
|
@ -6,7 +6,7 @@ Namespace Items.Standard
|
||||
Inherits Item
|
||||
|
||||
Public Overrides ReadOnly Property Description As String = "An item to be held by a Pokémon. It is a loose, silky sand that boosts the power of Ground-type moves."
|
||||
Public Overrides ReadOnly Property BattlePointsPrice As Integer = 100
|
||||
Public Overrides ReadOnly Property PokeDollarPrice As Integer = 100
|
||||
Public Overrides ReadOnly Property FlingDamage As Integer = 10
|
||||
Public Overrides ReadOnly Property CanBeUsedInBattle As Boolean = False
|
||||
Public Overrides ReadOnly Property CanBeUsed As Boolean = False
|
||||
|
@ -6,7 +6,7 @@ Namespace Items.Standard
|
||||
Inherits Item
|
||||
|
||||
Public Overrides ReadOnly Property Description As String = "An item to be held by a Pokémon. The comforting chime of this bell calms the holder, making it friendly."
|
||||
Public Overrides ReadOnly Property BattlePointsPrice As Integer = 100
|
||||
Public Overrides ReadOnly Property PokeDollarPrice As Integer = 100
|
||||
Public Overrides ReadOnly Property FlingDamage As Integer = 10
|
||||
Public Overrides ReadOnly Property CanBeUsedInBattle As Boolean = False
|
||||
Public Overrides ReadOnly Property CanBeUsed As Boolean = False
|
||||
|
@ -6,7 +6,7 @@ Namespace Items.Standard
|
||||
Inherits Item
|
||||
|
||||
Public Overrides ReadOnly Property Description As String = "An item to be held by a Pokémon. It is a sinister, eerie tag that boosts the power of Ghost-type moves."
|
||||
Public Overrides ReadOnly Property BattlePointsPrice As Integer = 100
|
||||
Public Overrides ReadOnly Property PokeDollarPrice As Integer = 100
|
||||
Public Overrides ReadOnly Property CanBeUsedInBattle As Boolean = False
|
||||
Public Overrides ReadOnly Property CanBeUsed As Boolean = False
|
||||
|
||||
|
@ -6,7 +6,7 @@ Namespace Items.Standard
|
||||
Inherits Item
|
||||
|
||||
Public Overrides ReadOnly Property Description As String = "A small shard of a beautiful gem that demonstrates a distinctly red sparkle. It can be sold at a high price to shops."
|
||||
Public Overrides ReadOnly Property BattlePointsPrice As Integer = 9800
|
||||
Public Overrides ReadOnly Property PokeDollarPrice As Integer = 9800
|
||||
Public Overrides ReadOnly Property CanBeUsedInBattle As Boolean = False
|
||||
Public Overrides ReadOnly Property CanBeUsed As Boolean = False
|
||||
|
||||
|
@ -6,7 +6,7 @@ Namespace Items.Standard
|
||||
Inherits Item
|
||||
|
||||
Public Overrides ReadOnly Property Description As String = "Lovely, red sand that flows between the fingers with a loose, silky feel. It can be sold at a high price to shops."
|
||||
Public Overrides ReadOnly Property BattlePointsPrice As Integer = 2000
|
||||
Public Overrides ReadOnly Property PokeDollarPrice As Integer = 2000
|
||||
Public Overrides ReadOnly Property CanBeUsedInBattle As Boolean = False
|
||||
Public Overrides ReadOnly Property CanBeUsed As Boolean = False
|
||||
|
||||
|
@ -6,7 +6,7 @@ Namespace Items.Standard
|
||||
Inherits Item
|
||||
|
||||
Public Overrides ReadOnly Property Description As String = "An item to be held by Farfetch'd. It is a very long and stiff stalk of leek that boosts the critical-hit ratio."
|
||||
Public Overrides ReadOnly Property BattlePointsPrice As Integer = 200
|
||||
Public Overrides ReadOnly Property PokeDollarPrice As Integer = 200
|
||||
Public Overrides ReadOnly Property FlingDamage As Integer = 60
|
||||
Public Overrides ReadOnly Property CanBeUsedInBattle As Boolean = False
|
||||
Public Overrides ReadOnly Property CanBeUsed As Boolean = False
|
||||
|
@ -6,7 +6,7 @@ Namespace Items.Standard
|
||||
Inherits Item
|
||||
|
||||
Public Overrides ReadOnly Property Description As String = "An item to be held by a Pokémon. It damages the holder every turn and may latch on to Pokémon that touch the holder."
|
||||
Public Overrides ReadOnly Property BattlePointsPrice As Integer = 200
|
||||
Public Overrides ReadOnly Property PokeDollarPrice As Integer = 200
|
||||
Public Overrides ReadOnly Property FlingDamage As Integer = 80
|
||||
Public Overrides ReadOnly Property CanBeUsedInBattle As Boolean = False
|
||||
Public Overrides ReadOnly Property CanBeUsed As Boolean = False
|
||||
|
@ -6,7 +6,7 @@ Namespace Items.Standard
|
||||
Inherits Item
|
||||
|
||||
Public Overrides ReadOnly Property Description As String = "A rare bone that is extremely valuable for the study of Pokémon archeology. It can be sold for a high price to shops."
|
||||
Public Overrides ReadOnly Property BattlePointsPrice As Integer = 500
|
||||
Public Overrides ReadOnly Property PokeDollarPrice As Integer = 500
|
||||
Public Overrides ReadOnly Property FlingDamage As Integer = 90
|
||||
Public Overrides ReadOnly Property CanBeUsedInBattle As Boolean = False
|
||||
Public Overrides ReadOnly Property CanBeUsed As Boolean = False
|
||||
|
@ -7,7 +7,7 @@ Namespace Items.Plants
|
||||
|
||||
Public Overrides ReadOnly Property ItemType As ItemTypes = ItemTypes.Plants
|
||||
Public Overrides ReadOnly Property Description As String = "A very small and rare mushroom. It's popular with a certain class of collectors and sought out by them."
|
||||
Public Overrides ReadOnly Property BattlePointsPrice As Integer = 500
|
||||
Public Overrides ReadOnly Property PokeDollarPrice As Integer = 500
|
||||
Public Overrides ReadOnly Property CanBeUsedInBattle As Boolean = False
|
||||
Public Overrides ReadOnly Property CanBeUsed As Boolean = False
|
||||
|
||||
|
@ -6,7 +6,7 @@ Namespace Items.Standard
|
||||
Inherits Item
|
||||
|
||||
Public Overrides ReadOnly Property Description As String = "An item to be held by a Pokémon. It is a spoon imbued with telekinetic power that boosts Psychic-type moves."
|
||||
Public Overrides ReadOnly Property BattlePointsPrice As Integer = 100
|
||||
Public Overrides ReadOnly Property PokeDollarPrice As Integer = 100
|
||||
Public Overrides ReadOnly Property CanBeUsedInBattle As Boolean = False
|
||||
Public Overrides ReadOnly Property CanBeUsed As Boolean = False
|
||||
|
||||
|
@ -6,7 +6,7 @@ Namespace Items.Standard
|
||||
Inherits Item
|
||||
|
||||
Public Overrides ReadOnly Property Description As String = "A transparent device somehow filled with all sorts of data. It was produced by Silph Co."
|
||||
Public Overrides ReadOnly Property BattlePointsPrice As Integer = 2100
|
||||
Public Overrides ReadOnly Property PokeDollarPrice As Integer = 2100
|
||||
Public Overrides ReadOnly Property CanBeUsedInBattle As Boolean = False
|
||||
Public Overrides ReadOnly Property CanBeUsed As Boolean = False
|
||||
|
||||
|
@ -6,7 +6,7 @@ Namespace Items.Standard
|
||||
Inherits Item
|
||||
|
||||
Public Overrides ReadOnly Property Description As String = "An item to be held by a Pokémon. This exotic-smelling incense boots the power of Water-type moves."
|
||||
Public Overrides ReadOnly Property BattlePointsPrice As Integer = 9600
|
||||
Public Overrides ReadOnly Property PokeDollarPrice As Integer = 9600
|
||||
Public Overrides ReadOnly Property FlingDamage As Integer = 10
|
||||
Public Overrides ReadOnly Property CanBeUsedInBattle As Boolean = False
|
||||
Public Overrides ReadOnly Property CanBeUsed As Boolean = False
|
||||
|
@ -6,7 +6,7 @@ Namespace Items.Standard
|
||||
Inherits Item
|
||||
|
||||
Public Overrides ReadOnly Property Description As String = "A soft and sweet treat made of fluffy, puffy, whipped and whirled cream. It's loved by a certain Pokémon."
|
||||
Public Overrides ReadOnly Property BattlePointsPrice As Integer = 2100
|
||||
Public Overrides ReadOnly Property PokeDollarPrice As Integer = 2100
|
||||
Public Overrides ReadOnly Property CanBeUsedInBattle As Boolean = False
|
||||
Public Overrides ReadOnly Property CanBeUsed As Boolean = False
|
||||
|
||||
|
@ -6,7 +6,7 @@ Namespace Items.Standard
|
||||
Inherits Item
|
||||
|
||||
Public Overrides ReadOnly Property Description As String = "A white flute made from blown glass. Its melody makes wild Pokémon more likely to appear."
|
||||
Public Overrides ReadOnly Property BattlePointsPrice As Integer = 500
|
||||
Public Overrides ReadOnly Property PokeDollarPrice As Integer = 500
|
||||
Public Overrides ReadOnly Property CanBeUsedInBattle As Boolean = False
|
||||
Public Overrides ReadOnly Property CanBeUsed As Boolean = False
|
||||
|
||||
|
@ -6,7 +6,7 @@ Namespace Items.Standard
|
||||
Inherits Item
|
||||
|
||||
Public Overrides ReadOnly Property Description As String = "An item to be held by a Pokémon. It's a magnifying lens that slightly boosts the accuracy of moves."
|
||||
Public Overrides ReadOnly Property BattlePointsPrice As Integer = 200
|
||||
Public Overrides ReadOnly Property PokeDollarPrice As Integer = 200
|
||||
Public Overrides ReadOnly Property FlingDamage As Integer = 10
|
||||
Public Overrides ReadOnly Property CanBeUsedInBattle As Boolean = False
|
||||
Public Overrides ReadOnly Property CanBeUsed As Boolean = False
|
||||
|
@ -6,7 +6,7 @@ Namespace Items.Standard
|
||||
Inherits Item
|
||||
|
||||
Public Overrides ReadOnly Property Description As String = "An item to be held by a Pokémon. If the holder moves after its target moves, its accuracy will be boosted."
|
||||
Public Overrides ReadOnly Property BattlePointsPrice As Integer = 200
|
||||
Public Overrides ReadOnly Property PokeDollarPrice As Integer = 200
|
||||
Public Overrides ReadOnly Property FlingDamage As Integer = 10
|
||||
Public Overrides ReadOnly Property CanBeUsedInBattle As Boolean = False
|
||||
Public Overrides ReadOnly Property CanBeUsed As Boolean = False
|
||||
|
Loading…
x
Reference in New Issue
Block a user