P3D-Legacy/P3D/Pokemon/Items/Apricorns/PnkApricorn.vb

17 lines
365 B
VB.net
Raw Normal View History

Namespace Items.Apricorns
2016-09-07 18:50:38 +02:00
<Item(101, "Pink Apricorn")>
2016-09-07 18:50:38 +02:00
Public Class PnkApricorn
2016-09-20 05:17:38 +02:00
Inherits Apricorn
2016-09-07 18:50:38 +02:00
2016-09-20 05:17:38 +02:00
Public Overrides ReadOnly Property Description As String = "A pink Apricorn. It has a nice, sweet scent."
2016-09-07 18:50:38 +02:00
2016-09-20 05:17:38 +02:00
Public Sub New()
_textureRectangle = New Rectangle(72, 96, 24, 24)
2016-09-07 18:50:38 +02:00
End Sub
End Class
End Namespace