Increase chances of evolution items

pull/2/head
Flashfyre 2023-10-23 00:04:42 -04:00
parent e09f881cd4
commit a22caa5106
1 changed files with 1 additions and 1 deletions

View File

@ -683,7 +683,7 @@ const modifierPool = {
].map(m => { m.setTier(ModifierTier.COMMON); return m; }),
[ModifierTier.GREAT]: [
new WeightedModifierType(modifierTypes.GREAT_BALL, 6),
new WeightedModifierType(modifierTypes.EVOLUTION_ITEM, 1),
new WeightedModifierType(modifierTypes.EVOLUTION_ITEM, 2),
new WeightedModifierType(modifierTypes.FULL_HEAL, (party: Pokemon[]) => {
const statusEffectPartyMemberCount = Math.min(party.filter(p => p.hp && !!p.status).length, 3);
return statusEffectPartyMemberCount * 6;