Updated mechanics from SwSh
3 terrains are a +30% instead of +50% Defog removes terrains Kings Shield is only a single atk red
This commit is contained in:
parent
e5b1242384
commit
b538376a1e
|
@ -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
|
||||
|
||||
|
|
|
@ -71,6 +71,10 @@
|
|||
.OwnSpikes = 0
|
||||
.OwnStealthRock = 0
|
||||
.OwnToxicSpikes = 0
|
||||
.ElectricTerrain = 0
|
||||
.PsychicTerrain = 0
|
||||
.MistyTerrain = 0
|
||||
.GrassyTerrain = 0
|
||||
End With
|
||||
End Sub
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue