Ejemplo n.º 1
0
        public void CanGenerateMG5Case()
        {
            const Species species = Species.Haxorus;
            var           pk      = new PK5 {
                Species = (int)species
            };
            var ez = EncounterMovesetGenerator.GenerateEncounters(pk, pk.Moves, GameVersion.W2).OfType <EncounterStatic>().First();

            ez.Should().NotBeNull("Shiny Haxorus stationary encounter exists for B2/W2");

            var criteria = EncounterCriteria.Unrestricted;
            var tr       = new SimpleTrainerInfo(GameVersion.B2)
            {
                TID = 57600,
                SID = 62446,
            };

            for (var nature = Nature.Hardy; nature <= Nature.Quirky; nature++)
            {
                criteria = criteria with {
                    Nature = nature
                };
                var pkm = ez.ConvertToPKM(tr, criteria);
                pkm.Nature.Should().Be((int)nature, "not nature locked");
                pkm.IsShiny.Should().BeTrue("encounter is shiny locked");
                pkm.TID.Should().Be(tr.TID);
                pkm.SID.Should().Be(tr.SID);
            }
        }
    }
Ejemplo n.º 2
0
 private static void SetNPokemonData(PK5 pk5, int lang)
 {
     pk5.IV_HP    = pk5.IV_ATK = pk5.IV_DEF = pk5.IV_SPA = pk5.IV_SPD = pk5.IV_SPE = 30;
     pk5.NPokémon = NSparkle;
     pk5.OT_Name  = GetOT(lang);
     pk5.TID      = 00002;
     pk5.SID      = 00000;
 }
Ejemplo n.º 3
0
 internal void SetNPokemonData(PK5 pk5, int lang)
 {
     pk5.IV_HP    = pk5.IV_ATK = pk5.IV_DEF = pk5.IV_SPA = pk5.IV_SPD = pk5.IV_SPE = 30;
     pk5.NPokémon = NSparkle;
     pk5.OT_Name  = Legal.GetG5OT_NSparkle(lang);
     pk5.TID      = 00002;
     pk5.SID      = 00000;
 }
Ejemplo n.º 4
0
        public void HasOriginalMetLocation5(GameVersion g)
        {
            var pk5 = new PK5 {
                Version = (int)g
            };

            pk5.HasOriginalMetLocation.Should().BeTrue();
        }
Ejemplo n.º 5
0
        public void PIDIVMatchingTest5()
        {
            // Shiny Mystery Gift PGF; IVs are unrelated.
            var pkS5 = new PK5 {
                PID = 0xBEEF0037, TID = 01337, SID = 48097
            };

            Assert.AreEqual(PIDType.G5MGShiny, MethodFinder.Analyze(pkS5)?.Type, "Unable to match PID to PGF Shiny spread");
        }
Ejemplo n.º 6
0
        public void PIDIVMatchingTest5()
        {
            // Shiny Mystery Gift PGF; IVs are unrelated.
            var pkS5 = new PK5 {
                PID = 0xBEEF0037, TID = 01337, SID = 48097
            };

            Assert.Equal(PIDType.G5MGShiny, MethodFinder.Analyze(pkS5).Type);
        }
Ejemplo n.º 7
0
    private static void SetDexSpecies(SaveFile sav, int species, int regionSize)
    {
        var pk5 = new PK5 {
            Species = species, TID = 1337
        };                                                 // non-shiny

        pk5.Gender = pk5.GetSaneGender();

        sav.SetBoxSlotAtIndex(pk5, 0);

        CheckFlags(sav, species, regionSize);
    }
Ejemplo n.º 8
0
        private static void SetDexSpecies(SaveFile sav, int species, int regionSize)
        {
            var pk5 = new PK5 {
                Species = species, TID = 1337
            };                                                 // non-shiny

            pk5.Gender = pk5.GetSaneGender();

            int boxofs = sav.GetBoxSlotOffset(0, 0);

            sav.SetStoredSlot(pk5, boxofs);

            CheckFlags(sav, species, regionSize);
        }
Ejemplo n.º 9
0
 public virtual void CopyTo(PK5 pk5)
 {
 }
Ejemplo n.º 10
0
        private void populateFieldsPK5()
        {
            PK5 pk5 = pkm as PK5;

            if (pk5 == null)
            {
                return;
            }

            // Do first
            pk5.Stat_Level = PKX.getLevel(pk5.Species, pk5.EXP);
            if (pk5.Stat_Level == 100 && !HaX)
            {
                pk5.EXP = PKX.getEXP(pk5.Stat_Level, pk5.Species);
            }

            CB_Species.SelectedValue = pk5.Species;
            TB_Level.Text            = pk5.Stat_Level.ToString();
            TB_EXP.Text = pk5.EXP.ToString();

            // Load rest
            CHK_Fateful.Checked      = pk5.FatefulEncounter;
            CHK_IsEgg.Checked        = pk5.IsEgg;
            CHK_Nicknamed.Checked    = pk5.IsNicknamed;
            Label_OTGender.Text      = gendersymbols[pk5.OT_Gender];
            Label_OTGender.ForeColor = pk5.OT_Gender == 1 ? Color.Red : Color.Blue;
            TB_PID.Text = pk5.PID.ToString("X8");
            CB_HeldItem.SelectedValue = pk5.HeldItem;
            CB_Nature.SelectedValue   = pk5.Nature;
            TB_TID.Text        = pk5.TID.ToString("00000");
            TB_SID.Text        = pk5.SID.ToString("00000");
            TB_Nickname.Text   = pk5.Nickname;
            TB_OT.Text         = pk5.OT_Name;
            TB_Friendship.Text = pk5.CurrentFriendship.ToString();
            if (pk5.CurrentHandler == 1)  // HT
            {
                GB_nOT.BackgroundImage = mixedHighlight;
                GB_OT.BackgroundImage  = null;
            }
            else                  // = 0
            {
                GB_OT.BackgroundImage  = mixedHighlight;
                GB_nOT.BackgroundImage = null;
            }
            CB_Language.SelectedValue      = pk5.Language;
            CB_GameOrigin.SelectedValue    = pk5.Version;
            CB_EncounterType.SelectedValue = pk5.Gen4 ? pk5.EncounterType : 0;
            CB_Ball.SelectedValue          = pk5.Ball;

            CAL_MetDate.Value = pk5.MetDate ?? new DateTime(2000, 1, 1);

            if (pk5.Egg_Location != 0)
            {
                // Was obtained initially as an egg.
                CHK_AsEgg.Checked        = true;
                GB_EggConditions.Enabled = true;

                CB_EggLocation.SelectedValue = pk5.Egg_Location;
                CAL_EggDate.Value            = pk5.EggMetDate ?? new DateTime(2000, 1, 1);
            }
            else
            {
                CAL_EggDate.Value = new DateTime(2000, 01, 01); CHK_AsEgg.Checked = GB_EggConditions.Enabled = false; CB_EggLocation.SelectedValue = 0;
            }

            CB_MetLocation.SelectedValue = pk5.Met_Location;

            TB_MetLevel.Text = pk5.Met_Level.ToString();

            // Reset Label and ComboBox visibility, as well as non-data checked status.
            Label_PKRS.Visible     = CB_PKRSStrain.Visible = CHK_Infected.Checked = pk5.PKRS_Strain != 0;
            Label_PKRSdays.Visible = CB_PKRSDays.Visible = pk5.PKRS_Days != 0;

            // Set SelectedIndexes for PKRS
            CB_PKRSStrain.SelectedIndex = pk5.PKRS_Strain;
            CHK_Cured.Checked           = pk5.PKRS_Strain > 0 && pk5.PKRS_Days == 0;
            CB_PKRSDays.SelectedIndex   = Math.Min(CB_PKRSDays.Items.Count - 1, pk5.PKRS_Days); // to strip out bad hacked 'rus

            TB_Cool.Text   = pk5.CNT_Cool.ToString();
            TB_Beauty.Text = pk5.CNT_Beauty.ToString();
            TB_Cute.Text   = pk5.CNT_Cute.ToString();
            TB_Smart.Text  = pk5.CNT_Smart.ToString();
            TB_Tough.Text  = pk5.CNT_Tough.ToString();
            TB_Sheen.Text  = pk5.CNT_Sheen.ToString();

            TB_HPIV.Text            = pk5.IV_HP.ToString();
            TB_ATKIV.Text           = pk5.IV_ATK.ToString();
            TB_DEFIV.Text           = pk5.IV_DEF.ToString();
            TB_SPEIV.Text           = pk5.IV_SPE.ToString();
            TB_SPAIV.Text           = pk5.IV_SPA.ToString();
            TB_SPDIV.Text           = pk5.IV_SPD.ToString();
            CB_HPType.SelectedValue = pk5.HPType;

            TB_HPEV.Text  = pk5.EV_HP.ToString();
            TB_ATKEV.Text = pk5.EV_ATK.ToString();
            TB_DEFEV.Text = pk5.EV_DEF.ToString();
            TB_SPEEV.Text = pk5.EV_SPE.ToString();
            TB_SPAEV.Text = pk5.EV_SPA.ToString();
            TB_SPDEV.Text = pk5.EV_SPD.ToString();

            CB_Move1.SelectedValue = pk5.Move1;
            CB_Move2.SelectedValue = pk5.Move2;
            CB_Move3.SelectedValue = pk5.Move3;
            CB_Move4.SelectedValue = pk5.Move4;
            CB_PPu1.SelectedIndex  = pk5.Move1_PPUps;
            CB_PPu2.SelectedIndex  = pk5.Move2_PPUps;
            CB_PPu3.SelectedIndex  = pk5.Move3_PPUps;
            CB_PPu4.SelectedIndex  = pk5.Move4_PPUps;
            TB_PP1.Text            = pk5.Move1_PP.ToString();
            TB_PP2.Text            = pk5.Move2_PP.ToString();
            TB_PP3.Text            = pk5.Move3_PP.ToString();
            TB_PP4.Text            = pk5.Move4_PP.ToString();

            // Set Form if count is enough, else cap.
            CB_Form.SelectedIndex = CB_Form.Items.Count > pk5.AltForm ? pk5.AltForm : CB_Form.Items.Count - 1;

            // Load Extrabyte Value
            TB_ExtraByte.Text = pk5.Data[Convert.ToInt32(CB_ExtraBytes.Text, 16)].ToString();

            updateStats();

            TB_EXP.Text            = pk5.EXP.ToString();
            Label_Gender.Text      = gendersymbols[pk5.Gender];
            Label_Gender.ForeColor = pk5.Gender == 2 ? Label_Species.ForeColor : (pk5.Gender == 1 ? Color.Red : Color.Blue);
            CHK_NSparkle.Checked   = pk5.NPokémon;

            if (HaX)
            {
                DEV_Ability.SelectedValue = pk5.Ability;
            }
            else if (pk5.HiddenAbility)
            {
                CB_Ability.SelectedIndex = CB_Ability.Items.Count - 1;
            }
            else
            {
                int[] abils = SAV.Personal.getAbilities(pk5.Species, pk5.AltForm);
                int   abil  = Array.IndexOf(abils, pk5.Ability);

                if (abil < 0)
                {
                    CB_Ability.SelectedIndex = 0;
                }
                else if (abil == 2)
                {
                    CB_Ability.SelectedIndex = 2;
                }
                else if (abils[0] == abils[1] || abils[1] == 0)
                {
                    CB_Ability.SelectedIndex = pk5.PIDAbility;
                }
                else
                {
                    CB_Ability.SelectedIndex = abil < 0 || abil >= CB_Ability.Items.Count ? 0 : abil;
                }
            }
        }
Ejemplo n.º 11
0
        private PKM preparePK5()
        {
            PK5 pk5 = pkm as PK5;

            if (pk5 == null)
            {
                return(null);
            }

            pk5.Species  = WinFormsUtil.getIndex(CB_Species);
            pk5.HeldItem = WinFormsUtil.getIndex(CB_HeldItem);
            pk5.TID      = Util.ToInt32(TB_TID.Text);
            pk5.SID      = Util.ToInt32(TB_SID.Text);
            pk5.EXP      = Util.ToUInt32(TB_EXP.Text);
            pk5.PID      = Util.getHEXval(TB_PID.Text);

            pk5.Nature           = (byte)WinFormsUtil.getIndex(CB_Nature);
            pk5.FatefulEncounter = CHK_Fateful.Checked;
            pk5.Gender           = PKX.getGender(Label_Gender.Text);
            pk5.AltForm          = (MT_Form.Enabled ? Convert.ToInt32(MT_Form.Text) : CB_Form.Enabled ? CB_Form.SelectedIndex : 0) & 0x1F;
            pk5.EV_HP            = Util.ToInt32(TB_HPEV.Text);
            pk5.EV_ATK           = Util.ToInt32(TB_ATKEV.Text);
            pk5.EV_DEF           = Util.ToInt32(TB_DEFEV.Text);
            pk5.EV_SPE           = Util.ToInt32(TB_SPEEV.Text);
            pk5.EV_SPA           = Util.ToInt32(TB_SPAEV.Text);
            pk5.EV_SPD           = Util.ToInt32(TB_SPDEV.Text);

            pk5.CNT_Cool   = Util.ToInt32(TB_Cool.Text);
            pk5.CNT_Beauty = Util.ToInt32(TB_Beauty.Text);
            pk5.CNT_Cute   = Util.ToInt32(TB_Cute.Text);
            pk5.CNT_Smart  = Util.ToInt32(TB_Smart.Text);
            pk5.CNT_Tough  = Util.ToInt32(TB_Tough.Text);
            pk5.CNT_Sheen  = Util.ToInt32(TB_Sheen.Text);

            pk5.PKRS_Days   = CB_PKRSDays.SelectedIndex;
            pk5.PKRS_Strain = CB_PKRSStrain.SelectedIndex;
            pk5.Nickname    = TB_Nickname.Text;
            pk5.Move1       = WinFormsUtil.getIndex(CB_Move1);
            pk5.Move2       = WinFormsUtil.getIndex(CB_Move2);
            pk5.Move3       = WinFormsUtil.getIndex(CB_Move3);
            pk5.Move4       = WinFormsUtil.getIndex(CB_Move4);
            pk5.Move1_PP    = WinFormsUtil.getIndex(CB_Move1) > 0 ? Util.ToInt32(TB_PP1.Text) : 0;
            pk5.Move2_PP    = WinFormsUtil.getIndex(CB_Move2) > 0 ? Util.ToInt32(TB_PP2.Text) : 0;
            pk5.Move3_PP    = WinFormsUtil.getIndex(CB_Move3) > 0 ? Util.ToInt32(TB_PP3.Text) : 0;
            pk5.Move4_PP    = WinFormsUtil.getIndex(CB_Move4) > 0 ? Util.ToInt32(TB_PP4.Text) : 0;
            pk5.Move1_PPUps = WinFormsUtil.getIndex(CB_Move1) > 0 ? CB_PPu1.SelectedIndex : 0;
            pk5.Move2_PPUps = WinFormsUtil.getIndex(CB_Move2) > 0 ? CB_PPu2.SelectedIndex : 0;
            pk5.Move3_PPUps = WinFormsUtil.getIndex(CB_Move3) > 0 ? CB_PPu3.SelectedIndex : 0;
            pk5.Move4_PPUps = WinFormsUtil.getIndex(CB_Move4) > 0 ? CB_PPu4.SelectedIndex : 0;

            pk5.IV_HP       = Util.ToInt32(TB_HPIV.Text);
            pk5.IV_ATK      = Util.ToInt32(TB_ATKIV.Text);
            pk5.IV_DEF      = Util.ToInt32(TB_DEFIV.Text);
            pk5.IV_SPE      = Util.ToInt32(TB_SPEIV.Text);
            pk5.IV_SPA      = Util.ToInt32(TB_SPAIV.Text);
            pk5.IV_SPD      = Util.ToInt32(TB_SPDIV.Text);
            pk5.IsEgg       = CHK_IsEgg.Checked;
            pk5.IsNicknamed = CHK_Nicknamed.Checked;

            pk5.OT_Name           = TB_OT.Text;
            pk5.CurrentFriendship = Util.ToInt32(TB_Friendship.Text);

            // Default Dates
            DateTime?egg_date     = null;
            int      egg_location = 0;

            if (CHK_AsEgg.Checked) // If encountered as an egg, load the Egg Met data from fields.
            {
                egg_date     = CAL_EggDate.Value;
                egg_location = WinFormsUtil.getIndex(CB_EggLocation);
            }
            // Egg Met Data
            pk5.EggMetDate   = egg_date;
            pk5.Egg_Location = egg_location;
            // Met Data
            pk5.MetDate      = CAL_MetDate.Value;
            pk5.Met_Location = WinFormsUtil.getIndex(CB_MetLocation);

            if (pk5.IsEgg && pk5.Met_Location == 0)    // If still an egg, it has no hatch location/date. Zero it!
            {
                pk5.MetDate = null;
            }

            pk5.Ball          = WinFormsUtil.getIndex(CB_Ball);
            pk5.Met_Level     = Util.ToInt32(TB_MetLevel.Text);
            pk5.OT_Gender     = PKX.getGender(Label_OTGender.Text);
            pk5.EncounterType = WinFormsUtil.getIndex(CB_EncounterType);
            pk5.Version       = WinFormsUtil.getIndex(CB_GameOrigin);
            pk5.Language      = WinFormsUtil.getIndex(CB_Language);

            pk5.NPokémon = CHK_NSparkle.Checked;

            // Toss in Party Stats
            Array.Resize(ref pk5.Data, pk5.SIZE_PARTY);
            pk5.Stat_Level     = Util.ToInt32(TB_Level.Text);
            pk5.Stat_HPCurrent = Util.ToInt32(Stat_HP.Text);
            pk5.Stat_HPMax     = Util.ToInt32(Stat_HP.Text);
            pk5.Stat_ATK       = Util.ToInt32(Stat_ATK.Text);
            pk5.Stat_DEF       = Util.ToInt32(Stat_DEF.Text);
            pk5.Stat_SPE       = Util.ToInt32(Stat_SPE.Text);
            pk5.Stat_SPA       = Util.ToInt32(Stat_SPA.Text);
            pk5.Stat_SPD       = Util.ToInt32(Stat_SPD.Text);

            if (HaX)
            {
                pk5.Ability    = (byte)WinFormsUtil.getIndex(DEV_Ability);
                pk5.Stat_Level = (byte)Math.Min(Convert.ToInt32(MT_Level.Text), byte.MaxValue);
            }
            else
            {
                pk5.Ability       = (byte)Array.IndexOf(GameInfo.Strings.abilitylist, CB_Ability.Text.Remove(CB_Ability.Text.Length - 4));
                pk5.HiddenAbility = CB_Ability.SelectedIndex > 1; // not 0 or 1
            }

            // Fix Moves if a slot is empty
            pk5.FixMoves();

            pk5.RefreshChecksum();
            return(pk5);
        }
Ejemplo n.º 12
0
 public override void CopyTo(PK5 pk5) => Data.CopyTo(pk5.HeldMail);
Ejemplo n.º 13
0
        public void AddToBoxesButtonClick(Object sender, EventArgs events)
        {
            var        sav          = SaveFileEditor.SAV;                                        // current save
            int        generation   = sav.Generation;                                            // the generation of the current save -- used to determine the PK save format
            List <PKM> pokemonList  = new List <PKM>();                                          // list of all Pokemon that will be added to the sav
            string     showdownData = this.input.Text;                                           // user's input

            var pokemonArray = JsonConvert.DeserializeObject <List <RawPokemon> >(showdownData); //jsonify the data

            foreach (RawPokemon rawPokemon in pokemonArray)
            {
                PKM pokemon = new PK2();

                //Determine save format
                switch (generation)
                {
                case 1:
                    pokemon = new PK1();
                    break;

                case 2:
                    pokemon = new PK2();
                    break;

                case 3:
                    pokemon = new PK3();
                    break;

                case 4:
                    pokemon = new PK4();
                    break;

                case 5:
                    pokemon = new PK5();
                    break;

                case 6:
                    pokemon = new PK6();
                    break;

                case 7:
                    pokemon = new PK7();
                    break;

                case 8:
                    pokemon = new PK8();
                    break;
                }

                // Set the species according to the Species enum
                int speciesAsNumber = 0;

                //Check if the Pokemon is Alolan or not; if it is, do some extra logic to set the proper form
                if (rawPokemon.Species.Contains("Alolan"))
                {
                    string[] pokemon_name = rawPokemon.Species.Split('_');
                    speciesAsNumber = (int)(Species)Enum.Parse(typeof(Species), pokemon_name[1]);
                    pokemon.SetForm(810);
                    pokemon.Species = speciesAsNumber;
                }
                else
                {
                    speciesAsNumber = (int)(Species)Enum.Parse(typeof(Species), rawPokemon.Species);
                    pokemon.Species = speciesAsNumber;
                }

                // Check to see if the Pokemon has forms (i.e. Flabebe, Shellos, etc.), and if it does, randomly generate one
                if (rawPokemon.Species.Contains("Burmy"))
                {
                    int form = random.Next(0, burmyForms.Length - 1);
                    pokemon.SetForm(form);
                }
                else if (rawPokemon.Species.Contains("Shellos"))
                {
                    int form = random.Next(0, shellosForms.Length - 1);
                    pokemon.SetForm(form);
                }
                else if (rawPokemon.Species.Contains("Scatterbug"))
                {
                    int form = random.Next(0, scatterbugForms.Length - 1);
                    pokemon.SetForm(form);
                }
                else if (rawPokemon.Species.Contains("Flabébé"))
                {
                    int form = random.Next(0, flabebeForms.Length - 1);
                    pokemon.SetForm(form);
                }
                else if (rawPokemon.Species.Contains("Oricorio"))
                {
                    int form = random.Next(0, oricorioForms.Length - 1);
                    pokemon.SetForm(form);
                }
                else if (rawPokemon.Species.Contains("Minior"))
                {
                    int form = random.Next(0, miniorForms.Length - 1);
                    pokemon.SetForm(form);
                }

                GameVersion  game         = (GameVersion)sav.Game;
                EncounterEgg encounterEgg = new EncounterEgg(speciesAsNumber, pokemon.Form, 1, sav.Generation, game);
                PKM          pokemonAsEgg = encounterEgg.ConvertToPKM(sav);
                pokemonAsEgg.IsEgg  = true;
                pokemon.IsNicknamed = true;
                pokemon.Nickname    = "Egg";

                // Set the ability
                string ability         = rawPokemon.Ability.Replace(" ", "");
                int    abilityAsNumber = (int)(Ability)Enum.Parse(typeof(Ability), ability);
                pokemonAsEgg.SetAbility(abilityAsNumber);

                //Set gender
                switch (rawPokemon.Gender)
                {
                case "M":
                    pokemonAsEgg.SetGender(0);
                    break;

                case "F":
                    pokemonAsEgg.SetGender(1);
                    break;

                case "N":
                    pokemonAsEgg.SetGender(2);
                    break;
                }

                // Set Nature via the Nature enum
                int natureAsNumber = (int)(Nature)Enum.Parse(typeof(Nature), rawPokemon.Nature);
                pokemonAsEgg.Nature = natureAsNumber;

                // Set the IVs
                pokemonAsEgg.IV_HP  = rawPokemon.HP;
                pokemonAsEgg.IV_ATK = rawPokemon.Atk;
                pokemonAsEgg.IV_DEF = rawPokemon.Def;
                pokemonAsEgg.IV_SPA = rawPokemon.SpA;
                pokemonAsEgg.IV_SPD = rawPokemon.SpD;
                pokemonAsEgg.IV_SPE = rawPokemon.Spe;

                // Set moves and make sure they have the proper PP
                string move = "";
                if (string.IsNullOrEmpty(rawPokemon.MoveOne) == false)
                {
                    move = rawPokemon.MoveOne.Replace("-", "");
                    move = move.Replace(" ", "");
                    pokemonAsEgg.Move1        = (int)(Move)Enum.Parse(typeof(Move), move);
                    pokemonAsEgg.RelearnMove1 = pokemonAsEgg.Move1;
                }
                if (string.IsNullOrEmpty(rawPokemon.MoveTwo) == false)
                {
                    move = rawPokemon.MoveTwo.Replace("-", "");
                    move = move.Replace(" ", "");
                    pokemonAsEgg.Move2        = (int)(Move)Enum.Parse(typeof(Move), move);
                    pokemonAsEgg.RelearnMove2 = pokemonAsEgg.Move2;
                }
                if (string.IsNullOrEmpty(rawPokemon.MoveThree) == false)
                {
                    move = rawPokemon.MoveThree.Replace("-", "");
                    move = move.Replace(" ", "");
                    pokemonAsEgg.Move3        = (int)(Move)Enum.Parse(typeof(Move), move);
                    pokemonAsEgg.RelearnMove3 = pokemonAsEgg.Move3;
                }
                if (string.IsNullOrEmpty(rawPokemon.MoveFour) == false)
                {
                    move = rawPokemon.MoveFour.Replace("-", "");
                    move = move.Replace(" ", "");
                    pokemonAsEgg.Move4        = (int)(Move)Enum.Parse(typeof(Move), move);
                    pokemonAsEgg.RelearnMove4 = pokemonAsEgg.Move4;
                }

                pokemonAsEgg.SetMaximumPPCurrent();

                //Finally, if the Pokemon is supposed to be shiny, make it so
                if (rawPokemon.IsShiny == "true")
                {
                    CommonEdits.SetShiny(pokemonAsEgg);
                }
                else
                {
                    CommonEdits.SetUnshiny(pokemonAsEgg);
                }

                pokemonAsEgg.Met_Location = 0;

                if (generation == 7 || generation == 6 || generation == 5)
                {
                    pokemonAsEgg.Egg_Location = Locations.Daycare5;
                }
                else
                {
                    pokemonAsEgg.Egg_Location = Locations.Daycare4;
                }

                pokemonAsEgg.IsNicknamed = true;
                pokemonAsEgg.Nickname    = SpeciesName.GetSpeciesNameGeneration(0, sav.Language, generation);

                //Hatch counter is for some reason called "CurrentFriendship".  Don't ask me why, I don't know.
                pokemonAsEgg.CurrentFriendship = 1;

                pokemonList.Add(pokemonAsEgg);
            }

            // Import Pokemon, reload the boxes so they can be seen, show a message and close the window
            sav.ImportPKMs(pokemonList);
            SaveFileEditor.ReloadSlots();
            MessageBox.Show("Done!");
            this.input.Clear();
            this.form.Close();
        }