13 lines
250 B
VB.net
13 lines
250 B
VB.net
|
Namespace Abilities
|
||
|
|
||
|
Public Class StrongJaw
|
||
|
|
||
|
Inherits Ability
|
||
|
|
||
|
Public Sub New()
|
||
|
MyBase.New(173, "Strong Jaw", "The Pokémon's strong jaw gives it tremendous biting power.")
|
||
|
End Sub
|
||
|
|
||
|
End Class
|
||
|
|
||
|
End Namespace
|