diff --git a/2.5DHero/2.5DHero/2.5DHero.vbproj b/2.5DHero/2.5DHero/2.5DHero.vbproj index 96a2a369e..8300207b2 100644 --- a/2.5DHero/2.5DHero/2.5DHero.vbproj +++ b/2.5DHero/2.5DHero/2.5DHero.vbproj @@ -1136,6 +1136,7 @@ + diff --git a/2.5DHero/2.5DHero/Pokemon/Items/KeyItems/AncientShard.vb b/2.5DHero/2.5DHero/Pokemon/Items/KeyItems/AncientShard.vb new file mode 100644 index 000000000..a44dab7c2 --- /dev/null +++ b/2.5DHero/2.5DHero/Pokemon/Items/KeyItems/AncientShard.vb @@ -0,0 +1,16 @@ +Namespace Items.KeyItems + + + Public Class AncientShard + + Inherits KeyItem + + Public Overrides ReadOnly Property Description As String = "A piece of a very ancient wall. It seems like it fits somewhere." + + Public Sub New() + _textureRectangle = New Rectangle(360, 288, 24, 24) + End Sub + + End Class + +End Namespace diff --git a/2.5DHero/2.5DHero/Pokemon/Items/_itemList.txt b/2.5DHero/2.5DHero/Pokemon/Items/_itemList.txt index a920aa0c8..ab63ca47e 100644 Binary files a/2.5DHero/2.5DHero/Pokemon/Items/_itemList.txt and b/2.5DHero/2.5DHero/Pokemon/Items/_itemList.txt differ diff --git a/2.5DHero/2.5DHeroContent/Content/Items/ItemSheet.png b/2.5DHero/2.5DHeroContent/Content/Items/ItemSheet.png index 6d552d29c..a36c79663 100644 Binary files a/2.5DHero/2.5DHeroContent/Content/Items/ItemSheet.png and b/2.5DHero/2.5DHeroContent/Content/Items/ItemSheet.png differ