13 lines
236 B
VB.net
13 lines
236 B
VB.net
|
Namespace Abilities
|
||
|
|
||
|
Public Class VoltAbsorb
|
||
|
|
||
|
Inherits Ability
|
||
|
|
||
|
Public Sub New()
|
||
|
MyBase.New(10, "Volt Absorb", "Restores HP if hit by an Electric-type move.")
|
||
|
End Sub
|
||
|
|
||
|
End Class
|
||
|
|
||
|
End Namespace
|