• 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.
  • Ever thought it'd be cool to have your art, writing, or challenge runs featured on PokéCommunity? Click here for info - we'd love to spotlight your work!
  • Our weekly protagonist poll is now up! Vote for your favorite Trading Card Game 2 protagonist in the poll by clicking here.
  • 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.

Essentials battle tower Pokémon

YoungDante

Pokémon the Void
  • 3
    Posts
    11
    Years
    • Seen Jun 16, 2014
    Hi,

    I've been working on my own list of Pokémon for the battle tower in Pokémon Essentials, but there is something I would like to add. For each line in the btpokemon.txt file you can define the species, item, nature, ev spread and moves, but I'd like to add an override for the ability flag to this list (so Pokémon can have their hidden abilities where needed). I'd also like to change the form for some Pokémon. Can anyone help me with this, since I'm just a beginner at scripting RGSS?
    Any help will be greatly appreciated!
     
    Thanks for the reply, but I want to add an ability flag and form number to the btpokemon.txt file, so that I can override the form and ability for the Pokémon that appear there. Since there is no page on the battle tower/frontier on the wiki, I have now idea which script sections to edit or how to edit them. All I've found out is that the btpokemon is mentioned in PokemonOrgBattle, PokemonOrgBattleGenerator & PokemonEditor.
     
    Code:
    class PBPokemon
      attr_accessor :species
      attr_accessor :item
      attr_accessor :nature
      attr_accessor :move1
      attr_accessor :move2
      attr_accessor :move3
      attr_accessor :move4
      attr_accessor :ev
    
      def initialize(species,item,nature,move1,move2,move3,move4,ev)
        @species=species
        @item=item ? item : 0
        @nature=nature
        @move1=move1 ? move1 : 0
        @move2=move2 ? move2 : 0
        @move3=move3 ? move3 : 0
        @move4=move4 ? move4 : 0
        @ev=ev 
      end

    I think you should add here what you want, the script is PokemonOrgBattle.
    Reply if it works.
    It wuold be nice to add it to the wiki.
     
    Back
    Top