• 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.
  • 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!
  • Akari, Selene, Mint, Solana - which Pokémon protagonist is your favorite? Let us know by voting in our poll!
  • 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.

Psuedo Pokemon

  • 60
    Posts
    14
    Years
    • Seen Jun 2, 2023
    How do I make it so that a certain pokemon I encounter cannot be caught and wont be registered in the pokedex (not even as seen). Akin to the Lavender town ghosts but able to attack and being attacked.
     
    It's all in the tutorial, find "pbThrowPokeBall" and add:

    Code:
    def pbThrowPokeBall(idxPokemon,ball,rareness=nil,showplayer=false)
         if $game_switches[XXX]
           pbDisplay(_INTL("He dodged the Ball!"))
           return
         end
     
    For the "not even registered as seen" portion, you can put the following after your forced encounter event:

    Code:
    $Trainer.seen[PBSpecies::POKEMON] = false

    (Where POKEMON is the symbol name of the pokemon in question)
     
    Back
    Top