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

24 lines
534 B
VB.net

Namespace Items.Berries
<Item(2036, "Passho")>
Public Class PasshoBerry
Inherits Berry
Public Sub New()
MyBase.New(64800, "If held by a Pokémon, this Berry will lessen the damage taken from one supereffective Water-type attack.", "3.3cm", "Soft", 1, 5)
Me.Spicy = 0
Me.Dry = 15
Me.Sweet = 0
Me.Bitter = 10
Me.Sour = 0
Me.Type = Element.Types.Water
Me.Power = 80
End Sub
End Class
End Namespace