17 lines
400 B
VB.net
17 lines
400 B
VB.net
Namespace Items.KeyItems
|
|
|
|
<Item(242, "Shiny Charm")>
|
|
Public Class ShinyCharm
|
|
|
|
Inherits KeyItem
|
|
|
|
Public Overrides ReadOnly Property Description As String = "A shiny charm said to increase the chance of finding a Shiny Pokémon in the wild."
|
|
|
|
Public Sub New()
|
|
_textureRectangle = New Rectangle(120, 264, 24, 24)
|
|
End Sub
|
|
|
|
End Class
|
|
|
|
End Namespace
|