15 lines
219 B
VB.net
15 lines
219 B
VB.net
|
Namespace Items.Gems
|
||
|
|
||
|
<Item(647, "Fairy Gem")>
|
||
|
Public Class FairyGem
|
||
|
|
||
|
Inherits GemItem
|
||
|
|
||
|
Public Sub New()
|
||
|
MyBase.New(Element.Types.Fairy)
|
||
|
End Sub
|
||
|
|
||
|
End Class
|
||
|
|
||
|
End Namespace
|