Update confuse chance to modern value (#1085)
Changed from 1/2 to 1/3, as games after gen 5 use this value
This commit is contained in:
parent
bc43cebb81
commit
27139c0d8c
|
@ -235,7 +235,7 @@ export class ConfusedTag extends BattlerTag {
|
|||
pokemon.scene.queueMessage(getPokemonMessage(pokemon, ' is\nconfused!'));
|
||||
pokemon.scene.unshiftPhase(new CommonAnimPhase(pokemon.scene, pokemon.getBattlerIndex(), undefined, CommonAnim.CONFUSION));
|
||||
|
||||
if (pokemon.randSeedInt(2)) {
|
||||
if (pokemon.randSeedInt(3)) {
|
||||
const atk = pokemon.getBattleStat(Stat.ATK);
|
||||
const def = pokemon.getBattleStat(Stat.DEF);
|
||||
const damage = Math.ceil(((((2 * pokemon.level / 5 + 2) * 40 * atk / def) / 50) + 2) * (pokemon.randSeedInt(15, 85) / 100));
|
||||
|
|
Loading…
Reference in New Issue