13 lines
238 B
VB.net
13 lines
238 B
VB.net
|
Namespace Abilities
|
||
|
|
||
|
Public Class WeakArmor
|
||
|
|
||
|
Inherits Ability
|
||
|
|
||
|
Public Sub New()
|
||
|
MyBase.New(133, "Weak Armor", "Physical attacks lower Defense and raise Speed.")
|
||
|
End Sub
|
||
|
|
||
|
End Class
|
||
|
|
||
|
End Namespace
|