diff --git a/P3D/Content/Data/maps/routes/route27.dat b/P3D/Content/Data/maps/routes/route27.dat index ec0846222..9f62fcb3d 100644 Binary files a/P3D/Content/Data/maps/routes/route27.dat and b/P3D/Content/Data/maps/routes/route27.dat differ diff --git a/P3D/Pokemon/Items/Standard/DestinyKnot.vb b/P3D/Pokemon/Items/Standard/DestinyKnot.vb new file mode 100644 index 000000000..a4329e6e2 --- /dev/null +++ b/P3D/Pokemon/Items/Standard/DestinyKnot.vb @@ -0,0 +1,19 @@ +Namespace Items.Standard + + + Public Class DestinyKnot + + Inherits Item + + Public Overrides ReadOnly Property Description As String = "A long, thin, bright red string to be held by a Pokémon. If the holder becomes infatuated, the foe does too." + Public Overrides ReadOnly Property PokeDollarPrice As Integer = 100 + Public Overrides ReadOnly Property CanBeUsedInBattle As Boolean = False + Public Overrides ReadOnly Property CanBeUsed As Boolean = False + + Public Sub New() + _textureRectangle = New Rectangle(432, 384, 24, 24) + End Sub + + End Class + +End Namespace diff --git a/P3D/Pokemon/Items/_itemList.txt b/P3D/Pokemon/Items/_itemList.txt index 4f06b7c8d..233dd1c31 100644 Binary files a/P3D/Pokemon/Items/_itemList.txt and b/P3D/Pokemon/Items/_itemList.txt differ