diff --git a/P3D/Battle/BattleSystemV2/BattleCalculation.vb b/P3D/Battle/BattleSystemV2/BattleCalculation.vb index ad17e9184..255041031 100644 --- a/P3D/Battle/BattleSystemV2/BattleCalculation.vb +++ b/P3D/Battle/BattleSystemV2/BattleCalculation.vb @@ -1963,15 +1963,15 @@ End If Case Element.Types.Electric If BattleScreen.FieldEffects.ElectricTerrain > 0 And BattleScreen.FieldEffects.IsGrounded(Own, BattleScreen) = True Then - SR = 1.5F + SR = 1.3F End If Case Element.Types.Grass If BattleScreen.FieldEffects.GrassyTerrain > 0 And BattleScreen.FieldEffects.IsGrounded(Own, BattleScreen) = True Then - SR = 1.5F + SR = 1.3F End If Case Element.Types.Psychic If BattleScreen.FieldEffects.PsychicTerrain > 0 And BattleScreen.FieldEffects.IsGrounded(Own, BattleScreen) = True Then - SR = 1.5F + SR = 1.3F End If End Select diff --git a/P3D/Pokemon/Attacks/Flying/Defog.vb b/P3D/Pokemon/Attacks/Flying/Defog.vb index 69703fe4f..4a482b86c 100644 --- a/P3D/Pokemon/Attacks/Flying/Defog.vb +++ b/P3D/Pokemon/Attacks/Flying/Defog.vb @@ -71,6 +71,10 @@ .OwnSpikes = 0 .OwnStealthRock = 0 .OwnToxicSpikes = 0 + .ElectricTerrain = 0 + .PsychicTerrain = 0 + .MistyTerrain = 0 + .GrassyTerrain = 0 End With End Sub diff --git a/P3D/Pokemon/Attacks/Steel/KingsShield.vb b/P3D/Pokemon/Attacks/Steel/KingsShield.vb index 2767c4d0d..e933d1bfc 100644 --- a/P3D/Pokemon/Attacks/Steel/KingsShield.vb +++ b/P3D/Pokemon/Attacks/Steel/KingsShield.vb @@ -16,7 +16,7 @@ Me.Category = Categories.Status Me.ContestCategory = ContestCategories.Smart Me.Name = Localization.GetString("move_name_" & Me.ID,"King's Shield") - Me.Description = "The user takes a defensive stance while it protects itself from damage. It also harshly lowers the Attack stat of any attacker who makes direct contact." + Me.Description = "The user takes a defensive stance while it protects itself from damage. It also lowers the Attack stat of any attacker who makes direct contact." Me.CriticalChance = 0 Me.IsHMMove = False Me.Target = Targets.Self