Update Battle.vb
This commit is contained in:
parent
4b149a9da6
commit
2e95d14f87
|
@ -2659,7 +2659,9 @@ endthisround:
|
||||||
End If
|
End If
|
||||||
|
|
||||||
If p.Ability.Name.ToLower() = "contrary" And BattleScreen.FieldEffects.CanUseAbility(own, BattleScreen) = True Then
|
If p.Ability.Name.ToLower() = "contrary" And BattleScreen.FieldEffects.CanUseAbility(own, BattleScreen) = True Then
|
||||||
Return LowerStat(own, own, BattleScreen, Stat, val, message & vbNewLine & "Contrary reverted the stat change!", "contrary")
|
Dim val_aux As Integer = val
|
||||||
|
val = 0
|
||||||
|
Return LowerStat(own, own, BattleScreen, Stat, val_aux, message & vbNewLine & "Contrary reverted the stat change!", "contrary")
|
||||||
End If
|
End If
|
||||||
|
|
||||||
If p.Ability.Name.ToLower() = "simple" Then
|
If p.Ability.Name.ToLower() = "simple" Then
|
||||||
|
@ -2862,7 +2864,9 @@ endthisround:
|
||||||
End If
|
End If
|
||||||
|
|
||||||
If p.Ability.Name.ToLower() = "contrary" And BattleScreen.FieldEffects.CanUseAbility(own, BattleScreen) = True Then
|
If p.Ability.Name.ToLower() = "contrary" And BattleScreen.FieldEffects.CanUseAbility(own, BattleScreen) = True Then
|
||||||
Return RaiseStat(own, own, BattleScreen, Stat, val, message & vbNewLine & "Contrary reverted the stat change!", "contrary")
|
Dim val_aux2 As Integer = val
|
||||||
|
val = 0
|
||||||
|
Return RaiseStat(own, own, BattleScreen, Stat, val_aux2, message & vbNewLine & "Contrary reverted the stat change!", "contrary")
|
||||||
End If
|
End If
|
||||||
|
|
||||||
If p.Ability.Name.ToLower() = "simple" Then
|
If p.Ability.Name.ToLower() = "simple" Then
|
||||||
|
|
Loading…
Reference in New Issue