Initial Commit

This commit is contained in:
Kurt
2018-11-13 19:44:43 -08:00
parent c2cf579d4f
commit 52d70f0b9f
175 changed files with 13734 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
namespace pkNX.Structures
{
/// <summary>
/// Criteria for evolving to another species.
/// </summary>
public class EvolutionMethod
{
public EvolutionType Method;
public int Species;
public int Argument;
public int Form = -1;
public int Level;
public EvolutionMethod Copy(int species = -1)
{
if (species < 0)
species = Species;
return new EvolutionMethod
{
Method = Method,
Species = species,
Argument = Argument,
Form = Form,
Level = Level
};
}
}
}