Namespace BattleSystem.Moves.Normal Public Class FurySwipes Inherits Attack Public Sub New() '#Definitions Me.Type = New Element(Element.Types.Normal) Me.ID = 154 Me.OriginalPP = 15 Me.CurrentPP = 15 Me.MaxPP = 15 Me.Power = 18 Me.Accuracy = 80 Me.Category = Categories.Physical Me.ContestCategory = ContestCategories.Tough Me.Name = "Fury Swipes" Me.Description = "The target is raked with sharp claws or scythes for two to five times in quick succession." Me.CriticalChance = 1 Me.IsHMMove = False Me.Target = Targets.OneAdjacentTarget Me.Priority = 0 Me.TimesToAttack = 1 '#End '#SpecialDefinitions Me.MakesContact = True Me.ProtectAffected = True Me.MagicCoatAffected = False Me.SnatchAffected = False Me.MirrorMoveAffected = True Me.KingsrockAffected = True Me.CounterAffected = True Me.DisabledWhileGravity = False Me.UseEffectiveness = True Me.ImmunityAffected = True Me.HasSecondaryEffect = False Me.RemovesFrozen = False Me.IsHealingMove = False Me.IsRecoilMove = False Me.IsPunchingMove = False Me.IsDamagingMove = True Me.IsProtectMove = False Me.IsSoundMove = False Me.IsAffectedBySubstitute = True Me.IsOneHitKOMove = False Me.IsWonderGuardAffected = True '#End End Sub Public Overrides Function GetTimesToAttack(own As Boolean, BattleScreen As BattleScreen) As Integer Dim p As Pokemon = BattleScreen.OwnPokemon Dim op As Pokemon = BattleScreen.OppPokemon If own = False Then p = BattleScreen.OppPokemon op = BattleScreen.OwnPokemon End If If p.Ability.Name.ToLower() = "skill link" Then Return 5 End If Dim r As Integer = Core.Random.Next(0, 100) If r < 37 Then Return 2 ElseIf r >= 37 And r < 75 Then Return 3 ElseIf r >= 75 And r < 88 Then Return 4 ElseIf r >= 88 Then Return 5 End If Return 2 End Function End Class End Namespace