P3D-Legacy/P3D/Pokemon/Items/Gems/RockGem.vb

17 lines
383 B
VB.net
Raw Normal View History

Namespace Items.Gems
<Item(641, "Rock Gem")>
Public Class RockGem
Inherits GemItem
2019-10-10 09:01:28 +02:00
Public Overrides ReadOnly Property Description As String = "A gem with an essence of rock. When held, it strengthens the power of a Rock-type move one time."
Public Sub New()
MyBase.New(Element.Types.Rock)
End Sub
End Class
End Namespace