• 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.

[Essentials Tutorial] Creating methods similar to the "Masuda" method

UnderMybrella

Wandering Programmer
280
Posts
13
Years
  • Note: You can find the tutorial here.
    Summary:
    For anyone that doesn't know, the Masuda Method is a method that makes it 6 times as likely for an egg to hatch shiny. That is, if the two parents come from different languages. In this tutorial, I'll show you how to add a method that gives eggs a 1/2048 (So 4x more likely) chance of hatching shiny if both parent's "obtain" text is the same.
    Implementing
    So. First of all, let's open up to this script, PokemonDayCare. This script has pretty much, if not all, of the egg-related scripts. Now, the method we want is pbDayCareGenerateEgg. This is called when the game decided to generate an egg (It's on line 170).
    The next thing you want to do is go down a bit until you see this: # Masuda method

    This means that the next trickle of code is the Masuda method. This is it:

    Code:
    if father.language!=mother.language
      if getConst(PBItems,:SHINYCHARM) && $PokemonBag.pbQuantity(PBItems::SHINYCHARM)>0
        egg.makeNotShiny
        egg.makeShiny if rand(1024)==0
      else
        for i in 0...5   # 6 times as likely
          if !egg.isShiny?
            egg.personalID=rand(65536)|(rand(65536)<<16)
          end
        end
      end
    end
    Doesn't make sense? Well, first off, it gets the father's language and the mother's language. if they are NOT equal, continue. Then, it tries to see if you have a shiny charm in your bag. If you do, it makes the egg not shiny, then makes it shiny IF the game randomly generates a number between 0 and 1024 and gets a 0. Now, if you didn't have a shiny charm, then the game tries to redetermine the Pokemon's personalID 5 times, each time checking if the Pokemon is shiny.
    Well, that was a lot of explanation. Now, onto what we're adding!

    Just below that, add this:

    Code:
    if father.obtainMap==mother.obtainMap
      egg.makeNotShiny
      egg.makeShiny if rand(2048)==0
    end
    What does that do? First, it compares the father's obtain text to the mother's. If they are the same (ie, caught same place, both daycare Pokemon) the game makes the egg not shiny. Then, the game generates a number between 0 and 2048 and checks if it is 0. If it is, then the egg is shiny.
    Well, there you have it! Your own <Insert Name Here> method!

    Suggestions
    1. Make more methods - Maybe based off natures, IV's, EV's or even the names!​
    2. Make a second daycare that makes it easier to hatch shiny Pokemon​
    3. Maybe give shiny Pokemon a special move too?​
     
    Back
    Top