project_charles / Agent /character_properties.py
sohojoe's picture
prep for charicter
ff684ee
raw
history blame
No virus
351 Bytes
class CharacterProperties:
def __init__(self, happiness, energy, confidence, fear, excitement, wanderlust, restful):
self.happiness = happiness
self.energy = energy
self.confidence = confidence
self.fear = fear
self.excitement = excitement
self.wanderlust = wanderlust
self.restful = restful