diff --git a/2.5DHero/2.5DHero/Pokemon/Attacks/Normal/WeatherBall.vb b/2.5DHero/2.5DHero/Pokemon/Attacks/Normal/WeatherBall.vb index 1cc490a01..9357c0c41 100644 --- a/2.5DHero/2.5DHero/Pokemon/Attacks/Normal/WeatherBall.vb +++ b/2.5DHero/2.5DHero/Pokemon/Attacks/Normal/WeatherBall.vb @@ -71,9 +71,12 @@ Namespace BattleSystem.Moves.Normal Return Me.Type End Function + 'Temporary Public Overrides Function GetBasePower(own As Boolean, BattleScreen As BattleScreen) As Integer - If BattleScreen.FieldEffects.Weather = BattleWeather.WeatherTypes.Sunny Or BattleScreen.FieldEffects.Weather = BattleWeather.WeatherTypes.Rain Or BattleScreen.FieldEffects.Weather = BattleWeather.WeatherTypes.Sandstorm Or BattleScreen.FieldEffects.Weather = BattleWeather.WeatherTypes.Hailstorm Then + If BattleScreen.FieldEffects.Weather = BattleWeather.WeatherTypes.Sandstorm Or BattleScreen.FieldEffects.Weather = BattleWeather.WeatherTypes.Hailstorm Then Return CInt(Me.Power * 2) + Else If BattleScreen.FieldEffects.Weather = BattleWeather.WeatherTypes.Sunny Or BattleScreen.FieldEffects.Weather = BattleWeather.WeatherTypes.Rain Then + Return CInt(Me.Power * 3) Else Return Me.Power End If @@ -81,4 +84,4 @@ Namespace BattleSystem.Moves.Normal End Class -End Namespace \ No newline at end of file +End Namespace