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

21 lines
729 B
VB.net
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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()
_textureRectangle = New Rectangle(408, 408, 24, 24)
End Sub
End Class
End Namespace