:bonnie_ask_for_handcuffs
  #[CONDITION] Managers.Tasks.getTaskStatus('teleport-quest-2') == TaskStatus.NONE && Managers.Tasks.getTaskStatus('teleport-quest-1') == TaskStatus.ACCEPTED
  #[PRIORITY] !Managers.Villagers.wasEventPlayedToday('bonnie_ask_for_handcuffs')

  Player "Bonnie! Let me ask you one thing."
  Bonnie "What is it, darling?"

  if Switches.playerKnowsAboutMummyBandages
    Player "Do you remember those Mummy Bandages you said you have? Do you think I could have one?"
  else
    Player "This may sound weird, but do you know where I can find some Mummy Bandages?"
    Bonnie "Sure, I have plenty of them on my bedroom."
    Player "Really? Can I hav- wait, what? Was that sarcasm?"
    Bonnie "No, I really have them."
    Player "Why do you have Mummy Bandages on your bedroom?"
    Bonnie "Why wouldn't I? They make for good decoration."
    Player "I think I don't need to know any details about that. Can you lend me a piece?"

    js Switches.playerKnowsAboutMummyBandages = true;
  end
  
  if Managers.Relationship.getHeartsNum('Bonnie') >= 0.5
    Bonnie "For you? Sure! But I want something in return."
    Player "What do you need? I'd give you anything for it."
    Bonnie "I want a <color:item>handcuff</color>."
    Player "<?>A handcuff? Are you going to arrest someone?"
    Bonnie "That's not the only thing that a handcuff can do, silly <boy>. Can you find me one?"
    Player "I'll do my best!"

    replace task teleport-quest-1 teleport-quest-2
  else
    Bonnie "To be honest I like how they look in my room. Maybe if we were better friends I'd make an exception."
  end

:bonnie_receive_handcuff
  #[CONDITION] Managers.Tasks.getTaskStatus('teleport-quest-2-delivery') == TaskStatus.ACCEPTED
  #[PRIORITY] true

  Player "<Good morning> Bonnie, here's the handcuff you wanted."
  Bonnie "You really got it? Thank you so much, darling. Here's the Mummy Bandages I promised."
  Player "Thank you! It was a lot of work, but I finally got what I needed."
  Bonnie "Do you smell anything weird?"
  Player "Good bye."

  js Switches.foundMummyBandage = true;
  replace task teleport-quest-2-delivery teleport-quest-1-delivery
