P3D-Legacy/P3D/Pokemon/Items/Berries/LumBerry.vb

24 lines
550 B
VB.net
Raw Normal View History

2016-09-07 18:50:38 +02:00
Namespace Items.Berries
<Item(2008, "Lum")>
2016-09-07 18:50:38 +02:00
Public Class LumBerry
Inherits Berry
Public Sub New()
2016-09-20 05:42:56 +02:00
MyBase.New(43200, "A berry to be consumed by a Pokémon. If a Pokémon holds one, it can recover from any status condition during battle.", "3.4cm", "Super Hard", 1, 2)
2016-09-07 18:50:38 +02:00
Me.Spicy = 10
Me.Dry = 10
Me.Sweet = 10
Me.Bitter = 10
Me.Sour = 0
Me.Type = Element.Types.Flying
Me.Power = 60
End Sub
End Class
End Namespace