13 lines
237 B
VB.net
13 lines
237 B
VB.net
|
Namespace Abilities
|
||
|
|
||
|
Public Class SuctionCups
|
||
|
|
||
|
Inherits Ability
|
||
|
|
||
|
Public Sub New()
|
||
|
MyBase.New(21, "Suction Cups", "Negates all moves that force switching out.")
|
||
|
End Sub
|
||
|
|
||
|
End Class
|
||
|
|
||
|
End Namespace
|