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

17 lines
401 B
VB.net
Raw Normal View History

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