{"id":143,"date":"2019-12-05T10:38:16","date_gmt":"2019-12-05T10:38:16","guid":{"rendered":"https:\/\/www.mission-us.org\/?post_type=games&#038;p=143"},"modified":"2024-09-18T09:14:50","modified_gmt":"2024-09-18T09:14:50","slug":"city-of-immigrants","status":"publish","type":"games","link":"https:\/\/www.mission-us.org\/games\/city-of-immigrants\/","title":{"rendered":"City of Immigrants"},"content":{"rendered":"<section class=\"block-game-content mb-3\">\n      <h2 class=\"title-md text-normal mb-1\">City of Immigrants<\/h2>\n        <span class=\"title-label my-1\">ESTIMATED TIME: 1-1.5 HOURS<\/span>\n        <div class=\"default-content\">\n      <p>It&#8217;s 1907. You are Lena Brodsky, a 14-year-old Jewish immigrant from Russia. How will you start a new life in America?<\/p>\n      <p> <a class=\"scroll-to\" href=\"#characters\">Meet the Characters<\/a><\/p>\n    <\/div>\n  <\/section>\n\n\n<section class=\"block-game-code my-3\">\n  <!-- Game -->\n            <div class=\"content\">\n  <div id=\"game-container\" class=\"border-inside unity-desktop\">\n          <img decoding=\"async\" class=\"stretch-image\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2019\/12\/28110407\/capture-9.jpg\" alt=\"capture-9\">\n        <div class=\"embed-responsive embed-responsive-4by3\">\n      <canvas id=\"unity-canvas\" class=\"embed-responsive-item\"><\/canvas>\n      <div class=\"game-start-button\">\n        <button class=\"btn btn-lg btn-border-primary js-start-mission d-none\" id=\"start-mission-default\">Start Mission<\/button>\n        <a class=\"btn btn-lg btn-border-primary js-start-mission\" id=\"start-mission\" data-toggle=\"collapse\" href=\"#login-form\" aria-expanded=\"false\" aria-controls=\"login-form\">Start Mission<\/a>\n      <\/div>\n      <div id=\"unity-loading-bar\">\n        <div id=\"unity-logo\"><\/div>\n        <div id=\"unity-progress-bar-empty\">\n          <div id=\"unity-progress-bar-full\"><\/div>\n        <\/div>\n      <\/div>\n      <div id=\"unity-warning\"> <\/div>\n      <div id=\"unity-footer\">\n        <div id=\"unity-webgl-logo\"><\/div>\n        <div id=\"unity-fullscreen-button\"><\/div>\n        <div id=\"unity-build-title\"><\/div>\n      <\/div>\n    <\/div>\n  <\/div>\n<\/div>\n\n<script type=\"text\/javascript\">\n  var container = document.querySelector(\"#game-container\");\n  var canvas = document.querySelector(\"#unity-canvas\");\n  var loadingBar = document.querySelector(\"#unity-loading-bar\");\n  var progressBarFull = document.querySelector(\"#unity-progress-bar-full\");\n  var fullscreenButton = document.querySelector(\"#unity-fullscreen-button\");\n  var warningBanner = document.querySelector(\"#unity-warning\");\n\n  \/\/ Shows a temporary message banner\/ribbon for a few seconds, or\n  \/\/ a permanent error message on top of the canvas if type=='error'.\n  \/\/ If type=='warning', a yellow highlight color is used.\n  \/\/ Modify or remove this function to customize the visually presented\n  \/\/ way that non-critical warnings and error messages are presented to the\n  \/\/ user.\n  function unityShowBanner(msg, type) {\n    function updateBannerVisibility() {\n      warningBanner.style.display = warningBanner.children.length ? 'block' : 'none';\n    }\n    var div = document.createElement('div');\n    div.innerHTML = msg;\n    warningBanner.appendChild(div);\n    if (type == 'error') div.style = 'background: red; padding: 10px;';\n    else {\n      if (type == 'warning') div.style = 'background: yellow; padding: 10px;';\n      setTimeout(function() {\n        warningBanner.removeChild(div);\n        updateBannerVisibility();\n      }, 5000);\n    }\n    updateBannerVisibility();\n  }\n\n  var buildUrl = \"https:\/\/games.staging.mission-us.org\/mission-4\/webgl-2021\/quiz_0125_2\/Build\";\n  var loaderUrl = buildUrl + \"\/Player.loader.js\";\n  var config = {\n    dataUrl: buildUrl + \"\/Player.data.br\",\n    frameworkUrl: buildUrl + \"\/Player.framework.js.br\",\n    codeUrl: buildUrl + \"\/Player.wasm.br\",\n    streamingAssetsUrl: \"StreamingAssets\",\n    companyName: \"DefaultCompany\",\n    productName: \"Mission01\",\n    productVersion: \"1.0\",\n    showBanner: unityShowBanner,\n  };\n\n  \/\/ By default Unity keeps WebGL canvas render target size matched with\n  \/\/ the DOM size of the canvas element (scaled by window.devicePixelRatio)\n  \/\/ Set this to false if you want to decouple this synchronization from\n  \/\/ happening inside the engine, and you would instead like to size up\n  \/\/ the canvas DOM size and WebGL render target sizes yourself.\n  \/\/ config.matchWebGLToCanvasSize = false;\n\n  if (\/iPhone|iPad|iPod|Android\/i.test(navigator.userAgent)) {\n    \/\/ Mobile device style: fill the whole browser client area with the game canvas:\n\n    var meta = document.createElement('meta');\n    meta.name = 'viewport';\n    meta.content = 'width=device-width, height=device-height, initial-scale=1.0, user-scalable=no, shrink-to-fit=yes';\n    document.getElementsByTagName('head')[0].appendChild(meta);\n    container.className = \"unity-mobile\";\n    canvas.className = \"unity-mobile\";\n\n    \/\/ To lower canvas resolution on mobile devices to gain some\n    \/\/ performance, uncomment the following line:\n    \/\/ config.devicePixelRatio = 1;\n\n    unityShowBanner('WebGL builds are not supported on mobile devices.');\n  } else {\n    \/\/ Desktop style: Render the game canvas in a window that can be maximized to fullscreen:\n\n    canvas.style.width = \"100%\";\n    canvas.style.height = \"100%\";\n  }\n\n  loadingBar.style.display = \"block\";\n\n  function loadGame() {\n    var script = document.createElement(\"script\");\n    script.src = loaderUrl;\n\n    const loadingBox = document.getElementById(\"loading-box\");\n    const startMission = document.querySelectorAll(\".js-start-mission\");\n    const gameContainer = document.getElementById(\"game-container\");\n\n    loadingBox ? loadingBox.style.display = \"block\" : null;\n    \/\/ startMission ? startMission.style.display = \"none\" : null;\n    startMission.forEach((el) => {\n      el.style.display = \"none\";\n    });\n    gameContainer ? gameContainer.classList.remove(\"border-inside\") : null;\n\n    script.onload = () => {\n\n      createUnityInstance(canvas, config, (progress) => {\n        let gameInstance = null;\n        progressBarFull.style.width = 100 * progress + \"%\";\n      }).then((unityInstance) => {\n        gameInstance = unityInstance;\n        loadingBar.style.display = \"none\";\n        fullscreenButton.onclick = () => {\n          unityInstance.SetFullscreen(1);\n        };\n      }).catch((message) => {\n        alert(message);\n      });\n    };\n\n    document.body.appendChild(script);\n\n    var recaptureInputAndFocus = function() {\n      var canvas = document.getElementById(\"#canvas\");\n      if (canvas) {\n        canvas.setAttribute(\"tabindex\", \"1\");\n        canvas.focus();\n      } else\n        setTimeout(recaptureInputAndFocus, 100);\n    }\n\n    recaptureInputAndFocus();\n  }\n\n  document.addEventListener('DOMContentLoaded', function() {\n    \/\/ Require login\n    const user_logged_in = getCookie(\"user_logged_in\") ? getCookie(\"user_logged_in\") : false;\n    const user_logged_in_hash = window.location.hash ? window.location.hash.substring(1) : false;\n\n    if (user_logged_in_hash === 'user_logged_in') {\n      [...document.querySelectorAll(\".js-start-mission\")].map((el) => {\n        el.style.display = 'none';\n      });\n      loadGame();\n    }\n\n    if (user_logged_in) {\n      document.getElementById(\"start-mission-default\").classList.remove(\"d-none\");\n      document.getElementById(\"start-mission\").classList.add(\"d-none\");\n      document.getElementById(\"start-mission-default\").addEventListener(\"click\", function(e) {\n        e.preventDefault();\n        loadGame();\n      })\n    }\n  }, false);\n\n  var TOTAL_MEMORY = 268435456;\n  var STATICTOP = null;\n  var STATIC_BASE = null\n  var DYNAMICTOP_PTR = null;\n  var DYNAMIC_BASE = null;\n\n  function getCookie(cname) {\n    var name = cname + \"=\";\n    var decodedCookie = decodeURIComponent(document.cookie);\n    var ca = decodedCookie.split(';');\n    for (var i = 0; i < ca.length; i++) {\n      var c = ca[i];\n      while (c.charAt(0) == ' ') {\n        c = c.substring(1);\n      }\n      if (c.indexOf(name) == 0) {\n        return c.substring(name.length, c.length);\n      }\n    }\n    return null;\n  }\n  var mus = {\n    GetUsername: function() {\n      return getCookie(\"user_name\") ? getCookie(\"user_name\") : \"\";\n    },\n\n    GetUserKey: function() {\n      return getCookie(\"user_token\") ? getCookie(\"user_token\") : \"\";\n    },\n\n    GetFileName: function() {\n      return \"mission4-webgl\";\n    },\n\n    GetLoginURL: function() {\n      return \"\/game_data\/login.xml\";\n    },\n\n    GetSaveURL: function() {\n      return \"\/game_data\/set.xml\";\n    },\n\n    GetLoadURL: function() {\n      return \"\/game_data\/get.xml\";\n    },\n\n    GetUnityAssetBundlesURL: function() {\n      return \"https:\/\/games.staging.mission-us.org\/mission-4\/webgl-2021\/quiz_0125_2\/\";\n    },\n\n    GetProgressPostURL: function() {\n      return \"\/api\/v1\/game_data\/progress\";\n    },\n\n    GetAssessmentsPostURL: function() {\n      return \"\/api\/v1\/game_data\/assessment\";\n    },\n\n    GetSendProgressData: function() {\n      return true;\n    },\n\n    GetShowQuizzes: function() {\n      if (getCookie(\"user_classroom\") == null) {\n        return false;\n      }\n      return getCookie(\"user_classroom\") === 'true' ? true : false;\n    }\n  };\n<\/script>      <\/section>\n\n  <aside class=\"d-xl-none sidebar sidebar-games mb-3\" id=\"secondary\" role=\"complementary\">\n    <ul class=\"nav sidebar-nav\"><li class=\"sidebar-nav-item\"><a href=\"https:\/\/player.pbs.org\/partnerplayer\/1U53QqXe-KV0rfT4S51gAw==\/?start=0&#038;end=0&#038;topbar=false&#038;autoplay=false&#038;muted=false&#038;endscreen=false\" class=\"link-to-all\"><\/a><h4 class=\"item-title\">Video: Top 5 Things to Know Before You Play<\/h4>Ready to play Mission US? Here are five things to know before you begin.<\/li><li class=\"sidebar-nav-item\"><a href=\"#modal-sidebar-1-mobile-sidebar\" class=\"link-to-all\" data-toggle=\"modal\"><\/a><h4 class=\"item-title\">Top 5 Things to Know Before You Play<\/h4>Key things to know before playing <i>Mission US<\/i>.<div class=\"modal fade modal-sidebar-links\" id=\"modal-sidebar-1-mobile-sidebar\" tabindex=\"-1\" role=\"dialog\" aria-labelledby=\"modal-sidebar\" aria-hidden=\"true\" style=\"display: none;\">\n                <div class=\"modal-dialog modal-dialog-centered modal-lg\" role=\"document\">\n                  <div class=\"modal-content\">\n                    <div class=\"modal-header\">\n                      <h4 class=\"title-xs-sans\">: <\/h4>\n                      <h3 class=\"title-md-serif\"><\/h3>\n                      <button type=\"button\" class=\"close\" data-dismiss=\"modal\" aria-label=\"Close\">\n                        <span aria-hidden=\"true\" class=\"icon-close\"><\/span>\n                      <\/button>\n                    <\/div>\n                    <div class=\"modal-body\">\n                      <div class=\"d-lg-flex justify-content-between mb-3\">\n                        <h5 class=\"title-sm-sans text-normal\">Top 5 Things to Know Before You Play <i>Mission US<\/i><\/h5>\n                        <div class=\"btn-container mt-2 mt-lg-0\">\n                          <a href=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2025\/04\/09153251\/Top5ThingsMUSFINAL-4.9.25-1.docx\" class=\"btn btn-sm btn-outline-primary\">DOC<\/a>\n                          <a href=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2025\/04\/09153237\/Top5ThingsMUSFINAL-4.9.25-1.pdf\" class=\"btn btn-sm btn-outline-primary\">PDF<\/a>\n                        <\/div>\n                      <\/div>\n                      <div class=\"default-content\">\n                        <ol>\n<li><strong><em>Mission US <\/em>is a role-playing game (RPG). <\/strong>In each mission you\u2019ll step into the shoes of a young person during an important time period in US history. While your character and many of the characters in the game are fictional, they are based on the experiences of real people. (You will also encounter some actual historical figures and witness historical events in the game!)<\/li>\n<li><strong>There are no right or wrong answers. <\/strong>The goal of <em>Mission US <\/em>is to understand history, not to win. In each mission, you\u2019ll meet a range of people with very different viewpoints, explore historical settings, and witness key past events &#8212; and will have to make difficult decisions. All of the decisions represent real alternatives that people might have encountered.<\/li>\n<li><strong>You decide your character\u2019s fate. <\/strong>Like other choose-your-own-adventure stories, the fate of your character is based on your choices in the game. Some of the choices you make will unlock different badges, which will also impact the outcome of your character\u2019s story in the game epilogue. You can replay the game and make different choices to see how your character\u2019s story might have turned out differently.<\/li>\n<li><strong>You will encounter difficult and challenging <\/strong><strong>moments in US history. <\/strong><em>Mission US <\/em>covers some troubling topics, including injustice and war, many of which remain challenges today. We think learning about such historical moments is essential for understanding both the past and present. We encourage you to reach out to a parent, teacher, or other adult you trust if you have any questions about the content you encounter in the game.<\/li>\n<li><strong>There is never just one story. <\/strong>Like any work of history, <em>Mission US <\/em>games are interpretations of what happened in the past based on careful research. Since they can\u2019t capture the whole story, we encourage you to learn more about this history by checking out the additional resources for each mission.<\/li>\n<\/ol>\n \n                      <\/div>\n                    <\/div>\n                  <\/div>\n                <\/div>\n              <\/div><\/li><li class=\"sidebar-nav-item\"><a href=\"https:\/\/www.mission-us.org\/about\/creating-mission-us\/about-the-missions\/#cityofimmigrants\" class=\"link-to-all\"><\/a><h4 class=\"item-title\">About This Mission<\/h4>Learn more about the creation of and team behind <i>City of Immigrants<\/i>.<\/li><li class=\"sidebar-nav-item\"><a href=\"https:\/\/www.mission-us.org\/teach\/city-of-immigrants\/teach-this-mission\/curriculum-overview\/\" class=\"link-to-all\"><\/a><h4 class=\"item-title\">Teacher's Guide to Using this Mission<\/h4>Overview\/background materials, activities, and more.<\/li><\/ul><div class=\"widget-list-downloads mt-2\"><p class=\"mt-2\">Play this mission offline:<\/p><ul class=\"list-unstyled\"><li><a href=\"#modal-downloads-0-mobile-sidebar\" class=\"\" data-toggle=\"modal\">Download for Chromebook<\/a><div class=\"modal fade modal-downloads-links\" id=\"modal-downloads-0-mobile-sidebar\" tabindex=\"-1\" role=\"dialog\" aria-labelledby=\"modal-downloads\" aria-hidden=\"true\" style=\"display: none;\">\n                  <div class=\"modal-dialog modal-dialog-centered modal-lg\" role=\"document\">\n                    <div class=\"modal-content\">\n                      <div class=\"modal-header\">\n                        <h4 class=\"title-xs-sans\">: <\/h4>\n                        <h3 class=\"title-md-serif\"><\/h3>\n                        <button type=\"button\" class=\"close\" data-dismiss=\"modal\" aria-label=\"Close\">\n                          <span aria-hidden=\"true\" class=\"icon-close\"><\/span>\n                        <\/button>\n                      <\/div>\n                      <div class=\"modal-body\">\n                        <div class=\"d-flex justify-content-between mb-3\">\n                          <h5 class=\"title-sm-sans text-normal\">Download the Chromebook app<\/h5>\n                          <div class=\"btn-container\">\n                            <a href=\"https:\/\/play.google.com\/store\/apps\/details?id=com.WNET.CityOfImmigrants\" class=\"btn btn-sm btn-outline-primary\">Download Chromebook app<\/a>\n                          <\/div>\n                        <\/div>\n                        <div class=\"default-content\">\n                           \n                        <\/div>\n                      <\/div>\n                    <\/div>\n                  <\/div>\n                <\/div><\/li><li><a href=\"#modal-downloads-1-mobile-sidebar\" class=\"\" data-toggle=\"modal\">Download for PC<\/a><div class=\"modal fade modal-downloads-links\" id=\"modal-downloads-1-mobile-sidebar\" tabindex=\"-1\" role=\"dialog\" aria-labelledby=\"modal-downloads\" aria-hidden=\"true\" style=\"display: none;\">\n                  <div class=\"modal-dialog modal-dialog-centered modal-lg\" role=\"document\">\n                    <div class=\"modal-content\">\n                      <div class=\"modal-header\">\n                        <h4 class=\"title-xs-sans\">: <\/h4>\n                        <h3 class=\"title-md-serif\"><\/h3>\n                        <button type=\"button\" class=\"close\" data-dismiss=\"modal\" aria-label=\"Close\">\n                          <span aria-hidden=\"true\" class=\"icon-close\"><\/span>\n                        <\/button>\n                      <\/div>\n                      <div class=\"modal-body\">\n                        <div class=\"d-flex justify-content-between mb-3\">\n                          <h5 class=\"title-sm-sans text-normal\">Download for PC<\/h5>\n                          <div class=\"btn-container\">\n                            <a href=\"https:\/\/games.mission-us.org\/downloads\/mission04_pc_v1.zip\" class=\"btn btn-sm btn-outline-primary\">Download<\/a>\n                          <\/div>\n                        <\/div>\n                        <div class=\"default-content\">\n                          <h3><span class=\"title\"><strong>Instructions for Installation and Use of the Downloadable Version<\/strong><\/span><\/h3>\n<p>&nbsp;<\/p>\n<p><strong>1) Download the game to your computer.<\/strong> Be sure to pay attention to where the file is being copied on your computer; different operating systems have different defaults.<\/p>\n<p>&nbsp;<\/p>\n<p><strong>2) Install the game.<\/strong> Locate the downloaded file named \u201cmission04_pc_v1.zip\u201d on your computer and double-click to extract the game files.<\/p>\n<p>&nbsp;<\/p>\n<p>On a PC this will place a copy of the game on your computer in a folder of the same name.<\/p>\n<p>&nbsp;<\/p>\n<p>This downloadable version\u00a0 is a standalone Unity application, so it does NOT require the Unity player or use a browser. The installation simply creates a folder containing the application and all the necessary assets and data.<\/p>\n<p>&nbsp;<\/p>\n<p><strong>3) Play the game.<\/strong> Double-click on the icon labeled \u201cMission01.\u201d Players may choose to log in with their Mission US account, or to play offline.<\/p>\n \n                        <\/div>\n                      <\/div>\n                    <\/div>\n                  <\/div>\n                <\/div><\/li><\/ul><\/div>  <\/aside>\n<section class=\"block-meet-characters my-3\" id=\"characters\">\n      <h3 class=\"title-md-sans mb-2\">Meet the Characters<\/h3>\n    <div class=\"meet-characters py-xs d-none d-xl-block\">\n    <div class=\"meet-characters-pic\">\n                                <div id=\"character-1\" class=\"pic active-character position-z-index-1\">\n            <img decoding=\"async\" class=\"glow\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2019\/12\/28110347\/neighbor-1.png\" alt=\"\">\n            <img decoding=\"async\" class=\"character\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2019\/12\/28110349\/neighbor.png\" alt=\"\">\n          <\/div>\n                  <div id=\"character-2\" class=\"pic position-z-index-3\">\n            <img decoding=\"async\" class=\"glow\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2019\/12\/28110346\/rosa-1.png\" alt=\"\">\n            <img decoding=\"async\" class=\"character\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2019\/12\/28110349\/rosa.png\" alt=\"\">\n          <\/div>\n                  <div id=\"character-3\" class=\"pic position-z-index-1\">\n            <img decoding=\"async\" class=\"glow\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2019\/12\/28110348\/abigail_walker-1.png\" alt=\"\">\n            <img decoding=\"async\" class=\"character\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2019\/12\/28110350\/abigail_walker.png\" alt=\"\">\n          <\/div>\n                  <div id=\"character-4\" class=\"pic position-z-index-3\">\n            <img decoding=\"async\" class=\"glow\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2019\/12\/28110346\/sonya_baby-1.png\" alt=\"\">\n            <img decoding=\"async\" class=\"character\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2019\/12\/28110348\/sonya_baby.png\" alt=\"\">\n          <\/div>\n                  <div id=\"character-5\" class=\"pic position-z-index-3\">\n            <img decoding=\"async\" class=\"glow\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2019\/12\/28110347\/lena-1.png\" alt=\"\">\n            <img decoding=\"async\" class=\"character\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2019\/12\/28110349\/lena.png\" alt=\"\">\n          <\/div>\n                  <div id=\"character-6\" class=\"pic position-z-index-1\">\n            <img decoding=\"async\" class=\"glow\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2019\/12\/28110348\/isaac-1.png\" alt=\"\">\n            <img decoding=\"async\" class=\"character\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2019\/12\/28110350\/isaac.png\" alt=\"\">\n          <\/div>\n                  <div id=\"character-7\" class=\"pic position-z-index-3\">\n            <img decoding=\"async\" class=\"glow\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2019\/12\/28110346\/zev-1.png\" alt=\"\">\n            <img decoding=\"async\" class=\"character\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2019\/12\/28110348\/zev.png\" alt=\"\">\n          <\/div>\n                  <div id=\"character-8\" class=\"pic position-z-index-1\">\n            <img decoding=\"async\" class=\"glow\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2019\/12\/28110348\/james_poole-1.png\" alt=\"\">\n            <img decoding=\"async\" class=\"character\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2019\/12\/28110349\/james_poole.png\" alt=\"\">\n          <\/div>\n                  <div id=\"character-9\" class=\"pic position-z-index-3\">\n            <img decoding=\"async\" class=\"glow\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2019\/12\/28110347\/miss_sherman-1.png\" alt=\"\">\n            <img decoding=\"async\" class=\"character\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2019\/12\/28110349\/miss_sherman.png\" alt=\"\">\n          <\/div>\n                    <div class=\"meet-characters-hover\">\n                                        <div id=\"character-hover-1\" class=\"character-hover position-z-index-1\" style=\"width:55.666666666667px; height:397px; margin-left:55.666666666667px\"><\/div>\n                      <div id=\"character-hover-2\" class=\"character-hover position-z-index-3\" style=\"width:43.333333333333px; height:399px; margin-left:43.333333333333px\"><\/div>\n                      <div id=\"character-hover-3\" class=\"character-hover position-z-index-1\" style=\"width:48.333333333333px; height:433px; margin-left:48.333333333333px\"><\/div>\n                      <div id=\"character-hover-4\" class=\"character-hover position-z-index-3\" style=\"width:60.333333333333px; height:424px; margin-left:60.333333333333px\"><\/div>\n                      <div id=\"character-hover-5\" class=\"character-hover position-z-index-3\" style=\"width:54.666666666667px; height:408px; margin-left:54.666666666667px\"><\/div>\n                      <div id=\"character-hover-6\" class=\"character-hover position-z-index-1\" style=\"width:55.666666666667px; height:445px; margin-left:55.666666666667px\"><\/div>\n                      <div id=\"character-hover-7\" class=\"character-hover position-z-index-3\" style=\"width:64.333333333333px; height:416px; margin-left:64.333333333333px\"><\/div>\n                      <div id=\"character-hover-8\" class=\"character-hover position-z-index-1\" style=\"width:66px; height:459px; margin-left:66px\"><\/div>\n                      <div id=\"character-hover-9\" class=\"character-hover position-z-index-3\" style=\"width:55.333333333333px; height:429px; margin-left:55.333333333333px\"><\/div>\n                        <\/div>\n    <\/div>\n\n    <p class=\"roll_over d-none d-md-block py-3 text-right\">Roll over a character to learn more.<\/p>\n\n    <div class=\"meet-characters-info\">\n                                <div id=\"character-info-1\" class=\"info active-info\">\n            <h5 class=\"title text-normal\">Mrs. Orloff <\/h5>\n            <p>Lives in the same tenement as the Brodsky family and also came from Minsk. She pays close attention to the lives of all her neighbors and is a good source of neighborhood gossip.<\/p>\n          <\/div>\n                  <div id=\"character-info-2\" class=\"info\">\n            <h5 class=\"title text-normal\">Rosa Leone<\/h5>\n            <p>Lena\u2019s friend, a fourteen-year old immigrant from Naples, Italy, who came to America with her family. Her family runs a small grocery store on the Lower East Side. She helps in the store and studies English at the Henry Street Settlement, all while being chaperoned by her brother. Her family plans to make money in America and then return to Italy, but Rosa is not sure that is she wants to do that. Eventually she gets a job at the Triangle Shirtwaist Company factory. Rosa and Lena meet at an English class at Henry Street.<\/p>\n          <\/div>\n                  <div id=\"character-info-3\" class=\"info\">\n            <h5 class=\"title text-normal\">Abigail Walker<\/h5>\n            <p>A young reformer and suffragist who chose to live and work with immigrants in the Lower East Side after completing college. She is an idealist who believes that Progressive women can improve life for immigrants by helping them to assimilate.<\/p>\n          <\/div>\n                  <div id=\"character-info-4\" class=\"info\">\n            <h5 class=\"title text-normal\">Sonya Brodsky<\/h5>\n            <p>Isaac\u2019s wife, who is also from Russia but met Isaac in New York. She manages the Brodsky household, caring for their baby, shopping, cleaning, and providing meals and laundry services for two boarders.<\/p>\n          <\/div>\n                  <div id=\"character-info-5\" class=\"info\">\n            <h5 class=\"title text-normal\">Lena Brodsky<\/h5>\n            <p>Fourteen-year-old Lena was born in Minsk, Russia, where her family suffered from the anti-Jewish violence of the pogroms. Her older brother leaves for America and sends money back for another ticket. When Lena\u2019s younger brother was unexpectedly drafted into the Czar\u2019s army, Lena takes his place and travels on her own to meet her older brother in New York. She hopes to save enough money to pay for tickets for her parents to leave Russia as well. In New York, many different social, educational, and work opportunities and challenges await her.<\/p>\n          <\/div>\n                  <div id=\"character-info-6\" class=\"info\">\n            <h5 class=\"title text-normal\">Isaac Brodsky<\/h5>\n            <p>Lena\u2019s older brother, who came to the United States three years earlier and is now married and living on the Lower East Side. He sells household goods from a cart on Hester Street but dreams of becoming a successful businessman with his own store.<\/p>\n          <\/div>\n                  <div id=\"character-info-7\" class=\"info\">\n            <h5 class=\"title text-normal\">Zev<\/h5>\n            <p>A young Russian immigrant trying to make his way in New York by helping Jewish gang members collect debts. He enjoys dancing to American popular music and hopes to take Lena to the dancehall. <\/p>\n          <\/div>\n                  <div id=\"character-info-8\" class=\"info\">\n            <h5 class=\"title text-normal\">James Poole<\/h5>\n            <p>A young reporter for one of New York City\u2019s \u201cmuckracking\u201d newspapers. He is college educated and a pro-union reformer.<\/p>\n          <\/div>\n                  <div id=\"character-info-9\" class=\"info\">\n            <h5 class=\"title text-normal\">Miss Sherman<\/h5>\n            <p>A former garment factory operator who has been promoted to forelady. She is strict and supports the factory owners in their efforts to keep young women workers focused on increasing their production.<\/p>\n          <\/div>\n                  <\/div>\n  <\/div>\n\n  <style>\n    #character-1 {\n      left: 0%;\n    }\n\n    #character-hover-1 {\n      left: 0%;\n    }\n\n    #character-2 {\n      left: 9.3333333333333%;\n    }\n\n    #character-hover-2 {\n      left: 9.3333333333333%;\n    }\n\n    #character-3 {\n      left: 18.666666666667%;\n    }\n\n    #character-hover-3 {\n      left: 18.666666666667%;\n    }\n\n    #character-4 {\n      left: 28%;\n    }\n\n    #character-hover-4 {\n      left: 28%;\n    }\n\n    #character-5 {\n      left: 37.333333333333%;\n    }\n\n    #character-hover-5 {\n      left: 37.333333333333%;\n    }\n\n    #character-6 {\n      left: 46.666666666667%;\n    }\n\n    #character-hover-6 {\n      left: 46.666666666667%;\n    }\n\n    #character-7 {\n      left: 56%;\n    }\n\n    #character-hover-7 {\n      left: 56%;\n    }\n\n    #character-8 {\n      left: 65.333333333333%;\n    }\n\n    #character-hover-8 {\n      left: 65.333333333333%;\n    }\n\n    #character-9 {\n      left: 74.666666666667%;\n    }\n\n    #character-hover-9 {\n      left: 74.666666666667%;\n    }\n\n      <\/style>\n  <? \/\/= (12 \/ $character_counter) + ($character_counter \/ 100) \n  ?>\n  <div class=\"meet-characters-mobile px-2 d-xl-none\">\n    <div class=\"meet-characters-pic-mobile\">\n                                <div id=\"character-0\" class=\"pic my-4 flex-row-reverse\">\n            <div class=\"character-hover\"><\/div>\n            <img decoding=\"async\" class=\"glow\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2019\/12\/28110347\/neighbor-1.png\" alt=\"\">\n            <img decoding=\"async\" class=\"character\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2019\/12\/28110349\/neighbor.png\" alt=\"\">\n            <div class=\"descriptions\">\n              <h5 class=\"title text-normal mb-1\">Mrs. Orloff <\/h5>\n              <p>Lives in the same tenement as the Brodsky family and also came from Minsk. She pays close attention to the lives of all her neighbors and is a good source of neighborhood gossip.<\/p>\n            <\/div>\n          <\/div>\n                  <div id=\"character-1\" class=\"pic my-4 \">\n            <div class=\"character-hover\"><\/div>\n            <img decoding=\"async\" class=\"glow\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2019\/12\/28110346\/rosa-1.png\" alt=\"\">\n            <img decoding=\"async\" class=\"character\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2019\/12\/28110349\/rosa.png\" alt=\"\">\n            <div class=\"descriptions\">\n              <h5 class=\"title text-normal mb-1\">Rosa Leone<\/h5>\n              <p>Lena\u2019s friend, a fourteen-year old immigrant from Naples, Italy, who came to America with her family. Her family runs a small grocery store on the Lower East Side. She helps in the store and studies English at the Henry Street Settlement, all while being chaperoned by her brother. Her family plans to make money in America and then return to Italy, but Rosa is not sure that is she wants to do that. Eventually she gets a job at the Triangle Shirtwaist Company factory. Rosa and Lena meet at an English class at Henry Street.<\/p>\n            <\/div>\n          <\/div>\n                  <div id=\"character-2\" class=\"pic my-4 flex-row-reverse\">\n            <div class=\"character-hover\"><\/div>\n            <img decoding=\"async\" class=\"glow\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2019\/12\/28110348\/abigail_walker-1.png\" alt=\"\">\n            <img decoding=\"async\" class=\"character\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2019\/12\/28110350\/abigail_walker.png\" alt=\"\">\n            <div class=\"descriptions\">\n              <h5 class=\"title text-normal mb-1\">Abigail Walker<\/h5>\n              <p>A young reformer and suffragist who chose to live and work with immigrants in the Lower East Side after completing college. She is an idealist who believes that Progressive women can improve life for immigrants by helping them to assimilate.<\/p>\n            <\/div>\n          <\/div>\n                  <div id=\"character-3\" class=\"pic my-4 \">\n            <div class=\"character-hover\"><\/div>\n            <img decoding=\"async\" class=\"glow\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2019\/12\/28110346\/sonya_baby-1.png\" alt=\"\">\n            <img decoding=\"async\" class=\"character\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2019\/12\/28110348\/sonya_baby.png\" alt=\"\">\n            <div class=\"descriptions\">\n              <h5 class=\"title text-normal mb-1\">Sonya Brodsky<\/h5>\n              <p>Isaac\u2019s wife, who is also from Russia but met Isaac in New York. She manages the Brodsky household, caring for their baby, shopping, cleaning, and providing meals and laundry services for two boarders.<\/p>\n            <\/div>\n          <\/div>\n                  <div id=\"character-4\" class=\"pic my-4 flex-row-reverse\">\n            <div class=\"character-hover\"><\/div>\n            <img decoding=\"async\" class=\"glow\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2019\/12\/28110347\/lena-1.png\" alt=\"\">\n            <img decoding=\"async\" class=\"character\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2019\/12\/28110349\/lena.png\" alt=\"\">\n            <div class=\"descriptions\">\n              <h5 class=\"title text-normal mb-1\">Lena Brodsky<\/h5>\n              <p>Fourteen-year-old Lena was born in Minsk, Russia, where her family suffered from the anti-Jewish violence of the pogroms. Her older brother leaves for America and sends money back for another ticket. When Lena\u2019s younger brother was unexpectedly drafted into the Czar\u2019s army, Lena takes his place and travels on her own to meet her older brother in New York. She hopes to save enough money to pay for tickets for her parents to leave Russia as well. In New York, many different social, educational, and work opportunities and challenges await her.<\/p>\n            <\/div>\n          <\/div>\n                  <div id=\"character-5\" class=\"pic my-4 \">\n            <div class=\"character-hover\"><\/div>\n            <img decoding=\"async\" class=\"glow\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2019\/12\/28110348\/isaac-1.png\" alt=\"\">\n            <img decoding=\"async\" class=\"character\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2019\/12\/28110350\/isaac.png\" alt=\"\">\n            <div class=\"descriptions\">\n              <h5 class=\"title text-normal mb-1\">Isaac Brodsky<\/h5>\n              <p>Lena\u2019s older brother, who came to the United States three years earlier and is now married and living on the Lower East Side. He sells household goods from a cart on Hester Street but dreams of becoming a successful businessman with his own store.<\/p>\n            <\/div>\n          <\/div>\n                  <div id=\"character-6\" class=\"pic my-4 flex-row-reverse\">\n            <div class=\"character-hover\"><\/div>\n            <img decoding=\"async\" class=\"glow\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2019\/12\/28110346\/zev-1.png\" alt=\"\">\n            <img decoding=\"async\" class=\"character\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2019\/12\/28110348\/zev.png\" alt=\"\">\n            <div class=\"descriptions\">\n              <h5 class=\"title text-normal mb-1\">Zev<\/h5>\n              <p>A young Russian immigrant trying to make his way in New York by helping Jewish gang members collect debts. He enjoys dancing to American popular music and hopes to take Lena to the dancehall. <\/p>\n            <\/div>\n          <\/div>\n                  <div id=\"character-7\" class=\"pic my-4 \">\n            <div class=\"character-hover\"><\/div>\n            <img decoding=\"async\" class=\"glow\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2019\/12\/28110348\/james_poole-1.png\" alt=\"\">\n            <img decoding=\"async\" class=\"character\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2019\/12\/28110349\/james_poole.png\" alt=\"\">\n            <div class=\"descriptions\">\n              <h5 class=\"title text-normal mb-1\">James Poole<\/h5>\n              <p>A young reporter for one of New York City\u2019s \u201cmuckracking\u201d newspapers. He is college educated and a pro-union reformer.<\/p>\n            <\/div>\n          <\/div>\n                  <div id=\"character-8\" class=\"pic my-4 flex-row-reverse\">\n            <div class=\"character-hover\"><\/div>\n            <img decoding=\"async\" class=\"glow\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2019\/12\/28110347\/miss_sherman-1.png\" alt=\"\">\n            <img decoding=\"async\" class=\"character\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2019\/12\/28110349\/miss_sherman.png\" alt=\"\">\n            <div class=\"descriptions\">\n              <h5 class=\"title text-normal mb-1\">Miss Sherman<\/h5>\n              <p>A former garment factory operator who has been promoted to forelady. She is strict and supports the factory owners in their efforts to keep young women workers focused on increasing their production.<\/p>\n            <\/div>\n          <\/div>\n                  <\/div>\n  <\/div>\n<\/section>","protected":false},"excerpt":{"rendered":"<p>It\u2019s 1907. You are Lena Brodsky, a 14-year old Jewish immigrant from Russia. How will you start a new life in America?<\/p>","protected":false},"featured_media":0,"parent":0,"template":"","meta":{"_acf_changed":false,"inline_featured_image":false},"class_list":["post-143","games","type-games","status-publish","hentry","entry"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.4 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>City of Immigrants - MissionUS<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.mission-us.org\/games\/city-of-immigrants\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"City of Immigrants - MissionUS\" \/>\n<meta property=\"og:description\" content=\"It\u2019s 1907. You are Lena Brodsky, a 14-year old Jewish immigrant from Russia. How will you start a new life in America?\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.mission-us.org\/games\/city-of-immigrants\/\" \/>\n<meta property=\"og:site_name\" content=\"MissionUS\" \/>\n<meta property=\"article:modified_time\" content=\"2024-09-18T09:14:50+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.mission-us.org\/games\/city-of-immigrants\/\",\"url\":\"https:\/\/www.mission-us.org\/games\/city-of-immigrants\/\",\"name\":\"City of Immigrants - MissionUS\",\"isPartOf\":{\"@id\":\"https:\/\/www.mission-us.org\/#website\"},\"datePublished\":\"2019-12-05T10:38:16+00:00\",\"dateModified\":\"2024-09-18T09:14:50+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/www.mission-us.org\/games\/city-of-immigrants\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.mission-us.org\/games\/city-of-immigrants\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.mission-us.org\/games\/city-of-immigrants\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.mission-us.org\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"City of Immigrants\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.mission-us.org\/#website\",\"url\":\"https:\/\/www.mission-us.org\/\",\"name\":\"MissionUS\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.mission-us.org\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"City of Immigrants - MissionUS","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.mission-us.org\/games\/city-of-immigrants\/","og_locale":"en_US","og_type":"article","og_title":"City of Immigrants - MissionUS","og_description":"It\u2019s 1907. You are Lena Brodsky, a 14-year old Jewish immigrant from Russia. How will you start a new life in America?","og_url":"https:\/\/www.mission-us.org\/games\/city-of-immigrants\/","og_site_name":"MissionUS","article_modified_time":"2024-09-18T09:14:50+00:00","twitter_card":"summary_large_image","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.mission-us.org\/games\/city-of-immigrants\/","url":"https:\/\/www.mission-us.org\/games\/city-of-immigrants\/","name":"City of Immigrants - MissionUS","isPartOf":{"@id":"https:\/\/www.mission-us.org\/#website"},"datePublished":"2019-12-05T10:38:16+00:00","dateModified":"2024-09-18T09:14:50+00:00","breadcrumb":{"@id":"https:\/\/www.mission-us.org\/games\/city-of-immigrants\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.mission-us.org\/games\/city-of-immigrants\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.mission-us.org\/games\/city-of-immigrants\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.mission-us.org\/"},{"@type":"ListItem","position":2,"name":"City of Immigrants"}]},{"@type":"WebSite","@id":"https:\/\/www.mission-us.org\/#website","url":"https:\/\/www.mission-us.org\/","name":"MissionUS","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.mission-us.org\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"}]}},"_links":{"self":[{"href":"https:\/\/www.mission-us.org\/wp-json\/wp\/v2\/games\/143"}],"collection":[{"href":"https:\/\/www.mission-us.org\/wp-json\/wp\/v2\/games"}],"about":[{"href":"https:\/\/www.mission-us.org\/wp-json\/wp\/v2\/types\/games"}],"version-history":[{"count":118,"href":"https:\/\/www.mission-us.org\/wp-json\/wp\/v2\/games\/143\/revisions"}],"predecessor-version":[{"id":13500,"href":"https:\/\/www.mission-us.org\/wp-json\/wp\/v2\/games\/143\/revisions\/13500"}],"wp:attachment":[{"href":"https:\/\/www.mission-us.org\/wp-json\/wp\/v2\/media?parent=143"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}