13 lines
235 B
VB.net
13 lines
235 B
VB.net
|
Namespace Abilities
|
||
|
|
||
|
Public Class SuperLuck
|
||
|
|
||
|
Inherits Ability
|
||
|
|
||
|
Public Sub New()
|
||
|
MyBase.New(105, "Super Luck", "Heightens the critical- hit ratios of moves.")
|
||
|
End Sub
|
||
|
|
||
|
End Class
|
||
|
|
||
|
End Namespace
|