• 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!
  • Which Pokémon Masters protagonist do you like most? Let us know by casting a vote in our Masters favorite protagonist poll here!
  • Red, Hilda, Paxton, or Kellyn - 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.

Item that lets you relearn moves

  • 152
    Posts
    15
    Years
    • Seen Jul 6, 2022
    What I mean is, summon the Relearn Moves list if I use a Item.
    How to do it? I have the Relearn Moves as a Common Event in my game.

    As for the second thing. It is what I put in the title:
    How I can do that the egg moves could be learned by another different "Relearn Moves"?
     
    Add in items txt:

    Code:
    801,YOURITEMINTERNALNAME,Name,8,0,Description,2,0,6,


    Add on PokemonItemEffects:

    Code:
    ItemHandlers::UseInField.add(:YOURITEMINTERNALNAME,proc{|item|
      $game_switches[87]=true
      $game_map.need_refresh = true
    })
    
    
    ItemHandlers::UseFromBag.add(:YOURITEMINTERNALNAME,proc{|item|
      $game_switches[87]=true
      $game_map.need_refresh = true
      next 2
    })

    So make you common event to auto-start when switch 87 is ON. Untested

    As for you second question, I aren't sure if I understand correctly. You wish moves that only can be learned this way, right? The easier way to do this, is to define moves that can only be learned by a evolved form/legendary pokémon, but at low level (before it's evolution level or 4 moves before the level that it's available for catch), like Mewtwo Psych Up.
     
    It works!
    thank you very much! :)

    About the egg moves, I want that the DayCare Center is not the only way of learning egg moves. I want that it could learn also from a item for example. And that it could learn the Charmander's family (for example).
    Like the relearn moves but with egg moves.
     
    Copy how TM's already work... Edit the TM.txt file with the new moves but only add certain Pokémon, that's the easiest way to use them as items and for Pokémon specific ones... Egg moves are just moves... the same as any other move, Pokémon are just designed to only "learn" them, once hatched from an egg.
     
    Back
    Top