2016-10-26 21:07:35 +02:00
Namespace Items . Standard
<Item(585, "Power Lens")>
Public Class PowerLens
Inherits Item
Public Overrides ReadOnly Property Description As String = " An item to be held by a Pokémon. It reduces Speed but allows the holder's Sp. Atk stat to grow more after battling. "
Public Overrides ReadOnly Property PokeDollarPrice As Integer = 3000
Public Overrides ReadOnly Property CanBeUsedInBattle As Boolean = False
Public Overrides ReadOnly Property CanBeUsed As Boolean = False
2022-05-07 00:45:59 +02:00
Public Overrides ReadOnly Property PluralName As String = " Power Lenses "
2016-10-26 21:07:35 +02:00
Public Sub New ( )
2017-01-04 14:23:43 +01:00
_textureRectangle = New Rectangle ( 192 , 288 , 24 , 24 )
2016-10-26 21:07:35 +02:00
End Sub
End Class
End Namespace