Fix special beam move order

Differs from gen4 which has frenzy plant last
This commit is contained in:
Kurt
2021-09-16 12:50:55 -07:00
parent e166f86027
commit c3051b3002
2 changed files with 2 additions and 2 deletions

View File

@@ -218,9 +218,9 @@ public static partial class Legal
(int)Move.GrassPledge,
(int)Move.FirePledge,
(int)Move.WaterPledge,
(int)Move.FrenzyPlant,
(int)Move.BlastBurn,
(int)Move.HydroCannon,
(int)Move.FrenzyPlant,
(int)Move.DracoMeteor,
(int)Move.DragonAscent,
};

View File

@@ -697,9 +697,9 @@ public static partial class Legal
(int)Move.GrassPledge,
(int)Move.FirePledge,
(int)Move.WaterPledge,
(int)Move.FrenzyPlant,
(int)Move.BlastBurn,
(int)Move.HydroCannon,
(int)Move.FrenzyPlant,
(int)Move.DracoMeteor,
(int)Move.SteelBeam,
};