mirror of
https://github.com/P3D-Legacy/P3D-Legacy.git
synced 2025-04-08 18:35:09 +02:00
Implemented Destiny Knot item and added to route27
This commit is contained in:
parent
f34ddccb94
commit
ccad3e1f21
Binary file not shown.
19
P3D/Pokemon/Items/Standard/DestinyKnot.vb
Normal file
19
P3D/Pokemon/Items/Standard/DestinyKnot.vb
Normal 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.
Loading…
x
Reference in New Issue
Block a user