13 lines
228 B
VB.net
13 lines
228 B
VB.net
|
Namespace Abilities
|
||
|
|
||
|
Public Class TintedLens
|
||
|
|
||
|
Inherits Ability
|
||
|
|
||
|
Public Sub New()
|
||
|
MyBase.New(110, "Tinted Lens", "Powers up not very effective moves.")
|
||
|
End Sub
|
||
|
|
||
|
End Class
|
||
|
|
||
|
End Namespace
|