20 lines
633 B
VB.net
20 lines
633 B
VB.net
|
Namespace Items.Standard
|
||
|
|
||
|
<Item(147, "White Flute")>
|
||
|
Public Class WhiteFlute
|
||
|
|
||
|
Inherits Item
|
||
|
|
||
|
Public Overrides ReadOnly Property Description As String = "A white flute made from blown glass. Its melody makes wild Pokémon more likely to appear."
|
||
|
Public Overrides ReadOnly Property PokeDollarPrice As Integer = 500
|
||
|
Public Overrides ReadOnly Property CanBeUsedInBattle As Boolean = False
|
||
|
Public Overrides ReadOnly Property CanBeUsed As Boolean = False
|
||
|
|
||
|
Public Sub New()
|
||
|
_textureRectangle = New Rectangle(456, 192, 24, 24)
|
||
|
End Sub
|
||
|
|
||
|
End Class
|
||
|
|
||
|
End Namespace
|