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

24 lines
503 B
VB.net
Raw Normal View History

2016-09-07 18:50:38 +02:00
Namespace Items.Berries
<Item(2061, "Custap")>
2016-09-07 18:50:38 +02:00
Public Class CustapBerry
Inherits Berry
Public Sub New()
2016-09-20 05:42:56 +02:00
MyBase.New(86400, "If held by a Pokémon, it gets to move first just once in a pinch.", "26.7cm", "Super Hard", 1, 5)
2016-09-07 18:50:38 +02:00
Me.Spicy = 0
Me.Dry = 0
Me.Sweet = 40
Me.Bitter = 10
Me.Sour = 0
Me.Type = Element.Types.Ghost
Me.Power = 100
2016-09-07 18:50:38 +02:00
End Sub
End Class
End Namespace