Shore Up doesnt get worse in other weather only better in sand

This commit is contained in:
darkfire006 2022-12-20 01:23:48 -06:00
parent 9e0407d48d
commit f103145780
1 changed files with 1 additions and 3 deletions

View File

@ -65,10 +65,8 @@
Select Case BattleScreen.FieldEffects.Weather
Case BattleWeather.WeatherTypes.Sandstorm
restoreHP = CInt(Math.Ceiling((2 / 3) * p.MaxHP))
Case BattleWeather.WeatherTypes.Clear
restoreHP = CInt(Math.Ceiling((1 / 2) * p.MaxHP))
Case Else
restoreHP = CInt(Math.Ceiling((1 / 4) * p.MaxHP))
restoreHP = CInt(Math.Ceiling((1 / 2) * p.MaxHP))
End Select
If p.HP < p.MaxHP And p.HP > 0 Then