From 4cef68cbc30754cf338a8b59191ae0392ef0a4e6 Mon Sep 17 00:00:00 2001 From: Kaphotics Date: Mon, 28 Mar 2016 22:42:29 -0700 Subject: [PATCH] Add pokeball-only fossil pkm Exlusions for the other balls happen in the other ball checks. --- Legality/Tables.cs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Legality/Tables.cs b/Legality/Tables.cs index 5b05f76a2..6cf70c171 100644 --- a/Legality/Tables.cs +++ b/Legality/Tables.cs @@ -737,24 +737,23 @@ public static partial class Legal 032, // Via Nidoran-F 313, // Via Illumise }; - internal static readonly int[] Ban_Gen3Ball = { 495, 498, 501, //1 - Snivy, Tepig, Oshawott 496, 499, 502, //2 497, 500, 503, //3 + 566, 567, 696, 697, 698, 699 // Fossil Only obtain }; internal static readonly int[] Ban_Gen4Ball = { 152, 155, 158, //1 - Chikorita, Cyndaquil, Totodile 153, 156, 159, //2 154, 157, 160, //3 - 495, 498, 501, //1 - Snivy, Tepig, Oshawott 496, 499, 502, //2 497, 500, 503, //3 + 566, 567, 696, 697, 698, 699 // Fossil Only obtain }; - #endregion } }