13 lines
225 B
VB.net
13 lines
225 B
VB.net
|
Namespace Abilities
|
||
|
|
||
|
Public Class Overgrow
|
||
|
|
||
|
Inherits Ability
|
||
|
|
||
|
Public Sub New()
|
||
|
MyBase.New(65, "Overgrow", "Powers up Grass-type moves in a pinch.")
|
||
|
End Sub
|
||
|
|
||
|
End Class
|
||
|
|
||
|
End Namespace
|