From 729a69dbeefef15c9b00a647ef566bafeef9dd32 Mon Sep 17 00:00:00 2001 From: Kaphotics Date: Sat, 19 Mar 2016 12:47:24 -0700 Subject: [PATCH] Add giratina form move case --- Legality/Core.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Legality/Core.cs b/Legality/Core.cs index 99dfd5be9..99eec685a 100644 --- a/Legality/Core.cs +++ b/Legality/Core.cs @@ -102,7 +102,7 @@ internal static IEnumerable getValidMoves(PK6 pk6) { List r = new List {0}; int species = pk6.Species; - if (species == 386 || species == 492) // Deoxys & Shaymin + if (species == 386 || species == 492 || species == 487) // Deoxys & Shaymin & Giratina { int formcount = PersonalAO[species].FormeCount; for (int i = 0; i < formcount; i++)