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 {
|
isManaphyEgg(): boolean {
|
||||||
return this.tier === EggTier.COMMON && !(this.id % 255);
|
return this.tier === EggTier.COMMON && !(this.id % 204);
|
||||||
}
|
}
|
||||||
|
|
||||||
getKey(): string {
|
getKey(): string {
|
||||||
|
|
Loading…
Reference in New Issue