16 lines
255 B
VB.net
16 lines
255 B
VB.net
|
Namespace Items.Machines
|
||
|
|
||
|
<Item(431, "TM 131")>
|
||
|
Public Class TM131
|
||
|
|
||
|
Inherits TechMachine
|
||
|
|
||
|
Public Sub New()
|
||
|
MyBase.New(True, 1500, 445)
|
||
|
CanTeachWhenGender = True
|
||
|
End Sub
|
||
|
|
||
|
End Class
|
||
|
|
||
|
End Namespace
|