13 lines
231 B
VB.net
13 lines
231 B
VB.net
|
Namespace Abilities
|
||
|
|
||
|
Public Class Symbiosis
|
||
|
|
||
|
Inherits Ability
|
||
|
|
||
|
Public Sub New()
|
||
|
MyBase.New(180, "Symbiosis", "The Pokémon can pass an item to an ally.")
|
||
|
End Sub
|
||
|
|
||
|
End Class
|
||
|
|
||
|
End Namespace
|