P3D-Legacy/P3D/Pokemon/Attacks/Ice/Mist.vb

85 lines
2.7 KiB
VB.net
Raw Normal View History

2016-09-07 18:50:38 +02:00
Namespace BattleSystem.Moves.Ice
Public Class Mist
Inherits Attack
Public Sub New()
'#Definitions
Me.Type = New Element(Element.Types.Ice)
Me.ID = 54
Me.OriginalPP = 30
Me.CurrentPP = 30
Me.MaxPP = 30
Me.Power = 0
Me.Accuracy = 0
Me.Category = Categories.Status
Me.ContestCategory = ContestCategories.Beauty
2022-12-04 20:11:29 +01:00
Me.Name = Localization.GetString("move_name_" & Me.ID,"Mist")
2016-09-07 18:50:38 +02:00
Me.Description = "The user cloaks its body with a white mist that prevents any of its stats from being cut for five turns."
Me.CriticalChance = 0
Me.IsHMMove = False
Me.Target = Targets.AllOwn
2016-09-07 18:50:38 +02:00
Me.Priority = 0
Me.TimesToAttack = 1
'#End
'#SpecialDefinitions
Me.MakesContact = False
Me.ProtectAffected = False
Me.MagicCoatAffected = False
Me.SnatchAffected = True
Me.MirrorMoveAffected = True
Me.KingsrockAffected = False
Me.CounterAffected = False
Me.DisabledWhileGravity = False
Me.UseEffectiveness = False
Me.ImmunityAffected = False
Me.HasSecondaryEffect = False
Me.RemovesOwnFrozen = False
2016-09-07 18:50:38 +02:00
Me.IsHealingMove = False
Me.IsRecoilMove = False
2016-09-07 18:50:38 +02:00
Me.IsDamagingMove = False
Me.IsProtectMove = False
2016-09-07 18:50:38 +02:00
Me.IsAffectedBySubstitute = False
Me.IsOneHitKOMove = False
Me.IsWonderGuardAffected = False
'#End
Me.AIField1 = AIField.Support
Me.AIField2 = AIField.Nothing
End Sub
Public Overrides Sub MoveHits(own As Boolean, BattleScreen As BattleScreen)
Dim b As Boolean = True
If own = True Then
If BattleScreen.FieldEffects.OwnMist = 0 Then
BattleScreen.FieldEffects.OwnMist = 5
BattleScreen.BattleQuery.Add(New TextQueryObject("Your team became shrouded in mist!"))
Else
b = False
End If
Else
If BattleScreen.FieldEffects.OppMist = 0 Then
BattleScreen.FieldEffects.OppMist = 5
BattleScreen.BattleQuery.Add(New TextQueryObject("The opponent team became shrouded in mist!"))
Else
b = False
End If
End If
If b = False Then
BattleScreen.BattleQuery.Add(New TextQueryObject(Me.Name & " failed!"))
End If
End Sub
End Class
End Namespace