15 lines
216 B
VB.net
15 lines
216 B
VB.net
|
Namespace Items.Gems
|
||
|
|
||
|
<Item(644, "Dark Gem")>
|
||
|
Public Class DarkGem
|
||
|
|
||
|
Inherits GemItem
|
||
|
|
||
|
Public Sub New()
|
||
|
MyBase.New(Element.Types.Dark)
|
||
|
End Sub
|
||
|
|
||
|
End Class
|
||
|
|
||
|
End Namespace
|