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

24 lines
545 B
VB.net
Raw Normal View History

2016-09-07 18:50:38 +02:00
Namespace Items.Berries
<Item(2014, "Iapapa")>
2016-09-07 18:50:38 +02:00
Public Class IapapaBerry
Inherits Berry
Public Sub New()
2016-09-20 05:42:56 +02:00
MyBase.New(21600, "If held by a Pokémon, it restores the user's HP in a pinch, but it will cause confusion if the user hates the taste.", "22.3cm", "Soft", 2, 3)
2016-09-07 18:50:38 +02:00
Me.Spicy = 0
Me.Dry = 0
Me.Sweet = 0
Me.Bitter = 0
Me.Sour = 15
Me.Type = Element.Types.Dark
Me.Power = 60
End Sub
End Class
End Namespace