2016-09-19 04:34:12 +02:00
|
|
|
Namespace Items.Wings
|
2016-09-07 18:50:38 +02:00
|
|
|
|
2016-09-19 04:34:12 +02:00
|
|
|
<Item(261, "Sticky Wing")>
|
2016-09-07 18:50:38 +02:00
|
|
|
Public Class StickyWing
|
|
|
|
|
|
|
|
Inherits Item
|
|
|
|
|
2016-09-21 00:15:51 +02:00
|
|
|
Public Overrides ReadOnly Property CanBeUsed As Boolean = False
|
|
|
|
Public Overrides ReadOnly Property CanBeUsedInBattle As Boolean = False
|
2023-01-27 17:32:19 +01:00
|
|
|
Public Overrides ReadOnly Property Description As String = "It's a feather that sticks to other feathers, a Pokémon that holds it will find more feathers."
|
2016-09-21 00:15:51 +02:00
|
|
|
Public Overrides ReadOnly Property PokeDollarPrice As Integer = 200
|
|
|
|
Public Overrides ReadOnly Property FlingDamage As Integer = 20
|
2016-09-07 18:50:38 +02:00
|
|
|
|
2016-09-21 00:15:51 +02:00
|
|
|
Public Sub New()
|
|
|
|
_textureRectangle = New Rectangle(456, 240, 24, 24)
|
2016-09-07 18:50:38 +02:00
|
|
|
End Sub
|
|
|
|
|
|
|
|
End Class
|
|
|
|
|
2016-09-19 04:34:12 +02:00
|
|
|
End Namespace
|