{"id":147,"date":"2020-06-16T10:38:00","date_gmt":"2020-06-16T10:38:00","guid":{"rendered":"https:\/\/www.mission-us.org\/?post_type=games&#038;p=147"},"modified":"2025-07-28T12:22:27","modified_gmt":"2025-07-28T12:22:27","slug":"prisoner-in-my-homeland","status":"publish","type":"games","link":"https:\/\/www.mission-us.org\/games\/prisoner-in-my-homeland\/","title":{"rendered":"Prisoner in My Homeland"},"content":{"rendered":"<section class=\"block-game-content mb-3\">\n      <h2 class=\"title-md text-normal mb-1\">Prisoner in My Homeland<\/h2>\n        <span class=\"title-label my-1\">ESTIMATED TIME: 1.5-2 HOURS<\/span>\n        <div class=\"default-content\">\n      <p>The year is 1941. You are 16-year-old Henry Tanaka. When the government forces you and 120,000 other innocent Japanese Americans into camps, how will you react?<\/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\/28110405\/group%403x.jpg\" alt=\"group@3x\">\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.mission-us.org\/mission-6\/webgl-2023\/rc2_072625\/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 \"mission6\";\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.mission-us.org\/mission-6\/webgl-2023\/rc2_072625\/\";\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\/#prisonerinmyhomeland\" class=\"link-to-all\"><\/a><h4 class=\"item-title\">About This Mission<\/h4>Learn more about the creation of and team behind <i>Prisoner in My Homeland<\/i>.<\/li><li class=\"sidebar-nav-item\"><a href=\"\/teach\/prisoner-in-my-homeland\/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><li class=\"sidebar-nav-item\"><a href=\"https:\/\/player.pbs.org\/partnerplayer\/lLcr5FYx0WyyGNkdIKO3bA==\/?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 Overview: Prisoner in My Homeland<\/h4>View a video overview of the game narrative, features, educator support materials, and development process behind <i>Prisoner in My Homeland<\/i>.<\/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.PrisonerInMyHomeland\" 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\/mission06_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 \u201cmission06_pc_v1.zip\u201d on your computer and double-click to extract the game files.<\/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 \u201cMission06.\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><p class=\"mt-2\">Play on your iPad:<\/p><ul class=\"list-unstyled\"><li><a href=\"#modal-downloads-2-mobile-sidebar\" class=\"\" data-toggle=\"modal\">Download iPad app here<\/a><div class=\"modal fade modal-downloads-links\" id=\"modal-downloads-2-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 free iPad app here.<\/h5>\n                          <div class=\"btn-container\">\n                            <a href=\"https:\/\/apps.apple.com\/us\/app\/mus-prisoner-in-my-homeland\/id1570681616\" class=\"btn btn-sm btn-outline-primary\">Download iPad app<\/a>\n                          <\/div>\n                        <\/div>\n                        <div class=\"default-content\">\n                           \n                        <\/div>\n                      <\/div>\n                    <\/div>\n                  <\/div>\n                <\/div><\/li><\/ul><\/div>  <\/aside>\n<section class=\"block-meet-characters my-3 prisoner-in-my-homeland-characters\" 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=\"\" alt=\"\">\n            <img decoding=\"async\" class=\"character\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2020\/06\/24090834\/mus_6_character_7.svg\" alt=\"\">\n          <\/div>\n                  <div id=\"character-2\" class=\"pic position-z-index-3\">\n            <img decoding=\"async\" class=\"glow\" src=\"\" alt=\"\">\n            <img decoding=\"async\" class=\"character\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2020\/06\/24085934\/mus_6_character_1.svg\" alt=\"\">\n          <\/div>\n                  <div id=\"character-3\" class=\"pic position-z-index-2\">\n            <img decoding=\"async\" class=\"glow\" src=\"\" alt=\"\">\n            <img decoding=\"async\" class=\"character\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2020\/06\/24085936\/mus_6_character_2.svg\" alt=\"\">\n          <\/div>\n                  <div id=\"character-4\" class=\"pic position-z-index-3\">\n            <img decoding=\"async\" class=\"glow\" src=\"\" alt=\"\">\n            <img decoding=\"async\" class=\"character\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2020\/06\/24085947\/mus_6_character_4.svg\" alt=\"\">\n          <\/div>\n                  <div id=\"character-5\" class=\"pic position-z-index-3\">\n            <img decoding=\"async\" class=\"glow\" src=\"\" alt=\"\">\n            <img decoding=\"async\" class=\"character\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2020\/06\/24085941\/mus_6_character_3.svg\" alt=\"\">\n          <\/div>\n                  <div id=\"character-6\" class=\"pic position-z-index-3\">\n            <img decoding=\"async\" class=\"glow\" src=\"\" alt=\"\">\n            <img decoding=\"async\" class=\"character\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2020\/06\/24085952\/mus_6_character_5.svg\" alt=\"\">\n          <\/div>\n                  <div id=\"character-7\" class=\"pic position-z-index-2\">\n            <img decoding=\"async\" class=\"glow\" src=\"\" alt=\"\">\n            <img decoding=\"async\" class=\"character\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2020\/06\/24085958\/mus_6_character_6.svg\" alt=\"\">\n          <\/div>\n                  <div id=\"character-8\" class=\"pic position-z-index-3\">\n            <img decoding=\"async\" class=\"glow\" src=\"\" alt=\"\">\n            <img decoding=\"async\" class=\"character\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2020\/06\/24090423\/mus_6_character_9.svg\" alt=\"\">\n          <\/div>\n                  <div id=\"character-9\" class=\"pic position-z-index-3\">\n            <img decoding=\"async\" class=\"glow\" src=\"\" alt=\"\">\n            <img decoding=\"async\" class=\"character\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2020\/06\/24090609\/mus_6_character_8.svg\" alt=\"\">\n          <\/div>\n                    <div class=\"meet-characters-hover\">\n                                        <div id=\"character-hover-1\" class=\"character-hover position-z-index-1\" style=\"width:58px; height:400px; margin-left:58px\"><\/div>\n                      <div id=\"character-hover-2\" class=\"character-hover position-z-index-3\" style=\"width:49.333333333333px; height:400px; margin-left:49.333333333333px\"><\/div>\n                      <div id=\"character-hover-3\" class=\"character-hover position-z-index-2\" style=\"width:52px; height:400px; margin-left:52px\"><\/div>\n                      <div id=\"character-hover-4\" class=\"character-hover position-z-index-3\" style=\"width:47.333333333333px; height:400px; margin-left:47.333333333333px\"><\/div>\n                      <div id=\"character-hover-5\" class=\"character-hover position-z-index-3\" style=\"width:47.333333333333px; height:400px; margin-left:47.333333333333px\"><\/div>\n                      <div id=\"character-hover-6\" class=\"character-hover position-z-index-3\" style=\"width:43.666666666667px; height:400px; margin-left:43.666666666667px\"><\/div>\n                      <div id=\"character-hover-7\" class=\"character-hover position-z-index-2\" style=\"width:56px; height:400px; margin-left:56px\"><\/div>\n                      <div id=\"character-hover-8\" class=\"character-hover position-z-index-3\" style=\"width:58px; height:400px; margin-left:58px\"><\/div>\n                      <div id=\"character-hover-9\" class=\"character-hover position-z-index-3\" style=\"width:68px; height:400px; margin-left:68px\"><\/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\">Harry Ueno (historical figure)<\/h5>\n            <p>Harry Ueno (historical figure) is a 35-year old \u201cKibei.\u201d Ueno was born in Hawaii and sent to Japan to be educated. As an adult, he moved to Los Angeles, started a family and sold fruit. Ueno lives in Block 22 and works in the Block 22 mess hall as a cook\u2019s assistant.<\/p>\n          <\/div>\n                  <div id=\"character-info-2\" class=\"info\">\n            <h5 class=\"title text-normal\">Kiyoko Tanaka (fictional character)<\/h5>\n            <p>Kiyoko Tanaka (fictional character), Henry and Lily\u2019s mother, is an Issei Japanese American in her early 40s. She manages the household, and helps with the farm. When she emigrated to the United States to get married, she brought several family heirlooms, including a kimono and a tea set. She expects Henry to attend Japanese school, watch after his sister, and work on the farm.<\/p>\n          <\/div>\n                  <div id=\"character-info-3\" class=\"info\">\n            <h5 class=\"title text-normal\">Kinzo Tanaka (fictional character)<\/h5>\n            <p>Kinzo Tanaka (fictional character), Henry and Lily\u2019s father, is an Issei Japanese American in his late 50s. He is the head of the Tanaka household, and spends most of his time working on the strawberry farm. He is also a judo instructor at the local Japanese community center. His mother lives in Nagasaki. He hopes that Henry is the first member of the Tanaka family to go to college, and encourages him to develop both his mental and physical abilities.<\/p>\n          <\/div>\n                  <div id=\"character-info-4\" class=\"info\">\n            <h5 class=\"title text-normal\">Lily Tanaka (fictional character)<\/h5>\n            <p>Lily Tanaka (fictional character) is Henry\u2019s thirteen-year-old younger sister. She lives with her family on the strawberry farm on Bainbridge Island. When incarcerated at Manzanar, she joins the majorettes and practices baton throwing. Lily also appears in the game as \u201cGreat Aunt Lily,\u201d who reads Henry\u2019s diary along with Maya, Henry\u2019s granddaughter. <\/p>\n          <\/div>\n                  <div id=\"character-info-5\" class=\"info\">\n            <h5 class=\"title text-normal\">Henry Tanaka (fictional character)<\/h5>\n            <p>Henry Tanaka (fictional character) is a sixteen-year-old Nisei Japanese American when the mission begins.  He was born and raised on a strawberry farm on Bainbridge Island, a short ferry ride from Seattle, Washington. He attends the local high school where his favorite subject is chemistry. He is expected to attend Japanese school and help out on the farm by weeding the fields, planting and harvesting strawberry plants, and doing other chores. He keeps a diary that he illustrates with sketches. His family has a dog named Clark (named for Clark Kent, aka Superman).<\/p>\n          <\/div>\n                  <div id=\"character-info-6\" class=\"info\">\n            <h5 class=\"title text-normal\">Meiko Yamamoto (fictional character)<\/h5>\n            <p>Meiko Yamamoto (fictional character) is Mr. and Mrs. Yamamoto\u2019s only daughter. She is smart, thoughtful and motivated to do well. Like Henry, her favorite subject is Chemistry, though she also enjoys Miss Nelson\u2019s American history class. <\/p>\n          <\/div>\n                  <div id=\"character-info-7\" class=\"info\">\n            <h5 class=\"title text-normal\">Tadashi (fictional character)<\/h5>\n            <p>Tadashi (fictional character) is an 18-year-old Nisei Japanese American from Terminal Island whom Henry meets at Manzanar. Terminal Island is home to Japanese American fishermen and canning workers. Compared to Bainbridge Islanders, Terminal Islanders are considered tough and street-smart. Tadashi lives in Block 10 and works in the mess hall.<\/p>\n          <\/div>\n                  <div id=\"character-info-8\" class=\"info\">\n            <h5 class=\"title text-normal\">Miss Nelson (fictional character)<\/h5>\n            <p>Miss Nelson (fictional character) is a 30-year old teacher from California and a Quaker. She works as a high school teacher at Manzanar, living and working there beginning in October 1943. She is sympathetic with the young incarcerees, and encourages them to study hard. She attempts to help eligible students leave the camps for colleges on the East Coast and Midwest. This character was loosely based on Eleanor Gerard Sekerak, a teacher at the War Relocation Authority concentration camp in Topaz, Utah.<\/p>\n          <\/div>\n                  <div id=\"character-info-9\" class=\"info\">\n            <h5 class=\"title text-normal\">Mr. Yamamoto (fictional character)<\/h5>\n            <p>Mr. Yamamoto (fictional character) is a Nisei Japanese American who runs a grocery store on Bainbridge Island. He is an active member of the Japanese American Citizens League (JACL). While critical of the government\u2019s forced removal and incarceration policies, he supports strategies that demonstrate Japanese American loyalty such as cooperating with the authorities and encouraging Nisei to serve in the armed forces.<\/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=\"\" alt=\"\">\n            <img decoding=\"async\" class=\"character\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2020\/06\/24090834\/mus_6_character_7.svg\" alt=\"\">\n            <div class=\"descriptions\">\n              <h5 class=\"title text-normal mb-1\">Harry Ueno (historical figure)<\/h5>\n              <p>Harry Ueno (historical figure) is a 35-year old \u201cKibei.\u201d Ueno was born in Hawaii and sent to Japan to be educated. As an adult, he moved to Los Angeles, started a family and sold fruit. Ueno lives in Block 22 and works in the Block 22 mess hall as a cook\u2019s assistant.<\/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=\"\" alt=\"\">\n            <img decoding=\"async\" class=\"character\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2020\/06\/24085934\/mus_6_character_1.svg\" alt=\"\">\n            <div class=\"descriptions\">\n              <h5 class=\"title text-normal mb-1\">Kiyoko Tanaka (fictional character)<\/h5>\n              <p>Kiyoko Tanaka (fictional character), Henry and Lily\u2019s mother, is an Issei Japanese American in her early 40s. She manages the household, and helps with the farm. When she emigrated to the United States to get married, she brought several family heirlooms, including a kimono and a tea set. She expects Henry to attend Japanese school, watch after his sister, and work on the farm.<\/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=\"\" alt=\"\">\n            <img decoding=\"async\" class=\"character\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2020\/06\/24085936\/mus_6_character_2.svg\" alt=\"\">\n            <div class=\"descriptions\">\n              <h5 class=\"title text-normal mb-1\">Kinzo Tanaka (fictional character)<\/h5>\n              <p>Kinzo Tanaka (fictional character), Henry and Lily\u2019s father, is an Issei Japanese American in his late 50s. He is the head of the Tanaka household, and spends most of his time working on the strawberry farm. He is also a judo instructor at the local Japanese community center. His mother lives in Nagasaki. He hopes that Henry is the first member of the Tanaka family to go to college, and encourages him to develop both his mental and physical abilities.<\/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=\"\" alt=\"\">\n            <img decoding=\"async\" class=\"character\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2020\/06\/24085947\/mus_6_character_4.svg\" alt=\"\">\n            <div class=\"descriptions\">\n              <h5 class=\"title text-normal mb-1\">Lily Tanaka (fictional character)<\/h5>\n              <p>Lily Tanaka (fictional character) is Henry\u2019s thirteen-year-old younger sister. She lives with her family on the strawberry farm on Bainbridge Island. When incarcerated at Manzanar, she joins the majorettes and practices baton throwing. Lily also appears in the game as \u201cGreat Aunt Lily,\u201d who reads Henry\u2019s diary along with Maya, Henry\u2019s granddaughter. <\/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=\"\" alt=\"\">\n            <img decoding=\"async\" class=\"character\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2020\/06\/24085941\/mus_6_character_3.svg\" alt=\"\">\n            <div class=\"descriptions\">\n              <h5 class=\"title text-normal mb-1\">Henry Tanaka (fictional character)<\/h5>\n              <p>Henry Tanaka (fictional character) is a sixteen-year-old Nisei Japanese American when the mission begins.  He was born and raised on a strawberry farm on Bainbridge Island, a short ferry ride from Seattle, Washington. He attends the local high school where his favorite subject is chemistry. He is expected to attend Japanese school and help out on the farm by weeding the fields, planting and harvesting strawberry plants, and doing other chores. He keeps a diary that he illustrates with sketches. His family has a dog named Clark (named for Clark Kent, aka Superman).<\/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=\"\" alt=\"\">\n            <img decoding=\"async\" class=\"character\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2020\/06\/24085952\/mus_6_character_5.svg\" alt=\"\">\n            <div class=\"descriptions\">\n              <h5 class=\"title text-normal mb-1\">Meiko Yamamoto (fictional character)<\/h5>\n              <p>Meiko Yamamoto (fictional character) is Mr. and Mrs. Yamamoto\u2019s only daughter. She is smart, thoughtful and motivated to do well. Like Henry, her favorite subject is Chemistry, though she also enjoys Miss Nelson\u2019s American history class. <\/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=\"\" alt=\"\">\n            <img decoding=\"async\" class=\"character\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2020\/06\/24085958\/mus_6_character_6.svg\" alt=\"\">\n            <div class=\"descriptions\">\n              <h5 class=\"title text-normal mb-1\">Tadashi (fictional character)<\/h5>\n              <p>Tadashi (fictional character) is an 18-year-old Nisei Japanese American from Terminal Island whom Henry meets at Manzanar. Terminal Island is home to Japanese American fishermen and canning workers. Compared to Bainbridge Islanders, Terminal Islanders are considered tough and street-smart. Tadashi lives in Block 10 and works in the mess hall.<\/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=\"\" alt=\"\">\n            <img decoding=\"async\" class=\"character\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2020\/06\/24090423\/mus_6_character_9.svg\" alt=\"\">\n            <div class=\"descriptions\">\n              <h5 class=\"title text-normal mb-1\">Miss Nelson (fictional character)<\/h5>\n              <p>Miss Nelson (fictional character) is a 30-year old teacher from California and a Quaker. She works as a high school teacher at Manzanar, living and working there beginning in October 1943. She is sympathetic with the young incarcerees, and encourages them to study hard. She attempts to help eligible students leave the camps for colleges on the East Coast and Midwest. This character was loosely based on Eleanor Gerard Sekerak, a teacher at the War Relocation Authority concentration camp in Topaz, Utah.<\/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=\"\" alt=\"\">\n            <img decoding=\"async\" class=\"character\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2020\/06\/24090609\/mus_6_character_8.svg\" alt=\"\">\n            <div class=\"descriptions\">\n              <h5 class=\"title text-normal mb-1\">Mr. Yamamoto (fictional character)<\/h5>\n              <p>Mr. Yamamoto (fictional character) is a Nisei Japanese American who runs a grocery store on Bainbridge Island. He is an active member of the Japanese American Citizens League (JACL). While critical of the government\u2019s forced removal and incarceration policies, he supports strategies that demonstrate Japanese American loyalty such as cooperating with the authorities and encouraging Nisei to serve in the armed forces.<\/p>\n            <\/div>\n          <\/div>\n                  <\/div>\n  <\/div>\n<\/section>\n\n<section class=\"block-game-content mb-3\">\n      <h2 class=\"title-md text-normal mb-1\">Not pictured:<\/h2>\n          <div class=\"default-content\">\n      <p><b>Maya Tanaka (fictional character)<\/b><span style=\"font-weight: 400;\"> is Henry\u2019s granddaughter. In the present day, after Henry\u2019s death, she finds his diary while cleaning out his attic. Surprised by her discovery &#8212; her grandfather had never spoken about his incarceration during World War II &#8212; she reaches out to Great-Aunt Lily (Henry\u2019s sister, Lily, now an elderly woman) to learn more and is inspired to dig deeper into the past.<\/span><\/p>\n<p><b>Mr. Flores (fictional character)<\/b><span style=\"font-weight: 400;\"> is a Filipino American who works with Mr. Tanaka on the strawberry farm. After the Tanakas are forcibly removed to Manzanar, Mr. Flores looks after the farm, but severe labor shortages limit his ability to harvest the crop.<\/span><\/p>\n      <p> <a class=\"scroll-to\" href=\"#characters\"><\/a><\/p>\n    <\/div>\n  <\/section>","protected":false},"excerpt":{"rendered":"<p>It&#8217;s 1941. You are 16-year-old Henry Tanaka. When your family is imprisoned and your loyalty questioned, how will you respond?<\/p>","protected":false},"featured_media":7911,"parent":0,"template":"","meta":{"_acf_changed":false,"inline_featured_image":false},"class_list":["post-147","games","type-games","status-publish","has-post-thumbnail","hentry","entry"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.4 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Prisoner in My Homeland - 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\/prisoner-in-my-homeland\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Prisoner in My Homeland - MissionUS\" \/>\n<meta property=\"og:description\" content=\"It&#039;s 1941. You are 16-year-old Henry Tanaka. When your family is imprisoned and your loyalty questioned, how will you respond?\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.mission-us.org\/games\/prisoner-in-my-homeland\/\" \/>\n<meta property=\"og:site_name\" content=\"MissionUS\" \/>\n<meta property=\"article:modified_time\" content=\"2025-07-28T12:22:27+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2020\/06\/14205603\/Mission-US-6_3-right.png\" \/>\n\t<meta property=\"og:image:width\" content=\"2100\" \/>\n\t<meta property=\"og:image:height\" content=\"1500\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.mission-us.org\/games\/prisoner-in-my-homeland\/\",\"url\":\"https:\/\/www.mission-us.org\/games\/prisoner-in-my-homeland\/\",\"name\":\"Prisoner in My Homeland - MissionUS\",\"isPartOf\":{\"@id\":\"https:\/\/www.mission-us.org\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.mission-us.org\/games\/prisoner-in-my-homeland\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.mission-us.org\/games\/prisoner-in-my-homeland\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2020\/06\/14205603\/Mission-US-6_3-right.png\",\"datePublished\":\"2020-06-16T10:38:00+00:00\",\"dateModified\":\"2025-07-28T12:22:27+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/www.mission-us.org\/games\/prisoner-in-my-homeland\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.mission-us.org\/games\/prisoner-in-my-homeland\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.mission-us.org\/games\/prisoner-in-my-homeland\/#primaryimage\",\"url\":\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2020\/06\/14205603\/Mission-US-6_3-right.png\",\"contentUrl\":\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2020\/06\/14205603\/Mission-US-6_3-right.png\",\"width\":2100,\"height\":1500,\"caption\":\"Image of Henry Tanaka from Prisoner in My Homeland\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.mission-us.org\/games\/prisoner-in-my-homeland\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.mission-us.org\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Prisoner in My Homeland\"}]},{\"@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":"Prisoner in My Homeland - 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\/prisoner-in-my-homeland\/","og_locale":"en_US","og_type":"article","og_title":"Prisoner in My Homeland - MissionUS","og_description":"It's 1941. You are 16-year-old Henry Tanaka. When your family is imprisoned and your loyalty questioned, how will you respond?","og_url":"https:\/\/www.mission-us.org\/games\/prisoner-in-my-homeland\/","og_site_name":"MissionUS","article_modified_time":"2025-07-28T12:22:27+00:00","og_image":[{"width":2100,"height":1500,"url":"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2020\/06\/14205603\/Mission-US-6_3-right.png","type":"image\/png"}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.mission-us.org\/games\/prisoner-in-my-homeland\/","url":"https:\/\/www.mission-us.org\/games\/prisoner-in-my-homeland\/","name":"Prisoner in My Homeland - MissionUS","isPartOf":{"@id":"https:\/\/www.mission-us.org\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.mission-us.org\/games\/prisoner-in-my-homeland\/#primaryimage"},"image":{"@id":"https:\/\/www.mission-us.org\/games\/prisoner-in-my-homeland\/#primaryimage"},"thumbnailUrl":"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2020\/06\/14205603\/Mission-US-6_3-right.png","datePublished":"2020-06-16T10:38:00+00:00","dateModified":"2025-07-28T12:22:27+00:00","breadcrumb":{"@id":"https:\/\/www.mission-us.org\/games\/prisoner-in-my-homeland\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.mission-us.org\/games\/prisoner-in-my-homeland\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.mission-us.org\/games\/prisoner-in-my-homeland\/#primaryimage","url":"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2020\/06\/14205603\/Mission-US-6_3-right.png","contentUrl":"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2020\/06\/14205603\/Mission-US-6_3-right.png","width":2100,"height":1500,"caption":"Image of Henry Tanaka from Prisoner in My Homeland"},{"@type":"BreadcrumbList","@id":"https:\/\/www.mission-us.org\/games\/prisoner-in-my-homeland\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.mission-us.org\/"},{"@type":"ListItem","position":2,"name":"Prisoner in My Homeland"}]},{"@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\/147"}],"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":126,"href":"https:\/\/www.mission-us.org\/wp-json\/wp\/v2\/games\/147\/revisions"}],"predecessor-version":[{"id":14268,"href":"https:\/\/www.mission-us.org\/wp-json\/wp\/v2\/games\/147\/revisions\/14268"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.mission-us.org\/wp-json\/wp\/v2\/media\/7911"}],"wp:attachment":[{"href":"https:\/\/www.mission-us.org\/wp-json\/wp\/v2\/media?parent=147"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}