diff --git a/P3D/Content/Items/ItemSheet.png b/P3D/Content/Items/ItemSheet.png
index 9d6339450..8fc8ef7af 100644
Binary files a/P3D/Content/Items/ItemSheet.png and b/P3D/Content/Items/ItemSheet.png differ
diff --git a/P3D/P3D.vbproj b/P3D/P3D.vbproj
index 65c764271..f6f7aa5e0 100644
--- a/P3D/P3D.vbproj
+++ b/P3D/P3D.vbproj
@@ -26231,6 +26231,8 @@
+
+
diff --git a/P3D/Pokemon/Items/KeyItems/DarkStone.vb b/P3D/Pokemon/Items/KeyItems/DarkStone.vb
new file mode 100644
index 000000000..fdca405c5
--- /dev/null
+++ b/P3D/Pokemon/Items/KeyItems/DarkStone.vb
@@ -0,0 +1,16 @@
+Namespace Items.KeyItems
+
+ -
+ Public Class DarkStone
+
+ Inherits KeyItem
+
+ Public Overrides ReadOnly Property Description As String = "Zekrom's body was destroyed and changed into this stone. It is said to be waiting for the emergence of a hero."
+
+ Public Sub New()
+ _textureRectangle = New Rectangle(240, 408, 24, 24)
+ End Sub
+
+ End Class
+
+End Namespace
diff --git a/P3D/Pokemon/Items/KeyItems/LightStone.vb b/P3D/Pokemon/Items/KeyItems/LightStone.vb
new file mode 100644
index 000000000..f1884633f
--- /dev/null
+++ b/P3D/Pokemon/Items/KeyItems/LightStone.vb
@@ -0,0 +1,16 @@
+Namespace Items.KeyItems
+
+
-
+ Public Class LightStone
+
+ Inherits KeyItem
+
+ Public Overrides ReadOnly Property Description As String = "Reshiram's body was destroyed and changed into this stone. It is said to be waiting for the emergence of a hero."
+
+ Public Sub New()
+ _textureRectangle = New Rectangle(216, 408, 24, 24)
+ End Sub
+
+ End Class
+
+End Namespace
diff --git a/P3D/Pokemon/Items/_itemList.txt b/P3D/Pokemon/Items/_itemList.txt
index f9cad498b..e93ef054b 100644
Binary files a/P3D/Pokemon/Items/_itemList.txt and b/P3D/Pokemon/Items/_itemList.txt differ