mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-27 14:30:56 +00:00
6ee7a8724b
* Rework gen1 slot loading Slot templates are precomputed from ROM data and just loaded straight in, with tight coupling to the encounter area (grouped by slot types). * Revise fuzzy met check for underleveled wild evos Example: Level 23 poliwhirl in RBY as a level 50 poliwhirl, will assume the chain is 25-50 for poliwhirl (as poliwag evolves at 25). Instead of revising the origin chain, just ignore the evo min level in the comparison. Previous commit fixed it for gen1. * Rework gen2-4 slot loading Gen4 not finished, Type Encounter data and some edge encounters not recognizing yet... * Add feebas slots for old/good encounters * Begin moving properties Great news! Gen5-7 need to be de-dumbed like Gen1-4. Then I can remove the bang (!) on the Area accessor and ensure that it's never null! * Split off XD pokespot slot encounter table type * Set area in constructor * Deduplicate g3 roaming encounters * Deduplicate xd encounter locations (rebattle) Only difference is met location; no need to create 500 extra encounter objects. A simple contains check is ok (rarely in gen3 format). * Make all slots have a readonly reference to their parent area * Minor clean * Remove "Safari" slot type flag Can be determined via other means (generation-location), allows us to reduce the size of SlotType member to a byte Output of slot binaries didn't preserve the Safari flag anyway. * Update SlotType.cs * Handle type encounters correctly * Merge safari area into regular xy area * Merge dexnav accessor logic * fix some logic so that tests pass again rearrange g5 dw init to be done outside of static constructor (initializer instead) PIDGenerator: friend safari slots now generate with required flawless IV count * Add cianwood tentacool gift encounter * Remove unnecessary abstractions Fake area just returned a slot; since Slots have a non-null reference to the area, we can just return the slot and use the API to grab a list of possible slots for the chain. Increase restrictiveness of location/type get-set operations * Minor tweaks, pass parameters DexNav observed state isn't necessary to use, only need to see if it's possible to dexnav. Now that we have metadata for slots, we can. * Remove unused legality tables
80 lines
No EOL
2.6 KiB
C#
80 lines
No EOL
2.6 KiB
C#
using System.Collections.Generic;
|
|
using System.Linq;
|
|
|
|
namespace PKHeX.Core
|
|
{
|
|
/// <inheritdoc />
|
|
/// <summary>
|
|
/// <see cref="GameVersion.GO"/> encounter area for <see cref="GameVersion.GG"/>
|
|
/// </summary>
|
|
public sealed class EncounterArea7g : EncounterArea
|
|
{
|
|
internal static EncounterArea7g[] GetArea()
|
|
{
|
|
var area = new EncounterArea7g { Location = 50, Type = SlotType.GoPark };
|
|
static EncounterSlot GetSlot(EncounterArea7g area, int species, int form)
|
|
{
|
|
return new EncounterSlot7GO(area, species, form, 1, 40, GameVersion.GO);
|
|
}
|
|
|
|
var obtainable = Enumerable.Range(1, 150).Concat(Enumerable.Range(808, 2)); // count : 152
|
|
var AlolanKanto = new byte[]
|
|
{
|
|
// Level 1+
|
|
019, // Rattata
|
|
020, // Raticate
|
|
027, // Sandshrew
|
|
028, // Sandslash
|
|
037, // Vulpix
|
|
038, // Ninetales
|
|
050, // Diglett
|
|
051, // Dugtrio
|
|
052, // Meowth
|
|
053, // Persian
|
|
074, // Geodude
|
|
075, // Graveler
|
|
076, // Golem
|
|
088, // Grimer
|
|
089, // Muk
|
|
103, // Exeggutor
|
|
105, // Marowak
|
|
|
|
// Level 15+
|
|
026, // Raichu
|
|
};
|
|
|
|
var regular = obtainable.Select(z => GetSlot(area, z, 0));
|
|
var alolan = AlolanKanto.Select(z => GetSlot(area, z, 1));
|
|
var slots = regular.Concat(alolan).ToArray();
|
|
|
|
slots[slots.Length - 1].LevelMin = 15; // Raichu
|
|
slots[(int)Species.Mewtwo - 1].LevelMin = 15;
|
|
slots[(int)Species.Articuno - 1].LevelMin = 15;
|
|
slots[(int)Species.Zapdos - 1].LevelMin = 15;
|
|
slots[(int)Species.Moltres - 1].LevelMin = 15;
|
|
|
|
area.Slots = slots;
|
|
return new[] { area };
|
|
}
|
|
|
|
public override IEnumerable<EncounterSlot> GetMatchingSlots(PKM pkm, IReadOnlyList<EvoCriteria> chain)
|
|
{
|
|
foreach (var slot in Slots)
|
|
{
|
|
foreach (var evo in chain)
|
|
{
|
|
if (slot.Species != evo.Species)
|
|
continue;
|
|
|
|
if (!slot.IsLevelWithinRange(pkm.Met_Level))
|
|
break;
|
|
if (slot.Form != evo.Form)
|
|
break;
|
|
|
|
yield return slot;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |