:rory_store_by_cindy
  Cindy ("Looking for something?", "Seeds", "Animals", "Just Chat", "Not Today", "Not Today")
  if response == "Seeds"
    include rory_seed_shop
    return
  end

  if response == "Animals"
    wait 10
    js Managers.Shop.buyRoryAnimals();
    return
  end

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

  Cindy "Come back again!"

:rory_store_by_rory
  Rory ("What do you want?", "Seeds", "Animals", "Not Today", "Not Today")
  if response == "Seeds"
    include rory_seed_shop
    return
  end

  if response == "Animals"
    wait 10
    js Managers.Shop.buyRoryAnimals();
    return
  end

:rory_seed_shop
  wait 10
  js Managers.Scenes.snapForBackground();
  js Managers.Scenes.push(GameScenes.RockTownSeedShop);
