mirror of
https://github.com/kwsch/pkNX.git
synced 2026-09-14 21:45:17 -05:00
Add Species enum
This commit is contained in:
@@ -73,10 +73,10 @@ private void ReplaceTradeMethod(EvolutionMethod evo, int species, int evoIndex)
|
||||
return;
|
||||
case EvolutionType.TradeSpecies:
|
||||
evo.Method = EvolutionType.LevelUpWithTeammate;
|
||||
if (species == 588)
|
||||
evo.Argument = 616; // Karrablast with Shelmet
|
||||
if (species == 616)
|
||||
evo.Argument = 588; // Shelmet with Karrablast
|
||||
if (species == (int)Species.Karrablast)
|
||||
evo.Argument = (int)Species.Shelmet; // Karrablast with Shelmet
|
||||
if (species == (int)Species.Shelmet)
|
||||
evo.Argument = (int)Species.Karrablast; // Shelmet with Karrablast
|
||||
return;
|
||||
|
||||
case EvolutionType.LevelUpVersion:
|
||||
|
||||
Reference in New Issue
Block a user