Kind ladies and gentlemen, I kindly ask for help in creating a batch file to set attributes for each person in the game. I am missing the names of the "opinions" and the code to modify them. Perhaps someone could assist?
just for begining:
the_person.max_energy = 300
the_person.energy = 300
That's going to be laborious... each 'special' character, like Jennifer has their own opinions and are located in the people directory, and you can find the file you're looking for called by their name_definition.rpy e.g.
~\game\people\Jennifer\jennifer_definition.rpy
You also have the personalities, like Yandere, introvert, reserved, as well as the Pornstar, Foodie, Gamer etc... So it will take you a while.
The max energy for the ladies is located here
~\game\major_game_classes\character_related\Person.rpy
The MC's is located here...
~\game\main_character\MainCharacter.rpy
self.max_energy = 3000
self.energy = self.max_energy
def absolute_max_energy(self):
'''
The energy of the MC will never go above this value
'''
if not hasattr(self, "_absolute_max_energy"):
self._absolute_max_energy = 3000
return self._absolute_max_energy