mirror of
https://github.com/P3D-Legacy/P3D-Legacy.git
synced 2025-08-22 10:18:40 +02:00
17 lines
416 B
VB.net
17 lines
416 B
VB.net
Namespace Items.Stones
|
|
|
|
<Item(169, "Sun Stone")>
|
|
Public Class SunStone
|
|
|
|
Inherits StoneItem
|
|
|
|
Public Overrides ReadOnly Property Description As String = "A peculiar stone that can make certain species of Pokémon evolve. It burns as red as the evening sun."
|
|
|
|
Public Sub New()
|
|
_textureRectangle = New Rectangle(312, 144, 24, 24)
|
|
End Sub
|
|
|
|
End Class
|
|
|
|
End Namespace
|