mirror of
https://github.com/P3D-Legacy/P3D-Legacy.git
synced 2025-08-19 00:39:29 +02:00
18 lines
326 B
VB.net
18 lines
326 B
VB.net
Namespace Items.Machines
|
|
|
|
<Item(196, "TM 06")>
|
|
Public Class TM06
|
|
|
|
Inherits TechMachine
|
|
|
|
Public Overrides ReadOnly Property BattlePointsPrice As Integer = 32
|
|
|
|
Public Sub New()
|
|
MyBase.New(True, 3000, 92)
|
|
CanTeachAlways = True
|
|
End Sub
|
|
|
|
End Class
|
|
|
|
End Namespace
|