{"id":141,"date":"2019-12-05T10:38:05","date_gmt":"2019-12-05T10:38:05","guid":{"rendered":"https:\/\/www.mission-us.org\/?post_type=games&#038;p=141"},"modified":"2025-07-28T12:10:35","modified_gmt":"2025-07-28T12:10:35","slug":"a-cheyenne-odyssey","status":"publish","type":"games","link":"https:\/\/www.mission-us.org\/games\/a-cheyenne-odyssey\/","title":{"rendered":"A Cheyenne Odyssey"},"content":{"rendered":"<section class=\"block-game-content mb-3\">\n      <h2 class=\"title-md text-normal mb-1\">A Cheyenne Odyssey <\/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 1866. You are Little Fox, a Northern Cheyenne boy. Can you help your tribe survive life on the Plains?<\/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\/28110412\/Cheyenne.jpg\" alt=\"Cheyenne\">\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-3\/webgl-2024\/rc3_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 \"mission03-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.mission-us.org\/mission-3\/webgl-2024\/rc3_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\/#acheyenneodyssey\" class=\"link-to-all\"><\/a><h4 class=\"item-title\">About This Mission<\/h4>Learn more about the creation of and team behind <i>A Cheyenne Odyssey<\/i>.<\/li><li class=\"sidebar-nav-item\"><a href=\"\/teach\/a-cheyenne-odyssey\/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, primary sources, 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.ACheyenneOdyssey\" 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\/mission03_pc_v1_1.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 \u201cmission03_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-2\">\n            <img decoding=\"async\" class=\"glow\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2019\/12\/22120701\/big_eared_white_man-1.png\" alt=\"\">\n            <img decoding=\"async\" class=\"character\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2019\/12\/22120659\/big_eared_white_man.png\" alt=\"\">\n          <\/div>\n                  <div id=\"character-2\" class=\"pic position-z-index-2\">\n            <img decoding=\"async\" class=\"glow\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2019\/12\/22120956\/chief_dull_knife-1.png\" alt=\"\">\n            <img decoding=\"async\" class=\"character\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2019\/12\/22120957\/chief_dull_knife.png\" alt=\"\">\n          <\/div>\n                  <div id=\"character-3\" class=\"pic position-z-index-3\">\n            <img decoding=\"async\" class=\"glow\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2020\/01\/28110351\/crooked_rabbit-1.png\" alt=\"\">\n            <img decoding=\"async\" class=\"character\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2020\/01\/28110354\/crooked_rabbit.png\" alt=\"\">\n          <\/div>\n                  <div id=\"character-4\" class=\"pic position-z-index-1\">\n            <img decoding=\"async\" class=\"glow\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2020\/01\/28110350\/yellow_fox-1.png\" alt=\"\">\n            <img decoding=\"async\" class=\"character\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2020\/01\/28110353\/yellow_fox.png\" alt=\"\">\n          <\/div>\n                  <div id=\"character-5\" class=\"pic position-z-index-2\">\n            <img decoding=\"async\" class=\"glow\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2020\/01\/28110350\/porcupine-1.png\" alt=\"\">\n            <img decoding=\"async\" class=\"character\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2020\/01\/28110353\/porcupine.png\" alt=\"\">\n          <\/div>\n                  <div id=\"character-6\" class=\"pic position-z-index-3\">\n            <img decoding=\"async\" class=\"glow\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2020\/01\/28110351\/little_fox-1.png\" alt=\"\">\n            <img decoding=\"async\" class=\"character\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2020\/01\/28110353\/little_fox.png\" alt=\"\">\n          <\/div>\n                  <div id=\"character-7\" class=\"pic position-z-index-2\">\n            <img decoding=\"async\" class=\"glow\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2020\/01\/28110351\/fire_wolf-1.png\" alt=\"\">\n            <img decoding=\"async\" class=\"character\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2020\/01\/28110353\/fire_wolf.png\" alt=\"\">\n          <\/div>\n                  <div id=\"character-8\" class=\"pic position-z-index-2\">\n            <img decoding=\"async\" class=\"glow\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2020\/01\/28110352\/calling_bird-1.png\" alt=\"\">\n            <img decoding=\"async\" class=\"character\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2020\/01\/28110354\/calling_bird.png\" alt=\"\">\n          <\/div>\n                  <div id=\"character-9\" class=\"pic position-z-index-1\">\n            <img decoding=\"async\" class=\"glow\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2020\/01\/28110350\/many_horses-1.png\" alt=\"\">\n            <img decoding=\"async\" class=\"character\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2020\/01\/28110353\/many_horses.png\" alt=\"\">\n          <\/div>\n                  <div id=\"character-10\" class=\"pic position-z-index-2\">\n            <img decoding=\"async\" class=\"glow\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2020\/01\/28110352\/black_moon-1.png\" alt=\"\">\n            <img decoding=\"async\" class=\"character\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2020\/01\/28110354\/black_moon.png\" alt=\"\">\n          <\/div>\n                  <div id=\"character-11\" class=\"pic position-z-index-3\">\n            <img decoding=\"async\" class=\"glow\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2020\/01\/28110352\/blue_feather-1.png\" alt=\"\">\n            <img decoding=\"async\" class=\"character\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2020\/01\/28110354\/blue_feather.png\" alt=\"\">\n          <\/div>\n                  <div id=\"character-12\" class=\"pic position-z-index-1\">\n            <img decoding=\"async\" class=\"glow\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2020\/01\/28110351\/little_wolf-1.png\" alt=\"\">\n            <img decoding=\"async\" class=\"character\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2020\/01\/28110353\/little_wolf.png\" alt=\"\">\n          <\/div>\n                  <div id=\"character-13\" class=\"pic position-z-index-3\">\n            <img decoding=\"async\" class=\"glow\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2020\/01\/28110352\/agent_saville-1.png\" alt=\"\">\n            <img decoding=\"async\" class=\"character\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2020\/01\/28110355\/agent_saville.png\" alt=\"\">\n          <\/div>\n                    <div class=\"meet-characters-hover\">\n                                        <div id=\"character-hover-1\" class=\"character-hover position-z-index-2\" style=\"width:54.666666666667px; height:419px; margin-left:54.666666666667px\"><\/div>\n                      <div id=\"character-hover-2\" class=\"character-hover position-z-index-2\" style=\"width:61px; height:423px; margin-left:61px\"><\/div>\n                      <div id=\"character-hover-3\" class=\"character-hover position-z-index-3\" style=\"width:61.333333333333px; height:421px; margin-left:61.333333333333px\"><\/div>\n                      <div id=\"character-hover-4\" class=\"character-hover position-z-index-1\" style=\"width:58.333333333333px; height:422px; margin-left:58.333333333333px\"><\/div>\n                      <div id=\"character-hover-5\" class=\"character-hover position-z-index-2\" style=\"width:58.333333333333px; height:428px; margin-left:58.333333333333px\"><\/div>\n                      <div id=\"character-hover-6\" class=\"character-hover position-z-index-3\" style=\"width:61px; height:416px; margin-left:61px\"><\/div>\n                      <div id=\"character-hover-7\" class=\"character-hover position-z-index-2\" style=\"width:66px; height:449px; margin-left:66px\"><\/div>\n                      <div id=\"character-hover-8\" class=\"character-hover position-z-index-2\" style=\"width:52px; height:413px; margin-left:52px\"><\/div>\n                      <div id=\"character-hover-9\" class=\"character-hover position-z-index-1\" style=\"width:61.666666666667px; height:418px; margin-left:61.666666666667px\"><\/div>\n                      <div id=\"character-hover-10\" class=\"character-hover position-z-index-2\" style=\"width:60px; height:423px; margin-left:60px\"><\/div>\n                      <div id=\"character-hover-11\" class=\"character-hover position-z-index-3\" style=\"width:56px; height:426px; margin-left:56px\"><\/div>\n                      <div id=\"character-hover-12\" class=\"character-hover position-z-index-1\" style=\"width:63px; height:435px; margin-left:63px\"><\/div>\n                      <div id=\"character-hover-13\" class=\"character-hover position-z-index-3\" style=\"width:55px; height:425px; margin-left:55px\"><\/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\">Big Eared White Man<\/h5>\n            <p>Big Eared White Man is a trader who supplies metal goods, woven cloth, guns, and ammunition to Plains Indians in exchange for buffalo hides. He has worked for the American Fur Company since the 1840s and has always had good relations with the Plains Indians. He is worried about the declining number of buffalo his business relies on.<\/p>\n          <\/div>\n                  <div id=\"character-info-2\" class=\"info\">\n            <h5 class=\"title text-normal\">Chief Dull Knife<\/h5>\n            <p>Also called Morning Star, Dull Knife (c. 1810-1883) was a prominent Northern Cheyenne chief and Dog Soldier. Dull Knife fought in the Battle of a Hundred Slain (Fetterman's Massacre) and signed the Treaty of Fort Laramie in 1868. In 1878, he and Little Wolf led nearly 300 Cheyenne on an exodus from Oklahoma, where they had been forced to relocate. During the journey north to their homeland, Dull Knife and his band split from Little Wolf to seek refuge at Red Cloud Agency in Nebraska but were imprisoned by white soldiers in Fort Robinson. Rather than face removal back south, they broke out of prison. Many were killed, but Dull Knife survived and lived until 1883. He is buried in Montana on land he helped secure for his people.<\/p>\n          <\/div>\n                  <div id=\"character-info-3\" class=\"info\">\n            <h5 class=\"title text-normal\">Crooked Rabbit<\/h5>\n            <p>Crooked Rabbit is Little Fox's friend, who also helps watch after the band's horses. His father and Little Fox's father were close friends who both belonged to the Elk warrior society. When the game begins, he is 16 years old.<\/p>\n          <\/div>\n                  <div id=\"character-info-4\" class=\"info\">\n            <h5 class=\"title text-normal\">Yellow Fox<\/h5>\n            <p>Yellow Fox is Little Fox's mother. She is responsible for butchering and preparing all the meat for the family, gathering wild turnips and berries, cooking all meals, maintaining their lodge, and packing up the family belongings and tipi as they move from place to place.<\/p>\n          <\/div>\n                  <div id=\"character-info-5\" class=\"info\">\n            <h5 class=\"title text-normal\">Porcupine<\/h5>\n            <p>Porcupine (c. 1847-1929?) was a Southern Cheyenne healer and warrior. He was a member of the Dog Soldiers, a Cheyenne warrior society known for bravery. Porcupine actively opposed the construction of the transcontinental railroad. He gained fame as a leader of the northern ghost dance movement in the late 1880s.<\/p>\n          <\/div>\n                  <div id=\"character-info-6\" class=\"info\">\n            <h5 class=\"title text-normal\">Little Fox<\/h5>\n            <p>Little Fox is a member of the Northern Cheyenne, one of several Indian tribes who lived in the northern Great Plains. He was born in the Powder River Valley (present-day Montana) and lives with his mother, sister, and uncle as part of a band with about 100 fellow Cheyenne. When the game begins, Little Fox is 12 years old. Along with other young boys, he is responsible for tending and training horses. As he gets older, he will join a warrior society and participate in the buffalo hunts his tribe depends on to survive. Little Fox is based on a real person - Wooden Leg (c. 1858-1940), a Northern Cheyenne warrior who wrote a memoir about growing up on the Great Plains and events leading up to the Battle of the Little Bighorn.<\/p>\n          <\/div>\n                  <div id=\"character-info-7\" class=\"info\">\n            <h5 class=\"title text-normal\">Fire Wolf<\/h5>\n            <p>Little's Fox's uncle, Fire Wolf, is a member of the Elk warrior society. Like many Northern Cheyenne, he opposes the building of US army forts along the Bozeman Trail, a wagon road for miners going to western Montana. He will fight with Lakota allies against US soldiers in the Battle of a Hundred Slain (also known as Fetterman's Massacre).<\/p>\n          <\/div>\n                  <div id=\"character-info-8\" class=\"info\">\n            <h5 class=\"title text-normal\">Calling Bird<\/h5>\n            <p>Calling Bird, Little Fox's older sister, is 17 years old at the start of the game. She is very skillful at making and decorating clothes, and beading moccasins. She is being courted by two suitors, Black Moon and Many Horses.<\/p>\n          <\/div>\n                  <div id=\"character-info-9\" class=\"info\">\n            <h5 class=\"title text-normal\">Many Horses<\/h5>\n            <p>Many Horses is a Lakota warrior who is noted for his trading skills. He has made many trips to the white man's trading post. He wants to marry Calling Bird in part to strengthen the alliance between his Lakota band and the Northern Cheyenne.<\/p>\n          <\/div>\n                  <div id=\"character-info-10\" class=\"info\">\n            <h5 class=\"title text-normal\">Black Moon<\/h5>\n            <p>Black Moon is a Southern Cheyenne warrior whose family travelled with Chief Black Kettle's band. Even though Black Kettle had pledged peace with the whites, US soldiers attacked his settlement at Sand Creek in 1864 and killed over 100 Cheyenne. Black Moon escaped, but his entire family was killed. He has travelled north to start a new life and hopes to marry Calling Bird.<\/p>\n          <\/div>\n                  <div id=\"character-info-11\" class=\"info\">\n            <h5 class=\"title text-normal\">Blue Feather<\/h5>\n            <p>Blue Feather is a young Northern Cheyenne woman who likes to ride horses and help in hunting. She knows the creeks and hills of the Powder River Valley as well as any warrior. Her family often travels with Chief Dull Knife's band.<\/p>\n          <\/div>\n                  <div id=\"character-info-12\" class=\"info\">\n            <h5 class=\"title text-normal\">Chief Little Wolf<\/h5>\n            <p>Little Wolf (c. 1820-1904) was a Northern Cheyenne chief and leader of the Elk Warriors. A skilled military strategist, he led soldiers in the Battle of a Hundred Slain (Fetterman's Massacre) and signed the Fort Laramie Treaty of 1868. After the Battle of the Little Bighorn, his band was forced to relocate to Oklahoma, where Little Wolf spoke out against the terrible conditions they faced. With Dull Knife, he led an exodus of nearly 300 Cheyenne from Oklahoma back north to their homeland. His band separated from Dull Knife's band and hid in the Black Hills for one winter before surrendering at Fort Keogh, only after receiving assurances they could remain in Montana. Little Wolf later worked as an army scout for General Nelson Miles.<\/p>\n          <\/div>\n                  <div id=\"character-info-13\" class=\"info\">\n            <h5 class=\"title text-normal\">Agent Saville<\/h5>\n            <p>Dr. John J. Saville, a physician from Sioux City, Iowa, was the US government's Indian Agent at Red Cloud Agency from fall 1873 to late 1875. He arrived after the agency moved to Nebraska amid growing tensions between the army and the Lakota and Cheyenne. He requested greater military protection after the murder of an agency clerk, and facilitated construction of Fort Robinson near Red Cloud Agency. He also played a role in the first treaty negotiations for the Black Hills between the US government and the Lakota.<\/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: 6.7692307692308%;\n    }\n\n    #character-hover-2 {\n      left: 6.7692307692308%;\n    }\n\n    #character-3 {\n      left: 13.538461538462%;\n    }\n\n    #character-hover-3 {\n      left: 13.538461538462%;\n    }\n\n    #character-4 {\n      left: 20.307692307692%;\n    }\n\n    #character-hover-4 {\n      left: 20.307692307692%;\n    }\n\n    #character-5 {\n      left: 27.076923076923%;\n    }\n\n    #character-hover-5 {\n      left: 27.076923076923%;\n    }\n\n    #character-6 {\n      left: 33.846153846154%;\n    }\n\n    #character-hover-6 {\n      left: 33.846153846154%;\n    }\n\n    #character-7 {\n      left: 40.615384615385%;\n    }\n\n    #character-hover-7 {\n      left: 40.615384615385%;\n    }\n\n    #character-8 {\n      left: 47.384615384615%;\n    }\n\n    #character-hover-8 {\n      left: 47.384615384615%;\n    }\n\n    #character-9 {\n      left: 54.153846153846%;\n    }\n\n    #character-hover-9 {\n      left: 54.153846153846%;\n    }\n\n    #character-10 {\n      left: 60.923076923077%;\n    }\n\n    #character-hover-10 {\n      left: 60.923076923077%;\n    }\n\n    #character-11 {\n      left: 67.692307692308%;\n    }\n\n    #character-hover-11 {\n      left: 67.692307692308%;\n    }\n\n    #character-12 {\n      left: 74.461538461538%;\n    }\n\n    #character-hover-12 {\n      left: 74.461538461538%;\n    }\n\n    #character-13 {\n      left: 81.230769230769%;\n    }\n\n    #character-hover-13 {\n      left: 81.230769230769%;\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\/22120701\/big_eared_white_man-1.png\" alt=\"\">\n            <img decoding=\"async\" class=\"character\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2019\/12\/22120659\/big_eared_white_man.png\" alt=\"\">\n            <div class=\"descriptions\">\n              <h5 class=\"title text-normal mb-1\">Big Eared White Man<\/h5>\n              <p>Big Eared White Man is a trader who supplies metal goods, woven cloth, guns, and ammunition to Plains Indians in exchange for buffalo hides. He has worked for the American Fur Company since the 1840s and has always had good relations with the Plains Indians. He is worried about the declining number of buffalo his business relies on.<\/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\/22120956\/chief_dull_knife-1.png\" alt=\"\">\n            <img decoding=\"async\" class=\"character\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2019\/12\/22120957\/chief_dull_knife.png\" alt=\"\">\n            <div class=\"descriptions\">\n              <h5 class=\"title text-normal mb-1\">Chief Dull Knife<\/h5>\n              <p>Also called Morning Star, Dull Knife (c. 1810-1883) was a prominent Northern Cheyenne chief and Dog Soldier. Dull Knife fought in the Battle of a Hundred Slain (Fetterman's Massacre) and signed the Treaty of Fort Laramie in 1868. In 1878, he and Little Wolf led nearly 300 Cheyenne on an exodus from Oklahoma, where they had been forced to relocate. During the journey north to their homeland, Dull Knife and his band split from Little Wolf to seek refuge at Red Cloud Agency in Nebraska but were imprisoned by white soldiers in Fort Robinson. Rather than face removal back south, they broke out of prison. Many were killed, but Dull Knife survived and lived until 1883. He is buried in Montana on land he helped secure for his people.<\/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\/2020\/01\/28110351\/crooked_rabbit-1.png\" alt=\"\">\n            <img decoding=\"async\" class=\"character\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2020\/01\/28110354\/crooked_rabbit.png\" alt=\"\">\n            <div class=\"descriptions\">\n              <h5 class=\"title text-normal mb-1\">Crooked Rabbit<\/h5>\n              <p>Crooked Rabbit is Little Fox's friend, who also helps watch after the band's horses. His father and Little Fox's father were close friends who both belonged to the Elk warrior society. When the game begins, he is 16 years old.<\/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\/2020\/01\/28110350\/yellow_fox-1.png\" alt=\"\">\n            <img decoding=\"async\" class=\"character\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2020\/01\/28110353\/yellow_fox.png\" alt=\"\">\n            <div class=\"descriptions\">\n              <h5 class=\"title text-normal mb-1\">Yellow Fox<\/h5>\n              <p>Yellow Fox is Little Fox's mother. She is responsible for butchering and preparing all the meat for the family, gathering wild turnips and berries, cooking all meals, maintaining their lodge, and packing up the family belongings and tipi as they move from place to place.<\/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\/2020\/01\/28110350\/porcupine-1.png\" alt=\"\">\n            <img decoding=\"async\" class=\"character\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2020\/01\/28110353\/porcupine.png\" alt=\"\">\n            <div class=\"descriptions\">\n              <h5 class=\"title text-normal mb-1\">Porcupine<\/h5>\n              <p>Porcupine (c. 1847-1929?) was a Southern Cheyenne healer and warrior. He was a member of the Dog Soldiers, a Cheyenne warrior society known for bravery. Porcupine actively opposed the construction of the transcontinental railroad. He gained fame as a leader of the northern ghost dance movement in the late 1880s.<\/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\/2020\/01\/28110351\/little_fox-1.png\" alt=\"\">\n            <img decoding=\"async\" class=\"character\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2020\/01\/28110353\/little_fox.png\" alt=\"\">\n            <div class=\"descriptions\">\n              <h5 class=\"title text-normal mb-1\">Little Fox<\/h5>\n              <p>Little Fox is a member of the Northern Cheyenne, one of several Indian tribes who lived in the northern Great Plains. He was born in the Powder River Valley (present-day Montana) and lives with his mother, sister, and uncle as part of a band with about 100 fellow Cheyenne. When the game begins, Little Fox is 12 years old. Along with other young boys, he is responsible for tending and training horses. As he gets older, he will join a warrior society and participate in the buffalo hunts his tribe depends on to survive. Little Fox is based on a real person - Wooden Leg (c. 1858-1940), a Northern Cheyenne warrior who wrote a memoir about growing up on the Great Plains and events leading up to the Battle of the Little Bighorn.<\/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\/2020\/01\/28110351\/fire_wolf-1.png\" alt=\"\">\n            <img decoding=\"async\" class=\"character\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2020\/01\/28110353\/fire_wolf.png\" alt=\"\">\n            <div class=\"descriptions\">\n              <h5 class=\"title text-normal mb-1\">Fire Wolf<\/h5>\n              <p>Little's Fox's uncle, Fire Wolf, is a member of the Elk warrior society. Like many Northern Cheyenne, he opposes the building of US army forts along the Bozeman Trail, a wagon road for miners going to western Montana. He will fight with Lakota allies against US soldiers in the Battle of a Hundred Slain (also known as Fetterman's Massacre).<\/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\/2020\/01\/28110352\/calling_bird-1.png\" alt=\"\">\n            <img decoding=\"async\" class=\"character\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2020\/01\/28110354\/calling_bird.png\" alt=\"\">\n            <div class=\"descriptions\">\n              <h5 class=\"title text-normal mb-1\">Calling Bird<\/h5>\n              <p>Calling Bird, Little Fox's older sister, is 17 years old at the start of the game. She is very skillful at making and decorating clothes, and beading moccasins. She is being courted by two suitors, Black Moon and Many Horses.<\/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\/2020\/01\/28110350\/many_horses-1.png\" alt=\"\">\n            <img decoding=\"async\" class=\"character\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2020\/01\/28110353\/many_horses.png\" alt=\"\">\n            <div class=\"descriptions\">\n              <h5 class=\"title text-normal mb-1\">Many Horses<\/h5>\n              <p>Many Horses is a Lakota warrior who is noted for his trading skills. He has made many trips to the white man's trading post. He wants to marry Calling Bird in part to strengthen the alliance between his Lakota band and the Northern Cheyenne.<\/p>\n            <\/div>\n          <\/div>\n                  <div id=\"character-9\" 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\/2020\/01\/28110352\/black_moon-1.png\" alt=\"\">\n            <img decoding=\"async\" class=\"character\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2020\/01\/28110354\/black_moon.png\" alt=\"\">\n            <div class=\"descriptions\">\n              <h5 class=\"title text-normal mb-1\">Black Moon<\/h5>\n              <p>Black Moon is a Southern Cheyenne warrior whose family travelled with Chief Black Kettle's band. Even though Black Kettle had pledged peace with the whites, US soldiers attacked his settlement at Sand Creek in 1864 and killed over 100 Cheyenne. Black Moon escaped, but his entire family was killed. He has travelled north to start a new life and hopes to marry Calling Bird.<\/p>\n            <\/div>\n          <\/div>\n                  <div id=\"character-10\" 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\/2020\/01\/28110352\/blue_feather-1.png\" alt=\"\">\n            <img decoding=\"async\" class=\"character\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2020\/01\/28110354\/blue_feather.png\" alt=\"\">\n            <div class=\"descriptions\">\n              <h5 class=\"title text-normal mb-1\">Blue Feather<\/h5>\n              <p>Blue Feather is a young Northern Cheyenne woman who likes to ride horses and help in hunting. She knows the creeks and hills of the Powder River Valley as well as any warrior. Her family often travels with Chief Dull Knife's band.<\/p>\n            <\/div>\n          <\/div>\n                  <div id=\"character-11\" 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\/2020\/01\/28110351\/little_wolf-1.png\" alt=\"\">\n            <img decoding=\"async\" class=\"character\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2020\/01\/28110353\/little_wolf.png\" alt=\"\">\n            <div class=\"descriptions\">\n              <h5 class=\"title text-normal mb-1\">Chief Little Wolf<\/h5>\n              <p>Little Wolf (c. 1820-1904) was a Northern Cheyenne chief and leader of the Elk Warriors. A skilled military strategist, he led soldiers in the Battle of a Hundred Slain (Fetterman's Massacre) and signed the Fort Laramie Treaty of 1868. After the Battle of the Little Bighorn, his band was forced to relocate to Oklahoma, where Little Wolf spoke out against the terrible conditions they faced. With Dull Knife, he led an exodus of nearly 300 Cheyenne from Oklahoma back north to their homeland. His band separated from Dull Knife's band and hid in the Black Hills for one winter before surrendering at Fort Keogh, only after receiving assurances they could remain in Montana. Little Wolf later worked as an army scout for General Nelson Miles.<\/p>\n            <\/div>\n          <\/div>\n                  <div id=\"character-12\" 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\/2020\/01\/28110352\/agent_saville-1.png\" alt=\"\">\n            <img decoding=\"async\" class=\"character\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2020\/01\/28110355\/agent_saville.png\" alt=\"\">\n            <div class=\"descriptions\">\n              <h5 class=\"title text-normal mb-1\">Agent Saville<\/h5>\n              <p>Dr. John J. Saville, a physician from Sioux City, Iowa, was the US government's Indian Agent at Red Cloud Agency from fall 1873 to late 1875. He arrived after the agency moved to Nebraska amid growing tensions between the army and the Lakota and Cheyenne. He requested greater military protection after the murder of an agency clerk, and facilitated construction of Fort Robinson near Red Cloud Agency. He also played a role in the first treaty negotiations for the Black Hills between the US government and the Lakota.<\/p>\n            <\/div>\n          <\/div>\n                  <\/div>\n  <\/div>\n<\/section>","protected":false},"excerpt":{"rendered":"<p>It\u2019s 1866. You are Little Fox, a Northern Cheyenne boy. Can you help your tribe survive on the Plains?<\/p>","protected":false},"featured_media":0,"parent":0,"template":"","meta":{"_acf_changed":false,"inline_featured_image":false},"class_list":["post-141","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>A Cheyenne Odyssey - 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\/a-cheyenne-odyssey\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"A Cheyenne Odyssey - MissionUS\" \/>\n<meta property=\"og:description\" content=\"It\u2019s 1866. You are Little Fox, a Northern Cheyenne boy. Can you help your tribe survive on the Plains?\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.mission-us.org\/games\/a-cheyenne-odyssey\/\" \/>\n<meta property=\"og:site_name\" content=\"MissionUS\" \/>\n<meta property=\"article:modified_time\" content=\"2025-07-28T12:10:35+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\/a-cheyenne-odyssey\/\",\"url\":\"https:\/\/www.mission-us.org\/games\/a-cheyenne-odyssey\/\",\"name\":\"A Cheyenne Odyssey - MissionUS\",\"isPartOf\":{\"@id\":\"https:\/\/www.mission-us.org\/#website\"},\"datePublished\":\"2019-12-05T10:38:05+00:00\",\"dateModified\":\"2025-07-28T12:10:35+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/www.mission-us.org\/games\/a-cheyenne-odyssey\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.mission-us.org\/games\/a-cheyenne-odyssey\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.mission-us.org\/games\/a-cheyenne-odyssey\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.mission-us.org\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"A Cheyenne Odyssey\"}]},{\"@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":"A Cheyenne Odyssey - 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\/a-cheyenne-odyssey\/","og_locale":"en_US","og_type":"article","og_title":"A Cheyenne Odyssey - MissionUS","og_description":"It\u2019s 1866. You are Little Fox, a Northern Cheyenne boy. Can you help your tribe survive on the Plains?","og_url":"https:\/\/www.mission-us.org\/games\/a-cheyenne-odyssey\/","og_site_name":"MissionUS","article_modified_time":"2025-07-28T12:10:35+00:00","twitter_card":"summary_large_image","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.mission-us.org\/games\/a-cheyenne-odyssey\/","url":"https:\/\/www.mission-us.org\/games\/a-cheyenne-odyssey\/","name":"A Cheyenne Odyssey - MissionUS","isPartOf":{"@id":"https:\/\/www.mission-us.org\/#website"},"datePublished":"2019-12-05T10:38:05+00:00","dateModified":"2025-07-28T12:10:35+00:00","breadcrumb":{"@id":"https:\/\/www.mission-us.org\/games\/a-cheyenne-odyssey\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.mission-us.org\/games\/a-cheyenne-odyssey\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.mission-us.org\/games\/a-cheyenne-odyssey\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.mission-us.org\/"},{"@type":"ListItem","position":2,"name":"A Cheyenne Odyssey"}]},{"@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\/141"}],"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":128,"href":"https:\/\/www.mission-us.org\/wp-json\/wp\/v2\/games\/141\/revisions"}],"predecessor-version":[{"id":14266,"href":"https:\/\/www.mission-us.org\/wp-json\/wp\/v2\/games\/141\/revisions\/14266"}],"wp:attachment":[{"href":"https:\/\/www.mission-us.org\/wp-json\/wp\/v2\/media?parent=141"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}