13 lines
237 B
VB.net
13 lines
237 B
VB.net
|
Namespace Abilities
|
||
|
|
||
|
Public Class MotorDrive
|
||
|
|
||
|
Inherits Ability
|
||
|
|
||
|
Public Sub New()
|
||
|
MyBase.New(78, "Motor Drive", "Raises Speed if hit by an Electric-type move.")
|
||
|
End Sub
|
||
|
|
||
|
End Class
|
||
|
|
||
|
End Namespace
|