<!doctype html>
<!--[if lt IE 7]>      <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]>         <html class="no-js lt-ie9 lt-ie8">        <![endif]-->
<!--[if IE 8]>         <html class="no-js lt-ie9">               <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js">                      <!--<![endif]-->
<head>
    <meta charset="utf-8">

    <title>How Star Wars kick-started modern toy collecting</title>

    <link type="text/css" rel="stylesheet" href="/_assets/css/general/basic.css" />
    <link rel="canonical" href="https://www-2018.swansea.ac.uk/press-office/news-archive/2017/howstarwarskick-startedmoderntoycollecting.php" /> 





<meta name="viewport" content="width=device-width, initial-scale=1.0;">
<meta property="su:page-type" content="News Item">
<meta property="su:section-id" content="112621">

    <script type="text/javascript" src="/_assets/vendor/enhance.js"></script>
    <script type="text/javascript">

        var SU =        {
                            customScripts: {
                                preRepositioning:  [],
                                postRepositioning: []
                            }
                        },

            dataLayer = [],

            styles =    [
                            '/_assets/css/general/desktop.css',
                            {
                                href: '/_assets/css/common/ie.css',
                                iecondition: 'all'
                            },
                            {
                                href: '/_assets/css/common/ie7.css',
                                iecondition: 7
                            },
                            {
                                href: '/_assets/css/common/ie8.css',
                                iecondition: 8
                            }
                        ],
        
            scripts =   [
                           '/_assets/js/common/modernizr-jquery.all.min.js'
                        ];
        

        

        

        scripts = scripts.concat([
            '/_assets/vendor/jquery-plugins/cycle2/jquery.cycle2.js',
            '/_assets/vendor/jquery-plugins/cycle2/jquery.cycle2.swipe.js',
            '/_assets/vendor/jquery-plugins/auto-complete/jquery.auto-complete.js',
            '/_assets/vendor/mustache.js',
            '/_assets/js/common/console.js',
            '/_assets/js/common/su.js',
            '/_assets/js/common/su/http/link.js',
            '/_assets/js/common/jquery-plugins/jQuery.showCookieMessage.js',
            '/_assets/vendor/jquery-plugins/ba-throttle-debounce/jquery.ba-throttle-debounce.js',
            '/_assets/js/common/jquery-plugins/jQuery.initialiseNavigation.js',
            '/_assets/js/common/jquery-plugins/jQuery.inputClear.js',
            '/_assets/js/general/desktop/enhanceFooterLinks.js',
            '/_assets/js/general/desktop/jQuery.initialiseSplashGallery.js',
            '/_assets/js/general/desktop/jQuery.initialiseFeaturedGallery.js',
            '/_assets/js/general/desktop/jQuery.initialiseTabPods.js',
            '/_assets/js/general/desktop/jQuery.initialiseQuadSliders.js',
            '/_assets/js/general/desktop/jQuery.stripeTableRows.js',
            '/_assets/vendor/jquery-plugins/ba-bbq/jquery.ba-bbq.js',
            '/_assets/js/general/desktop/jQuery.initialiseExpanders.js',
            '/_assets/vendor/jquery-plugins/cookie/jquery.cookie.js',
            '/_assets/vendor/jquery-plugins/jBreadCrumb/js/jquery.easing.1.3.js',
            '/_assets/vendor/jquery-plugins/jBreadCrumb/js/jquery.jBreadCrumb.1.1.js',
            '/_assets/js/general/desktop.js',
            '/_assets/js/precedent/coreFunctions.js'
        ]);

        enhance({
            loadStyles: styles,
            loadScripts: scripts,
            forcePassText: 'Enhanced version',
            forceFailText: 'Basic version'
        });
    </script>


</head>

<body id="content" class="layout-general-wrapper">
 

    <div id="general" class="layout-general">

        <!--noindex-->
        <div id="header" class="layout-header">
<h1 id="logo" class="logo">
    <span class="logo-text">How Star Wars kick-started modern toy collecting</span>
    <a id="logo-link" href="https://www.swansea.ac.uk/">

        <img class="logo-image" src="/_assets/images/precedent/logo.en.png" alt="Swansea University Logo" />

    </a>
</h1>
            <div id="skipToContent" class="skip-to-content">
                <a class="skip-to-content-link" tabindex="1" href="#content-items" title="skip to content">Skip to content</a>
            </div>

<div id="globalNavWrapper" class="header-links">
    <ul id="globalNav" class="header-links-list">
    
        <!-- navigation object : SU_audience navigation --><li class="header-links-list-item"><a href="http://myuni.swan.ac.uk/">Current Students</a></li><li class="header-links-list-item"><a href="https://staff.swansea.ac.uk/">Staff</a></li><li class="header-links-list-item"><a href="http://www.swanseauniversity.com.cn">&#20013;&#25991;</a></li>
        
        

    </ul>
</div>
            
            <div id="globalSearch" class="global-search-form">
<div class="global-search-form">
	<form action="https://www.swansea.ac.uk/search/">
	  <div>
	    <input type="hidden" name="c" value="swansea-web" />
	    <input
           id="global-search-form-q"
	       type="text"
	       name="q"
	       placeholder="Site Search"
	       size="31"
	       class="global-search-form-query"
	    />
	    <input class="global-search-form-submit" type="submit" value="GO" />
	  </div>
	</form>
</div>

<script class="register-custom-scripts">
(function () {
    SU.customScripts.postRepositioning.push(function () {
    
        var endpoint = 'https://swansea.funnelback.co.uk/s/suggest.json',

            unique = function(arr) {
                var hash = {}, result = [];
                for ( var i = 0, l = arr.length; i < l; ++i ) {
                    if ( !hash.hasOwnProperty(arr[i]) ) {
                        hash[ arr[i] ] = true;
                        result.push(arr[i]);
                    }
                }
                return result;
            },
            
            setHandler = function() {
                $('#global-search-form-q').off().autoComplete({
                    source: function(term, response) {
                        console.log("You typed [" + term + "]");
                        $.getJSON(
                            endpoint,
                            {
                                collection:    'swansea-web',
                                partial_query: term
                            },
                            function(data) {
                                response(unique(data));
                            }
                        );
                    }
                });
            };
    
        console.group('Initialising auto complete');
        window.setTimeout(function () {
            setHandler();
        }, 500);
        
        console.groupEnd();
    });
}());
</script>
            </div>
            
            <div id="naviBar" class="main-nav">
<!-- navigation object : SU_Main_Nav -->

            </div>
        </div>
        <!--endnoindex-->
        
        <div class="layout-container">
            <div id="main" class="layout-content">
                <div id="contentHeader" class="content-header">

                    <!--noindex-->
<div class="breadCrumbHolder module">
    <div class="breadCrumb module">
        <ul>
            <li itemscope itemtype="http://data-vocabulary.org/Breadcrumb">
                <a href="https://www.swansea.ac.uk/" itemprop="url">
                    <span itemprop="title">Home</span>
                </a>
            </li>
            <li itemscope itemtype="http://data-vocabulary.org/Breadcrumb">
                <a href="https://www.swansea.ac.uk/press-office/" itemprop="url">
                    <span itemprop="title">Press Office</span>
                </a>
            </li>
	</ul>
    </div>
</div>
                    <!--endnoindex-->

                    <h1 class="content-header-heading">How Star Wars kick-started modern toy collecting</h1>
                </div>

                <div id="splash-items" class="layout-splash">
                </div>

                <!--noindex-->
                <div class="layout-content-nav">
                    <div id="secondaryNavWrapper"></div>
                </div>
                <!--endnoindex-->

                <div id="content-items" class="layout-content-items content-items">
                    <div class="layout-featured-items">
                    </div>

                    <div class="layout-article-items">
  <div class="news-item-fulltext">
<p style="padding: 1.5em; text-align: center; background-color: #ffc266; font-weight: bold">
    Please note, this page has been archived and is no longer being updated.
</p>
    <p class="news-item-summary">This article, written by David Anderson Senior Lecturer in American History, was originally posted on The Conversation.</p>

    <div class="news-item-content">
        <h1><img alt="File 20170503 21612 1725sgf" src="https://cdn.theconversation.com/files/167734/width754/file-20170503-21612-1725sgf.jpg" style="font-size: 12px;" /><span class="attribution" style="font-size: 12px;"><a class="source" href="https://www.flickr.com/photos/luciuskwok/5945034489">Lucius Kwok/flickr</a>, <a class="license" href="http://creativecommons.org/licenses/by-sa/4.0/">CC BY-SA</a></span><span style="font-size: 12px;"><a href="https://theconversation.com/profiles/david-anderson-295238">David Anderson</a>, <em><a href="http://theconversation.com/institutions/swansea-university-2638">Swansea University</a></em></span></h1>
<p>On 25 May, 1977 <a href="http://www.starwars.com/films/star-wars-episode-iv-a-new-hope">Star Wars Episode IV: A New Hope</a> opened in movie theatres across America. The now iconic science fiction film has lasted the test of time, spawning two sequels &ndash; <a href="http://www.starwars.com/films/star-wars-episode-v-the-empire-strikes-back">Episode V: The Empire Strikes Back</a> (1980) and <a href="http://www.starwars.com/films/star-wars-episode-vi-return-of-the-jedi">Episode VI: Return of the Jedi</a> (1983) &ndash; a <a href="https://www.forbes.com/sites/danidiplacido/2016/12/15/looking-back-at-the-star-wars-prequel-trilogy/#4f89af762a9c">prequel trilogy</a> between 1999 and 2005; a sequel trilogy <a href="http://www.starwars.com/films/star-wars-episode-vii-the-force-awakens">beginning in 2015</a>, and further spin-off movies, too. <img alt="The Conversation" height="1" src="https://counter.theconversation.edu.au/content/76099/count.gif?distributor=republish-lightbox-basic" width="1" /></p>
<p>Centred around the &ldquo;long time ago&rdquo; adventures of an adolescent farmer, a reckless smuggler and a strong-willed princess, the original film starred Mark Hamill as Luke Skywalker, Harrison Ford as Han Solo, and Carrie Fisher as Princess Leia. From the <a href="http://www.galaxyfaraway.com/gfa/2005/12/what-is-the-text-of-the-star-wars-episode-iv-a-new-hope-opening-scroll/">film&rsquo;s famous opening crawl</a>, we learn &ldquo;secret plans&rdquo; to the evil Galactic Empire&rsquo;s dreaded space station, the Death Star, have been stolen by rebel spies and entrusted to Princess Leia, a leader of the Rebel Alliance, who hopes to use them to &ldquo;restore freedom to the galaxy&rdquo;.</p>
<blockquote>
<p>I&rsquo;m not such a bad pilot myself &ndash; Luke Skywalker</p>
</blockquote>
<p>Like <a href="http://igrewupstarwars.com/">thousands of other 1980s children</a>, I grew up imagining myself in this &ldquo;galaxy far, far away&rdquo;, playing with action figures, playsets, and a host of other accessories to recreate the Star Wars scenes in my own bedroom. These must-have toys of the late 1970s and 1980s were the most prized items in my toy box.</p>
<p><iframe height="260" src="https://www.youtube.com/embed/05cK5srUNn4?wmode=transparent&amp;start=0" width="440"></iframe></p>
<p>As adults, many Generation X-ers like myself have rekindled their love affair with Star Wars, giving rise to a huge collector market for those who hope to access, own and collect the toys they had as children.</p>
<blockquote>
<p>I find your lack of faith disturbing &ndash; Darth Vader</p>
</blockquote>
<p>While the film was a massive hit with moviegoers, most toy companies showed little interest in taking on a Star Wars product license before its release. <a href="https://books.google.co.uk/books?id=R2xJLgEACAAJ&amp;dq=stephen+sansweet&amp;hl=en&amp;sa=X&amp;ved=0ahUKEwigy5mwu8DTAhWLCMAKHQrrDcIQ6AEIJzAB">Collecting modern toys</a> was not the thriving market then that it is today. In the 1970s, movie tie-in merchandise was in its infancy and Twentieth Century Fox, the film studio that produced Star Wars, did not pursue the rights which, by default, fell to Lucas.</p>
<p><img alt="" src="https://cdn.theconversation.com/files/167719/width237/file-20170503-21635-ijw5he.jpg" /> <span class="caption">Kenner Toys&rsquo; early bird certificate packaging, 1977.</span> <span class="attribution"><a class="source" href="https://en.wikipedia.org/wiki/File:Star_Wars_Early_Bird.jpg">Wikimedia</a></span></p>
<p><a href="http://www.rebelscum.com/vintage.asp">Kenner Toys</a>, a small company based in Ohio, eventually took the gamble &ndash; though it was unable to ready any toys for Christmas 1977 because of the time required for production. To satisfy unexpected customer demand, Kenner, ignoring marketing advice, created and sold an <a href="http://vintageactionfigures.com/star-wars-early-bird-certificate-package-1977.html">Early Bird Certificate Package</a>, essentially an &ldquo;empty box&rdquo; that contained only a mail-in coupon for the first four action figures &ndash; Luke Skywalker (with a rare double-telescoping lightsaber), Princess Leia, Chewbacca and R2 D2. They were shipped when they became available in early 1978, along with stickers and a colourful cardboard stand to display the complete set of the first 12 figures produced.</p>
<blockquote>
<p>Where did you dig up that old fossil? &ndash; Han Solo</p>
</blockquote>
<p>When the plastic action figures hit the shelves of UK shops and newsagents during the late 1970s, they cost about &pound;1.50, a reasonable price for a children&rsquo;s toy. By the <a href="https://books.google.co.uk/books?id=SweGCwAAQBAJ&amp;pg=PA209&amp;lpg=PA209&amp;dq=1978+kenner+42+million&amp;source=bl&amp;ots=2eolrGUMXm&amp;sig=ACR1eZIk3KALAqJdPOLe2DDdI98&amp;hl=en&amp;sa=X&amp;ved=0ahUKEwiO-s6GwMDTAhXrC8AKHZ3RA7EQ6AEIQzAG%20-%20v=onepage&amp;q=1978%20kenner%2042%20million&amp;f=false#v=snippet&amp;q=1978%20kenner%2042%20million&amp;f=false">end of 1978</a>, Kenner had sold 42m Star Wars toys. And by the time the last of the 100 original &ndash; now commonly referred to as &ldquo;vintage&rdquo; &ndash; Kenner action figure line was released in 1985, an estimated <a href="https://books.google.co.uk/books?id=R2xJLgEACAAJ&amp;dq=stephen+sansweet&amp;hl=en&amp;sa=X&amp;ved=0ahUKEwigy5mwu8DTAhWLCMAKHQrrDcIQ6AEIJzAB">250m had been sold</a>.</p>
<p>To this day, the final action figure, <a href="http://www.rebelscum.com/vintyakface.asp">Yak Face</a>, who appeared in a few brief scenes in Return of the Jedi, remains highly sought after. Due to dwindling interest in Star Wars toys and falling sales, Yak Face never retailed in the US, and can sell today for several hundred pounds, if in both original packaging and mint-condition.</p>
<blockquote>
<p>Don&rsquo;t you get technical with me! &ndash; C-3PO</p>
</blockquote>
<p>The holy grail for collectors of vintage Star Wars figures, however, is the <a href="http://www.rebelscum.com/VINtJawa.asp">Jawa with a tan coloured vinyl cape</a>, a production soon halted in favour of a darker brown cloth cape. In 2013, an example of this rare action figure fetched <a href="http://www.bbc.co.uk/news/uk-england-tees-24660920">&pound;10,200 at auction</a>.</p>
<p>In 2015, an immaculate Boba Fett, the feared bounty hunter who appeared first in The Empire Strikes Back, <a href="https://www.theguardian.com/film/2015/jan/29/star-wars-boba-fett-replica-sells-for-18000-auction">sold for &pound;18,000</a>, the highest price paid to date for a Star Wars action figure.</p>
<p><iframe height="260" src="https://www.youtube.com/embed/z2XVl2zGQmw?wmode=transparent&amp;start=0" width="440"></iframe></p>
<p>However, even some loose figures, no longer in their original box and played with, can sell for many times more than their original price, especially rare prototypes or those with uncommon moulding variations or accessories. For some collectors, even the packaging alone, <a href="http://www.starwars.com/news/collectibles-from-the-outer-rim-vintage-kenner-cardbacks">authentic and undamaged</a>, is highly sought-after, and auction valuations and prices continue to rise.</p>
<blockquote>
<p>They&rsquo;ll soon be back, and in greater numbers &ndash; Ben (Obi-Wan) Kenobi</p>
</blockquote>
<p>The original action figures &ndash; and other playthings in the toy line &ndash; certainly played an important role in the success of Episode IV. For children of the late 1970s and early 1980s, the adventures of Luke, Han and Leia continued, not through rewatching the movie on videotape or satellite television, but through their toys, and, of course, a little imagination.</p>
<p>As generations of fans come together at events, exhibits and other activities to celebrate the 40th anniversary of the movie, the Star Wars brand remains an important and influential part of contemporary popular culture &ndash; it has even become an object of <a href="https://books.google.co.uk/books/about/Finding_the_Force_of_the_Star_Wars_Franc.html?id=PB57P_dOF7EC&amp;redir_esc=y">academic study</a>. As that fan base continues to grow, it looks like the Star Wars story will continue to entertain and inspire for many more years to come &ndash; whether that is on the big screen, or in the imaginations of youngsters playing in their bedrooms.</p>
<p><span><a href="https://theconversation.com/profiles/david-anderson-295238">David Anderson</a>, Senior Lecturer in American History, <em><a href="http://theconversation.com/institutions/swansea-university-2638">Swansea University</a></em></span></p>
<p><img src="/media/conversation-logo-3ef91e0a2031c5d9350f37bac3cf5273ef6da3660ffaf7c422b9695f09b6f171.png"
alt="The Conversation " title="The Conversation " /></p>
<p>This article was originally published on <a href="http://theconversation.com">The Conversation</a>. Read the <a href="https://theconversation.com/how-star-wars-kick-started-modern-toy-collecting-76099">original article</a>.</p>
    </div>

    <ul class="news-item-post-info-container vcard">
        <li class="news-item-post-info author">
           Posted by
            <span class="fn">Delyth Purchase</span>
            &lt;<a class="email" href="mailto:d.purchase@swansea.ac.uk">d.purchase@swansea.ac.uk</a>&gt;
        </li>

        <li class="news-item-post-info">
            <a href="/press-office/news-archive/2017/howstarwarskick-startedmoderntoycollecting.php" rel="bookmark">
                <abbr class="published" title="2017-05-04T09:48:00+01:00">Thursday 4 May 2017 09.48 BST</abbr>
            </a>
        </li>

        <li class="news-item-post-info updated-container">
            <abbr class="updated" title="2017-05-04T08:52:20+01:00">Thursday 4 May 2017 08.52 BST</abbr>
        </li>

        <li class="news-item-post-info">
        	<span class="fn org">Swansea University</span>
        </li>
    </ul>

</div>

                    </div>

                    <div class="layout-related-items">
                    </div>
                </div>


            </div>

            <!--noindex-->
            <div id="footer" class="layout-footer">
                <ul id="footerLinks" class="footer-links">
<!-- navigation object : SU_footer navigation --><li class="footer-links-list-item"><a href="/the-university/contact/">Contact Us</a></li><li class="footer-links-list-item"><a href="/personnel/jobs/">Jobs</a></li><li class="footer-links-list-item"><a href="/the-university/colleges/">Colleges</a></li><li class="footer-links-list-item"><a href="/press-office/">Press</a></li><li class="footer-links-list-item"><a href="https://www.swansea.ac.uk/about-us/safety-and-security/health-and-safety/">Health &amp; Safety</a></li><li class="footer-links-list-item"><a href="/includes/footer/disclaimer-and-copyright/">Disclaimer &amp; Copyright</a></li><li class="footer-links-list-item"><a href="/includes/footer/site-map/">Site map</a></li><li class="footer-links-list-item"><a href="/includes/footer/privacyandcookies/">Privacy and Cookies</a></li><li class="footer-links-list-item"><a href="http://www.swan.ac.uk/course-search/">Course Search</a></li>
                </ul>

                <div id="footerDisclaimer" class="footer-disclaimer">
                    <p class="footer-disclaimer-text">Swansea University is a registered charity. No. 1138342.</p>
                </div>
            </div>
            <!--endnoindex-->

        </div>

    </div>


<script id="desktop-header-template" type="text/x-tmpl-mustache">

    <div id="header" class="layout-header">
        <div class="skip-to-content" id="skipToContent">
            {{{ skipToContent }}}
        </div>

        <h1 id="logo" class="logo">
            {{{ logo }}}
        </h1>

        <div id="globalNavWrapper" class="header-links">
            <ul id="globalNav" class="header-links-list">
                {{{ globalNav }}}
            </ul>
        </div>

        <div id="globalSearch" class="global-search-form">
            {{{ globalSearch }}}
        </div>
                    
        <div id="naviBar" class="main-nav">
            <ul id="mainNav" class="main-nav-list">
                {{{ mainNav }}}
            </ul>
        </div>
    </div>

</script>


<script id="mobile-header-template" type="text/x-tmpl-mustache">

    <div id="header" class="layout-header">
        <span class="layout-menu-bar">
            <a id="layout-menu-bar-toggle" class="layout-menu-bar-toggle" href="#">{{mobile.linksText}}</a>
        </span>

        <a id="logo-link" href="{{mobile.logoLinkHref}}">
            <img class="logo-image" alt="{{mobile.logoAlt}}" src="{{mobile.logoSrc}}" />
        </a>
    </div>

</script>


<script id="desktop-menu-template" type="text/x-tmpl-mustache">

    <div class="layout-content-nav">
        <div id="secondaryNavWrapper">
             <ul id="secondaryNav" class="content-nav content-nav-items">
                 {{{secondaryNav}}}
             </ul>
         </div>
    </div>

</script>


<script id="mobile-menu-template" type="text/x-tmpl-mustache">

    <div class="layout-content-nav">
        <div id="globalNavWrapper">
            {{{globalNav}}}
        </div>

        <div id="naviBar">
            {{{mainNav}}}
        </div>

        <div id="secondaryNavWrapper">
             <ul id="secondaryNav">
                 {{{secondaryNav}}}
             </ul>
         </div>
    </div>

</script>


<script id="desktop-tabs-pod-template" type="text/x-tmpl-mustache">

    <h2 class="tabs-pod-title">{{ podTitle }}</h2>
    <div class="tabs-pod-tabs">

        <ul class="tabs-item-list">
{{#tabs}}
            <li class="tabs-item-list-tab-item tabs-pod-tabs-tab-heading">
                <a class="tabs-item-list-tab-item-link" href="#">{{ tabHeading }}</a>
            </li>
{{/tabs}}
        </ul>

{{#tabs}}
        <div class="tabs-pod-tabs-tab">
            <div class="tabs-pod-tabs-tab-content">
                {{{ tabContent }}}
            </div>
        </div>
{{/tabs}}

    </div>

</script>


<script id="mobile-tabs-pod-template" type="text/x-tmpl-mustache">

    <h2 class="tabs-pod-title">{{ podTitle }}</h2>
    <div class="tabs-pod-tabs">
{{#tabs}}
        <div class="tabs-pod-tabs-tab">
            <h3 class="tabs-pod-tabs-tab-heading is-collapsed">
                <a href="#">{{ tabHeading }}</a>
            </h3>
            <div class="tabs-pod-tabs-tab-content" style="display: none">
                {{{ tabContent }}}
            </div>
        </div>
{{/tabs}}
    </div>

</script>


</body>

</html>
