mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 12:33:06 +00:00
Update PogoType.cs
This commit is contained in:
parent
34321ee52c
commit
f8dd2cf977
1 changed files with 1 additions and 3 deletions
|
@ -26,8 +26,6 @@ namespace PKHeX.Core
|
|||
|
||||
/// <summary> Purified, requires Lv. 8 and IV=1 (Premier Ball) </summary>
|
||||
Shadow = 30,
|
||||
/// <summary> Purified, requires Lv. 8 and IV=1 (No Premier Ball) </summary>
|
||||
ShadowPGU,
|
||||
}
|
||||
|
||||
public static class PogoTypeExtensions
|
||||
|
@ -45,7 +43,6 @@ namespace PKHeX.Core
|
|||
PogoType.FieldP => 15,
|
||||
PogoType.Field20 => 20,
|
||||
PogoType.Shadow => 8,
|
||||
PogoType.ShadowPGU => 8,
|
||||
_ => 1,
|
||||
};
|
||||
|
||||
|
@ -89,6 +86,7 @@ namespace PKHeX.Core
|
|||
PogoType.FieldP => Ball.Poke,
|
||||
PogoType.Raid15 => Ball.Premier,
|
||||
PogoType.Raid20 => Ball.Premier,
|
||||
PogoType.Shadow => Ball.Premier,
|
||||
_ => Ball.None, // Poke, Great, Ultra
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue