P3D-Legacy/P3D/Pokemon/Items/Stones/BlackAurugite.vb

17 lines
429 B
VB.net
Raw Normal View History

2022-05-08 02:35:14 +02:00
Namespace Items.Standard
<Item(653, "Black Augurite")>
Public Class BlackAugurite
Inherits StoneItem
Public Overrides ReadOnly Property Description As String = "A glassy black stone that produces a sharp cutting edge when split. Its loved by a certain Pokémon."
Public Sub New()
2022-05-25 03:42:24 +02:00
_textureRectangle = New Rectangle(384, 408, 24, 24)
2022-05-08 02:35:14 +02:00
End Sub
End Class
End Namespace