Implemented Destiny Knot item and added to route27

This commit is contained in:
JappaWakka 2023-04-08 17:36:22 +02:00
parent f34ddccb94
commit ccad3e1f21
3 changed files with 19 additions and 0 deletions

View File

@ -0,0 +1,19 @@
Namespace Items.Standard
<Item(677, "Destiny Knot")>
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

Binary file not shown.