2023-05-29 06:18:08 +02:00
|
|
|
Namespace Items.KeyItems
|
|
|
|
|
|
|
|
<Item(655, "Sea Plane Ticket")>
|
|
|
|
Public Class SeaPlaneTicket
|
|
|
|
|
|
|
|
Inherits KeyItem
|
|
|
|
|
2023-06-26 16:21:31 +02:00
|
|
|
Public Overrides ReadOnly Property Description As String = "The ticket required for flying on the sea plane. It has a drawing of a sea plane on it. "
|
2023-05-29 06:18:08 +02:00
|
|
|
|
|
|
|
Public Sub New()
|
|
|
|
_textureRectangle = New Rectangle(432, 408, 24, 24)
|
|
|
|
End Sub
|
|
|
|
|
|
|
|
End Class
|
|
|
|
|
|
|
|
End Namespace
|