P3D-Legacy/P3D/Pokemon/Items/Machines/TM06.vb

18 lines
326 B
VB.net
Raw Normal View History

Namespace Items.Machines
2016-09-07 18:50:38 +02:00
<Item(196, "TM 06")>
2016-09-07 18:50:38 +02:00
Public Class TM06
Inherits TechMachine
2016-09-20 23:44:31 +02:00
Public Overrides ReadOnly Property BattlePointsPrice As Integer = 32
2016-09-07 18:50:38 +02:00
Public Sub New()
2016-09-20 06:09:15 +02:00
MyBase.New(True, 3000, 92)
2016-09-07 18:50:38 +02:00
CanTeachAlways = True
End Sub
End Class
End Namespace