mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-04-22 17:44:19 +01: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 {
|
isManaphyEgg(): boolean {
|
||||||
return this.tier === EggTier.COMMON && !(this.id % 255);
|
return this.tier === EggTier.COMMON && !(this.id % 204);
|
||||||
}
|
}
|
||||||
|
|
||||||
getKey(): string {
|
getKey(): string {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user