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

26 lines
611 B
VB.net

Namespace Items.Berries
<Item(2037, "Wacan")>
Public Class WacanBerry
Inherits Berry
Public Sub New()
MyBase.New(64800, "If held by a Pokémon, this berry will lessen the damage taken from one supereffective Electric-type attack.", "25.0cm", "Very Soft", 1, 5)
Me.Spicy = 0
Me.Dry = 0
Me.Sweet = 15
Me.Bitter = 0
Me.Sour = 10
Me.Type = Element.Types.Electric
Me.Power = 80
Me.JuiceColor = "yellow"
Me.JuiceGroup = 2
End Sub
End Class
End Namespace