mirror of
https://github.com/P3D-Legacy/P3D-Legacy.git
synced 2025-08-24 19:28:38 +02:00
17 lines
411 B
VB.net
17 lines
411 B
VB.net
Namespace Items.Standard
|
|
|
|
<Item(136, "Dusk Stone")>
|
|
Public Class DuskStone
|
|
|
|
Inherits StoneItem
|
|
|
|
Public Overrides ReadOnly Property Description As String = "A peculiar stone that makes certain species of Pokémon evolve. It is as dark as dark can be."
|
|
|
|
Public Sub New()
|
|
_textureRectangle = New Rectangle(360, 192, 24, 24)
|
|
End Sub
|
|
|
|
End Class
|
|
|
|
End Namespace
|