26 lines
611 B
VB.net
26 lines
611 B
VB.net
Namespace Items.Berries
|
|
|
|
<Item(2054, "Salac")>
|
|
Public Class SalacBerry
|
|
|
|
Inherits Berry
|
|
|
|
Public Sub New()
|
|
MyBase.New(86400, "A Berry to be held by Pokémon. If a Pokémon holds one, its Speed stat will increase when it's in a pinch. ", "9.4cm", "Very Hard", 1, 2)
|
|
|
|
Me.Spicy = 0
|
|
Me.Dry = 0
|
|
Me.Sweet = 30
|
|
Me.Bitter = 10
|
|
Me.Sour = 30
|
|
|
|
Me.Type = Element.Types.Fighting
|
|
Me.Power = 100
|
|
Me.JuiceColor = "green"
|
|
Me.JuiceGroup = 3
|
|
End Sub
|
|
|
|
End Class
|
|
|
|
End Namespace
|