2016-09-07 18:50:38 +02:00
|
|
|
Namespace Items.Berries
|
|
|
|
|
2016-09-19 04:34:12 +02:00
|
|
|
<Item(2030, "Spelon")>
|
2016-09-07 18:50:38 +02:00
|
|
|
Public Class SpelonBerry
|
|
|
|
|
|
|
|
Inherits Berry
|
|
|
|
|
|
|
|
Public Sub New()
|
2018-01-07 18:01:32 +01:00
|
|
|
MyBase.New(64800, "Pokéblock ingredient." & Environment.NewLine & "Plant in loamy soil to grow Spelon.", "13.2cm", "Soft", 1, 2)
|
2016-09-07 18:50:38 +02:00
|
|
|
|
|
|
|
Me.Spicy = 30
|
|
|
|
Me.Dry = 10
|
|
|
|
Me.Sweet = 0
|
|
|
|
Me.Bitter = 0
|
|
|
|
Me.Sour = 0
|
|
|
|
|
|
|
|
Me.Type = Element.Types.Dark
|
2019-09-22 23:43:13 +02:00
|
|
|
Me.Power = 90
|
2016-09-07 18:50:38 +02:00
|
|
|
End Sub
|
|
|
|
|
|
|
|
End Class
|
|
|
|
|
2016-09-19 04:34:12 +02:00
|
|
|
End Namespace
|