From f4980e079ba09d874135b5baf1bc12545e3df02b Mon Sep 17 00:00:00 2001 From: CaptainSegis Date: Wed, 21 Dec 2016 19:01:13 -0500 Subject: [PATCH] Fix two turns: part 4. Also fixed confusion conditions for Outrage and similar moves. Attempt on fix "but there's no target" issue. --- .../2.5DHero/Battle/BattleSystemV2/Battle.vb | 20 +++++++++++++++---- 2.5DHero/2.5DHero/Pokemon/Attacks/Attack.vb | 9 +++++++++ .../Pokemon/Attacks/Dragon/Outrage.vb | 19 ++++++++++++++++-- .../2.5DHero/Pokemon/Attacks/Flying/Bounce.vb | 4 ++++ .../2.5DHero/Pokemon/Attacks/Flying/Fly.vb | 4 ++++ .../Pokemon/Attacks/Flying/SkyAttack.vb | 4 ++++ .../Pokemon/Attacks/Grass/PetalDance.vb | 19 ++++++++++++++++-- .../Pokemon/Attacks/Grass/SolarBeam.vb | 4 ++++ .../2.5DHero/Pokemon/Attacks/Ground/Dig.vb | 3 +++ .../2.5DHero/Pokemon/Attacks/Ice/IceBall.vb | 4 ++++ .../Pokemon/Attacks/Normal/RazorWind.vb | 3 +++ .../Pokemon/Attacks/Normal/SkullBash.vb | 3 +++ .../2.5DHero/Pokemon/Attacks/Normal/Thrash.vb | 17 +++++++++++++++- .../2.5DHero/Pokemon/Attacks/Normal/Uproar.vb | 18 ++++++++++++++--- .../2.5DHero/Pokemon/Attacks/Rock/Rollout.vb | 4 ++++ .../2.5DHero/Pokemon/Attacks/Water/Dive.vb | 3 +++ 16 files changed, 126 insertions(+), 12 deletions(-) diff --git a/2.5DHero/2.5DHero/Battle/BattleSystemV2/Battle.vb b/2.5DHero/2.5DHero/Battle/BattleSystemV2/Battle.vb index 014c6bc5d..09dd5a004 100644 --- a/2.5DHero/2.5DHero/Battle/BattleSystemV2/Battle.vb +++ b/2.5DHero/2.5DHero/Battle/BattleSystemV2/Battle.vb @@ -939,8 +939,8 @@ Dim bounce As Integer Dim dig As Integer Dim dive As Integer - Dim skyDrop As Integer - Dim shadowForce As Integer + Dim skyDrop As Integer 'not implemented yet + Dim shadowForce As Integer 'not implemented yet Dim skullBash As Integer Dim skyAttack As Integer Dim solarBeam As Integer @@ -1243,6 +1243,7 @@ If p.HasVolatileStatus(Pokemon.VolatileStatus.Flinch) = True Then p.RemoveVolatileStatus(Pokemon.VolatileStatus.Flinch) BattleScreen.BattleQuery.Add(New TextQueryObject(p.GetDisplayName() & " flinched and couldn't move!")) + moveUsed.InflictedFlinch(own, BattleScreen) If p.Ability.Name.ToLower() = "steadfast" Then RaiseStat(own, Not own, BattleScreen, "Speed", 1, "", "steadfast") End If @@ -1350,7 +1351,18 @@ End If 'If there's no opponent (opponent is fainted), skip to end of turn: - If moveUsed.Target <> Attack.Targets.Self And moveUsed.Target <> Attack.Targets.All Then + Dim NoTargetCheck As Boolean = True + If moveUsed.ProtectAffected = False Then + NoTargetCheck = False + Select Case moveUsed.Name.ToLower + Case "accupressure", "confide", "feint", "hold hands", "hyperspace fury", "hyperspace hole", "phantom force", "psych up", "play nice", "roar", "role play", "shadow force", "sketch", "transform", "whirlwind" + NoTargetCheck = True + End Select + End If + If IsChargingTurn(BattleScreen, own, moveUsed) Then + NoTargetCheck = False + End If + If NoTargetCheck = True Then If op.HP <= 0 Or op.Status = Pokemon.StatusProblems.Fainted Then BattleScreen.BattleQuery.Add(New TextQueryObject("But there was no target...")) Exit Sub @@ -1392,7 +1404,7 @@ If moveUsed.ProtectAffected = False Then UseTwoTurnCheck = False Select Case moveUsed.Name.ToLower - Case "psych up", "play nice", "role play" + Case "accupressure", "confide", "feint", "hold hands", "hyperspace fury", "hyperspace hole", "phantom force", "psych up", "play nice", "roar", "role play", "shadow force", "sketch", "transform", "whirlwind" UseTwoTurnCheck = True End Select End If diff --git a/2.5DHero/2.5DHero/Pokemon/Attacks/Attack.vb b/2.5DHero/2.5DHero/Pokemon/Attacks/Attack.vb index 3a33ab0f2..84264778f 100644 --- a/2.5DHero/2.5DHero/Pokemon/Attacks/Attack.vb +++ b/2.5DHero/2.5DHero/Pokemon/Attacks/Attack.vb @@ -1709,6 +1709,15 @@ 'DO NOTHING End Sub + ''' + ''' Event that occurs when a flinch has been inflicted. + ''' + ''' If the own Pokémon used the move. + ''' Reference to the BattleScreen. + Public Overridable Sub InflictedFlinch(ByVal own As Boolean, ByVal BattleScreen As BattleScreen) + 'DO NOTHING + End Sub + ''' ''' Returns the attack stat of a Pokémon (Physical or Special). ''' diff --git a/2.5DHero/2.5DHero/Pokemon/Attacks/Dragon/Outrage.vb b/2.5DHero/2.5DHero/Pokemon/Attacks/Dragon/Outrage.vb index a14af011b..532967141 100644 --- a/2.5DHero/2.5DHero/Pokemon/Attacks/Dragon/Outrage.vb +++ b/2.5DHero/2.5DHero/Pokemon/Attacks/Dragon/Outrage.vb @@ -73,13 +73,25 @@ End Sub Private Sub Interruption(ByVal own As Boolean, ByVal BattleScreen As BattleScreen) + Dim outrage As Integer = 0 + Dim p As Pokemon + If own = True Then + outrage = BattleScreen.FieldEffects.OwnOutrage + p = BattleScreen.OwnPokemon + Else + outrage = BattleScreen.FieldEffects.OppOutrage + p = BattleScreen.OppPokemon + End If + + If outrage = 1 Then + BattleScreen.Battle.InflictConfusion(own, own, BattleScreen, p.GetDisplayName() & "'s Outrage stopped.", "move:outrage") + End If + If own = True Then BattleScreen.FieldEffects.OwnOutrage = 0 Else BattleScreen.FieldEffects.OppOutrage = 0 End If - - BattleScreen.Battle.InflictConfusion(own, own, BattleScreen, "", "move:outrage") End Sub Public Overrides Sub MoveHasNoEffect(own As Boolean, BattleScreen As BattleScreen) @@ -94,6 +106,9 @@ Interruption(own, BattleScreen) End Sub + Public Overrides Sub InflictedFlinch(own As Boolean, BattleScreen As BattleScreen) + Interruption(own, BattleScreen) + End Sub End Class End Namespace \ No newline at end of file diff --git a/2.5DHero/2.5DHero/Pokemon/Attacks/Flying/Bounce.vb b/2.5DHero/2.5DHero/Pokemon/Attacks/Flying/Bounce.vb index 1c217a395..e68baca78 100644 --- a/2.5DHero/2.5DHero/Pokemon/Attacks/Flying/Bounce.vb +++ b/2.5DHero/2.5DHero/Pokemon/Attacks/Flying/Bounce.vb @@ -161,6 +161,10 @@ MoveFails(own, BattleScreen) End Sub + Public Overrides Sub InflictedFlinch(own As Boolean, BattleScreen As BattleScreen) + MoveFails(own, BattleScreen) + End Sub + End Class End Namespace diff --git a/2.5DHero/2.5DHero/Pokemon/Attacks/Flying/Fly.vb b/2.5DHero/2.5DHero/Pokemon/Attacks/Flying/Fly.vb index 71dfa28a0..d1366ae5a 100644 --- a/2.5DHero/2.5DHero/Pokemon/Attacks/Flying/Fly.vb +++ b/2.5DHero/2.5DHero/Pokemon/Attacks/Flying/Fly.vb @@ -159,6 +159,10 @@ MoveFails(own, BattleScreen) End Sub + Public Overrides Sub InflictedFlinch(own As Boolean, BattleScreen As BattleScreen) + MoveFails(own, BattleScreen) + End Sub + End Class End Namespace \ No newline at end of file diff --git a/2.5DHero/2.5DHero/Pokemon/Attacks/Flying/SkyAttack.vb b/2.5DHero/2.5DHero/Pokemon/Attacks/Flying/SkyAttack.vb index 2cc9af780..fc89fd630 100644 --- a/2.5DHero/2.5DHero/Pokemon/Attacks/Flying/SkyAttack.vb +++ b/2.5DHero/2.5DHero/Pokemon/Attacks/Flying/SkyAttack.vb @@ -162,6 +162,10 @@ MoveFails(own, BattleScreen) End Sub + Public Overrides Sub InflictedFlinch(own As Boolean, BattleScreen As BattleScreen) + MoveFails(own, BattleScreen) + End Sub + End Class End Namespace \ No newline at end of file diff --git a/2.5DHero/2.5DHero/Pokemon/Attacks/Grass/PetalDance.vb b/2.5DHero/2.5DHero/Pokemon/Attacks/Grass/PetalDance.vb index 218351280..f62feefd1 100644 --- a/2.5DHero/2.5DHero/Pokemon/Attacks/Grass/PetalDance.vb +++ b/2.5DHero/2.5DHero/Pokemon/Attacks/Grass/PetalDance.vb @@ -73,13 +73,25 @@ End Sub Private Sub Interruption(ByVal own As Boolean, ByVal BattleScreen As BattleScreen) + Dim petalDance As Integer = 0 + Dim p As Pokemon + If own = True Then + petalDance = BattleScreen.FieldEffects.OwnPetalDance + p = BattleScreen.OwnPokemon + Else + petalDance = BattleScreen.FieldEffects.OppPetalDance + p = BattleScreen.OppPokemon + End If + + If petalDance = 1 Then + BattleScreen.Battle.InflictConfusion(own, own, BattleScreen, p.GetDisplayName() & "'s PetalDance stopped.", "move:petaldance") + End If + If own = True Then BattleScreen.FieldEffects.OwnPetalDance = 0 Else BattleScreen.FieldEffects.OppPetalDance = 0 End If - - BattleScreen.Battle.InflictConfusion(own, own, BattleScreen, "", "move:petaldance") End Sub Public Overrides Sub MoveHasNoEffect(own As Boolean, BattleScreen As BattleScreen) @@ -94,6 +106,9 @@ Interruption(own, BattleScreen) End Sub + Public Overrides Sub InflictedFlinch(own As Boolean, BattleScreen As BattleScreen) + Interruption(own, BattleScreen) + End Sub End Class End Namespace \ No newline at end of file diff --git a/2.5DHero/2.5DHero/Pokemon/Attacks/Grass/SolarBeam.vb b/2.5DHero/2.5DHero/Pokemon/Attacks/Grass/SolarBeam.vb index 4101cb42f..16bfb61cc 100644 --- a/2.5DHero/2.5DHero/Pokemon/Attacks/Grass/SolarBeam.vb +++ b/2.5DHero/2.5DHero/Pokemon/Attacks/Grass/SolarBeam.vb @@ -180,6 +180,10 @@ MoveFails(own, BattleScreen) End Sub + Public Overrides Sub InflictedFlinch(own As Boolean, BattleScreen As BattleScreen) + MoveFails(own, BattleScreen) + End Sub + End Class End Namespace \ No newline at end of file diff --git a/2.5DHero/2.5DHero/Pokemon/Attacks/Ground/Dig.vb b/2.5DHero/2.5DHero/Pokemon/Attacks/Ground/Dig.vb index ed50e14d0..b2807772c 100644 --- a/2.5DHero/2.5DHero/Pokemon/Attacks/Ground/Dig.vb +++ b/2.5DHero/2.5DHero/Pokemon/Attacks/Ground/Dig.vb @@ -163,6 +163,9 @@ MoveFails(own, BattleScreen) End Sub + Public Overrides Sub InflictedFlinch(own As Boolean, BattleScreen As BattleScreen) + MoveFails(own, BattleScreen) + End Sub End Class diff --git a/2.5DHero/2.5DHero/Pokemon/Attacks/Ice/IceBall.vb b/2.5DHero/2.5DHero/Pokemon/Attacks/Ice/IceBall.vb index b877af70f..3735cb8a3 100644 --- a/2.5DHero/2.5DHero/Pokemon/Attacks/Ice/IceBall.vb +++ b/2.5DHero/2.5DHero/Pokemon/Attacks/Ice/IceBall.vb @@ -122,6 +122,10 @@ Interruption(own, BattleScreen) End Sub + Public Overrides Sub InflictedFlinch(own As Boolean, BattleScreen As BattleScreen) + Interruption(own, BattleScreen) + End Sub + End Class End Namespace diff --git a/2.5DHero/2.5DHero/Pokemon/Attacks/Normal/RazorWind.vb b/2.5DHero/2.5DHero/Pokemon/Attacks/Normal/RazorWind.vb index 8b0ce4f31..d78b89fe9 100644 --- a/2.5DHero/2.5DHero/Pokemon/Attacks/Normal/RazorWind.vb +++ b/2.5DHero/2.5DHero/Pokemon/Attacks/Normal/RazorWind.vb @@ -161,6 +161,9 @@ MoveFails(own, BattleScreen) End Sub + Public Overrides Sub InflictedFlinch(own As Boolean, BattleScreen As BattleScreen) + MoveFails(own, BattleScreen) + End Sub End Class End Namespace \ No newline at end of file diff --git a/2.5DHero/2.5DHero/Pokemon/Attacks/Normal/SkullBash.vb b/2.5DHero/2.5DHero/Pokemon/Attacks/Normal/SkullBash.vb index 2fd2303ef..7a53c5f60 100644 --- a/2.5DHero/2.5DHero/Pokemon/Attacks/Normal/SkullBash.vb +++ b/2.5DHero/2.5DHero/Pokemon/Attacks/Normal/SkullBash.vb @@ -163,6 +163,9 @@ MoveFails(own, BattleScreen) End Sub + Public Overrides Sub InflictedFlinch(own As Boolean, BattleScreen As BattleScreen) + MoveFails(own, BattleScreen) + End Sub End Class End Namespace \ No newline at end of file diff --git a/2.5DHero/2.5DHero/Pokemon/Attacks/Normal/Thrash.vb b/2.5DHero/2.5DHero/Pokemon/Attacks/Normal/Thrash.vb index 835444280..233acb99e 100644 --- a/2.5DHero/2.5DHero/Pokemon/Attacks/Normal/Thrash.vb +++ b/2.5DHero/2.5DHero/Pokemon/Attacks/Normal/Thrash.vb @@ -73,13 +73,25 @@ End Sub Private Sub Interruption(ByVal own As Boolean, ByVal BattleScreen As BattleScreen) + Dim thrash As Integer = 0 + Dim p As Pokemon + If own = True Then + thrash = BattleScreen.FieldEffects.OwnThrash + p = BattleScreen.OwnPokemon + Else + thrash = BattleScreen.FieldEffects.OppThrash + p = BattleScreen.OppPokemon + End If + + If thrash = 1 Then + BattleScreen.Battle.InflictConfusion(own, own, BattleScreen, p.GetDisplayName() & "'s Thrash stopped.", "move:thrash") + End If If own = True Then BattleScreen.FieldEffects.OwnThrash = 0 Else BattleScreen.FieldEffects.OppThrash = 0 End If - BattleScreen.Battle.InflictConfusion(own, own, BattleScreen, "", "move:thrash") End Sub Public Overrides Sub MoveHasNoEffect(own As Boolean, BattleScreen As BattleScreen) @@ -94,6 +106,9 @@ Interruption(own, BattleScreen) End Sub + Public Overrides Sub InflictedFlinch(own As Boolean, BattleScreen As BattleScreen) + Interruption(own, BattleScreen) + End Sub End Class End Namespace \ No newline at end of file diff --git a/2.5DHero/2.5DHero/Pokemon/Attacks/Normal/Uproar.vb b/2.5DHero/2.5DHero/Pokemon/Attacks/Normal/Uproar.vb index f1428a849..349969754 100644 --- a/2.5DHero/2.5DHero/Pokemon/Attacks/Normal/Uproar.vb +++ b/2.5DHero/2.5DHero/Pokemon/Attacks/Normal/Uproar.vb @@ -64,7 +64,7 @@ End If End Sub - Private Sub StopMove(own As Boolean, BattleScreen As BattleScreen) + Private Sub Interruption(own As Boolean, BattleScreen As BattleScreen) Dim p As Pokemon = BattleScreen.OwnPokemon If own = False Then p = BattleScreen.OppPokemon @@ -79,11 +79,23 @@ End Sub Public Overrides Sub MoveHasNoEffect(own As Boolean, BattleScreen As BattleScreen) - Me.StopMove(own, BattleScreen) + Me.Interruption(own, BattleScreen) End Sub Public Overrides Sub MoveFailsSoundproof(own As Boolean, BattleScreen As BattleScreen) - Me.StopMove(own, BattleScreen) + Me.Interruption(own, BattleScreen) + End Sub + + Public Overrides Sub MoveProtectedDetected(own As Boolean, BattleScreen As BattleScreen) + Interruption(own, BattleScreen) + End Sub + + Public Overrides Sub InflictedFlinch(own As Boolean, BattleScreen As BattleScreen) + Interruption(own, BattleScreen) + End Sub + + Public Overrides Sub MoveMisses(own As Boolean, BattleScreen As BattleScreen) + Interruption(own, BattleScreen) End Sub End Class diff --git a/2.5DHero/2.5DHero/Pokemon/Attacks/Rock/Rollout.vb b/2.5DHero/2.5DHero/Pokemon/Attacks/Rock/Rollout.vb index 27bd50f41..85359c5f1 100644 --- a/2.5DHero/2.5DHero/Pokemon/Attacks/Rock/Rollout.vb +++ b/2.5DHero/2.5DHero/Pokemon/Attacks/Rock/Rollout.vb @@ -122,6 +122,10 @@ Namespace BattleSystem.Moves.Rock Interruption(own, BattleScreen) End Sub + Public Overrides Sub InflictedFlinch(own As Boolean, BattleScreen As BattleScreen) + Interruption(own, BattleScreen) + End Sub + End Class End Namespace \ No newline at end of file diff --git a/2.5DHero/2.5DHero/Pokemon/Attacks/Water/Dive.vb b/2.5DHero/2.5DHero/Pokemon/Attacks/Water/Dive.vb index deb1ed2bb..75e54675c 100644 --- a/2.5DHero/2.5DHero/Pokemon/Attacks/Water/Dive.vb +++ b/2.5DHero/2.5DHero/Pokemon/Attacks/Water/Dive.vb @@ -165,6 +165,9 @@ MoveFails(own, BattleScreen) End Sub + Public Overrides Sub InflictedFlinch(own As Boolean, BattleScreen As BattleScreen) + MoveFails(own, BattleScreen) + End Sub End Class End Namespace \ No newline at end of file