DexTool/LivingDexSS.gmx/scripts/form_get_gender_major.gml
2020-02-17 14:36:08 -06:00

20 lines
315 B
Plaintext

///form_get_gender_major(Pokémon)
switch(argument0)
{
case "HIPPOPOTAS":
case "HIPPOWDON":
case "UNFEZANT":
case "FRILLISH":
case "JELLICENT":
case "PYROAR":
case "MEOWSTIC":
case "INDEEDEE":
return true;
break;
default:
return false;
break;
}