2016-09-07 18:50:38 +02:00
|
|
|
Namespace Items.Berries
|
|
|
|
|
2016-09-19 04:34:12 +02:00
|
|
|
<Item(2045, "Tanga")>
|
2016-09-07 18:50:38 +02:00
|
|
|
Public Class TangaBerry
|
|
|
|
|
|
|
|
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 Bug-type attack.", "4.3cm", "Very Soft", 1, 5)
|
2016-09-07 18:50:38 +02:00
|
|
|
|
|
|
|
Me.Spicy = 20
|
|
|
|
Me.Dry = 0
|
|
|
|
Me.Sweet = 0
|
|
|
|
Me.Bitter = 0
|
|
|
|
Me.Sour = 10
|
|
|
|
|
|
|
|
Me.Type = Element.Types.Bug
|
2019-09-22 23:43:13 +02:00
|
|
|
Me.Power = 80
|
2016-09-07 18:50:38 +02:00
|
|
|
End Sub
|
|
|
|
|
|
|
|
End Class
|
|
|
|
|
2016-09-19 04:34:12 +02:00
|
|
|
End Namespace
|