• 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!
  • It's time to vote for your favorite Pokémon Battle Revolution protagonist in our new weekly protagonist poll! Click here to cast your vote and let us know which PBR protagonist you like most.
  • 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.

Adding Meowstic's gender based Move Pool

  • 281
    Posts
    16
    Years
    I didn't see this in Essentials so I wanted to go ahead and post it here.

    Moewstic is unique in that is has a different level-up move pool depending on if it is male or female, assuming you have Moewstic already added to your game and it's move set is defined using the males attacks in the PBS/Pokemon.txt file, here is what you do to give the lady her own bit of flare!

    In Pokemon_Forms between Furfro and Pumpkaboo (unless your a savage and don't list your Pokemon forms in numeric order) paste this.
    Code:
    MultipleForms.register(:ESPURR,{
    "getFormOnCreation"=>proc{|pokemon|
       if pokemon.isFemale?
         pokemon.form=1
       else
         pokemon.form=0
       end
    }
    })
    
    MultipleForms.copy(:ESPURR,:MEOWSTIC)

    This way regardless if the Pokemon is generated as a Meowstic or is evolved from an Espurr the female will always be a different form than the male.
    Don't forget to add Meowstic to PBS/PokemonForms.txt

    Code:
    #-------------------------------
    [MEOWSTIC-1]
    FormName=Female
    Moves=1,STOREDPOWER,1,MEFIRST,1,MAGICALLEAF,1,SCRATCH,1,LEER,1,COVET,1,CONFUSION,5,COVET,9,CONFUSION,13,LIGHTSCREEN,17,PSYBEAM,19,FAKEOUT,22,DISARMINGVOICE,25,PSYSHOCK,28CHARGEBEAM,31,SHADOWBALL,35,EXTRASENSORY,40,PSYCHIC,43,ROLEPLAY,45,SIGNALBEAM,48,SUCKERPUNCH,50,FUTURESIGHT,53,STOREDPOWER
    #-------------------------------
     
    Thank you so much for the scripts! Do I need to add "_1" to the female Meowstic sprites as well? If so, will I have to make doubles of Espurr's sprites and do the same?
     
    No, the sprites default to form 0 if the other forms cannot be found.

    Edit: Sorry for the not so informative answer before I didn't have time to give a more detailed answer.

    When the game looks for a sprite "123_#" and cannot find it, it will default back to "123". So when the game doesn't find "MeowsticF_1" it will just load "MeowsticF". Same goes for Espurr, you shouldn't need to duplicate your sprites.
     
    Last edited:
    We don't need to add a form for Meowstic. Let's make only script for her :D
    First, inside 'Pokemon_Forms' (v17.2), add:
    Spoiler:


    Then, add the code for Meowstic below Furfrou's code:
    Spoiler:


    And done. I got that script from v16.0 :D
     
    Back
    Top