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,46 @@
namespace pkNX.Structures
{
public enum EvolutionType : byte
{
None,
LevelUpFriendship,
LevelUpFriendshipMorning,
LevelUpFriendshipNight,
LevelUp,
Trade,
TradeHeldItem,
TradeSpecies,
UseItem,
LevelUpATK,
LevelUpDEF,
LevelUpAeqD,
LevelUpECl5,
LevelUpECgeq5,
LevelUpNinjask,
LevelUpShedinja,
LevelUpBauty,
UseItemMale,
UseItemFemale,
LevelUpHeldItemDay,
LevelUpHeldItemNight,
LevelUpKnowMove,
LevelUpWithTeammate,
LevelUpMale,
LevelUpFemale,
LevelUpElectric,
LevelUpForest,
LevelUpCold,
LevelUpInverted,
LevelUpAffection50MoveType,
LevelUpFairy,
LevelUpWeather,
LevelUpMorning,
LevelUpNight,
LevelUpFormFemale1,
UNUSED,
LevelUpVersion,
LevelUpVersionDay,
LevelUpVersionNight,
LevelUpSummit,
}
}