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

24 lines
552 B
VB.net
Raw Normal View History

2016-09-07 18:50:38 +02:00
Namespace Items.Berries
<Item(2057, "Lansat")>
2016-09-07 18:50:38 +02:00
Public Class LansatBerry
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 critical-hit ratio will increase when it's in a pinch.", "9.7cm", "Soft", 1, 2)
2016-09-07 18:50:38 +02:00
Me.Spicy = 30
Me.Dry = 10
Me.Sweet = 30
Me.Bitter = 10
Me.Sour = 30
Me.Type = Element.Types.Flying
Me.Power = 80
End Sub
End Class
End Namespace