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

24 lines
534 B
VB.net
Raw Normal View History

2016-09-07 18:50:38 +02:00
Namespace Items.Berries
<Item(2042, "Shuca")>
2016-09-07 18:50:38 +02:00
Public Class ShucaBerry
Inherits Berry
Public Sub New()
2016-09-20 05:42:56 +02:00
MyBase.New(64800, "If held by a Pokémon, this Berry will lessen the damage taken from one supereffective Ground-type attack.", "4.2cm", "Soft", 1, 5)
2016-09-07 18:50:38 +02:00
Me.Spicy = 10
Me.Dry = 0
Me.Sweet = 15
Me.Bitter = 0
Me.Sour = 0
Me.Type = Element.Types.Ground
Me.Power = 60
End Sub
End Class
End Namespace