mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-08-25 05:05:00 -05:00
Cleanup
Unused code from donor project
This commit is contained in:
@@ -3,33 +3,8 @@
|
||||
|
||||
namespace PKHeX
|
||||
{
|
||||
public enum Severity
|
||||
{
|
||||
Indeterminate = -2,
|
||||
Invalid = -1,
|
||||
Fishy = 0,
|
||||
Valid = 1,
|
||||
NotImplemented = 2,
|
||||
}
|
||||
public class LegalityCheck
|
||||
{
|
||||
public Severity Judgement = Severity.Invalid;
|
||||
public string Comment;
|
||||
public bool Valid => Judgement >= Severity.Fishy;
|
||||
|
||||
public LegalityCheck() { }
|
||||
public LegalityCheck(Severity s, string c)
|
||||
{
|
||||
Judgement = s;
|
||||
Comment = c;
|
||||
}
|
||||
}
|
||||
public class LegalityAnalysis
|
||||
{
|
||||
public bool Valid = false;
|
||||
public LegalityCheck EC, Nickname, PID, IDs, IVs, EVs;
|
||||
public string Report => getLegalityReport();
|
||||
|
||||
private readonly PK6 pk6;
|
||||
public LegalityAnalysis(PK6 pk)
|
||||
{
|
||||
@@ -121,9 +96,5 @@ public bool[] getRelearnValidity(int[] Moves)
|
||||
res[i] = Moves[i] == 0;
|
||||
return res;
|
||||
}
|
||||
private string getLegalityReport()
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user