Fix snatch is wrong type

This commit is contained in:
darkfire006 2022-12-19 18:00:15 -06:00
parent 8463977303
commit 654c498025
3 changed files with 5 additions and 5 deletions

View File

@ -30870,7 +30870,7 @@
<Compile Include="Pokemon\Attacks\Normal\SleepTalk.vb" />
<Compile Include="Pokemon\Attacks\Normal\SmellingSalts.vb" />
<Compile Include="Pokemon\Attacks\Normal\Smokescreen.vb" />
<Compile Include="Pokemon\Attacks\Normal\Snatch.vb" />
<Compile Include="Pokemon\Attacks\Dark\Snatch.vb" />
<Compile Include="Pokemon\Attacks\Normal\Snore.vb" />
<Compile Include="Pokemon\Attacks\Normal\Soft-Boiled.vb" />
<Compile Include="Pokemon\Attacks\Normal\SonicBoom.vb" />

View File

@ -821,7 +821,7 @@
'Case 288
'Grudge
Case 289
returnMove = New Moves.Normal.Snatch()
returnMove = New Moves.Dark.Snatch()
'Case 290
'Secret Power
Case 291

View File

@ -1,4 +1,4 @@
Namespace BattleSystem.Moves.Normal
Namespace BattleSystem.Moves.Dark
Public Class Snatch
@ -6,7 +6,7 @@
Public Sub New()
'#Definitions
Me.Type = New Element(Element.Types.Normal)
Me.Type = New Element(Element.Types.Dark)
Me.ID = 289
Me.OriginalPP = 10
Me.CurrentPP = 10
@ -15,7 +15,7 @@
Me.Accuracy = 0
Me.Category = Categories.Status
Me.ContestCategory = ContestCategories.Smart
Me.Name = Localization.GetString("move_name_" & Me.ID,"Snatch")
Me.Name = Localization.GetString("move_name_" & Me.ID, "Snatch")
Me.Description = "The user steals the effects of any attempts to use a healing or stat-changing move."
Me.CriticalChance = 0
Me.IsHMMove = False