24 lines
533 B
VB.net
24 lines
533 B
VB.net
Namespace Items.Berries
|
|
|
|
<Item(2047, "Kasib")>
|
|
Public Class KasibBerry
|
|
|
|
Inherits Berry
|
|
|
|
Public Sub New()
|
|
MyBase.New(64800, "If held by a Pokémon, this Berry will lessen the damage taken from one supereffective Ghost-type attack.", "14.4cm", "Hard", 1, 5)
|
|
|
|
Me.Spicy = 0
|
|
Me.Dry = 10
|
|
Me.Sweet = 20
|
|
Me.Bitter = 0
|
|
Me.Sour = 0
|
|
|
|
Me.Type = Element.Types.Ghost
|
|
Me.Power = 80
|
|
End Sub
|
|
|
|
End Class
|
|
|
|
End Namespace
|