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

15 lines
222 B
VB.net
Raw Normal View History

Namespace Items.Gems
<Item(638, "Flying Gem")>
Public Class FlyingGem
Inherits GemItem
Public Sub New()
MyBase.New(Element.Types.Flying)
End Sub
End Class
End Namespace