:julia_shop
  Julia ("What do you need today?", "Buy Land", "Just Chat", "Nothing", "Nothing")
  if response == "Buy Land"
    if-switch canAccessCenterFarm
      Julia "I have no new land to sell you at the moment."
      return
    end

    play child julia_sell_center_farm
  end

  if response == "Just Chat"
    js Managers.Villagers.forceChatWithVillager('Julia');
    return
  end    

  if response == "Nothing"
    Julia "Are you sure? I'll be here if you need me."
  end

:julia_sell_center_farm
  Julia "I have a large piece of land on the west side of your farm. It's no good for crops, but you can raise all your animals there."
  Julia ("The total price is $ 100,000, what do you think?", "Buy Land", "Don't Buy Land", "Don't Buy Land")

  if response == "Buy Land"
    if Managers.Items.gold >= 100000
      js Managers.Items.loseMoney(100000);
      + Switches.canAccessCenterFarm = true;

      Julia "All right! Everything is in order. You can start using your new farm area right away."
      return
    end

    Julia "It looks like you don't have enough money to buy it now. Come back again when you have it."
    return
  end

  if response == "Don't Buy Land"
    Julia "Are you sure? Come back if you change your mind."
    return
  end
