:lucas_offer_to_sell_rooster
  Lucas "Hey <name>. I'm still trying to sell my rooster, are you interested?"
  Player ("Your rooster...", "I'll buy it.", "I will buy when I get the money.", "I don't want it now, maybe another day.", "I don't want it now, maybe another day.")
  if response == "I'll buy it."
    if Managers.Items.gold >= 2500
      if prepareLucasRooster
        js Managers.Items.loseGold(2500)
        Lucas "Alright! Take good care of Gilbert for me, will ya?"
        js Managers.Creatures.createPreparedRooster();
        switch boughtRoosterFromLucas ON
      else
        Lucas "But you don't have any space in your <color:important>coops<color:default>, <name>. Gilbert would have nowehere to live."
      end

      return
    else
      Lucas "But you don't have enough money. It's okay, I'll wait here."
      return
    end
  end

  if response == "I will buy when I get the money."
    Lucas "Alright, thank you very much!"
    return
  end

  if response == "I don't want it now, maybe another day."
    Lucas "It's okay. I'll try to sell it to somebody else, but if you change your mind, please let me know."
    return
  end

:lucas_feeding_rooster_complete
  Lucas "Hello <name>. Do you have something I can give to my rooster?"
  Player ("About your rooster...", "I brought bird feed.", "I didn't bring anything.", "I didn't bring anything.")
  if response == "I brought bird feed."
    Lucas "Thank you so much, I'll give it to him right away."
    Lucas "Let me give you some money for the trouble."
    complete feeding-lucas-rooster

    return
  end
  Lucas "Please help me with this, I don't know what to feed him."

:lucas_fries_complete
  Lucas "Hello <name>. Do you have the potatoes I ordered?"
  Player ("About your order...", "Deliver items.", "Not yet.", "Not yet.")

  if response == "Deliver items."
    Lucas "Thank you so much, <name>! Here's the money for it. I'll give you my french fries recipe as well."

    complete lucas-fries
    return
  end

  Lucas "Let me know when you have it, I'm kind of hungry."

