P3D-Legacy/P3D/Pokemon/Items/KeyItems/SSTicket.vb

17 lines
405 B
VB.net
Raw Normal View History

Namespace Items.KeyItems
2016-09-07 18:50:38 +02:00
<Item(41, "S.S. Ticket")>
2016-09-07 18:50:38 +02:00
Public Class SSTicket
2016-09-20 06:03:05 +02:00
Inherits KeyItem
2016-09-07 18:50:38 +02:00
2016-09-20 06:03:05 +02:00
Public Overrides ReadOnly Property Description As String = "The ticket required for sailing on the ferry S.S. Aqua. It has a drawing of a ship on it. "
2016-09-07 18:50:38 +02:00
2016-09-20 06:03:05 +02:00
Public Sub New()
_textureRectangle = New Rectangle(240, 216, 24, 24)
2016-09-07 18:50:38 +02:00
End Sub
End Class
End Namespace