13 lines
234 B
VB.net
13 lines
234 B
VB.net
|
Namespace Abilities
|
||
|
|
||
|
Public Class SolidRock
|
||
|
|
||
|
Inherits Ability
|
||
|
|
||
|
Public Sub New()
|
||
|
MyBase.New(116, "Solid Rock", "Reduces damage from supereffective attacks.")
|
||
|
End Sub
|
||
|
|
||
|
End Class
|
||
|
|
||
|
End Namespace
|