Remove boss HP segment relative catch rate logic

This commit is contained in:
Flashfyre 2024-02-20 10:16:09 -05:00
parent 442ff6b50d
commit 5f19fbbb51
1 changed files with 1 additions and 5 deletions

View File

@ -3244,11 +3244,7 @@ export class AttemptCapturePhase extends PokemonPhase {
this.originalY = pokemon.y;
const relMaxHp = !pokemon.isBoss()
? pokemon.getMaxHp()
: Math.round(pokemon.getMaxHp() / pokemon.bossSegments);
const _3m = 3 * relMaxHp;
const _3m = 3 * pokemon.getMaxHp();
const _2h = 2 * pokemon.hp;
const catchRate = pokemon.species.catchRate;
const pokeballMultiplier = getPokeballCatchMultiplier(this.pokeballType);