mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-01-18 06:51:08 +00:00
Fixes manaphy egg rate back to 1/256 (#2182)
This commit is contained in:
parent
f0072082b5
commit
0adddc4aea
@ -28,7 +28,7 @@ export class Egg {
|
||||
}
|
||||
|
||||
isManaphyEgg(): boolean {
|
||||
return this.tier === EggTier.COMMON && !(this.id % 255);
|
||||
return this.tier === EggTier.COMMON && !(this.id % 204);
|
||||
}
|
||||
|
||||
getKey(): string {
|
||||
|
Loading…
x
Reference in New Issue
Block a user