15 lines
228 B
VB.net
15 lines
228 B
VB.net
|
Namespace Items.Gems
|
||
|
|
||
|
<Item(632, "Electric Gem")>
|
||
|
Public Class ElectricGem
|
||
|
|
||
|
Inherits GemItem
|
||
|
|
||
|
Public Sub New()
|
||
|
MyBase.New(Element.Types.Electric)
|
||
|
End Sub
|
||
|
|
||
|
End Class
|
||
|
|
||
|
End Namespace
|