:stella_join_party
  js Managers.Villagers.moveVillagerToParty('Stella');

:stella_leave_party
  fade out
  wait 30
  js $gameParty.removeVillager('Stella');
  fade in
  wait 30

:stella_follower_event
  Stella ("What's wrong?", "I have to go", "Nevermind", "Nevermind")
  if response == "I have to go"
    Stella "Okay, see you later then!"
    include stella_leave_party
    return
  end

:stella_leave_party_to_sleep
  if !Managers.Villagers.isVillagerOnParty('Stella')
    return
  end
  
  Stella "I'm sorry <name>, but I need to go to bed now. See you tomorrow."
  include stella_leave_party

:stella_leave_party_to_work
  if !Managers.Villagers.isVillagerOnParty('Stella')
    return
  end
  
  Stella "Hey <name>, I need to go to work now. Let's hang out again some other time."
  include stella_leave_party

:invite_stella_to_hang_out
  Player "Hello Stella, are you free to hang out right now?"

  if Managers.Villagers.isVillagerAvailableToHangOut('Stella')
    Stella "I guess I am... Let's go!"
    include stella_join_party
  else
    Stella "I'm sorry <name>, I can't right now."
  end

