13 lines
281 B
VB.net
13 lines
281 B
VB.net
|
Namespace Abilities
|
||
|
|
||
|
Public Class Galvanize
|
||
|
|
||
|
Inherits Ability
|
||
|
|
||
|
Public Sub New()
|
||
|
MyBase.New(206, "Galvanize", "Normal-type moves become Electric-type moves. The power of those moves is boosted a little.")
|
||
|
End Sub
|
||
|
|
||
|
End Class
|
||
|
|
||
|
End Namespace
|