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\SleepTalk.vb" />
|
||||||
<Compile Include="Pokemon\Attacks\Normal\SmellingSalts.vb" />
|
<Compile Include="Pokemon\Attacks\Normal\SmellingSalts.vb" />
|
||||||
<Compile Include="Pokemon\Attacks\Normal\Smokescreen.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\Snore.vb" />
|
||||||
<Compile Include="Pokemon\Attacks\Normal\Soft-Boiled.vb" />
|
<Compile Include="Pokemon\Attacks\Normal\Soft-Boiled.vb" />
|
||||||
<Compile Include="Pokemon\Attacks\Normal\SonicBoom.vb" />
|
<Compile Include="Pokemon\Attacks\Normal\SonicBoom.vb" />
|
||||||
|
|
|
@ -821,7 +821,7 @@
|
||||||
'Case 288
|
'Case 288
|
||||||
'Grudge
|
'Grudge
|
||||||
Case 289
|
Case 289
|
||||||
returnMove = New Moves.Normal.Snatch()
|
returnMove = New Moves.Dark.Snatch()
|
||||||
'Case 290
|
'Case 290
|
||||||
'Secret Power
|
'Secret Power
|
||||||
Case 291
|
Case 291
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
Namespace BattleSystem.Moves.Normal
|
Namespace BattleSystem.Moves.Dark
|
||||||
|
|
||||||
Public Class Snatch
|
Public Class Snatch
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@
|
||||||
|
|
||||||
Public Sub New()
|
Public Sub New()
|
||||||
'#Definitions
|
'#Definitions
|
||||||
Me.Type = New Element(Element.Types.Normal)
|
Me.Type = New Element(Element.Types.Dark)
|
||||||
Me.ID = 289
|
Me.ID = 289
|
||||||
Me.OriginalPP = 10
|
Me.OriginalPP = 10
|
||||||
Me.CurrentPP = 10
|
Me.CurrentPP = 10
|
||||||
|
@ -15,7 +15,7 @@
|
||||||
Me.Accuracy = 0
|
Me.Accuracy = 0
|
||||||
Me.Category = Categories.Status
|
Me.Category = Categories.Status
|
||||||
Me.ContestCategory = ContestCategories.Smart
|
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.Description = "The user steals the effects of any attempts to use a healing or stat-changing move."
|
||||||
Me.CriticalChance = 0
|
Me.CriticalChance = 0
|
||||||
Me.IsHMMove = False
|
Me.IsHMMove = False
|
Loading…
Reference in New Issue