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

18 lines
331 B
VB.net
Raw Normal View History

Namespace Items.Machines
2016-09-07 18:50:38 +02:00
<Item(235, "TM 45")>
2016-09-07 18:50:38 +02:00
Public Class TM45
Inherits TechMachine
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, 1500, 213)
2016-09-07 18:50:38 +02:00
CanTeachWhenGender = True
End Sub
End Class
End Namespace