From f2ca0927e0d01f91ac997a4f550f87cf892c1178 Mon Sep 17 00:00:00 2001 From: darkfire006 Date: Tue, 20 Dec 2022 17:11:56 -0600 Subject: [PATCH] Update for G9 reduce healing move PP to 5 --- P3D/Pokemon/Attacks/Flying/Roost.vb | 6 +++--- P3D/Pokemon/Attacks/Ground/SHoreUp.vb | 6 +++--- P3D/Pokemon/Attacks/Normal/MilkDrink.vb | 6 +++--- P3D/Pokemon/Attacks/Normal/Recover.vb | 6 +++--- P3D/Pokemon/Attacks/Normal/SlackOff.vb | 6 +++--- P3D/Pokemon/Attacks/Normal/Soft-Boiled.vb | 6 +++--- P3D/Pokemon/Attacks/Psychic/Rest.vb | 6 +++--- 7 files changed, 21 insertions(+), 21 deletions(-) diff --git a/P3D/Pokemon/Attacks/Flying/Roost.vb b/P3D/Pokemon/Attacks/Flying/Roost.vb index 608cdca8a..1251bba04 100644 --- a/P3D/Pokemon/Attacks/Flying/Roost.vb +++ b/P3D/Pokemon/Attacks/Flying/Roost.vb @@ -8,9 +8,9 @@ '#Definitions Me.Type = New Element(Element.Types.Flying) Me.ID = 355 - Me.OriginalPP = 10 - Me.CurrentPP = 10 - Me.MaxPP = 10 + Me.OriginalPP = 5 + Me.CurrentPP = 5 + Me.MaxPP = 5 Me.Power = 0 Me.Accuracy = 0 Me.Category = Categories.Status diff --git a/P3D/Pokemon/Attacks/Ground/SHoreUp.vb b/P3D/Pokemon/Attacks/Ground/SHoreUp.vb index 934c9ed1d..002a89afa 100644 --- a/P3D/Pokemon/Attacks/Ground/SHoreUp.vb +++ b/P3D/Pokemon/Attacks/Ground/SHoreUp.vb @@ -8,9 +8,9 @@ '#Definitions Me.Type = New Element(Element.Types.Ground) Me.ID = 659 - Me.OriginalPP = 10 - Me.CurrentPP = 10 - Me.MaxPP = 10 + Me.OriginalPP = 5 + Me.CurrentPP = 5 + Me.MaxPP = 5 Me.Power = 0 Me.Accuracy = 0 Me.Category = Categories.Status diff --git a/P3D/Pokemon/Attacks/Normal/MilkDrink.vb b/P3D/Pokemon/Attacks/Normal/MilkDrink.vb index afda138df..26247878d 100644 --- a/P3D/Pokemon/Attacks/Normal/MilkDrink.vb +++ b/P3D/Pokemon/Attacks/Normal/MilkDrink.vb @@ -8,9 +8,9 @@ '#Definitions Me.Type = New Element(Element.Types.Normal) Me.ID = 208 - Me.OriginalPP = 10 - Me.CurrentPP = 10 - Me.MaxPP = 10 + Me.OriginalPP = 5 + Me.CurrentPP = 5 + Me.MaxPP = 5 Me.Power = 0 Me.Accuracy = 0 Me.Category = Categories.Status diff --git a/P3D/Pokemon/Attacks/Normal/Recover.vb b/P3D/Pokemon/Attacks/Normal/Recover.vb index 13bedf4a5..480d17661 100644 --- a/P3D/Pokemon/Attacks/Normal/Recover.vb +++ b/P3D/Pokemon/Attacks/Normal/Recover.vb @@ -8,9 +8,9 @@ '#Definitions Me.Type = New Element(Element.Types.Normal) Me.ID = 105 - Me.OriginalPP = 10 - Me.CurrentPP = 10 - Me.MaxPP = 10 + Me.OriginalPP = 5 + Me.CurrentPP = 5 + Me.MaxPP = 5 Me.Power = 0 Me.Accuracy = 0 Me.Category = Categories.Status diff --git a/P3D/Pokemon/Attacks/Normal/SlackOff.vb b/P3D/Pokemon/Attacks/Normal/SlackOff.vb index bf415cdf7..04e458a1f 100644 --- a/P3D/Pokemon/Attacks/Normal/SlackOff.vb +++ b/P3D/Pokemon/Attacks/Normal/SlackOff.vb @@ -8,9 +8,9 @@ Namespace BattleSystem.Moves.Normal '#Definitions Me.Type = New Element(Element.Types.Normal) Me.ID = 303 - Me.OriginalPP = 10 - Me.CurrentPP = 10 - Me.MaxPP = 10 + Me.OriginalPP = 5 + Me.CurrentPP = 5 + Me.MaxPP = 5 Me.Power = 0 Me.Accuracy = 0 Me.Category = Categories.Status diff --git a/P3D/Pokemon/Attacks/Normal/Soft-Boiled.vb b/P3D/Pokemon/Attacks/Normal/Soft-Boiled.vb index 5cc7133ee..e8ed81e77 100644 --- a/P3D/Pokemon/Attacks/Normal/Soft-Boiled.vb +++ b/P3D/Pokemon/Attacks/Normal/Soft-Boiled.vb @@ -8,9 +8,9 @@ '#Definitions Me.Type = New Element(Element.Types.Normal) Me.ID = 135 - Me.OriginalPP = 10 - Me.CurrentPP = 10 - Me.MaxPP = 10 + Me.OriginalPP = 5 + Me.CurrentPP = 5 + Me.MaxPP = 5 Me.Power = 0 Me.Accuracy = 0 Me.Category = Categories.Status diff --git a/P3D/Pokemon/Attacks/Psychic/Rest.vb b/P3D/Pokemon/Attacks/Psychic/Rest.vb index 0b847b241..85d391654 100644 --- a/P3D/Pokemon/Attacks/Psychic/Rest.vb +++ b/P3D/Pokemon/Attacks/Psychic/Rest.vb @@ -8,9 +8,9 @@ Namespace BattleSystem.Moves.Psychic '#Definitions Me.Type = New Element(Element.Types.Psychic) Me.ID = 156 - Me.OriginalPP = 10 - Me.CurrentPP = 10 - Me.MaxPP = 10 + Me.OriginalPP = 5 + Me.CurrentPP = 5 + Me.MaxPP = 5 Me.Power = 0 Me.Accuracy = 0 Me.Category = Categories.Status