2020-06-14 06:57:50 +02:00
|
|
|
Namespace Items.Standard
|
|
|
|
|
|
|
|
<Item(613, "Fossilized Fish")>
|
|
|
|
Public Class FossilizedFish
|
|
|
|
|
|
|
|
Inherits FossilItem
|
|
|
|
|
|
|
|
Public Overrides ReadOnly Property Description As String = "The fossil of an ancient Pokémon that once lived in the sea. What it looked like is a mystery."
|
2022-05-07 00:45:59 +02:00
|
|
|
Public Overrides ReadOnly Property PluralName As String = "Fossilized Fishes"
|
2020-06-14 06:57:50 +02:00
|
|
|
|
|
|
|
Public Sub New()
|
|
|
|
_textureRectangle = New Rectangle(48, 72, 24, 24)
|
|
|
|
End Sub
|
|
|
|
|
|
|
|
End Class
|
|
|
|
|
|
|
|
End Namespace
|