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

24 lines
510 B
VB.net
Raw Normal View History

2016-09-07 18:50:38 +02:00
Namespace Items.Berries
<Item(2063, "Rowap")>
2016-09-07 18:50:38 +02:00
Public Class RowapBerry
Inherits Berry
Public Sub New()
2016-09-20 05:42:56 +02:00
MyBase.New(86400, "If held by a Pokémon and a special attack lands, the attacker takes damage. ", "13.2cm", "Very Soft", 1, 5)
2016-09-07 18:50:38 +02:00
Me.Spicy = 10
Me.Dry = 0
Me.Sweet = 0
Me.Bitter = 0
Me.Sour = 40
Me.Type = Element.Types.Dark
Me.Power = 100
2016-09-07 18:50:38 +02:00
End Sub
End Class
End Namespace