Included Aerilate, Parental Bond
This commit is contained in:
parent
a189e8412b
commit
0e5d75835c
|
@ -25964,6 +25964,8 @@
|
||||||
<Content Include="credits.txt">
|
<Content Include="credits.txt">
|
||||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
</Content>
|
</Content>
|
||||||
|
<Compile Include="Pokemon\Abilities\Aerilate.vb" />
|
||||||
|
<Compile Include="Pokemon\Abilities\ParentalBond.vb" />
|
||||||
<Compile Include="Pokemon\Items\Standard\ExpertBelt.vb" />
|
<Compile Include="Pokemon\Items\Standard\ExpertBelt.vb" />
|
||||||
<Compile Include="Resources\Blur\BlurHandler.vb" />
|
<Compile Include="Resources\Blur\BlurHandler.vb" />
|
||||||
<Content Include="Content\Data\Scripts\faraway\mewtwonite_y.dat">
|
<Content Include="Content\Data\Scripts\faraway\mewtwonite_y.dat">
|
||||||
|
|
|
@ -0,0 +1,13 @@
|
||||||
|
Namespace Abilities
|
||||||
|
|
||||||
|
Public Class Aerilate
|
||||||
|
|
||||||
|
Inherits Ability
|
||||||
|
|
||||||
|
Public Sub New()
|
||||||
|
MyBase.New(184, "Aerilate", "Normal-type moves become Flying-type moves.")
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
End Class
|
||||||
|
|
||||||
|
End Namespace
|
|
@ -0,0 +1,13 @@
|
||||||
|
Namespace Abilities
|
||||||
|
|
||||||
|
Public Class ParentalBond
|
||||||
|
|
||||||
|
Inherits Ability
|
||||||
|
|
||||||
|
Public Sub New()
|
||||||
|
MyBase.New(185, "Parental Bond", "Parent and child attack together.")
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
End Class
|
||||||
|
|
||||||
|
End Namespace
|
Binary file not shown.
Loading…
Reference in New Issue