 :annies_wand_introduction
  # Task is triggered after the "you're new in this town too" conversation
  Annie "Hey <name>, can I ask you for help with something?"
  Player "Sure. What do you need?"
  Annie "I want to make a new magic wand, but I want it to be perfect. For that I'll need to have a good wooden stick to begin with."
  Player "Oh, but there are many wooden sticks around the forest area."
  Annie "I know, but I need a perfect one, so it would probably take me a long time looking for many different sticks until I can find the one."
  Annie "So if you could help me out by bringing me...<wait> let's say <color:item>30 wooden sticks</color>. That would be a huge help."
  Player "Alright, I'll collect some sticks for you."
  Annie "You will? Thank you so much, <name>."
  accept annies-wand

:annies_wand_complete
  Annie "Hello <name>, did you find those wooden sticks?"
  Player ("The 30 wooden sticks...", "I have them here.", "Not yet.", "Not yet.")
  
  if response == "I have them here."
    Annie "<heart>"
    Annie "Awesome! There'll probably be a good one among so many sticks. Let me take a look."
    wait 20
    lose item wooden-stick x 30
    wait 20
    Annie "Thank you so much, <name>. Let me pay you for them."

    complete annies-wand
    return
  end

  Annie "Let me know when you collect them."

:annies_hobby_introduction
  # Task is triggered after the "cloud shadows" conversation
  Annie "Hey <name>, I need your help again. I want to find a hobby, but I don't have many ideas."
  Annie "The best one I had so far was to start a collection, but I can't think of anything to collect."
  Annie "Can you help me with that? Bring me <color:item>3 different variations of any object</color> and I'll start collecting whatever that object is."
  Player "I'll see if I can find anything."
  accept annies-hobby

:annies_hobby_complete
  Annie "Hello <name>, did you figure out something that I can collect?"
  Player ("Your collection...", "Check out those cans", "I'm still looking", "I'm still looking")

  if response == "Check out those cans"
    Annie "<heart>"
    Annie "Collecting... cans? That might actually work, it's something that I can put time on and it'll also reduce the amount of trash out there."
    Annie "I'll start with those three."
    lose item red-can
    lose item blue-can
    lose item green-can

    Annie "Thank you so much once again, <name>. Let me reward you with a <color:item>Magic Drink</color> this time."
    complete annies-hobby
    return
  end

  Annie "Let me know if you think of anything."


