Update Battle.vb

This commit is contained in:
Capt_Segis 2016-09-11 01:28:26 -05:00 committed by GitHub
parent 7ac3e39ee8
commit 011ce46050
1 changed files with 8 additions and 3 deletions

View File

@ -4148,8 +4148,13 @@ endthisround:
If .FieldEffects.OwnLeechSeed > 0 Then 'LeechSeed
If .OwnPokemon.HP > 0 And .OppPokemon.HP > 0 And .OppPokemon.HP < .OppPokemon.MaxHP Then
Dim loseHP As Integer = CInt(Math.Ceiling( .OwnPokemon.HP / 8))
Dim loseHP As Integer = CInt(Math.Ceiling( .OwnPokemon.MaxHP / 8))
Dim currHP As Integer = .OwnPokemon.HP
If loseHP > currHP
loseHP = currHP
End If
Dim addHP As Integer = loseHP
If Not .OppPokemon.Item Is Nothing Then
If .OppPokemon.Item.Name.ToLower() = "big root" And .FieldEffects.CanUseItem(False) = True And .FieldEffects.CanUseOwnItem(False, BattleScreen) = True Then
@ -6276,4 +6281,4 @@ endthisround:
End Class
End Namespace
End Namespace