57 lines
1.7 KiB
VB.net
57 lines
1.7 KiB
VB.net
Namespace BattleSystem.Moves.Dragon
|
|
|
|
Public Class SpacialRend
|
|
|
|
Inherits Attack
|
|
|
|
Public Sub New()
|
|
'#Definitions
|
|
Me.Type = New Element(Element.Types.Dragon)
|
|
Me.ID = 460
|
|
Me.OriginalPP = 5
|
|
Me.CurrentPP = 5
|
|
Me.MaxPP = 5
|
|
Me.Power = 100
|
|
Me.Accuracy = 95
|
|
Me.Category = Categories.Special
|
|
Me.ContestCategory = ContestCategories.Tough
|
|
Me.Name = "Spacial Rend"
|
|
Me.Description = "The user tears the target along with the space around it. Critical hits land more easily."
|
|
Me.CriticalChance = 2
|
|
Me.IsHMMove = False
|
|
Me.Target = Targets.OneAdjacentTarget
|
|
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 = False
|
|
|
|
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
|
|
|
|
End Class
|
|
|
|
End Namespace |