diff --git a/P3D/P3D.vbproj b/P3D/P3D.vbproj
index b4c6b29fe..c9efc999a 100644
--- a/P3D/P3D.vbproj
+++ b/P3D/P3D.vbproj
@@ -27781,6 +27781,7 @@
+
@@ -27795,6 +27796,7 @@
+
PreserveNewest
diff --git a/P3D/Pokemon/Items/Standard/PeatBlock.vb b/P3D/Pokemon/Items/Standard/PeatBlock.vb
new file mode 100644
index 000000000..f06f38eab
--- /dev/null
+++ b/P3D/Pokemon/Items/Standard/PeatBlock.vb
@@ -0,0 +1,20 @@
+Namespace Items.Standard
+
+ -
+ Public Class PeatBlock
+
+ Inherits Item
+
+ Public Overrides ReadOnly Property Description As String = "A block of muddy material that can be used as fuel for burning when it is dried. It’s loved by a certain Pokémon."
+ Public Overrides ReadOnly Property PokeDollarPrice As Integer = 1000
+ Public Overrides ReadOnly Property FlingDamage As Integer = 80
+ Public Overrides ReadOnly Property CanBeUsedInBattle As Boolean = False
+ Public Overrides ReadOnly Property CanBeUsed As Boolean = False
+
+ Public Sub New()
+ _textureRectangle = New Rectangle(312, 192, 24, 24)
+ End Sub
+
+ End Class
+
+End Namespace
diff --git a/P3D/Pokemon/Items/Stones/BlackAurugite.vb b/P3D/Pokemon/Items/Stones/BlackAurugite.vb
new file mode 100644
index 000000000..51c2d910a
--- /dev/null
+++ b/P3D/Pokemon/Items/Stones/BlackAurugite.vb
@@ -0,0 +1,16 @@
+Namespace Items.Standard
+
+
-
+ Public Class BlackAugurite
+
+ Inherits StoneItem
+
+ Public Overrides ReadOnly Property Description As String = "A glassy black stone that produces a sharp cutting edge when split. It’s loved by a certain Pokémon."
+
+ Public Sub New()
+ _textureRectangle = New Rectangle(336, 192, 24, 24)
+ End Sub
+
+ End Class
+
+End Namespace
diff --git a/P3D/Pokemon/Items/_itemList.txt b/P3D/Pokemon/Items/_itemList.txt
index f23eee6a2..4f06b7c8d 100644
Binary files a/P3D/Pokemon/Items/_itemList.txt and b/P3D/Pokemon/Items/_itemList.txt differ