13 lines
236 B
VB.net
13 lines
236 B
VB.net
|
Namespace Abilities
|
||
|
|
||
|
Public Class Soundproof
|
||
|
|
||
|
Inherits Ability
|
||
|
|
||
|
Public Sub New()
|
||
|
MyBase.New(43, "Soundproof", "Gives full immunity to all sound-based moves.")
|
||
|
End Sub
|
||
|
|
||
|
End Class
|
||
|
|
||
|
End Namespace
|