13 lines
234 B
VB.net
13 lines
234 B
VB.net
|
Namespace Abilities
|
||
|
|
||
|
Public Class WaterAbsorb
|
||
|
|
||
|
Inherits Ability
|
||
|
|
||
|
Public Sub New()
|
||
|
MyBase.New(11, "Water Absorb", "Restores HP if hit by a Water-type move.")
|
||
|
End Sub
|
||
|
|
||
|
End Class
|
||
|
|
||
|
End Namespace
|