17 lines
371 B
VB.net
17 lines
371 B
VB.net
Namespace Items.Apricorns
|
|
|
|
<Item(92, "Yellow Apricorn")>
|
|
Public Class YlwApricorn
|
|
|
|
Inherits Apricorn
|
|
|
|
Public Overrides ReadOnly Property Description As String = "A yellow Apricorn. It has an invigorating scent."
|
|
|
|
Public Sub New()
|
|
_textureRectangle = New Rectangle(384, 72, 24, 24)
|
|
End Sub
|
|
|
|
End Class
|
|
|
|
End Namespace
|