15 lines
213 B
VB.net
15 lines
213 B
VB.net
|
Namespace Items.Machines
|
||
|
|
||
|
<Item(351, "TM 51")>
|
||
|
Public Class TM51
|
||
|
|
||
|
Inherits TechMachine
|
||
|
|
||
|
Public Sub New()
|
||
|
MyBase.New(True, 3000, 5)
|
||
|
End Sub
|
||
|
|
||
|
End Class
|
||
|
|
||
|
End Namespace
|