2016-09-07 18:50:38 +02:00
|
|
|
Namespace Items.Berries
|
|
|
|
|
2016-09-19 04:34:12 +02:00
|
|
|
<Item(2007, "Persim")>
|
2016-09-07 18:50:38 +02:00
|
|
|
Public Class PersimBerry
|
|
|
|
|
|
|
|
Inherits Berry
|
|
|
|
|
|
|
|
Public Sub New()
|
2016-09-20 05:42:56 +02:00
|
|
|
MyBase.New(14400, "A Berry to be consumed by Pokémon. If a Pokémon holds one, it can recover from confusion on its own in battle.", "4.7cm", "Hard", 2, 3)
|
2016-09-07 18:50:38 +02:00
|
|
|
|
|
|
|
Me.Spicy = 10
|
|
|
|
Me.Dry = 10
|
|
|
|
Me.Sweet = 10
|
|
|
|
Me.Bitter = 0
|
|
|
|
Me.Sour = 10
|
|
|
|
|
|
|
|
Me.Type = Element.Types.Ground
|
2019-09-22 23:43:13 +02:00
|
|
|
Me.Power = 80
|
2016-09-07 18:50:38 +02:00
|
|
|
End Sub
|
|
|
|
|
|
|
|
End Class
|
|
|
|
|
2016-09-19 04:34:12 +02:00
|
|
|
End Namespace
|