Exemple #1
0
 public EncounterSlot8GO(EncounterArea8g area, int species, int form, GameVersion gameVersion, int min, int max) : base(area)
 {
     Species     = species;
     Form        = form;
     LevelMin    = min;
     LevelMax    = max;
     OriginGroup = gameVersion;
 }
Exemple #2
0
        public EncounterSlot8GO(EncounterArea8g area, int species, int form, int start, int end, Shiny shiny, PogoType type, GameVersion originGroup)
            : base(area, start, end, shiny, type)
        {
            Species = species;
            Form    = form;

            OriginGroup = originGroup;
        }
Exemple #3
0
        public EncounterSlot8GO(EncounterArea8g area, int species, int form, GameVersion gameVersion, PogoType type, Shiny shiny, int start, int end) : base(area)
        {
            Species  = species;
            Form     = form;
            LevelMin = type.GetMinLevel();
            LevelMax = 40;
            Start    = start;
            End      = end;

            Shiny = shiny;
            Type  = type;

            OriginGroup = gameVersion;
        }