Fix snatch is wrong type
This commit is contained in:
parent
8463977303
commit
654c498025
|
@ -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" />
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
Loading…
Reference in New Issue