13 lines
233 B
VB.net
13 lines
233 B
VB.net
|
Namespace Abilities
|
||
|
|
||
|
Public Class GrassPelt
|
||
|
|
||
|
Inherits Ability
|
||
|
|
||
|
Public Sub New()
|
||
|
MyBase.New(179, "Grass Pelt", "Boosts the Defense stat in Grassy Terrain.")
|
||
|
End Sub
|
||
|
|
||
|
End Class
|
||
|
|
||
|
End Namespace
|