Change rare egg move rarity to correlate with egg rarity

pull/16/head
Flashfyre 2024-03-02 23:24:28 -05:00
parent eaaa7a2310
commit 585b8c73f6
1 changed files with 5 additions and 4 deletions

View File

@ -467,9 +467,10 @@ export class EggHatchPhase extends Phase {
for (let s = 0; s < ret.ivs.length; s++)
ret.ivs[s] = Math.max(ret.ivs[s], secondaryIvs[s]);
const rand = Utils.randSeedInt(10);
this.eggMoveIndex = Utils.randSeedInt(6 * Math.pow(2, 3 - this.egg.tier))
? Utils.randSeedInt(3)
: 3;
this.eggMoveIndex = rand ? Math.floor((rand - 1) / 3) : 3;
}, this.egg.id, EGG_SEED.toString());
return ret;