mirror of
https://github.com/infinitefusion/infinitefusion-e18.git
synced 2025-12-10 14:44:58 +00:00
Natural Gift's power/type moved into an item flag
This commit is contained in:
@@ -1352,51 +1352,11 @@ end
|
||||
# (Natural Gift)
|
||||
#===============================================================================
|
||||
class Battle::Move::TypeAndPowerDependOnUserBerry < Battle::Move
|
||||
def initialize(battle, move)
|
||||
super
|
||||
@typeArray = {
|
||||
:NORMAL => [:CHILANBERRY],
|
||||
:FIRE => [:CHERIBERRY, :BLUKBERRY, :WATMELBERRY, :OCCABERRY],
|
||||
:WATER => [:CHESTOBERRY, :NANABBERRY, :DURINBERRY, :PASSHOBERRY],
|
||||
:ELECTRIC => [:PECHABERRY, :WEPEARBERRY, :BELUEBERRY, :WACANBERRY],
|
||||
:GRASS => [:RAWSTBERRY, :PINAPBERRY, :RINDOBERRY, :LIECHIBERRY],
|
||||
:ICE => [:ASPEARBERRY, :POMEGBERRY, :YACHEBERRY, :GANLONBERRY],
|
||||
:FIGHTING => [:LEPPABERRY, :KELPSYBERRY, :CHOPLEBERRY, :SALACBERRY],
|
||||
:POISON => [:ORANBERRY, :QUALOTBERRY, :KEBIABERRY, :PETAYABERRY],
|
||||
:GROUND => [:PERSIMBERRY, :HONDEWBERRY, :SHUCABERRY, :APICOTBERRY],
|
||||
:FLYING => [:LUMBERRY, :GREPABERRY, :COBABERRY, :LANSATBERRY],
|
||||
:PSYCHIC => [:SITRUSBERRY, :TAMATOBERRY, :PAYAPABERRY, :STARFBERRY],
|
||||
:BUG => [:FIGYBERRY, :CORNNBERRY, :TANGABERRY, :ENIGMABERRY],
|
||||
:ROCK => [:WIKIBERRY, :MAGOSTBERRY, :CHARTIBERRY, :MICLEBERRY],
|
||||
:GHOST => [:MAGOBERRY, :RABUTABERRY, :KASIBBERRY, :CUSTAPBERRY],
|
||||
:DRAGON => [:AGUAVBERRY, :NOMELBERRY, :HABANBERRY, :JABOCABERRY],
|
||||
:DARK => [:IAPAPABERRY, :SPELONBERRY, :COLBURBERRY, :ROWAPBERRY, :MARANGABERRY],
|
||||
:STEEL => [:RAZZBERRY, :PAMTREBERRY, :BABIRIBERRY],
|
||||
:FAIRY => [:ROSELIBERRY, :KEEBERRY]
|
||||
}
|
||||
@damageArray = {
|
||||
60 => [:CHERIBERRY, :CHESTOBERRY, :PECHABERRY, :RAWSTBERRY, :ASPEARBERRY,
|
||||
:LEPPABERRY, :ORANBERRY, :PERSIMBERRY, :LUMBERRY, :SITRUSBERRY,
|
||||
:FIGYBERRY, :WIKIBERRY, :MAGOBERRY, :AGUAVBERRY, :IAPAPABERRY,
|
||||
:RAZZBERRY, :OCCABERRY, :PASSHOBERRY, :WACANBERRY, :RINDOBERRY,
|
||||
:YACHEBERRY, :CHOPLEBERRY, :KEBIABERRY, :SHUCABERRY, :COBABERRY,
|
||||
:PAYAPABERRY, :TANGABERRY, :CHARTIBERRY, :KASIBBERRY, :HABANBERRY,
|
||||
:COLBURBERRY, :BABIRIBERRY, :CHILANBERRY, :ROSELIBERRY],
|
||||
70 => [:BLUKBERRY, :NANABBERRY, :WEPEARBERRY, :PINAPBERRY, :POMEGBERRY,
|
||||
:KELPSYBERRY, :QUALOTBERRY, :HONDEWBERRY, :GREPABERRY, :TAMATOBERRY,
|
||||
:CORNNBERRY, :MAGOSTBERRY, :RABUTABERRY, :NOMELBERRY, :SPELONBERRY,
|
||||
:PAMTREBERRY],
|
||||
80 => [:WATMELBERRY, :DURINBERRY, :BELUEBERRY, :LIECHIBERRY, :GANLONBERRY,
|
||||
:SALACBERRY, :PETAYABERRY, :APICOTBERRY, :LANSATBERRY, :STARFBERRY,
|
||||
:ENIGMABERRY, :MICLEBERRY, :CUSTAPBERRY, :JABOCABERRY, :ROWAPBERRY,
|
||||
:KEEBERRY, :MARANGABERRY]
|
||||
}
|
||||
end
|
||||
|
||||
def pbMoveFailed?(user, targets)
|
||||
# NOTE: Unnerve does not stop a Pokémon using this move.
|
||||
item = user.item
|
||||
if !item || !item.is_berry? || !user.itemActive?
|
||||
if !item || !item.is_berry? || !user.itemActive? ||
|
||||
item.flags.none? { |f| f[/^NaturalGift_/i] }
|
||||
@battle.pbDisplay(_INTL("But it failed!"))
|
||||
return true
|
||||
end
|
||||
@@ -1411,9 +1371,10 @@ class Battle::Move::TypeAndPowerDependOnUserBerry < Battle::Move
|
||||
item = user.item
|
||||
ret = :NORMAL
|
||||
if item
|
||||
@typeArray.each do |type, items|
|
||||
next if !items.include?(item.id)
|
||||
ret = type if GameData::Type.exists?(type)
|
||||
item.flags.each do |flag|
|
||||
next if !flag[/^NaturalGift_(\w+)_(?:\d+)$/i]
|
||||
typ = $~[1].to_sym
|
||||
ret = typ if GameData::Type.exists?(typ)
|
||||
break
|
||||
end
|
||||
end
|
||||
@@ -1422,14 +1383,12 @@ class Battle::Move::TypeAndPowerDependOnUserBerry < Battle::Move
|
||||
|
||||
# This is a separate method so that the AI can use it as well
|
||||
def pbNaturalGiftBaseDamage(heldItem)
|
||||
ret = 1
|
||||
@damageArray.each do |dmg, items|
|
||||
next if !items.include?(heldItem)
|
||||
ret = dmg
|
||||
ret += 20 if Settings::MECHANICS_GENERATION >= 6
|
||||
break
|
||||
if heldItem
|
||||
GameData::Item.get(heldItem).flags.each do |flag|
|
||||
return [$~[1].to_i, 10].max if flag[/^NaturalGift_(?:\w+)_(\d+)$/i]
|
||||
end
|
||||
end
|
||||
return ret
|
||||
return 1
|
||||
end
|
||||
|
||||
def pbBaseDamage(baseDmg, user, target)
|
||||
|
||||
@@ -3331,7 +3331,7 @@ Pocket = 5
|
||||
Price = 20
|
||||
FieldUse = OnPokemon
|
||||
BattleUse = OnPokemon
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_FIRE_60
|
||||
Description = It may be used or held by a Pokémon to recover from paralysis.
|
||||
#-------------------------------
|
||||
[CHESTOBERRY]
|
||||
@@ -3341,7 +3341,7 @@ Pocket = 5
|
||||
Price = 20
|
||||
FieldUse = OnPokemon
|
||||
BattleUse = OnPokemon
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_WATER_60
|
||||
Description = It may be used or held by a Pokémon to recover from sleep.
|
||||
#-------------------------------
|
||||
[PECHABERRY]
|
||||
@@ -3351,7 +3351,7 @@ Pocket = 5
|
||||
Price = 20
|
||||
FieldUse = OnPokemon
|
||||
BattleUse = OnPokemon
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_ELECTRIC_60
|
||||
Description = It may be used or held by a Pokémon to recover from poison.
|
||||
#-------------------------------
|
||||
[RAWSTBERRY]
|
||||
@@ -3361,7 +3361,7 @@ Pocket = 5
|
||||
Price = 20
|
||||
FieldUse = OnPokemon
|
||||
BattleUse = OnPokemon
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_GRASS_60
|
||||
Description = It may be used or held by a Pokémon to recover from a burn.
|
||||
#-------------------------------
|
||||
[ASPEARBERRY]
|
||||
@@ -3371,7 +3371,7 @@ Pocket = 5
|
||||
Price = 20
|
||||
FieldUse = OnPokemon
|
||||
BattleUse = OnPokemon
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_ICE_60
|
||||
Description = It may be used or held by a Pokémon to defrost it.
|
||||
#-------------------------------
|
||||
[LEPPABERRY]
|
||||
@@ -3381,7 +3381,7 @@ Pocket = 5
|
||||
Price = 20
|
||||
FieldUse = OnPokemon
|
||||
BattleUse = OnMove
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_FIGHTING_60
|
||||
Description = It may be used or held by a Pokémon to restore a move's PP by 10.
|
||||
#-------------------------------
|
||||
[ORANBERRY]
|
||||
@@ -3391,7 +3391,7 @@ Pocket = 5
|
||||
Price = 20
|
||||
FieldUse = OnPokemon
|
||||
BattleUse = OnPokemon
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_POISON_60
|
||||
Description = It may be used or held by a Pokémon to heal the user by just 10 HP.
|
||||
#-------------------------------
|
||||
[PERSIMBERRY]
|
||||
@@ -3400,7 +3400,7 @@ NamePlural = Persim Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
BattleUse = OnBattler
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_GROUND_60
|
||||
Description = It may be used or held by a Pokémon to recover from confusion.
|
||||
#-------------------------------
|
||||
[LUMBERRY]
|
||||
@@ -3410,7 +3410,7 @@ Pocket = 5
|
||||
Price = 20
|
||||
FieldUse = OnPokemon
|
||||
BattleUse = OnPokemon
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_FLYING_60
|
||||
Description = It may be used or held by a Pokémon to recover from any status problem.
|
||||
#-------------------------------
|
||||
[SITRUSBERRY]
|
||||
@@ -3420,7 +3420,7 @@ Pocket = 5
|
||||
Price = 20
|
||||
FieldUse = OnPokemon
|
||||
BattleUse = OnPokemon
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_PSYCHIC_60
|
||||
Description = It may be used or held by a Pokémon to heal the user's HP a little.
|
||||
#-------------------------------
|
||||
[FIGYBERRY]
|
||||
@@ -3428,7 +3428,7 @@ Name = Figy Berry
|
||||
NamePlural = Figy Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_BUG_60
|
||||
Description = If held by a Pokémon, it restores the user's HP in a pinch, but will cause confusion if it hates the taste.
|
||||
#-------------------------------
|
||||
[WIKIBERRY]
|
||||
@@ -3436,7 +3436,7 @@ Name = Wiki Berry
|
||||
NamePlural = Wiki Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_ROCK_60
|
||||
Description = If held by a Pokémon, it restores the user's HP in a pinch, but will cause confusion if it hates the taste.
|
||||
#-------------------------------
|
||||
[MAGOBERRY]
|
||||
@@ -3444,7 +3444,7 @@ Name = Mago Berry
|
||||
NamePlural = Mago Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_GHOST_60
|
||||
Description = If held by a Pokémon, it restores the user's HP in a pinch, but will cause confusion if it hates the taste.
|
||||
#-------------------------------
|
||||
[AGUAVBERRY]
|
||||
@@ -3452,7 +3452,7 @@ Name = Aguav Berry
|
||||
NamePlural = Aguav Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_DRAGON_60
|
||||
Description = If held by a Pokémon, it restores the user's HP in a pinch, but will cause confusion if it hates the taste.
|
||||
#-------------------------------
|
||||
[IAPAPABERRY]
|
||||
@@ -3460,7 +3460,7 @@ Name = Iapapa Berry
|
||||
NamePlural = Iapapa Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_DARK_60
|
||||
Description = If held by a Pokémon, it restores the user's HP in a pinch, but will cause confusion if it hates the taste.
|
||||
#-------------------------------
|
||||
[RAZZBERRY]
|
||||
@@ -3468,7 +3468,7 @@ Name = Razz Berry
|
||||
NamePlural = Razz Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_STEEL_60
|
||||
Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry.
|
||||
#-------------------------------
|
||||
[BLUKBERRY]
|
||||
@@ -3476,7 +3476,7 @@ Name = Bluk Berry
|
||||
NamePlural = Bluk Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_FIRE_70
|
||||
Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry.
|
||||
#-------------------------------
|
||||
[NANABBERRY]
|
||||
@@ -3484,7 +3484,7 @@ Name = Nanab Berry
|
||||
NamePlural = Nanab Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_WATER_70
|
||||
Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry.
|
||||
#-------------------------------
|
||||
[WEPEARBERRY]
|
||||
@@ -3492,7 +3492,7 @@ Name = Wepear Berry
|
||||
NamePlural = Wepear Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_ELECTRIC_70
|
||||
Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry.
|
||||
#-------------------------------
|
||||
[PINAPBERRY]
|
||||
@@ -3500,7 +3500,7 @@ Name = Pinap Berry
|
||||
NamePlural = Pinap Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_GRASS_70
|
||||
Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry.
|
||||
#-------------------------------
|
||||
[POMEGBERRY]
|
||||
@@ -3509,7 +3509,7 @@ NamePlural = Pomeg Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
FieldUse = OnPokemon
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_ICE_70
|
||||
Description = Using it on a Pokémon makes it more friendly, but it also lowers its base HP.
|
||||
#-------------------------------
|
||||
[KELPSYBERRY]
|
||||
@@ -3518,7 +3518,7 @@ NamePlural = Kelpsy Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
FieldUse = OnPokemon
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_FIGHTING_70
|
||||
Description = Using it on a Pokémon makes it more friendly, but it also lowers its base Attack stat.
|
||||
#-------------------------------
|
||||
[QUALOTBERRY]
|
||||
@@ -3527,7 +3527,7 @@ NamePlural = Qualot Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
FieldUse = OnPokemon
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_POISON_70
|
||||
Description = Using it on a Pokémon makes it more friendly, but it also lowers its base Defense stat.
|
||||
#-------------------------------
|
||||
[HONDEWBERRY]
|
||||
@@ -3536,7 +3536,7 @@ NamePlural = Hondew Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
FieldUse = OnPokemon
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_GROUND_70
|
||||
Description = Using it on a Pokémon makes it more friendly, but it also lowers its base Sp. Atk stat.
|
||||
#-------------------------------
|
||||
[GREPABERRY]
|
||||
@@ -3545,7 +3545,7 @@ NamePlural = Grepa Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
FieldUse = OnPokemon
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_FLYING_70
|
||||
Description = Using it on a Pokémon makes it more friendly, but it also lowers its base Sp. Def stat.
|
||||
#-------------------------------
|
||||
[TAMATOBERRY]
|
||||
@@ -3554,7 +3554,7 @@ NamePlural = Tamato Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
FieldUse = OnPokemon
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_PSYCHIC_70
|
||||
Description = Using it on a Pokémon makes it more friendly, but it also lowers its base Speed stat.
|
||||
#-------------------------------
|
||||
[CORNNBERRY]
|
||||
@@ -3562,7 +3562,7 @@ Name = Cornn Berry
|
||||
NamePlural = Cornn Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_BUG_70
|
||||
Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry.
|
||||
#-------------------------------
|
||||
[MAGOSTBERRY]
|
||||
@@ -3570,7 +3570,7 @@ Name = Magost Berry
|
||||
NamePlural = Magost Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_ROCK_70
|
||||
Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry.
|
||||
#-------------------------------
|
||||
[RABUTABERRY]
|
||||
@@ -3578,7 +3578,7 @@ Name = Rabuta Berry
|
||||
NamePlural = Rabuta Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_GHOST_70
|
||||
Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry.
|
||||
#-------------------------------
|
||||
[NOMELBERRY]
|
||||
@@ -3586,7 +3586,7 @@ Name = Nomel Berry
|
||||
NamePlural = Nomel Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_DRAGON_70
|
||||
Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry.
|
||||
#-------------------------------
|
||||
[SPELONBERRY]
|
||||
@@ -3594,7 +3594,7 @@ Name = Spelon Berry
|
||||
NamePlural = Spelon Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_DARK_70
|
||||
Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry.
|
||||
#-------------------------------
|
||||
[PAMTREBERRY]
|
||||
@@ -3602,7 +3602,7 @@ Name = Pamtre Berry
|
||||
NamePlural = Pamtre Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_STEEL_70
|
||||
Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry.
|
||||
#-------------------------------
|
||||
[WATMELBERRY]
|
||||
@@ -3610,7 +3610,7 @@ Name = Watmel Berry
|
||||
NamePlural = Watmel Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_FIRE_80
|
||||
Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry.
|
||||
#-------------------------------
|
||||
[DURINBERRY]
|
||||
@@ -3618,7 +3618,7 @@ Name = Durin Berry
|
||||
NamePlural = Durin Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_WATER_80
|
||||
Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry.
|
||||
#-------------------------------
|
||||
[BELUEBERRY]
|
||||
@@ -3626,7 +3626,7 @@ Name = Belue Berry
|
||||
NamePlural = Belue Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_ELECTRIC_80
|
||||
Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry.
|
||||
#-------------------------------
|
||||
[OCCABERRY]
|
||||
@@ -3634,7 +3634,7 @@ Name = Occa Berry
|
||||
NamePlural = Occa Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_FIRE_60
|
||||
Description = Weakens a supereffective Fire-type attack against the holding Pokémon.
|
||||
#-------------------------------
|
||||
[PASSHOBERRY]
|
||||
@@ -3642,7 +3642,7 @@ Name = Passho Berry
|
||||
NamePlural = Passho Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_WATER_60
|
||||
Description = Weakens a supereffective Water-type attack against the holding Pokémon.
|
||||
#-------------------------------
|
||||
[WACANBERRY]
|
||||
@@ -3650,7 +3650,7 @@ Name = Wacan Berry
|
||||
NamePlural = Wacan Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_ELECTRIC_60
|
||||
Description = Weakens a supereffective Electric-type attack against the holding Pokémon.
|
||||
#-------------------------------
|
||||
[RINDOBERRY]
|
||||
@@ -3658,7 +3658,7 @@ Name = Rindo Berry
|
||||
NamePlural = Rindo Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_GRASS_60
|
||||
Description = Weakens a supereffective Grass-type attack against the holding Pokémon.
|
||||
#-------------------------------
|
||||
[YACHEBERRY]
|
||||
@@ -3666,7 +3666,7 @@ Name = Yache Berry
|
||||
NamePlural = Yache Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_ICE_60
|
||||
Description = Weakens a supereffective Ice-type attack against the holding Pokémon.
|
||||
#-------------------------------
|
||||
[CHOPLEBERRY]
|
||||
@@ -3674,7 +3674,7 @@ Name = Chople Berry
|
||||
NamePlural = Chople Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_FIGHTING_60
|
||||
Description = Weakens a supereffective Fighting-type attack against the holding Pokémon.
|
||||
#-------------------------------
|
||||
[KEBIABERRY]
|
||||
@@ -3682,7 +3682,7 @@ Name = Kebia Berry
|
||||
NamePlural = Kebia Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_POISON_60
|
||||
Description = Weakens a supereffective Poison-type attack against the holding Pokémon.
|
||||
#-------------------------------
|
||||
[SHUCABERRY]
|
||||
@@ -3690,7 +3690,7 @@ Name = Shuca Berry
|
||||
NamePlural = Shuca Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_GROUND_60
|
||||
Description = Weakens a supereffective Ground-type attack against the holding Pokémon.
|
||||
#-------------------------------
|
||||
[COBABERRY]
|
||||
@@ -3698,7 +3698,7 @@ Name = Coba Berry
|
||||
NamePlural = Coba Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_FLYING_60
|
||||
Description = Weakens a supereffective Flying-type attack against the holding Pokémon.
|
||||
#-------------------------------
|
||||
[PAYAPABERRY]
|
||||
@@ -3706,7 +3706,7 @@ Name = Payapa Berry
|
||||
NamePlural = Payapa Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_PSYCHIC_60
|
||||
Description = Weakens a supereffective Psychic-type attack against the holding Pokémon.
|
||||
#-------------------------------
|
||||
[TANGABERRY]
|
||||
@@ -3714,7 +3714,7 @@ Name = Tanga Berry
|
||||
NamePlural = Tanga Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_BUG_60
|
||||
Description = Weakens a supereffective Bug-type attack against the holding Pokémon.
|
||||
#-------------------------------
|
||||
[CHARTIBERRY]
|
||||
@@ -3722,7 +3722,7 @@ Name = Charti Berry
|
||||
NamePlural = Charti Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_ROCK_60
|
||||
Description = Weakens a supereffective Rock-type attack against the holding Pokémon.
|
||||
#-------------------------------
|
||||
[KASIBBERRY]
|
||||
@@ -3730,7 +3730,7 @@ Name = Kasib Berry
|
||||
NamePlural = Kasib Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_GHOST_60
|
||||
Description = Weakens a supereffective Ghost-type attack against the holding Pokémon.
|
||||
#-------------------------------
|
||||
[HABANBERRY]
|
||||
@@ -3738,7 +3738,7 @@ Name = Haban Berry
|
||||
NamePlural = Haban Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_DRAGON_60
|
||||
Description = Weakens a supereffective Dragon-type attack against the holding Pokémon.
|
||||
#-------------------------------
|
||||
[COLBURBERRY]
|
||||
@@ -3746,7 +3746,7 @@ Name = Colbur Berry
|
||||
NamePlural = Colbur Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_DARK_60
|
||||
Description = Weakens a supereffective Dark-type attack against the holding Pokémon.
|
||||
#-------------------------------
|
||||
[BABIRIBERRY]
|
||||
@@ -3754,7 +3754,7 @@ Name = Babiri Berry
|
||||
NamePlural = Babiri Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_STEEL_60
|
||||
Description = Weakens a supereffective Steel-type attack against the holding Pokémon.
|
||||
#-------------------------------
|
||||
[CHILANBERRY]
|
||||
@@ -3762,7 +3762,7 @@ Name = Chilan Berry
|
||||
NamePlural = Chilan Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_NORMAL_60
|
||||
Description = Weakens a Normal-type attack against the Pokémon holding this berry.
|
||||
#-------------------------------
|
||||
[LIECHIBERRY]
|
||||
@@ -3770,7 +3770,7 @@ Name = Liechi Berry
|
||||
NamePlural = Liechi Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_GRASS_80
|
||||
Description = If held by a Pokémon, it raises its Attack stat in a pinch.
|
||||
#-------------------------------
|
||||
[GANLONBERRY]
|
||||
@@ -3778,7 +3778,7 @@ Name = Ganlon Berry
|
||||
NamePlural = Ganlon Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_ICE_80
|
||||
Description = If held by a Pokémon, it raises its Defense stat in a pinch.
|
||||
#-------------------------------
|
||||
[SALACBERRY]
|
||||
@@ -3786,7 +3786,7 @@ Name = Salac Berry
|
||||
NamePlural = Salac Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_FIGHTING_80
|
||||
Description = If held by a Pokémon, it raises its Speed stat in a pinch.
|
||||
#-------------------------------
|
||||
[PETAYABERRY]
|
||||
@@ -3794,7 +3794,7 @@ Name = Petaya Berry
|
||||
NamePlural = Petaya Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_POISON_80
|
||||
Description = If held by a Pokémon, it raises its Sp. Atk stat in a pinch.
|
||||
#-------------------------------
|
||||
[APICOTBERRY]
|
||||
@@ -3802,7 +3802,7 @@ Name = Apicot Berry
|
||||
NamePlural = Apicot Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_GROUND_80
|
||||
Description = If held by a Pokémon, it raises its Sp. Def stat in a pinch.
|
||||
#-------------------------------
|
||||
[LANSATBERRY]
|
||||
@@ -3810,7 +3810,7 @@ Name = Lansat Berry
|
||||
NamePlural = Lansat Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_FLYING_80
|
||||
Description = If held by a Pokémon, it raises its critical-hit ratio in a pinch.
|
||||
#-------------------------------
|
||||
[STARFBERRY]
|
||||
@@ -3818,7 +3818,7 @@ Name = Starf Berry
|
||||
NamePlural = Starf Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_PSYCHIC_80
|
||||
Description = If held by a Pokémon, it sharply raises one of its stats in a pinch.
|
||||
#-------------------------------
|
||||
[ENIGMABERRY]
|
||||
@@ -3826,7 +3826,7 @@ Name = Enigma Berry
|
||||
NamePlural = Enigma Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_BUG_80
|
||||
Description = If held by a Pokémon, it restores its HP if it is hit by any supereffective attack.
|
||||
#-------------------------------
|
||||
[MICLEBERRY]
|
||||
@@ -3834,7 +3834,7 @@ Name = Micle Berry
|
||||
NamePlural = Micle Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_ROCK_80
|
||||
Description = If held by a Pokémon, it raises the accuracy of a move just once in a pinch.
|
||||
#-------------------------------
|
||||
[CUSTAPBERRY]
|
||||
@@ -3842,7 +3842,7 @@ Name = Custap Berry
|
||||
NamePlural = Custap Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_GHOST_80
|
||||
Description = If held by a Pokémon, it gets to move first just once in a pinch.
|
||||
#-------------------------------
|
||||
[JABOCABERRY]
|
||||
@@ -3850,7 +3850,7 @@ Name = Jaboca Berry
|
||||
NamePlural = Jaboca Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_DRAGON_80
|
||||
Description = If held by a Pokémon and a physical attack lands, the attacker also takes damage.
|
||||
#-------------------------------
|
||||
[ROWAPBERRY]
|
||||
@@ -3858,7 +3858,7 @@ Name = Rowap Berry
|
||||
NamePlural = Rowap Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_DARK_80
|
||||
Description = If held by a Pokémon and a special attack lands, the attacker also takes damage.
|
||||
#-------------------------------
|
||||
[GRASSMAIL]
|
||||
|
||||
@@ -3891,7 +3891,7 @@ Pocket = 5
|
||||
Price = 20
|
||||
FieldUse = OnPokemon
|
||||
BattleUse = OnPokemon
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_FIRE_80
|
||||
Description = It may be used or held by a Pokémon to recover from paralysis.
|
||||
#-------------------------------
|
||||
[CHESTOBERRY]
|
||||
@@ -3901,7 +3901,7 @@ Pocket = 5
|
||||
Price = 20
|
||||
FieldUse = OnPokemon
|
||||
BattleUse = OnPokemon
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_WATER_80
|
||||
Description = It may be used or held by a Pokémon to recover from sleep.
|
||||
#-------------------------------
|
||||
[PECHABERRY]
|
||||
@@ -3911,7 +3911,7 @@ Pocket = 5
|
||||
Price = 20
|
||||
FieldUse = OnPokemon
|
||||
BattleUse = OnPokemon
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_ELECTRIC_80
|
||||
Description = It may be used or held by a Pokémon to recover from poison.
|
||||
#-------------------------------
|
||||
[RAWSTBERRY]
|
||||
@@ -3921,7 +3921,7 @@ Pocket = 5
|
||||
Price = 20
|
||||
FieldUse = OnPokemon
|
||||
BattleUse = OnPokemon
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_GRASS_80
|
||||
Description = It may be used or held by a Pokémon to recover from a burn.
|
||||
#-------------------------------
|
||||
[ASPEARBERRY]
|
||||
@@ -3931,7 +3931,7 @@ Pocket = 5
|
||||
Price = 20
|
||||
FieldUse = OnPokemon
|
||||
BattleUse = OnPokemon
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_ICE_80
|
||||
Description = It may be used or held by a Pokémon to defrost it.
|
||||
#-------------------------------
|
||||
[LEPPABERRY]
|
||||
@@ -3941,7 +3941,7 @@ Pocket = 5
|
||||
Price = 20
|
||||
FieldUse = OnPokemon
|
||||
BattleUse = OnMove
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_FIGHTING_80
|
||||
Description = It may be used or held by a Pokémon to restore a move's PP by 10.
|
||||
#-------------------------------
|
||||
[ORANBERRY]
|
||||
@@ -3951,7 +3951,7 @@ Pocket = 5
|
||||
Price = 20
|
||||
FieldUse = OnPokemon
|
||||
BattleUse = OnPokemon
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_POISON_80
|
||||
Description = It may be used or held by a Pokémon to heal the user by just 10 HP.
|
||||
#-------------------------------
|
||||
[PERSIMBERRY]
|
||||
@@ -3960,7 +3960,7 @@ NamePlural = Persim Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
BattleUse = OnBattler
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_GROUND_80
|
||||
Description = It may be used or held by a Pokémon to recover from confusion.
|
||||
#-------------------------------
|
||||
[LUMBERRY]
|
||||
@@ -3970,7 +3970,7 @@ Pocket = 5
|
||||
Price = 20
|
||||
FieldUse = OnPokemon
|
||||
BattleUse = OnPokemon
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_FLYING_80
|
||||
Description = It may be used or held by a Pokémon to recover from any status problem.
|
||||
#-------------------------------
|
||||
[SITRUSBERRY]
|
||||
@@ -3980,7 +3980,7 @@ Pocket = 5
|
||||
Price = 20
|
||||
FieldUse = OnPokemon
|
||||
BattleUse = OnPokemon
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_PSYCHIC_80
|
||||
Description = It may be used or held by a Pokémon to heal the user's HP a little.
|
||||
#-------------------------------
|
||||
[FIGYBERRY]
|
||||
@@ -3988,7 +3988,7 @@ Name = Figy Berry
|
||||
NamePlural = Figy Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_BUG_80
|
||||
Description = If held by a Pokémon, it restores the user's HP in a pinch, but will cause confusion if it hates the taste.
|
||||
#-------------------------------
|
||||
[WIKIBERRY]
|
||||
@@ -3996,7 +3996,7 @@ Name = Wiki Berry
|
||||
NamePlural = Wiki Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_ROCK_80
|
||||
Description = If held by a Pokémon, it restores the user's HP in a pinch, but will cause confusion if it hates the taste.
|
||||
#-------------------------------
|
||||
[MAGOBERRY]
|
||||
@@ -4004,7 +4004,7 @@ Name = Mago Berry
|
||||
NamePlural = Mago Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_GHOST_80
|
||||
Description = If held by a Pokémon, it restores the user's HP in a pinch, but will cause confusion if it hates the taste.
|
||||
#-------------------------------
|
||||
[AGUAVBERRY]
|
||||
@@ -4012,7 +4012,7 @@ Name = Aguav Berry
|
||||
NamePlural = Aguav Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_DRAGON_80
|
||||
Description = If held by a Pokémon, it restores the user's HP in a pinch, but will cause confusion if it hates the taste.
|
||||
#-------------------------------
|
||||
[IAPAPABERRY]
|
||||
@@ -4020,7 +4020,7 @@ Name = Iapapa Berry
|
||||
NamePlural = Iapapa Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_DARK_80
|
||||
Description = If held by a Pokémon, it restores the user's HP in a pinch, but will cause confusion if it hates the taste.
|
||||
#-------------------------------
|
||||
[RAZZBERRY]
|
||||
@@ -4028,7 +4028,7 @@ Name = Razz Berry
|
||||
NamePlural = Razz Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_STEEL_80
|
||||
Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry.
|
||||
#-------------------------------
|
||||
[BLUKBERRY]
|
||||
@@ -4036,7 +4036,7 @@ Name = Bluk Berry
|
||||
NamePlural = Bluk Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_FIRE_90
|
||||
Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry.
|
||||
#-------------------------------
|
||||
[NANABBERRY]
|
||||
@@ -4044,7 +4044,7 @@ Name = Nanab Berry
|
||||
NamePlural = Nanab Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_WATER_90
|
||||
Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry.
|
||||
#-------------------------------
|
||||
[WEPEARBERRY]
|
||||
@@ -4052,7 +4052,7 @@ Name = Wepear Berry
|
||||
NamePlural = Wepear Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_ELECTRIC_90
|
||||
Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry.
|
||||
#-------------------------------
|
||||
[PINAPBERRY]
|
||||
@@ -4060,7 +4060,7 @@ Name = Pinap Berry
|
||||
NamePlural = Pinap Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_GRASS_90
|
||||
Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry.
|
||||
#-------------------------------
|
||||
[POMEGBERRY]
|
||||
@@ -4069,7 +4069,7 @@ NamePlural = Pomeg Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
FieldUse = OnPokemon
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_ICE_90
|
||||
Description = Using it on a Pokémon makes it more friendly, but it also lowers its base HP.
|
||||
#-------------------------------
|
||||
[KELPSYBERRY]
|
||||
@@ -4078,7 +4078,7 @@ NamePlural = Kelpsy Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
FieldUse = OnPokemon
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_FIGHTING_90
|
||||
Description = Using it on a Pokémon makes it more friendly, but it also lowers its base Attack stat.
|
||||
#-------------------------------
|
||||
[QUALOTBERRY]
|
||||
@@ -4087,7 +4087,7 @@ NamePlural = Qualot Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
FieldUse = OnPokemon
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_POISON_90
|
||||
Description = Using it on a Pokémon makes it more friendly, but it also lowers its base Defense stat.
|
||||
#-------------------------------
|
||||
[HONDEWBERRY]
|
||||
@@ -4096,7 +4096,7 @@ NamePlural = Hondew Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
FieldUse = OnPokemon
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_GROUND_90
|
||||
Description = Using it on a Pokémon makes it more friendly, but it also lowers its base Sp. Atk stat.
|
||||
#-------------------------------
|
||||
[GREPABERRY]
|
||||
@@ -4105,7 +4105,7 @@ NamePlural = Grepa Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
FieldUse = OnPokemon
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_FLYING_90
|
||||
Description = Using it on a Pokémon makes it more friendly, but it also lowers its base Sp. Def stat.
|
||||
#-------------------------------
|
||||
[TAMATOBERRY]
|
||||
@@ -4114,7 +4114,7 @@ NamePlural = Tamato Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
FieldUse = OnPokemon
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_PSYCHIC_90
|
||||
Description = Using it on a Pokémon makes it more friendly, but it also lowers its base Speed stat.
|
||||
#-------------------------------
|
||||
[CORNNBERRY]
|
||||
@@ -4122,7 +4122,7 @@ Name = Cornn Berry
|
||||
NamePlural = Cornn Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_BUG_90
|
||||
Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry.
|
||||
#-------------------------------
|
||||
[MAGOSTBERRY]
|
||||
@@ -4130,7 +4130,7 @@ Name = Magost Berry
|
||||
NamePlural = Magost Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_ROCK_90
|
||||
Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry.
|
||||
#-------------------------------
|
||||
[RABUTABERRY]
|
||||
@@ -4138,7 +4138,7 @@ Name = Rabuta Berry
|
||||
NamePlural = Rabuta Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_GHOST_90
|
||||
Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry.
|
||||
#-------------------------------
|
||||
[NOMELBERRY]
|
||||
@@ -4146,7 +4146,7 @@ Name = Nomel Berry
|
||||
NamePlural = Nomel Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_DRAGON_90
|
||||
Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry.
|
||||
#-------------------------------
|
||||
[SPELONBERRY]
|
||||
@@ -4154,7 +4154,7 @@ Name = Spelon Berry
|
||||
NamePlural = Spelon Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_DARK_90
|
||||
Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry.
|
||||
#-------------------------------
|
||||
[PAMTREBERRY]
|
||||
@@ -4162,7 +4162,7 @@ Name = Pamtre Berry
|
||||
NamePlural = Pamtre Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_STEEL_90
|
||||
Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry.
|
||||
#-------------------------------
|
||||
[WATMELBERRY]
|
||||
@@ -4170,7 +4170,7 @@ Name = Watmel Berry
|
||||
NamePlural = Watmel Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_FIRE_100
|
||||
Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry.
|
||||
#-------------------------------
|
||||
[DURINBERRY]
|
||||
@@ -4178,7 +4178,7 @@ Name = Durin Berry
|
||||
NamePlural = Durin Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_WATER_100
|
||||
Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry.
|
||||
#-------------------------------
|
||||
[BELUEBERRY]
|
||||
@@ -4186,7 +4186,7 @@ Name = Belue Berry
|
||||
NamePlural = Belue Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_ELECTRIC_100
|
||||
Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry.
|
||||
#-------------------------------
|
||||
[OCCABERRY]
|
||||
@@ -4194,7 +4194,7 @@ Name = Occa Berry
|
||||
NamePlural = Occa Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_FIRE_80
|
||||
Description = Weakens a supereffective Fire-type attack against the holding Pokémon.
|
||||
#-------------------------------
|
||||
[PASSHOBERRY]
|
||||
@@ -4202,7 +4202,7 @@ Name = Passho Berry
|
||||
NamePlural = Passho Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_WATER_80
|
||||
Description = Weakens a supereffective Water-type attack against the holding Pokémon.
|
||||
#-------------------------------
|
||||
[WACANBERRY]
|
||||
@@ -4210,7 +4210,7 @@ Name = Wacan Berry
|
||||
NamePlural = Wacan Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_ELECTRIC_80
|
||||
Description = Weakens a supereffective Electric-type attack against the holding Pokémon.
|
||||
#-------------------------------
|
||||
[RINDOBERRY]
|
||||
@@ -4218,7 +4218,7 @@ Name = Rindo Berry
|
||||
NamePlural = Rindo Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_GRASS_80
|
||||
Description = Weakens a supereffective Grass-type attack against the holding Pokémon.
|
||||
#-------------------------------
|
||||
[YACHEBERRY]
|
||||
@@ -4226,7 +4226,7 @@ Name = Yache Berry
|
||||
NamePlural = Yache Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_ICE_80
|
||||
Description = Weakens a supereffective Ice-type attack against the holding Pokémon.
|
||||
#-------------------------------
|
||||
[CHOPLEBERRY]
|
||||
@@ -4234,7 +4234,7 @@ Name = Chople Berry
|
||||
NamePlural = Chople Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_FIGHTING_80
|
||||
Description = Weakens a supereffective Fighting-type attack against the holding Pokémon.
|
||||
#-------------------------------
|
||||
[KEBIABERRY]
|
||||
@@ -4242,7 +4242,7 @@ Name = Kebia Berry
|
||||
NamePlural = Kebia Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_POISON_80
|
||||
Description = Weakens a supereffective Poison-type attack against the holding Pokémon.
|
||||
#-------------------------------
|
||||
[SHUCABERRY]
|
||||
@@ -4250,7 +4250,7 @@ Name = Shuca Berry
|
||||
NamePlural = Shuca Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_GROUND_80
|
||||
Description = Weakens a supereffective Ground-type attack against the holding Pokémon.
|
||||
#-------------------------------
|
||||
[COBABERRY]
|
||||
@@ -4258,7 +4258,7 @@ Name = Coba Berry
|
||||
NamePlural = Coba Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_FLYING_80
|
||||
Description = Weakens a supereffective Flying-type attack against the holding Pokémon.
|
||||
#-------------------------------
|
||||
[PAYAPABERRY]
|
||||
@@ -4266,7 +4266,7 @@ Name = Payapa Berry
|
||||
NamePlural = Payapa Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_PSYCHIC_80
|
||||
Description = Weakens a supereffective Psychic-type attack against the holding Pokémon.
|
||||
#-------------------------------
|
||||
[TANGABERRY]
|
||||
@@ -4274,7 +4274,7 @@ Name = Tanga Berry
|
||||
NamePlural = Tanga Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_BUG_80
|
||||
Description = Weakens a supereffective Bug-type attack against the holding Pokémon.
|
||||
#-------------------------------
|
||||
[CHARTIBERRY]
|
||||
@@ -4282,7 +4282,7 @@ Name = Charti Berry
|
||||
NamePlural = Charti Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_ROCK_80
|
||||
Description = Weakens a supereffective Rock-type attack against the holding Pokémon.
|
||||
#-------------------------------
|
||||
[KASIBBERRY]
|
||||
@@ -4290,7 +4290,7 @@ Name = Kasib Berry
|
||||
NamePlural = Kasib Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_GHOST_80
|
||||
Description = Weakens a supereffective Ghost-type attack against the holding Pokémon.
|
||||
#-------------------------------
|
||||
[HABANBERRY]
|
||||
@@ -4298,7 +4298,7 @@ Name = Haban Berry
|
||||
NamePlural = Haban Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_DRAGON_80
|
||||
Description = Weakens a supereffective Dragon-type attack against the holding Pokémon.
|
||||
#-------------------------------
|
||||
[COLBURBERRY]
|
||||
@@ -4306,7 +4306,7 @@ Name = Colbur Berry
|
||||
NamePlural = Colbur Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_DARK_80
|
||||
Description = Weakens a supereffective Dark-type attack against the holding Pokémon.
|
||||
#-------------------------------
|
||||
[BABIRIBERRY]
|
||||
@@ -4314,7 +4314,7 @@ Name = Babiri Berry
|
||||
NamePlural = Babiri Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_STEEL_80
|
||||
Description = Weakens a supereffective Steel-type attack against the holding Pokémon.
|
||||
#-------------------------------
|
||||
[ROSELIBERRY]
|
||||
@@ -4322,7 +4322,7 @@ Name = Roseli Berry
|
||||
NamePlural = Roseli Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_FAIRY_80
|
||||
Description = If held by a Pokémon, this Berry will lessen the damage taken from one supereffective Fairy-type attack.
|
||||
#-------------------------------
|
||||
[CHILANBERRY]
|
||||
@@ -4330,7 +4330,7 @@ Name = Chilan Berry
|
||||
NamePlural = Chilan Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_NORMAL_80
|
||||
Description = Weakens a Normal-type attack against the Pokémon holding this berry.
|
||||
#-------------------------------
|
||||
[LIECHIBERRY]
|
||||
@@ -4338,7 +4338,7 @@ Name = Liechi Berry
|
||||
NamePlural = Liechi Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_GRASS_100
|
||||
Description = If held by a Pokémon, it raises its Attack stat in a pinch.
|
||||
#-------------------------------
|
||||
[GANLONBERRY]
|
||||
@@ -4346,7 +4346,7 @@ Name = Ganlon Berry
|
||||
NamePlural = Ganlon Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_ICE_100
|
||||
Description = If held by a Pokémon, it raises its Defense stat in a pinch.
|
||||
#-------------------------------
|
||||
[SALACBERRY]
|
||||
@@ -4354,7 +4354,7 @@ Name = Salac Berry
|
||||
NamePlural = Salac Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_FIGHTING_100
|
||||
Description = If held by a Pokémon, it raises its Speed stat in a pinch.
|
||||
#-------------------------------
|
||||
[PETAYABERRY]
|
||||
@@ -4362,7 +4362,7 @@ Name = Petaya Berry
|
||||
NamePlural = Petaya Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_POISON_100
|
||||
Description = If held by a Pokémon, it raises its Sp. Atk stat in a pinch.
|
||||
#-------------------------------
|
||||
[APICOTBERRY]
|
||||
@@ -4370,7 +4370,7 @@ Name = Apicot Berry
|
||||
NamePlural = Apicot Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_GROUND_100
|
||||
Description = If held by a Pokémon, it raises its Sp. Def stat in a pinch.
|
||||
#-------------------------------
|
||||
[LANSATBERRY]
|
||||
@@ -4378,7 +4378,7 @@ Name = Lansat Berry
|
||||
NamePlural = Lansat Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_FLYING_100
|
||||
Description = If held by a Pokémon, it raises its critical-hit ratio in a pinch.
|
||||
#-------------------------------
|
||||
[STARFBERRY]
|
||||
@@ -4386,7 +4386,7 @@ Name = Starf Berry
|
||||
NamePlural = Starf Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_PSYCHIC_100
|
||||
Description = If held by a Pokémon, it sharply raises one of its stats in a pinch.
|
||||
#-------------------------------
|
||||
[ENIGMABERRY]
|
||||
@@ -4394,7 +4394,7 @@ Name = Enigma Berry
|
||||
NamePlural = Enigma Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_BUG_100
|
||||
Description = If held by a Pokémon, it restores its HP if it is hit by any supereffective attack.
|
||||
#-------------------------------
|
||||
[MICLEBERRY]
|
||||
@@ -4402,7 +4402,7 @@ Name = Micle Berry
|
||||
NamePlural = Micle Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_ROCK_100
|
||||
Description = If held by a Pokémon, it raises the accuracy of a move just once in a pinch.
|
||||
#-------------------------------
|
||||
[CUSTAPBERRY]
|
||||
@@ -4410,7 +4410,7 @@ Name = Custap Berry
|
||||
NamePlural = Custap Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_GHOST_100
|
||||
Description = If held by a Pokémon, it gets to move first just once in a pinch.
|
||||
#-------------------------------
|
||||
[JABOCABERRY]
|
||||
@@ -4418,7 +4418,7 @@ Name = Jaboca Berry
|
||||
NamePlural = Jaboca Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_DRAGON_100
|
||||
Description = If held by a Pokémon and a physical attack lands, the attacker also takes damage.
|
||||
#-------------------------------
|
||||
[ROWAPBERRY]
|
||||
@@ -4426,7 +4426,7 @@ Name = Rowap Berry
|
||||
NamePlural = Rowap Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_DARK_100
|
||||
Description = If held by a Pokémon and a special attack lands, the attacker also takes damage.
|
||||
#-------------------------------
|
||||
[KEEBERRY]
|
||||
@@ -4434,7 +4434,7 @@ Name = Kee Berry
|
||||
NamePlural = Kee Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_FAIRY_100
|
||||
Description = If held by a Pokémon, this Berry will increase the holder's Defense if it's hit with a physical move.
|
||||
#-------------------------------
|
||||
[MARANGABERRY]
|
||||
@@ -4442,7 +4442,7 @@ Name = Maranga Berry
|
||||
NamePlural = Maranga Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_DARK_100
|
||||
Description = If held by a Pokémon, this Berry will increase the holder's Sp. Def if it's hit with a special move.
|
||||
#-------------------------------
|
||||
[GRASSMAIL]
|
||||
|
||||
@@ -4147,7 +4147,7 @@ Pocket = 5
|
||||
Price = 20
|
||||
FieldUse = OnPokemon
|
||||
BattleUse = OnPokemon
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_FIRE_80
|
||||
Description = It may be used or held by a Pokémon to recover from paralysis.
|
||||
#-------------------------------
|
||||
[CHESTOBERRY]
|
||||
@@ -4157,7 +4157,7 @@ Pocket = 5
|
||||
Price = 20
|
||||
FieldUse = OnPokemon
|
||||
BattleUse = OnPokemon
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_WATER_80
|
||||
Description = It may be used or held by a Pokémon to recover from sleep.
|
||||
#-------------------------------
|
||||
[PECHABERRY]
|
||||
@@ -4167,7 +4167,7 @@ Pocket = 5
|
||||
Price = 20
|
||||
FieldUse = OnPokemon
|
||||
BattleUse = OnPokemon
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_ELECTRIC_80
|
||||
Description = It may be used or held by a Pokémon to recover from poison.
|
||||
#-------------------------------
|
||||
[RAWSTBERRY]
|
||||
@@ -4177,7 +4177,7 @@ Pocket = 5
|
||||
Price = 20
|
||||
FieldUse = OnPokemon
|
||||
BattleUse = OnPokemon
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_GRASS_80
|
||||
Description = It may be used or held by a Pokémon to recover from a burn.
|
||||
#-------------------------------
|
||||
[ASPEARBERRY]
|
||||
@@ -4187,7 +4187,7 @@ Pocket = 5
|
||||
Price = 20
|
||||
FieldUse = OnPokemon
|
||||
BattleUse = OnPokemon
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_ICE_80
|
||||
Description = It may be used or held by a Pokémon to defrost it.
|
||||
#-------------------------------
|
||||
[LEPPABERRY]
|
||||
@@ -4197,7 +4197,7 @@ Pocket = 5
|
||||
Price = 20
|
||||
FieldUse = OnPokemon
|
||||
BattleUse = OnMove
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_FIGHTING_80
|
||||
Description = It may be used or held by a Pokémon to restore a move's PP by 10.
|
||||
#-------------------------------
|
||||
[ORANBERRY]
|
||||
@@ -4207,7 +4207,7 @@ Pocket = 5
|
||||
Price = 20
|
||||
FieldUse = OnPokemon
|
||||
BattleUse = OnPokemon
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_POISON_80
|
||||
Description = It may be used or held by a Pokémon to heal the user by just 10 HP.
|
||||
#-------------------------------
|
||||
[PERSIMBERRY]
|
||||
@@ -4216,7 +4216,7 @@ NamePlural = Persim Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
BattleUse = OnBattler
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_GROUND_80
|
||||
Description = It may be used or held by a Pokémon to recover from confusion.
|
||||
#-------------------------------
|
||||
[LUMBERRY]
|
||||
@@ -4226,7 +4226,7 @@ Pocket = 5
|
||||
Price = 20
|
||||
FieldUse = OnPokemon
|
||||
BattleUse = OnPokemon
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_FLYING_80
|
||||
Description = It may be used or held by a Pokémon to recover from any status problem.
|
||||
#-------------------------------
|
||||
[SITRUSBERRY]
|
||||
@@ -4236,7 +4236,7 @@ Pocket = 5
|
||||
Price = 20
|
||||
FieldUse = OnPokemon
|
||||
BattleUse = OnPokemon
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_PSYCHIC_80
|
||||
Description = It may be used or held by a Pokémon to heal the user's HP a little.
|
||||
#-------------------------------
|
||||
[FIGYBERRY]
|
||||
@@ -4244,7 +4244,7 @@ Name = Figy Berry
|
||||
NamePlural = Figy Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_BUG_80
|
||||
Description = If held by a Pokémon, it restores the user's HP in a pinch, but will cause confusion if it hates the taste.
|
||||
#-------------------------------
|
||||
[WIKIBERRY]
|
||||
@@ -4252,7 +4252,7 @@ Name = Wiki Berry
|
||||
NamePlural = Wiki Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_ROCK_80
|
||||
Description = If held by a Pokémon, it restores the user's HP in a pinch, but will cause confusion if it hates the taste.
|
||||
#-------------------------------
|
||||
[MAGOBERRY]
|
||||
@@ -4260,7 +4260,7 @@ Name = Mago Berry
|
||||
NamePlural = Mago Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_GHOST_80
|
||||
Description = If held by a Pokémon, it restores the user's HP in a pinch, but will cause confusion if it hates the taste.
|
||||
#-------------------------------
|
||||
[AGUAVBERRY]
|
||||
@@ -4268,7 +4268,7 @@ Name = Aguav Berry
|
||||
NamePlural = Aguav Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_DRAGON_80
|
||||
Description = If held by a Pokémon, it restores the user's HP in a pinch, but will cause confusion if it hates the taste.
|
||||
#-------------------------------
|
||||
[IAPAPABERRY]
|
||||
@@ -4276,7 +4276,7 @@ Name = Iapapa Berry
|
||||
NamePlural = Iapapa Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_DARK_80
|
||||
Description = If held by a Pokémon, it restores the user's HP in a pinch, but will cause confusion if it hates the taste.
|
||||
#-------------------------------
|
||||
[RAZZBERRY]
|
||||
@@ -4284,7 +4284,7 @@ Name = Razz Berry
|
||||
NamePlural = Razz Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_STEEL_80
|
||||
Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry.
|
||||
#-------------------------------
|
||||
[BLUKBERRY]
|
||||
@@ -4292,7 +4292,7 @@ Name = Bluk Berry
|
||||
NamePlural = Bluk Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_FIRE_90
|
||||
Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry.
|
||||
#-------------------------------
|
||||
[NANABBERRY]
|
||||
@@ -4300,7 +4300,7 @@ Name = Nanab Berry
|
||||
NamePlural = Nanab Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_WATER_90
|
||||
Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry.
|
||||
#-------------------------------
|
||||
[WEPEARBERRY]
|
||||
@@ -4308,7 +4308,7 @@ Name = Wepear Berry
|
||||
NamePlural = Wepear Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_ELECTRIC_90
|
||||
Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry.
|
||||
#-------------------------------
|
||||
[PINAPBERRY]
|
||||
@@ -4316,7 +4316,7 @@ Name = Pinap Berry
|
||||
NamePlural = Pinap Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_GRASS_90
|
||||
Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry.
|
||||
#-------------------------------
|
||||
[POMEGBERRY]
|
||||
@@ -4325,7 +4325,7 @@ NamePlural = Pomeg Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
FieldUse = OnPokemon
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_ICE_90
|
||||
Description = Using it on a Pokémon makes it more friendly, but it also lowers its base HP.
|
||||
#-------------------------------
|
||||
[KELPSYBERRY]
|
||||
@@ -4334,7 +4334,7 @@ NamePlural = Kelpsy Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
FieldUse = OnPokemon
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_FIGHTING_90
|
||||
Description = Using it on a Pokémon makes it more friendly, but it also lowers its base Attack stat.
|
||||
#-------------------------------
|
||||
[QUALOTBERRY]
|
||||
@@ -4343,7 +4343,7 @@ NamePlural = Qualot Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
FieldUse = OnPokemon
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_POISON_90
|
||||
Description = Using it on a Pokémon makes it more friendly, but it also lowers its base Defense stat.
|
||||
#-------------------------------
|
||||
[HONDEWBERRY]
|
||||
@@ -4352,7 +4352,7 @@ NamePlural = Hondew Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
FieldUse = OnPokemon
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_GROUND_90
|
||||
Description = Using it on a Pokémon makes it more friendly, but it also lowers its base Sp. Atk stat.
|
||||
#-------------------------------
|
||||
[GREPABERRY]
|
||||
@@ -4361,7 +4361,7 @@ NamePlural = Grepa Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
FieldUse = OnPokemon
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_FLYING_90
|
||||
Description = Using it on a Pokémon makes it more friendly, but it also lowers its base Sp. Def stat.
|
||||
#-------------------------------
|
||||
[TAMATOBERRY]
|
||||
@@ -4370,7 +4370,7 @@ NamePlural = Tamato Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
FieldUse = OnPokemon
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_PSYCHIC_90
|
||||
Description = Using it on a Pokémon makes it more friendly, but it also lowers its base Speed stat.
|
||||
#-------------------------------
|
||||
[CORNNBERRY]
|
||||
@@ -4378,7 +4378,7 @@ Name = Cornn Berry
|
||||
NamePlural = Cornn Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_BUG_90
|
||||
Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry.
|
||||
#-------------------------------
|
||||
[MAGOSTBERRY]
|
||||
@@ -4386,7 +4386,7 @@ Name = Magost Berry
|
||||
NamePlural = Magost Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_ROCK_90
|
||||
Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry.
|
||||
#-------------------------------
|
||||
[RABUTABERRY]
|
||||
@@ -4394,7 +4394,7 @@ Name = Rabuta Berry
|
||||
NamePlural = Rabuta Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_GHOST_90
|
||||
Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry.
|
||||
#-------------------------------
|
||||
[NOMELBERRY]
|
||||
@@ -4402,7 +4402,7 @@ Name = Nomel Berry
|
||||
NamePlural = Nomel Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_DRAGON_90
|
||||
Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry.
|
||||
#-------------------------------
|
||||
[SPELONBERRY]
|
||||
@@ -4410,7 +4410,7 @@ Name = Spelon Berry
|
||||
NamePlural = Spelon Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_DARK_90
|
||||
Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry.
|
||||
#-------------------------------
|
||||
[PAMTREBERRY]
|
||||
@@ -4418,7 +4418,7 @@ Name = Pamtre Berry
|
||||
NamePlural = Pamtre Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_STEEL_90
|
||||
Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry.
|
||||
#-------------------------------
|
||||
[WATMELBERRY]
|
||||
@@ -4426,7 +4426,7 @@ Name = Watmel Berry
|
||||
NamePlural = Watmel Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_FIRE_100
|
||||
Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry.
|
||||
#-------------------------------
|
||||
[DURINBERRY]
|
||||
@@ -4434,7 +4434,7 @@ Name = Durin Berry
|
||||
NamePlural = Durin Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_WATER_100
|
||||
Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry.
|
||||
#-------------------------------
|
||||
[BELUEBERRY]
|
||||
@@ -4442,7 +4442,7 @@ Name = Belue Berry
|
||||
NamePlural = Belue Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_ELECTRIC_100
|
||||
Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry.
|
||||
#-------------------------------
|
||||
[OCCABERRY]
|
||||
@@ -4450,7 +4450,7 @@ Name = Occa Berry
|
||||
NamePlural = Occa Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_FIRE_80
|
||||
Description = Weakens a supereffective Fire-type attack against the holding Pokémon.
|
||||
#-------------------------------
|
||||
[PASSHOBERRY]
|
||||
@@ -4458,7 +4458,7 @@ Name = Passho Berry
|
||||
NamePlural = Passho Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_WATER_80
|
||||
Description = Weakens a supereffective Water-type attack against the holding Pokémon.
|
||||
#-------------------------------
|
||||
[WACANBERRY]
|
||||
@@ -4466,7 +4466,7 @@ Name = Wacan Berry
|
||||
NamePlural = Wacan Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_ELECTRIC_80
|
||||
Description = Weakens a supereffective Electric-type attack against the holding Pokémon.
|
||||
#-------------------------------
|
||||
[RINDOBERRY]
|
||||
@@ -4474,7 +4474,7 @@ Name = Rindo Berry
|
||||
NamePlural = Rindo Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_GRASS_80
|
||||
Description = Weakens a supereffective Grass-type attack against the holding Pokémon.
|
||||
#-------------------------------
|
||||
[YACHEBERRY]
|
||||
@@ -4482,7 +4482,7 @@ Name = Yache Berry
|
||||
NamePlural = Yache Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_ICE_80
|
||||
Description = Weakens a supereffective Ice-type attack against the holding Pokémon.
|
||||
#-------------------------------
|
||||
[CHOPLEBERRY]
|
||||
@@ -4490,7 +4490,7 @@ Name = Chople Berry
|
||||
NamePlural = Chople Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_FIGHTING_80
|
||||
Description = Weakens a supereffective Fighting-type attack against the holding Pokémon.
|
||||
#-------------------------------
|
||||
[KEBIABERRY]
|
||||
@@ -4498,7 +4498,7 @@ Name = Kebia Berry
|
||||
NamePlural = Kebia Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_POISON_80
|
||||
Description = Weakens a supereffective Poison-type attack against the holding Pokémon.
|
||||
#-------------------------------
|
||||
[SHUCABERRY]
|
||||
@@ -4506,7 +4506,7 @@ Name = Shuca Berry
|
||||
NamePlural = Shuca Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_GROUND_80
|
||||
Description = Weakens a supereffective Ground-type attack against the holding Pokémon.
|
||||
#-------------------------------
|
||||
[COBABERRY]
|
||||
@@ -4514,7 +4514,7 @@ Name = Coba Berry
|
||||
NamePlural = Coba Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_FLYING_80
|
||||
Description = Weakens a supereffective Flying-type attack against the holding Pokémon.
|
||||
#-------------------------------
|
||||
[PAYAPABERRY]
|
||||
@@ -4522,7 +4522,7 @@ Name = Payapa Berry
|
||||
NamePlural = Payapa Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_PSYCHIC_80
|
||||
Description = Weakens a supereffective Psychic-type attack against the holding Pokémon.
|
||||
#-------------------------------
|
||||
[TANGABERRY]
|
||||
@@ -4530,7 +4530,7 @@ Name = Tanga Berry
|
||||
NamePlural = Tanga Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_BUG_80
|
||||
Description = Weakens a supereffective Bug-type attack against the holding Pokémon.
|
||||
#-------------------------------
|
||||
[CHARTIBERRY]
|
||||
@@ -4538,7 +4538,7 @@ Name = Charti Berry
|
||||
NamePlural = Charti Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_ROCK_80
|
||||
Description = Weakens a supereffective Rock-type attack against the holding Pokémon.
|
||||
#-------------------------------
|
||||
[KASIBBERRY]
|
||||
@@ -4546,7 +4546,7 @@ Name = Kasib Berry
|
||||
NamePlural = Kasib Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_GHOST_80
|
||||
Description = Weakens a supereffective Ghost-type attack against the holding Pokémon.
|
||||
#-------------------------------
|
||||
[HABANBERRY]
|
||||
@@ -4554,7 +4554,7 @@ Name = Haban Berry
|
||||
NamePlural = Haban Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_DRAGON_80
|
||||
Description = Weakens a supereffective Dragon-type attack against the holding Pokémon.
|
||||
#-------------------------------
|
||||
[COLBURBERRY]
|
||||
@@ -4562,7 +4562,7 @@ Name = Colbur Berry
|
||||
NamePlural = Colbur Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_DARK_80
|
||||
Description = Weakens a supereffective Dark-type attack against the holding Pokémon.
|
||||
#-------------------------------
|
||||
[BABIRIBERRY]
|
||||
@@ -4570,7 +4570,7 @@ Name = Babiri Berry
|
||||
NamePlural = Babiri Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_STEEL_80
|
||||
Description = Weakens a supereffective Steel-type attack against the holding Pokémon.
|
||||
#-------------------------------
|
||||
[ROSELIBERRY]
|
||||
@@ -4578,7 +4578,7 @@ Name = Roseli Berry
|
||||
NamePlural = Roseli Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_FAIRY_80
|
||||
Description = If held by a Pokémon, this Berry will lessen the damage taken from one supereffective Fairy-type attack.
|
||||
#-------------------------------
|
||||
[CHILANBERRY]
|
||||
@@ -4586,7 +4586,7 @@ Name = Chilan Berry
|
||||
NamePlural = Chilan Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_NORMAL_80
|
||||
Description = Weakens a Normal-type attack against the Pokémon holding this berry.
|
||||
#-------------------------------
|
||||
[LIECHIBERRY]
|
||||
@@ -4594,7 +4594,7 @@ Name = Liechi Berry
|
||||
NamePlural = Liechi Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_GRASS_100
|
||||
Description = If held by a Pokémon, it raises its Attack stat in a pinch.
|
||||
#-------------------------------
|
||||
[GANLONBERRY]
|
||||
@@ -4602,7 +4602,7 @@ Name = Ganlon Berry
|
||||
NamePlural = Ganlon Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_ICE_100
|
||||
Description = If held by a Pokémon, it raises its Defense stat in a pinch.
|
||||
#-------------------------------
|
||||
[SALACBERRY]
|
||||
@@ -4610,7 +4610,7 @@ Name = Salac Berry
|
||||
NamePlural = Salac Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_FIGHTING_100
|
||||
Description = If held by a Pokémon, it raises its Speed stat in a pinch.
|
||||
#-------------------------------
|
||||
[PETAYABERRY]
|
||||
@@ -4618,7 +4618,7 @@ Name = Petaya Berry
|
||||
NamePlural = Petaya Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_POISON_100
|
||||
Description = If held by a Pokémon, it raises its Sp. Atk stat in a pinch.
|
||||
#-------------------------------
|
||||
[APICOTBERRY]
|
||||
@@ -4626,7 +4626,7 @@ Name = Apicot Berry
|
||||
NamePlural = Apicot Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_GROUND_100
|
||||
Description = If held by a Pokémon, it raises its Sp. Def stat in a pinch.
|
||||
#-------------------------------
|
||||
[LANSATBERRY]
|
||||
@@ -4634,7 +4634,7 @@ Name = Lansat Berry
|
||||
NamePlural = Lansat Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_FLYING_100
|
||||
Description = If held by a Pokémon, it raises its critical-hit ratio in a pinch.
|
||||
#-------------------------------
|
||||
[STARFBERRY]
|
||||
@@ -4642,7 +4642,7 @@ Name = Starf Berry
|
||||
NamePlural = Starf Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_PSYCHIC_100
|
||||
Description = If held by a Pokémon, it sharply raises one of its stats in a pinch.
|
||||
#-------------------------------
|
||||
[ENIGMABERRY]
|
||||
@@ -4650,7 +4650,7 @@ Name = Enigma Berry
|
||||
NamePlural = Enigma Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_BUG_100
|
||||
Description = If held by a Pokémon, it restores its HP if it is hit by any supereffective attack.
|
||||
#-------------------------------
|
||||
[MICLEBERRY]
|
||||
@@ -4658,7 +4658,7 @@ Name = Micle Berry
|
||||
NamePlural = Micle Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_ROCK_100
|
||||
Description = If held by a Pokémon, it raises the accuracy of a move just once in a pinch.
|
||||
#-------------------------------
|
||||
[CUSTAPBERRY]
|
||||
@@ -4666,7 +4666,7 @@ Name = Custap Berry
|
||||
NamePlural = Custap Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_GHOST_100
|
||||
Description = If held by a Pokémon, it gets to move first just once in a pinch.
|
||||
#-------------------------------
|
||||
[JABOCABERRY]
|
||||
@@ -4674,7 +4674,7 @@ Name = Jaboca Berry
|
||||
NamePlural = Jaboca Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_DRAGON_100
|
||||
Description = If held by a Pokémon and a physical attack lands, the attacker also takes damage.
|
||||
#-------------------------------
|
||||
[ROWAPBERRY]
|
||||
@@ -4682,7 +4682,7 @@ Name = Rowap Berry
|
||||
NamePlural = Rowap Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_DARK_100
|
||||
Description = If held by a Pokémon and a special attack lands, the attacker also takes damage.
|
||||
#-------------------------------
|
||||
[KEEBERRY]
|
||||
@@ -4690,7 +4690,7 @@ Name = Kee Berry
|
||||
NamePlural = Kee Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_FAIRY_100
|
||||
Description = If held by a Pokémon, this Berry will increase the holder's Defense if it's hit with a physical move.
|
||||
#-------------------------------
|
||||
[MARANGABERRY]
|
||||
@@ -4698,7 +4698,7 @@ Name = Maranga Berry
|
||||
NamePlural = Maranga Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_DARK_100
|
||||
Description = If held by a Pokémon, this Berry will increase the holder's Sp. Def if it's hit with a special move.
|
||||
#-------------------------------
|
||||
[GRASSMAIL]
|
||||
|
||||
@@ -4745,7 +4745,7 @@ Pocket = 5
|
||||
Price = 20
|
||||
FieldUse = OnPokemon
|
||||
BattleUse = OnPokemon
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_FIRE_80
|
||||
Description = It may be used or held by a Pokémon to recover from paralysis.
|
||||
#-------------------------------
|
||||
[CHESTOBERRY]
|
||||
@@ -4755,7 +4755,7 @@ Pocket = 5
|
||||
Price = 20
|
||||
FieldUse = OnPokemon
|
||||
BattleUse = OnPokemon
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_WATER_80
|
||||
Description = It may be used or held by a Pokémon to recover from sleep.
|
||||
#-------------------------------
|
||||
[PECHABERRY]
|
||||
@@ -4765,7 +4765,7 @@ Pocket = 5
|
||||
Price = 20
|
||||
FieldUse = OnPokemon
|
||||
BattleUse = OnPokemon
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_ELECTRIC_80
|
||||
Description = It may be used or held by a Pokémon to recover from poison.
|
||||
#-------------------------------
|
||||
[RAWSTBERRY]
|
||||
@@ -4775,7 +4775,7 @@ Pocket = 5
|
||||
Price = 20
|
||||
FieldUse = OnPokemon
|
||||
BattleUse = OnPokemon
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_GRASS_80
|
||||
Description = It may be used or held by a Pokémon to recover from a burn.
|
||||
#-------------------------------
|
||||
[ASPEARBERRY]
|
||||
@@ -4785,7 +4785,7 @@ Pocket = 5
|
||||
Price = 20
|
||||
FieldUse = OnPokemon
|
||||
BattleUse = OnPokemon
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_ICE_80
|
||||
Description = It may be used or held by a Pokémon to defrost it.
|
||||
#-------------------------------
|
||||
[LEPPABERRY]
|
||||
@@ -4795,7 +4795,7 @@ Pocket = 5
|
||||
Price = 20
|
||||
FieldUse = OnPokemon
|
||||
BattleUse = OnMove
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_FIGHTING_80
|
||||
Description = It may be used or held by a Pokémon to restore a move's PP by 10.
|
||||
#-------------------------------
|
||||
[ORANBERRY]
|
||||
@@ -4805,7 +4805,7 @@ Pocket = 5
|
||||
Price = 20
|
||||
FieldUse = OnPokemon
|
||||
BattleUse = OnPokemon
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_POISON_80
|
||||
Description = It may be used or held by a Pokémon to heal the user by just 10 HP.
|
||||
#-------------------------------
|
||||
[PERSIMBERRY]
|
||||
@@ -4814,7 +4814,7 @@ NamePlural = Persim Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
BattleUse = OnBattler
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_GROUND_80
|
||||
Description = It may be used or held by a Pokémon to recover from confusion.
|
||||
#-------------------------------
|
||||
[LUMBERRY]
|
||||
@@ -4824,7 +4824,7 @@ Pocket = 5
|
||||
Price = 20
|
||||
FieldUse = OnPokemon
|
||||
BattleUse = OnPokemon
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_FLYING_80
|
||||
Description = It may be used or held by a Pokémon to recover from any status problem.
|
||||
#-------------------------------
|
||||
[SITRUSBERRY]
|
||||
@@ -4834,7 +4834,7 @@ Pocket = 5
|
||||
Price = 20
|
||||
FieldUse = OnPokemon
|
||||
BattleUse = OnPokemon
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_PSYCHIC_80
|
||||
Description = It may be used or held by a Pokémon to heal the user's HP a little.
|
||||
#-------------------------------
|
||||
[FIGYBERRY]
|
||||
@@ -4842,7 +4842,7 @@ Name = Figy Berry
|
||||
NamePlural = Figy Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_BUG_80
|
||||
Description = If held by a Pokémon, it restores the user's HP in a pinch, but will cause confusion if it hates the taste.
|
||||
#-------------------------------
|
||||
[WIKIBERRY]
|
||||
@@ -4850,7 +4850,7 @@ Name = Wiki Berry
|
||||
NamePlural = Wiki Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_ROCK_80
|
||||
Description = If held by a Pokémon, it restores the user's HP in a pinch, but will cause confusion if it hates the taste.
|
||||
#-------------------------------
|
||||
[MAGOBERRY]
|
||||
@@ -4858,7 +4858,7 @@ Name = Mago Berry
|
||||
NamePlural = Mago Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_GHOST_80
|
||||
Description = If held by a Pokémon, it restores the user's HP in a pinch, but will cause confusion if it hates the taste.
|
||||
#-------------------------------
|
||||
[AGUAVBERRY]
|
||||
@@ -4866,7 +4866,7 @@ Name = Aguav Berry
|
||||
NamePlural = Aguav Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_DRAGON_80
|
||||
Description = If held by a Pokémon, it restores the user's HP in a pinch, but will cause confusion if it hates the taste.
|
||||
#-------------------------------
|
||||
[IAPAPABERRY]
|
||||
@@ -4874,7 +4874,7 @@ Name = Iapapa Berry
|
||||
NamePlural = Iapapa Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_DARK_80
|
||||
Description = If held by a Pokémon, it restores the user's HP in a pinch, but will cause confusion if it hates the taste.
|
||||
#-------------------------------
|
||||
[RAZZBERRY]
|
||||
@@ -4882,7 +4882,7 @@ Name = Razz Berry
|
||||
NamePlural = Razz Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_STEEL_80
|
||||
Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry.
|
||||
#-------------------------------
|
||||
[BLUKBERRY]
|
||||
@@ -4890,7 +4890,7 @@ Name = Bluk Berry
|
||||
NamePlural = Bluk Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_FIRE_90
|
||||
Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry.
|
||||
#-------------------------------
|
||||
[NANABBERRY]
|
||||
@@ -4898,7 +4898,7 @@ Name = Nanab Berry
|
||||
NamePlural = Nanab Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_WATER_90
|
||||
Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry.
|
||||
#-------------------------------
|
||||
[WEPEARBERRY]
|
||||
@@ -4906,7 +4906,7 @@ Name = Wepear Berry
|
||||
NamePlural = Wepear Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_ELECTRIC_90
|
||||
Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry.
|
||||
#-------------------------------
|
||||
[PINAPBERRY]
|
||||
@@ -4914,7 +4914,7 @@ Name = Pinap Berry
|
||||
NamePlural = Pinap Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_GRASS_90
|
||||
Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry.
|
||||
#-------------------------------
|
||||
[POMEGBERRY]
|
||||
@@ -4923,7 +4923,7 @@ NamePlural = Pomeg Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
FieldUse = OnPokemon
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_ICE_90
|
||||
Description = Using it on a Pokémon makes it more friendly, but it also lowers its base HP.
|
||||
#-------------------------------
|
||||
[KELPSYBERRY]
|
||||
@@ -4932,7 +4932,7 @@ NamePlural = Kelpsy Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
FieldUse = OnPokemon
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_FIGHTING_90
|
||||
Description = Using it on a Pokémon makes it more friendly, but it also lowers its base Attack stat.
|
||||
#-------------------------------
|
||||
[QUALOTBERRY]
|
||||
@@ -4941,7 +4941,7 @@ NamePlural = Qualot Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
FieldUse = OnPokemon
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_POISON_90
|
||||
Description = Using it on a Pokémon makes it more friendly, but it also lowers its base Defense stat.
|
||||
#-------------------------------
|
||||
[HONDEWBERRY]
|
||||
@@ -4950,7 +4950,7 @@ NamePlural = Hondew Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
FieldUse = OnPokemon
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_GROUND_90
|
||||
Description = Using it on a Pokémon makes it more friendly, but it also lowers its base Sp. Atk stat.
|
||||
#-------------------------------
|
||||
[GREPABERRY]
|
||||
@@ -4959,7 +4959,7 @@ NamePlural = Grepa Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
FieldUse = OnPokemon
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_FLYING_90
|
||||
Description = Using it on a Pokémon makes it more friendly, but it also lowers its base Sp. Def stat.
|
||||
#-------------------------------
|
||||
[TAMATOBERRY]
|
||||
@@ -4968,7 +4968,7 @@ NamePlural = Tamato Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
FieldUse = OnPokemon
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_PSYCHIC_90
|
||||
Description = Using it on a Pokémon makes it more friendly, but it also lowers its base Speed stat.
|
||||
#-------------------------------
|
||||
[CORNNBERRY]
|
||||
@@ -4976,7 +4976,7 @@ Name = Cornn Berry
|
||||
NamePlural = Cornn Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_BUG_90
|
||||
Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry.
|
||||
#-------------------------------
|
||||
[MAGOSTBERRY]
|
||||
@@ -4984,7 +4984,7 @@ Name = Magost Berry
|
||||
NamePlural = Magost Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_ROCK_90
|
||||
Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry.
|
||||
#-------------------------------
|
||||
[RABUTABERRY]
|
||||
@@ -4992,7 +4992,7 @@ Name = Rabuta Berry
|
||||
NamePlural = Rabuta Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_GHOST_90
|
||||
Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry.
|
||||
#-------------------------------
|
||||
[NOMELBERRY]
|
||||
@@ -5000,7 +5000,7 @@ Name = Nomel Berry
|
||||
NamePlural = Nomel Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_DRAGON_90
|
||||
Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry.
|
||||
#-------------------------------
|
||||
[SPELONBERRY]
|
||||
@@ -5008,7 +5008,7 @@ Name = Spelon Berry
|
||||
NamePlural = Spelon Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_DARK_90
|
||||
Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry.
|
||||
#-------------------------------
|
||||
[PAMTREBERRY]
|
||||
@@ -5016,7 +5016,7 @@ Name = Pamtre Berry
|
||||
NamePlural = Pamtre Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_STEEL_90
|
||||
Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry.
|
||||
#-------------------------------
|
||||
[WATMELBERRY]
|
||||
@@ -5024,7 +5024,7 @@ Name = Watmel Berry
|
||||
NamePlural = Watmel Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_FIRE_100
|
||||
Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry.
|
||||
#-------------------------------
|
||||
[DURINBERRY]
|
||||
@@ -5032,7 +5032,7 @@ Name = Durin Berry
|
||||
NamePlural = Durin Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_WATER_100
|
||||
Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry.
|
||||
#-------------------------------
|
||||
[BELUEBERRY]
|
||||
@@ -5040,7 +5040,7 @@ Name = Belue Berry
|
||||
NamePlural = Belue Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_ELECTRIC_100
|
||||
Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry.
|
||||
#-------------------------------
|
||||
[OCCABERRY]
|
||||
@@ -5048,7 +5048,7 @@ Name = Occa Berry
|
||||
NamePlural = Occa Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_FIRE_80
|
||||
Description = Weakens a supereffective Fire-type attack against the holding Pokémon.
|
||||
#-------------------------------
|
||||
[PASSHOBERRY]
|
||||
@@ -5056,7 +5056,7 @@ Name = Passho Berry
|
||||
NamePlural = Passho Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_WATER_80
|
||||
Description = Weakens a supereffective Water-type attack against the holding Pokémon.
|
||||
#-------------------------------
|
||||
[WACANBERRY]
|
||||
@@ -5064,7 +5064,7 @@ Name = Wacan Berry
|
||||
NamePlural = Wacan Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_ELECTRIC_80
|
||||
Description = Weakens a supereffective Electric-type attack against the holding Pokémon.
|
||||
#-------------------------------
|
||||
[RINDOBERRY]
|
||||
@@ -5072,7 +5072,7 @@ Name = Rindo Berry
|
||||
NamePlural = Rindo Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_GRASS_80
|
||||
Description = Weakens a supereffective Grass-type attack against the holding Pokémon.
|
||||
#-------------------------------
|
||||
[YACHEBERRY]
|
||||
@@ -5080,7 +5080,7 @@ Name = Yache Berry
|
||||
NamePlural = Yache Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_ICE_80
|
||||
Description = Weakens a supereffective Ice-type attack against the holding Pokémon.
|
||||
#-------------------------------
|
||||
[CHOPLEBERRY]
|
||||
@@ -5088,7 +5088,7 @@ Name = Chople Berry
|
||||
NamePlural = Chople Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_FIGHTING_80
|
||||
Description = Weakens a supereffective Fighting-type attack against the holding Pokémon.
|
||||
#-------------------------------
|
||||
[KEBIABERRY]
|
||||
@@ -5096,7 +5096,7 @@ Name = Kebia Berry
|
||||
NamePlural = Kebia Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_POISON_80
|
||||
Description = Weakens a supereffective Poison-type attack against the holding Pokémon.
|
||||
#-------------------------------
|
||||
[SHUCABERRY]
|
||||
@@ -5104,7 +5104,7 @@ Name = Shuca Berry
|
||||
NamePlural = Shuca Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_GROUND_80
|
||||
Description = Weakens a supereffective Ground-type attack against the holding Pokémon.
|
||||
#-------------------------------
|
||||
[COBABERRY]
|
||||
@@ -5112,7 +5112,7 @@ Name = Coba Berry
|
||||
NamePlural = Coba Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_FLYING_80
|
||||
Description = Weakens a supereffective Flying-type attack against the holding Pokémon.
|
||||
#-------------------------------
|
||||
[PAYAPABERRY]
|
||||
@@ -5120,7 +5120,7 @@ Name = Payapa Berry
|
||||
NamePlural = Payapa Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_PSYCHIC_80
|
||||
Description = Weakens a supereffective Psychic-type attack against the holding Pokémon.
|
||||
#-------------------------------
|
||||
[TANGABERRY]
|
||||
@@ -5128,7 +5128,7 @@ Name = Tanga Berry
|
||||
NamePlural = Tanga Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_BUG_80
|
||||
Description = Weakens a supereffective Bug-type attack against the holding Pokémon.
|
||||
#-------------------------------
|
||||
[CHARTIBERRY]
|
||||
@@ -5136,7 +5136,7 @@ Name = Charti Berry
|
||||
NamePlural = Charti Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_ROCK_80
|
||||
Description = Weakens a supereffective Rock-type attack against the holding Pokémon.
|
||||
#-------------------------------
|
||||
[KASIBBERRY]
|
||||
@@ -5144,7 +5144,7 @@ Name = Kasib Berry
|
||||
NamePlural = Kasib Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_GHOST_80
|
||||
Description = Weakens a supereffective Ghost-type attack against the holding Pokémon.
|
||||
#-------------------------------
|
||||
[HABANBERRY]
|
||||
@@ -5152,7 +5152,7 @@ Name = Haban Berry
|
||||
NamePlural = Haban Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_DRAGON_80
|
||||
Description = Weakens a supereffective Dragon-type attack against the holding Pokémon.
|
||||
#-------------------------------
|
||||
[COLBURBERRY]
|
||||
@@ -5160,7 +5160,7 @@ Name = Colbur Berry
|
||||
NamePlural = Colbur Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_DARK_80
|
||||
Description = Weakens a supereffective Dark-type attack against the holding Pokémon.
|
||||
#-------------------------------
|
||||
[BABIRIBERRY]
|
||||
@@ -5168,7 +5168,7 @@ Name = Babiri Berry
|
||||
NamePlural = Babiri Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_STEEL_80
|
||||
Description = Weakens a supereffective Steel-type attack against the holding Pokémon.
|
||||
#-------------------------------
|
||||
[ROSELIBERRY]
|
||||
@@ -5176,7 +5176,7 @@ Name = Roseli Berry
|
||||
NamePlural = Roseli Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_FAIRY_80
|
||||
Description = If held by a Pokémon, this Berry will lessen the damage taken from one supereffective Fairy-type attack.
|
||||
#-------------------------------
|
||||
[CHILANBERRY]
|
||||
@@ -5184,7 +5184,7 @@ Name = Chilan Berry
|
||||
NamePlural = Chilan Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_NORMAL_80
|
||||
Description = Weakens a Normal-type attack against the Pokémon holding this berry.
|
||||
#-------------------------------
|
||||
[LIECHIBERRY]
|
||||
@@ -5192,7 +5192,7 @@ Name = Liechi Berry
|
||||
NamePlural = Liechi Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_GRASS_100
|
||||
Description = If held by a Pokémon, it raises its Attack stat in a pinch.
|
||||
#-------------------------------
|
||||
[GANLONBERRY]
|
||||
@@ -5200,7 +5200,7 @@ Name = Ganlon Berry
|
||||
NamePlural = Ganlon Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_ICE_100
|
||||
Description = If held by a Pokémon, it raises its Defense stat in a pinch.
|
||||
#-------------------------------
|
||||
[SALACBERRY]
|
||||
@@ -5208,7 +5208,7 @@ Name = Salac Berry
|
||||
NamePlural = Salac Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_FIGHTING_100
|
||||
Description = If held by a Pokémon, it raises its Speed stat in a pinch.
|
||||
#-------------------------------
|
||||
[PETAYABERRY]
|
||||
@@ -5216,7 +5216,7 @@ Name = Petaya Berry
|
||||
NamePlural = Petaya Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_POISON_100
|
||||
Description = If held by a Pokémon, it raises its Sp. Atk stat in a pinch.
|
||||
#-------------------------------
|
||||
[APICOTBERRY]
|
||||
@@ -5224,7 +5224,7 @@ Name = Apicot Berry
|
||||
NamePlural = Apicot Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_GROUND_100
|
||||
Description = If held by a Pokémon, it raises its Sp. Def stat in a pinch.
|
||||
#-------------------------------
|
||||
[LANSATBERRY]
|
||||
@@ -5232,7 +5232,7 @@ Name = Lansat Berry
|
||||
NamePlural = Lansat Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_FLYING_100
|
||||
Description = If held by a Pokémon, it raises its critical-hit ratio in a pinch.
|
||||
#-------------------------------
|
||||
[STARFBERRY]
|
||||
@@ -5240,7 +5240,7 @@ Name = Starf Berry
|
||||
NamePlural = Starf Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_PSYCHIC_100
|
||||
Description = If held by a Pokémon, it sharply raises one of its stats in a pinch.
|
||||
#-------------------------------
|
||||
[ENIGMABERRY]
|
||||
@@ -5248,7 +5248,7 @@ Name = Enigma Berry
|
||||
NamePlural = Enigma Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_BUG_100
|
||||
Description = If held by a Pokémon, it restores its HP if it is hit by any supereffective attack.
|
||||
#-------------------------------
|
||||
[MICLEBERRY]
|
||||
@@ -5256,7 +5256,7 @@ Name = Micle Berry
|
||||
NamePlural = Micle Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_ROCK_100
|
||||
Description = If held by a Pokémon, it raises the accuracy of a move just once in a pinch.
|
||||
#-------------------------------
|
||||
[CUSTAPBERRY]
|
||||
@@ -5264,7 +5264,7 @@ Name = Custap Berry
|
||||
NamePlural = Custap Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_GHOST_100
|
||||
Description = If held by a Pokémon, it gets to move first just once in a pinch.
|
||||
#-------------------------------
|
||||
[JABOCABERRY]
|
||||
@@ -5272,7 +5272,7 @@ Name = Jaboca Berry
|
||||
NamePlural = Jaboca Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_DRAGON_100
|
||||
Description = If held by a Pokémon and a physical attack lands, the attacker also takes damage.
|
||||
#-------------------------------
|
||||
[ROWAPBERRY]
|
||||
@@ -5280,7 +5280,7 @@ Name = Rowap Berry
|
||||
NamePlural = Rowap Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_DARK_100
|
||||
Description = If held by a Pokémon and a special attack lands, the attacker also takes damage.
|
||||
#-------------------------------
|
||||
[KEEBERRY]
|
||||
@@ -5288,7 +5288,7 @@ Name = Kee Berry
|
||||
NamePlural = Kee Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_FAIRY_100
|
||||
Description = If held by a Pokémon, this Berry will increase the holder's Defense if it's hit with a physical move.
|
||||
#-------------------------------
|
||||
[MARANGABERRY]
|
||||
@@ -5296,7 +5296,7 @@ Name = Maranga Berry
|
||||
NamePlural = Maranga Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_DARK_100
|
||||
Description = If held by a Pokémon, this Berry will increase the holder's Sp. Def if it's hit with a special move.
|
||||
#-------------------------------
|
||||
[GRASSMAIL]
|
||||
|
||||
134
PBS/items.txt
134
PBS/items.txt
@@ -4745,7 +4745,7 @@ Pocket = 5
|
||||
Price = 20
|
||||
FieldUse = OnPokemon
|
||||
BattleUse = OnPokemon
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_FIRE_80
|
||||
Description = It may be used or held by a Pokémon to recover from paralysis.
|
||||
#-------------------------------
|
||||
[CHESTOBERRY]
|
||||
@@ -4755,7 +4755,7 @@ Pocket = 5
|
||||
Price = 20
|
||||
FieldUse = OnPokemon
|
||||
BattleUse = OnPokemon
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_WATER_80
|
||||
Description = It may be used or held by a Pokémon to recover from sleep.
|
||||
#-------------------------------
|
||||
[PECHABERRY]
|
||||
@@ -4765,7 +4765,7 @@ Pocket = 5
|
||||
Price = 20
|
||||
FieldUse = OnPokemon
|
||||
BattleUse = OnPokemon
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_ELECTRIC_80
|
||||
Description = It may be used or held by a Pokémon to recover from poison.
|
||||
#-------------------------------
|
||||
[RAWSTBERRY]
|
||||
@@ -4775,7 +4775,7 @@ Pocket = 5
|
||||
Price = 20
|
||||
FieldUse = OnPokemon
|
||||
BattleUse = OnPokemon
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_GRASS_80
|
||||
Description = It may be used or held by a Pokémon to recover from a burn.
|
||||
#-------------------------------
|
||||
[ASPEARBERRY]
|
||||
@@ -4785,7 +4785,7 @@ Pocket = 5
|
||||
Price = 20
|
||||
FieldUse = OnPokemon
|
||||
BattleUse = OnPokemon
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_ICE_80
|
||||
Description = It may be used or held by a Pokémon to defrost it.
|
||||
#-------------------------------
|
||||
[LEPPABERRY]
|
||||
@@ -4795,7 +4795,7 @@ Pocket = 5
|
||||
Price = 20
|
||||
FieldUse = OnPokemon
|
||||
BattleUse = OnMove
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_FIGHTING_80
|
||||
Description = It may be used or held by a Pokémon to restore a move's PP by 10.
|
||||
#-------------------------------
|
||||
[ORANBERRY]
|
||||
@@ -4805,7 +4805,7 @@ Pocket = 5
|
||||
Price = 20
|
||||
FieldUse = OnPokemon
|
||||
BattleUse = OnPokemon
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_POISON_80
|
||||
Description = It may be used or held by a Pokémon to heal the user by just 10 HP.
|
||||
#-------------------------------
|
||||
[PERSIMBERRY]
|
||||
@@ -4814,7 +4814,7 @@ NamePlural = Persim Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
BattleUse = OnBattler
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_GROUND_80
|
||||
Description = It may be used or held by a Pokémon to recover from confusion.
|
||||
#-------------------------------
|
||||
[LUMBERRY]
|
||||
@@ -4824,7 +4824,7 @@ Pocket = 5
|
||||
Price = 20
|
||||
FieldUse = OnPokemon
|
||||
BattleUse = OnPokemon
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_FLYING_80
|
||||
Description = It may be used or held by a Pokémon to recover from any status problem.
|
||||
#-------------------------------
|
||||
[SITRUSBERRY]
|
||||
@@ -4834,7 +4834,7 @@ Pocket = 5
|
||||
Price = 20
|
||||
FieldUse = OnPokemon
|
||||
BattleUse = OnPokemon
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_PSYCHIC_80
|
||||
Description = It may be used or held by a Pokémon to heal the user's HP a little.
|
||||
#-------------------------------
|
||||
[FIGYBERRY]
|
||||
@@ -4842,7 +4842,7 @@ Name = Figy Berry
|
||||
NamePlural = Figy Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_BUG_80
|
||||
Description = If held by a Pokémon, it restores the user's HP in a pinch, but will cause confusion if it hates the taste.
|
||||
#-------------------------------
|
||||
[WIKIBERRY]
|
||||
@@ -4850,7 +4850,7 @@ Name = Wiki Berry
|
||||
NamePlural = Wiki Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_ROCK_80
|
||||
Description = If held by a Pokémon, it restores the user's HP in a pinch, but will cause confusion if it hates the taste.
|
||||
#-------------------------------
|
||||
[MAGOBERRY]
|
||||
@@ -4858,7 +4858,7 @@ Name = Mago Berry
|
||||
NamePlural = Mago Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_GHOST_80
|
||||
Description = If held by a Pokémon, it restores the user's HP in a pinch, but will cause confusion if it hates the taste.
|
||||
#-------------------------------
|
||||
[AGUAVBERRY]
|
||||
@@ -4866,7 +4866,7 @@ Name = Aguav Berry
|
||||
NamePlural = Aguav Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_DRAGON_80
|
||||
Description = If held by a Pokémon, it restores the user's HP in a pinch, but will cause confusion if it hates the taste.
|
||||
#-------------------------------
|
||||
[IAPAPABERRY]
|
||||
@@ -4874,7 +4874,7 @@ Name = Iapapa Berry
|
||||
NamePlural = Iapapa Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_DARK_80
|
||||
Description = If held by a Pokémon, it restores the user's HP in a pinch, but will cause confusion if it hates the taste.
|
||||
#-------------------------------
|
||||
[RAZZBERRY]
|
||||
@@ -4882,7 +4882,7 @@ Name = Razz Berry
|
||||
NamePlural = Razz Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_STEEL_80
|
||||
Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry.
|
||||
#-------------------------------
|
||||
[BLUKBERRY]
|
||||
@@ -4890,7 +4890,7 @@ Name = Bluk Berry
|
||||
NamePlural = Bluk Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_FIRE_90
|
||||
Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry.
|
||||
#-------------------------------
|
||||
[NANABBERRY]
|
||||
@@ -4898,7 +4898,7 @@ Name = Nanab Berry
|
||||
NamePlural = Nanab Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_WATER_90
|
||||
Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry.
|
||||
#-------------------------------
|
||||
[WEPEARBERRY]
|
||||
@@ -4906,7 +4906,7 @@ Name = Wepear Berry
|
||||
NamePlural = Wepear Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_ELECTRIC_90
|
||||
Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry.
|
||||
#-------------------------------
|
||||
[PINAPBERRY]
|
||||
@@ -4914,7 +4914,7 @@ Name = Pinap Berry
|
||||
NamePlural = Pinap Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_GRASS_90
|
||||
Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry.
|
||||
#-------------------------------
|
||||
[POMEGBERRY]
|
||||
@@ -4923,7 +4923,7 @@ NamePlural = Pomeg Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
FieldUse = OnPokemon
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_ICE_90
|
||||
Description = Using it on a Pokémon makes it more friendly, but it also lowers its base HP.
|
||||
#-------------------------------
|
||||
[KELPSYBERRY]
|
||||
@@ -4932,7 +4932,7 @@ NamePlural = Kelpsy Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
FieldUse = OnPokemon
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_FIGHTING_90
|
||||
Description = Using it on a Pokémon makes it more friendly, but it also lowers its base Attack stat.
|
||||
#-------------------------------
|
||||
[QUALOTBERRY]
|
||||
@@ -4941,7 +4941,7 @@ NamePlural = Qualot Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
FieldUse = OnPokemon
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_POISON_90
|
||||
Description = Using it on a Pokémon makes it more friendly, but it also lowers its base Defense stat.
|
||||
#-------------------------------
|
||||
[HONDEWBERRY]
|
||||
@@ -4950,7 +4950,7 @@ NamePlural = Hondew Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
FieldUse = OnPokemon
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_GROUND_90
|
||||
Description = Using it on a Pokémon makes it more friendly, but it also lowers its base Sp. Atk stat.
|
||||
#-------------------------------
|
||||
[GREPABERRY]
|
||||
@@ -4959,7 +4959,7 @@ NamePlural = Grepa Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
FieldUse = OnPokemon
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_FLYING_90
|
||||
Description = Using it on a Pokémon makes it more friendly, but it also lowers its base Sp. Def stat.
|
||||
#-------------------------------
|
||||
[TAMATOBERRY]
|
||||
@@ -4968,7 +4968,7 @@ NamePlural = Tamato Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
FieldUse = OnPokemon
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_PSYCHIC_90
|
||||
Description = Using it on a Pokémon makes it more friendly, but it also lowers its base Speed stat.
|
||||
#-------------------------------
|
||||
[CORNNBERRY]
|
||||
@@ -4976,7 +4976,7 @@ Name = Cornn Berry
|
||||
NamePlural = Cornn Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_BUG_90
|
||||
Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry.
|
||||
#-------------------------------
|
||||
[MAGOSTBERRY]
|
||||
@@ -4984,7 +4984,7 @@ Name = Magost Berry
|
||||
NamePlural = Magost Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_ROCK_90
|
||||
Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry.
|
||||
#-------------------------------
|
||||
[RABUTABERRY]
|
||||
@@ -4992,7 +4992,7 @@ Name = Rabuta Berry
|
||||
NamePlural = Rabuta Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_GHOST_90
|
||||
Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry.
|
||||
#-------------------------------
|
||||
[NOMELBERRY]
|
||||
@@ -5000,7 +5000,7 @@ Name = Nomel Berry
|
||||
NamePlural = Nomel Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_DRAGON_90
|
||||
Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry.
|
||||
#-------------------------------
|
||||
[SPELONBERRY]
|
||||
@@ -5008,7 +5008,7 @@ Name = Spelon Berry
|
||||
NamePlural = Spelon Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_DARK_90
|
||||
Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry.
|
||||
#-------------------------------
|
||||
[PAMTREBERRY]
|
||||
@@ -5016,7 +5016,7 @@ Name = Pamtre Berry
|
||||
NamePlural = Pamtre Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_STEEL_90
|
||||
Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry.
|
||||
#-------------------------------
|
||||
[WATMELBERRY]
|
||||
@@ -5024,7 +5024,7 @@ Name = Watmel Berry
|
||||
NamePlural = Watmel Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_FIRE_100
|
||||
Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry.
|
||||
#-------------------------------
|
||||
[DURINBERRY]
|
||||
@@ -5032,7 +5032,7 @@ Name = Durin Berry
|
||||
NamePlural = Durin Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_WATER_100
|
||||
Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry.
|
||||
#-------------------------------
|
||||
[BELUEBERRY]
|
||||
@@ -5040,7 +5040,7 @@ Name = Belue Berry
|
||||
NamePlural = Belue Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_ELECTRIC_100
|
||||
Description = In the Sinnoh region, they like to make sweets known as Poffins with this Berry.
|
||||
#-------------------------------
|
||||
[OCCABERRY]
|
||||
@@ -5048,7 +5048,7 @@ Name = Occa Berry
|
||||
NamePlural = Occa Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_FIRE_80
|
||||
Description = Weakens a supereffective Fire-type attack against the holding Pokémon.
|
||||
#-------------------------------
|
||||
[PASSHOBERRY]
|
||||
@@ -5056,7 +5056,7 @@ Name = Passho Berry
|
||||
NamePlural = Passho Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_WATER_80
|
||||
Description = Weakens a supereffective Water-type attack against the holding Pokémon.
|
||||
#-------------------------------
|
||||
[WACANBERRY]
|
||||
@@ -5064,7 +5064,7 @@ Name = Wacan Berry
|
||||
NamePlural = Wacan Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_ELECTRIC_80
|
||||
Description = Weakens a supereffective Electric-type attack against the holding Pokémon.
|
||||
#-------------------------------
|
||||
[RINDOBERRY]
|
||||
@@ -5072,7 +5072,7 @@ Name = Rindo Berry
|
||||
NamePlural = Rindo Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_GRASS_80
|
||||
Description = Weakens a supereffective Grass-type attack against the holding Pokémon.
|
||||
#-------------------------------
|
||||
[YACHEBERRY]
|
||||
@@ -5080,7 +5080,7 @@ Name = Yache Berry
|
||||
NamePlural = Yache Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_ICE_80
|
||||
Description = Weakens a supereffective Ice-type attack against the holding Pokémon.
|
||||
#-------------------------------
|
||||
[CHOPLEBERRY]
|
||||
@@ -5088,7 +5088,7 @@ Name = Chople Berry
|
||||
NamePlural = Chople Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_FIGHTING_80
|
||||
Description = Weakens a supereffective Fighting-type attack against the holding Pokémon.
|
||||
#-------------------------------
|
||||
[KEBIABERRY]
|
||||
@@ -5096,7 +5096,7 @@ Name = Kebia Berry
|
||||
NamePlural = Kebia Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_POISON_80
|
||||
Description = Weakens a supereffective Poison-type attack against the holding Pokémon.
|
||||
#-------------------------------
|
||||
[SHUCABERRY]
|
||||
@@ -5104,7 +5104,7 @@ Name = Shuca Berry
|
||||
NamePlural = Shuca Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_GROUND_80
|
||||
Description = Weakens a supereffective Ground-type attack against the holding Pokémon.
|
||||
#-------------------------------
|
||||
[COBABERRY]
|
||||
@@ -5112,7 +5112,7 @@ Name = Coba Berry
|
||||
NamePlural = Coba Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_FLYING_80
|
||||
Description = Weakens a supereffective Flying-type attack against the holding Pokémon.
|
||||
#-------------------------------
|
||||
[PAYAPABERRY]
|
||||
@@ -5120,7 +5120,7 @@ Name = Payapa Berry
|
||||
NamePlural = Payapa Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_PSYCHIC_80
|
||||
Description = Weakens a supereffective Psychic-type attack against the holding Pokémon.
|
||||
#-------------------------------
|
||||
[TANGABERRY]
|
||||
@@ -5128,7 +5128,7 @@ Name = Tanga Berry
|
||||
NamePlural = Tanga Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_BUG_80
|
||||
Description = Weakens a supereffective Bug-type attack against the holding Pokémon.
|
||||
#-------------------------------
|
||||
[CHARTIBERRY]
|
||||
@@ -5136,7 +5136,7 @@ Name = Charti Berry
|
||||
NamePlural = Charti Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_ROCK_80
|
||||
Description = Weakens a supereffective Rock-type attack against the holding Pokémon.
|
||||
#-------------------------------
|
||||
[KASIBBERRY]
|
||||
@@ -5144,7 +5144,7 @@ Name = Kasib Berry
|
||||
NamePlural = Kasib Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_GHOST_80
|
||||
Description = Weakens a supereffective Ghost-type attack against the holding Pokémon.
|
||||
#-------------------------------
|
||||
[HABANBERRY]
|
||||
@@ -5152,7 +5152,7 @@ Name = Haban Berry
|
||||
NamePlural = Haban Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_DRAGON_80
|
||||
Description = Weakens a supereffective Dragon-type attack against the holding Pokémon.
|
||||
#-------------------------------
|
||||
[COLBURBERRY]
|
||||
@@ -5160,7 +5160,7 @@ Name = Colbur Berry
|
||||
NamePlural = Colbur Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_DARK_80
|
||||
Description = Weakens a supereffective Dark-type attack against the holding Pokémon.
|
||||
#-------------------------------
|
||||
[BABIRIBERRY]
|
||||
@@ -5168,7 +5168,7 @@ Name = Babiri Berry
|
||||
NamePlural = Babiri Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_STEEL_80
|
||||
Description = Weakens a supereffective Steel-type attack against the holding Pokémon.
|
||||
#-------------------------------
|
||||
[ROSELIBERRY]
|
||||
@@ -5176,7 +5176,7 @@ Name = Roseli Berry
|
||||
NamePlural = Roseli Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_FAIRY_80
|
||||
Description = If held by a Pokémon, this Berry will lessen the damage taken from one supereffective Fairy-type attack.
|
||||
#-------------------------------
|
||||
[CHILANBERRY]
|
||||
@@ -5184,7 +5184,7 @@ Name = Chilan Berry
|
||||
NamePlural = Chilan Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_NORMAL_80
|
||||
Description = Weakens a Normal-type attack against the Pokémon holding this berry.
|
||||
#-------------------------------
|
||||
[LIECHIBERRY]
|
||||
@@ -5192,7 +5192,7 @@ Name = Liechi Berry
|
||||
NamePlural = Liechi Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_GRASS_100
|
||||
Description = If held by a Pokémon, it raises its Attack stat in a pinch.
|
||||
#-------------------------------
|
||||
[GANLONBERRY]
|
||||
@@ -5200,7 +5200,7 @@ Name = Ganlon Berry
|
||||
NamePlural = Ganlon Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_ICE_100
|
||||
Description = If held by a Pokémon, it raises its Defense stat in a pinch.
|
||||
#-------------------------------
|
||||
[SALACBERRY]
|
||||
@@ -5208,7 +5208,7 @@ Name = Salac Berry
|
||||
NamePlural = Salac Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_FIGHTING_100
|
||||
Description = If held by a Pokémon, it raises its Speed stat in a pinch.
|
||||
#-------------------------------
|
||||
[PETAYABERRY]
|
||||
@@ -5216,7 +5216,7 @@ Name = Petaya Berry
|
||||
NamePlural = Petaya Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_POISON_100
|
||||
Description = If held by a Pokémon, it raises its Sp. Atk stat in a pinch.
|
||||
#-------------------------------
|
||||
[APICOTBERRY]
|
||||
@@ -5224,7 +5224,7 @@ Name = Apicot Berry
|
||||
NamePlural = Apicot Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_GROUND_100
|
||||
Description = If held by a Pokémon, it raises its Sp. Def stat in a pinch.
|
||||
#-------------------------------
|
||||
[LANSATBERRY]
|
||||
@@ -5232,7 +5232,7 @@ Name = Lansat Berry
|
||||
NamePlural = Lansat Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_FLYING_100
|
||||
Description = If held by a Pokémon, it raises its critical-hit ratio in a pinch.
|
||||
#-------------------------------
|
||||
[STARFBERRY]
|
||||
@@ -5240,7 +5240,7 @@ Name = Starf Berry
|
||||
NamePlural = Starf Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_PSYCHIC_100
|
||||
Description = If held by a Pokémon, it sharply raises one of its stats in a pinch.
|
||||
#-------------------------------
|
||||
[ENIGMABERRY]
|
||||
@@ -5248,7 +5248,7 @@ Name = Enigma Berry
|
||||
NamePlural = Enigma Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_BUG_100
|
||||
Description = If held by a Pokémon, it restores its HP if it is hit by any supereffective attack.
|
||||
#-------------------------------
|
||||
[MICLEBERRY]
|
||||
@@ -5256,7 +5256,7 @@ Name = Micle Berry
|
||||
NamePlural = Micle Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_ROCK_100
|
||||
Description = If held by a Pokémon, it raises the accuracy of a move just once in a pinch.
|
||||
#-------------------------------
|
||||
[CUSTAPBERRY]
|
||||
@@ -5264,7 +5264,7 @@ Name = Custap Berry
|
||||
NamePlural = Custap Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_GHOST_100
|
||||
Description = If held by a Pokémon, it gets to move first just once in a pinch.
|
||||
#-------------------------------
|
||||
[JABOCABERRY]
|
||||
@@ -5272,7 +5272,7 @@ Name = Jaboca Berry
|
||||
NamePlural = Jaboca Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_DRAGON_100
|
||||
Description = If held by a Pokémon and a physical attack lands, the attacker also takes damage.
|
||||
#-------------------------------
|
||||
[ROWAPBERRY]
|
||||
@@ -5280,7 +5280,7 @@ Name = Rowap Berry
|
||||
NamePlural = Rowap Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_DARK_100
|
||||
Description = If held by a Pokémon and a special attack lands, the attacker also takes damage.
|
||||
#-------------------------------
|
||||
[KEEBERRY]
|
||||
@@ -5288,7 +5288,7 @@ Name = Kee Berry
|
||||
NamePlural = Kee Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_FAIRY_100
|
||||
Description = If held by a Pokémon, this Berry will increase the holder's Defense if it's hit with a physical move.
|
||||
#-------------------------------
|
||||
[MARANGABERRY]
|
||||
@@ -5296,7 +5296,7 @@ Name = Maranga Berry
|
||||
NamePlural = Maranga Berries
|
||||
Pocket = 5
|
||||
Price = 20
|
||||
Flags = Berry,Fling_10
|
||||
Flags = Berry,Fling_10,NaturalGift_DARK_100
|
||||
Description = If held by a Pokémon, this Berry will increase the holder's Sp. Def if it's hit with a special move.
|
||||
#-------------------------------
|
||||
[GRASSMAIL]
|
||||
|
||||
Reference in New Issue
Block a user