P3D-Legacy/P3D/Pokemon/Items/Berries/GanlonBerry.vb

26 lines
614 B
VB.net
Raw Normal View History

2016-09-07 18:50:38 +02:00
Namespace Items.Berries
<Item(2053, "Ganlon")>
2016-09-07 18:50:38 +02:00
Public Class GanlonBerry
Inherits Berry
Public Sub New()
2016-09-20 05:42:56 +02:00
MyBase.New(86400, "A Berry to be consumed by Pokémon. If a Pokémon holds one, its Defense stat will increase when it's in a pinch.", "3.3cm", "Very Hard", 1, 2)
2016-09-07 18:50:38 +02:00
Me.Spicy = 0
Me.Dry = 30
Me.Sweet = 10
Me.Bitter = 30
Me.Sour = 0
Me.Type = Element.Types.Ice
Me.Power = 100
2023-05-31 00:54:26 +02:00
Me.JuiceColor = "purple"
Me.JuiceGroup = 3
2016-09-07 18:50:38 +02:00
End Sub
End Class
End Namespace