mirror of
https://github.com/P3D-Legacy/P3D-Legacy.git
synced 2025-08-16 23:38:41 +02:00
17 lines
428 B
VB.net
17 lines
428 B
VB.net
Namespace Items.Standard
|
|
|
|
<Item(607, "Armor Fossil")>
|
|
Public Class ArmorFossil
|
|
|
|
Inherits FossilItem
|
|
|
|
Public Overrides ReadOnly Property Description As String = "A fossil from a prehistoric Pokémon that once lived on the land. It appears as though it's part of a head."
|
|
|
|
Public Sub New()
|
|
_textureRectangle = New Rectangle(24, 24, 24, 24)
|
|
End Sub
|
|
|
|
End Class
|
|
|
|
End Namespace
|