13 lines
238 B
VB.net
13 lines
238 B
VB.net
|
Namespace Abilities
|
||
|
|
||
|
Public Class FlashFire
|
||
|
|
||
|
Inherits Ability
|
||
|
|
||
|
Public Sub New()
|
||
|
MyBase.New(18, "Flash Fire", "It powers up Fire-type moves if it's hit by one.")
|
||
|
End Sub
|
||
|
|
||
|
End Class
|
||
|
|
||
|
End Namespace
|