13 lines
223 B
VB.net
13 lines
223 B
VB.net
|
Namespace Abilities
|
||
|
|
||
|
Public Class IronFist
|
||
|
|
||
|
Inherits Ability
|
||
|
|
||
|
Public Sub New()
|
||
|
MyBase.New(89, "Iron Fist", "Boosts the power of punching moves.")
|
||
|
End Sub
|
||
|
|
||
|
End Class
|
||
|
|
||
|
End Namespace
|