• Just a reminder that providing specifics on, sharing links to, or naming websites where ROMs can be accessed is against the rules. If your post has any of this information it will be removed.
  • Dawn, Gloria, Juliana, or Summer - which Pokémon protagonist is your favorite? Let us know by voting in our poll!
  • Our friends from the Johto Times are hosting a favorite Pokémon poll - and we'd love for you to participate! Click here for information on how to vote for your favorites!
  • 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.

[Other Question] Resizing Enemy Trainer Sprites

  • 8
    Posts
    5
    Years
    • Seen Apr 6, 2020
    I've gotten EBS working and everything looks great! But I'm not sure what the best way of downsizing the trainer sprites in battle is. Does anyone have a good free software that can resize the huge trainers.
     
    Did you read the code?
    Code:
    #===============================================================================                          
    #  Elite Battle System (settings)
    #===============================================================================                          
    # Selects which UI you want to show
    # [If you're using the BW kit, it is recommended to go with style 0 as the other
    #  styles are not fully adapted for best use.]
    #
    # 0 - Default Essentials UI
    # 1 - Elite Battle UI
    # 2 - Next Gen UI
    EBUISTYLE = 2
     
    # Toggle to show the Pokeball-styled team preview
    SHOWPARTYARROWS = true
     
    # Waiting period (in seconds) before battle "camera" starts moving
    BATTLEMOTIONTIMER = 30
    #-------------------------------------------------------------------------------
    [B][I][U]# Various config constants used for sprite scaling  
    # used to scale the trainer bitmaps to 200%
    TRAINERSPRITESCALE = 2[/U][/I][/B]
     
    # used to scale the Pokemon bitmaps to 200%
    POKEMONSPRITESCALE = 2
     
    # used to scale the backsprite for battle perspective (200%)
    BACKSPRITESCALE = 2
     
    Back
    Top