13 lines
231 B
VB.net
13 lines
231 B
VB.net
|
Namespace Abilities
|
||
|
|
||
|
Public Class Rattled
|
||
|
|
||
|
Inherits Ability
|
||
|
|
||
|
Public Sub New()
|
||
|
MyBase.New(155, "Rattled", "Some move types scare it and boost its Speed.")
|
||
|
End Sub
|
||
|
|
||
|
End Class
|
||
|
|
||
|
End Namespace
|