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