P3D-Legacy/P3D/Pokemon/Items/Standard/PeatBlock.vb

21 lines
729 B
VB.net
Raw Normal View History

2022-05-08 02:35:14 +02:00
Namespace Items.Standard
<Item(654, "Peat Block")>
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. Its 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()
2022-05-25 03:42:24 +02:00
_textureRectangle = New Rectangle(408, 408, 24, 24)
2022-05-08 02:35:14 +02:00
End Sub
End Class
End Namespace