mirror of
https://github.com/kwsch/PKHeX
synced 2024-12-03 17:29:13 +00:00
1174e354b1
* Heavily rewrites the `PKH` abstractions. * Uses HOME's core-side classes as the transfer middlemen instead of direct A->B transfers. * Revises logic to account for most of HOME's quirks (scale/height copying, safe refuge PLA) Future revisions hinge on better handling of evotree (need better metadata about existing as specific evolutions in each game). --------- Co-authored-by: sora10pls <17801814+sora10pls@users.noreply.github.com> Co-authored-by: Lusamine <30205550+Lusamine@users.noreply.github.com>
6 lines
87 B
C#
6 lines
87 B
C#
namespace PKHeX.Core;
|
|
|
|
public interface IPokerusStatus
|
|
{
|
|
byte PKRS { get; set; }
|
|
}
|