57 lines
1.7 KiB
VB.net
57 lines
1.7 KiB
VB.net
Namespace BattleSystem.Moves.Flying
|
|
|
|
Public Class AirCutter
|
|
|
|
Inherits Attack
|
|
|
|
Public Sub New()
|
|
'#Definitions
|
|
Me.Type = New Element(Element.Types.Flying)
|
|
Me.ID = 314
|
|
Me.OriginalPP = 25
|
|
Me.CurrentPP = 25
|
|
Me.MaxPP = 25
|
|
Me.Power = 60
|
|
Me.Accuracy = 95
|
|
Me.Category = Categories.Special
|
|
Me.ContestCategory = ContestCategories.Cool
|
|
Me.Name = Localization.GetString("move_name_" & Me.ID,"Air Cutter")
|
|
Me.Description = "The user launches razor-like wind to slash the opposing Pokémon. Critical hits land more easily."
|
|
Me.CriticalChance = 2
|
|
Me.IsHMMove = False
|
|
Me.Target = Targets.AllAdjacentFoes
|
|
Me.Priority = 0
|
|
Me.TimesToAttack = 1
|
|
'#End
|
|
|
|
'#SpecialDefinitions
|
|
Me.MakesContact = False
|
|
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.RemovesOwnFrozen = False
|
|
|
|
Me.IsHealingMove = False
|
|
Me.IsRecoilMove = False
|
|
Me.IsSlicingMove = True
|
|
Me.IsWindMove = True
|
|
Me.IsDamagingMove = True
|
|
Me.IsProtectMove = False
|
|
|
|
Me.IsAffectedBySubstitute = True
|
|
Me.IsOneHitKOMove = False
|
|
Me.IsWonderGuardAffected = True
|
|
'#End
|
|
End Sub
|
|
|
|
End Class
|
|
|
|
End Namespace |