• Our software update is now concluded. You will need to reset your password to log in. In order to do this, you will have to click "Log in" in the top right corner and then "Forgot your password?".
  • Welcome to PokéCommunity! Register now and join one of the best fan communities on the 'net to talk Pokémon and more! We are not affiliated with The Pokémon Company or Nintendo.

[Battle] Emerald - How can I increase the damage in Double Battles?

25
Posts
7
Years
  • In Gen 3, moves that damage multiple targets are nerfed by 50%, but in future games it's only by 25%. Is there a way to change the damage done by multi-target moves in double battles to how it's done in later games? Maybe by changing a specific hex value, or something like that?
     
    Last edited:
    447
    Posts
    6
    Years
    • Seen today
    In Gen 3, moves that damage multiple targets are nerfed by 50%, but in future games it's only by 25%. Is there a way to change the damage done by multi-target moves in double battles to how it's done in later games? Maybe by changing a specific hex value, or something like that?

    Looks like you would change this and this code. For 25% reduction you could do:
    Code:
    damage = damage * 3 / 4;
     
    Back
    Top