From ea0618e215f429c1b082de10831746e80ced7df1 Mon Sep 17 00:00:00 2001 From: FantaX1911 Date: Thu, 22 Sep 2016 23:33:07 +0300 Subject: [PATCH] Added Empty sea map Implemented Empty Sea Map as a key item. --- .../Pokemon/Items/KeyItems/EmptySeaMap.vb | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 2.5DHero/2.5DHero/Pokemon/Items/KeyItems/EmptySeaMap.vb diff --git a/2.5DHero/2.5DHero/Pokemon/Items/KeyItems/EmptySeaMap.vb b/2.5DHero/2.5DHero/Pokemon/Items/KeyItems/EmptySeaMap.vb new file mode 100644 index 000000000..56bc3f281 --- /dev/null +++ b/2.5DHero/2.5DHero/Pokemon/Items/KeyItems/EmptySeaMap.vb @@ -0,0 +1,16 @@ ++Namespace Items.KeyItems + + + + + + Public Class EmptySeaMap + + + + Inherits KeyItem + + + + Public Overrides ReadOnly Property Description As String = "A sea chart on an odd blue parchment showing a point in the open ocean." + + + + Public Sub New() + + _textureRectangle = New Rectangle(192, 264, 24, 24) + + End Sub + + + + End Class + + + +End Namespace \ No newline at end of file