Пример #1
0
 public EncounterSlot7GO(EncounterArea7g area, int species, int form, int min, int max) : base(area)
 {
     Species  = species;
     Form     = form;
     LevelMin = min;
     LevelMax = max;
 }
Пример #2
0
        public EncounterSlot7GO(EncounterArea7g area, int species, int form, Shiny shiny, PogoType type) : base(area)
        {
            Species  = species;
            Form     = form;
            LevelMin = type.GetMinLevel();
            LevelMax = EncountersGO.MAX_LEVEL;

            Shiny = shiny;
            Type  = type;
        }
Пример #3
0
 public EncounterSlot7GO(EncounterArea7g area, int species, int form, int start, int end, Shiny shiny, PogoType type)
     : base(area, start, end, shiny, type)
 {
     Species = species;
     Form    = form;
 }