Files
infinitefusion-e18/Data/Scripts/052_InfiniteFusion/Gameplay/Player/PlayerUtils.rb
2025-09-28 15:53:01 -04:00

16 lines
286 B
Ruby

def isPlayerMale()
return pbGet(VAR_TRAINER_GENDER) == GENDER_MALE
end
def isPlayerFemale()
return pbGet(VAR_TRAINER_GENDER) == GENDER_FEMALE
end
def getPlayerGenderId()
return pbGet(VAR_TRAINER_GENDER)
end
def isPostgame?()
return $game_switches[SWITCH_BEAT_THE_LEAGUE]
end