13 lines
240 B
VB.net
13 lines
240 B
VB.net
|
Namespace Abilities
|
||
|
|
||
|
Public Class NaturalCure
|
||
|
|
||
|
Inherits Ability
|
||
|
|
||
|
Public Sub New()
|
||
|
MyBase.New(30, "Natural Cure", "All status problems heal when it switches out.")
|
||
|
End Sub
|
||
|
|
||
|
End Class
|
||
|
|
||
|
End Namespace
|