15 lines
213 B
VB.net
15 lines
213 B
VB.net
|
Namespace Items.Machines
|
||
|
|
||
|
<Item(231, "TM 41")>
|
||
|
Public Class TM41
|
||
|
|
||
|
Inherits TechMachine
|
||
|
|
||
|
Public Sub New()
|
||
|
MyBase.New(True, 3000, 9)
|
||
|
End Sub
|
||
|
|
||
|
End Class
|
||
|
|
||
|
End Namespace
|