13 lines
234 B
VB.net
13 lines
234 B
VB.net
|
Namespace Abilities
|
||
|
|
||
|
Public Class Defiant
|
||
|
|
||
|
Inherits Ability
|
||
|
|
||
|
Public Sub New()
|
||
|
MyBase.New(128, "Defiant", "When its stats are lowered its Attack increases.")
|
||
|
End Sub
|
||
|
|
||
|
End Class
|
||
|
|
||
|
End Namespace
|