13 lines
233 B
VB.net
13 lines
233 B
VB.net
|
Namespace Abilities
|
||
|
|
||
|
Public Class Telepathy
|
||
|
|
||
|
Inherits Ability
|
||
|
|
||
|
Public Sub New()
|
||
|
MyBase.New(140, "Telepathy", "Anticipates an ally's attack and dodges it.")
|
||
|
End Sub
|
||
|
|
||
|
End Class
|
||
|
|
||
|
End Namespace
|