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

26 lines
599 B
VB.net
Raw Normal View History

2016-09-07 18:50:38 +02:00
Namespace Items.Berries
<Item(2039, "Yache")>
2016-09-07 18:50:38 +02:00
Public Class YacheBerry
Inherits Berry
Public Sub New()
2016-09-20 05:42:56 +02:00
MyBase.New(64800, "If held by a Pokémon, this Berry will lessen the damage taken from one supereffective Ice-type attack.", "13.5cm", "Very Hard", 1, 5)
2016-09-07 18:50:38 +02:00
Me.Spicy = 0
Me.Dry = 10
Me.Sweet = 0
Me.Bitter = 15
Me.Sour = 0
Me.Type = Element.Types.Ice
Me.Power = 80
2023-05-31 00:54:26 +02:00
Me.JuiceColor = "blue"
Me.JuiceGroup = 2
2016-09-07 18:50:38 +02:00
End Sub
End Class
End Namespace