P3D-Legacy/P3D/Pokemon/Items/Mail/BridgeMailM.vb

17 lines
398 B
VB.net
Raw Normal View History

Namespace Items.Mail
2016-09-07 18:50:38 +02:00
<Item(328, "BridgeMail M")>
2016-09-07 18:50:38 +02:00
Public Class BridgeMailM
Inherits MailItem
2016-09-07 18:50:38 +02:00
2016-09-20 06:18:09 +02:00
Public Overrides ReadOnly Property Description As String = "Stationery featuring a print of an arched bridge. Let a Pokémon hold it for use."
2016-09-07 18:50:38 +02:00
Public Sub New()
2016-09-20 06:18:09 +02:00
_textureRectangle = New Rectangle(168, 480, 24, 24)
2016-09-07 18:50:38 +02:00
End Sub
End Class
End Namespace