Namespace BattleSystem.Moves.Psychic Public Class LightScreen Inherits Attack Public Sub New() '#Definitions Me.Type = New Element(Element.Types.Psychic) Me.ID = 113 Me.OriginalPP = 30 Me.CurrentPP = 30 Me.MaxPP = 30 Me.Power = 0 Me.Accuracy = 0 Me.Category = Categories.Status Me.ContestCategory = ContestCategories.Beauty Me.Name = "Light Screen" Me.Description = "A wondrous wall of light is put up to suppress damage from special attacks for five turns." Me.CriticalChance = 0 Me.IsHMMove = False Me.Target = Targets.AllOwn 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.RemovesFrozen = False Me.HasSecondaryEffect = False Me.IsHealingMove = False Me.IsRecoilMove = False Me.IsPunchingMove = False Me.IsDamagingMove = False Me.IsProtectMove = False Me.IsSoundMove = False 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 p As Pokemon = BattleScreen.OwnPokemon If own = False Then p = BattleScreen.OppPokemon End If Dim turns As Integer = BattleCalculation.FieldEffectTurns(BattleScreen, own, Me.Name.ToLower()) If own = True Then If BattleScreen.FieldEffects.OwnLightScreen = 0 Then BattleScreen.FieldEffects.OwnLightScreen = turns BattleScreen.BattleQuery.Add(New TextQueryObject("Light Screen raised your team's Special Defense!")) Else BattleScreen.BattleQuery.Add(New TextQueryObject(Me.Name & " failed!")) End If Else If BattleScreen.FieldEffects.OppLightScreen = 0 Then BattleScreen.FieldEffects.OppLightScreen = turns BattleScreen.BattleQuery.Add(New TextQueryObject("Light Screen raised the other team's Special Defense!")) Else BattleScreen.BattleQuery.Add(New TextQueryObject(Me.Name & " failed!")) End If End If End Sub End Class End Namespace