24 lines
503 B
VB.net
24 lines
503 B
VB.net
Namespace Items.Berries
|
|
|
|
<Item(2061, "Custap")>
|
|
Public Class CustapBerry
|
|
|
|
Inherits Berry
|
|
|
|
Public Sub New()
|
|
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)
|
|
|
|
Me.Spicy = 0
|
|
Me.Dry = 0
|
|
Me.Sweet = 40
|
|
Me.Bitter = 10
|
|
Me.Sour = 0
|
|
|
|
Me.Type = Element.Types.Ghost
|
|
Me.Power = 100
|
|
End Sub
|
|
|
|
End Class
|
|
|
|
End Namespace
|