P3D-Legacy/P3D/Pokemon/Items/Standard/ChoiceScarf.vb

21 lines
700 B
VB.net
Raw Normal View History

2019-10-09 08:10:44 +02:00
Namespace Items.Standard
<Item(579, "Choice Scarf")>
Public Class ChoiceScarf
Inherits Item
Public Overrides ReadOnly Property Description As String = "Boosts Speed by 50%, but only allows the use of the first move selected."
Public Overrides ReadOnly Property PokeDollarPrice As Integer = 4000
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 = "Choice Scarves"
2019-10-09 08:10:44 +02:00
Public Sub New()
_textureRectangle = New Rectangle(24, 288, 24, 24)
End Sub
End Class
End Namespace