A Programming Model for Boss Encounters in 2D Action Games

Total Page:16

File Type:pdf, Size:1020Kb

A Programming Model for Boss Encounters in 2D Action Games Experimental AI in Games: Papers from the AIIDE Workshop AAAI Technical Report WS-16-22 A Programming Model for Boss Encounters in 2D Action Games Kristin Siu,1 Eric Butler,2 and Alexander Zook1 1School of Interactive Computing, Georgia Institute of Technology 2Department of Computer Science & Engineering, University of Washington fkasiu, [email protected]; [email protected] Abstract space. While the methods for generation and objective func- tions can all be complex, the representation of a 2D grid- Boss fights are a memorable and climatic point of many based level is clear. games. In this work we present a programming model for defining boss experiences in 2D action games. The However, with bosses, a representation suitable for gener- domain we focus on is characterized by real-time move- ation is non-obvious. Traditionally bosses are implemented ment through a continuous space in which the player in general-purpose programming languages as they involve and opposing boss damage each other through phys- complex, state-based, and usually reactive behaviors. To ical collisions, and player and boss behavior is gov- generate these boss experiences we need a representation erned primarily by finite state machines. Our program- for bosses that is sufficiently expressive to capture the parts ming model consists of primitive systems such as kine- of the design space we care about while being limited and matic physics to store object state and detect collisions structured enough to make generation tractable. paired with finite state machines to define behavior. We In this paper, we present a programming model for repre- describe our model and demonstrate its expressiveness senting boss experiences similar to classic 2D action games. with examples of three classic boss fights from games in The Legend of Zelda, Castlevania, and Sonic the Hedge- Boss experiences are scenarios where a player interacts with hog. Our future goals include procedural generation of a boss object that has patterned behavior; scenarios end boss encounters, and we report on the research chal- based on termination criteria. Boss objects are physics ob- lenges involved in achieving this goal. jects enabling collisions—spanning roaming entities in the world (Moldorm in The Legend of Zelda) to massive set pieces (Sigma in MegaMan X). Behaviors govern the pat- Introduction terned movements and actions of bosses, and termination Whether it is the first test of a player’s skill or the climatic, criteria govern when the experience ends (potentially in suc- final battle, boss fights are some of the most memorable mo- cess or failure for the player). ments in games. Compared to encounters with normal ene- Our programming model uses finite state machines to mies, boss fights are intended to challenge the player, often describe behavior paired with component-based systems acting as gatekeepers for the player’s progression through to represent game state and perform calculations such as the game. These encounters are used to ensure players have physics and hit points. This model is an important step attained sufficient skill or completed the requirements nec- towards generating boss experiences in this design space. essary to progress further. When players overcome bosses, The scope of this programming model is currently limited to they are awarded in-game rewards, progress, and achieve- specifying physical locations and controlling behavior. As- ment, not to mention a sense of accomplishment. pects such as graphics and sound design, while important to We are interested in procedurally generating boss experi- boss design, are beyond the scope of this work. ences similar to the boss encounters in classic 2D action or To demonstrate the expressiveness of the model, we built adventure games such as The Legend of Zelda series. These a prototype that allows for the implementation of playable encounters are characterized by combat based around colli- boss experiences. We describe three classic boss fights we sions with an enemy hitbox in a 2D plane using real-time replicated in it: Moldorm from The Legend of Zelda, Drac- motion in continuous space. ula from Castlevania, and Dr. Eggman from Sonic the All content generation methods, at a broad level, reduce to Hedgehog. In the future we plan to explore techniques to searching a space of design possibilities (Shaker, Togelius, automatically generate bosses using our model. and Nelson 2015). For example, 2D level generation of- ten is modeled as searching a space of possible assignments Related Work of tiles in a discretized 2D grid world, where the search is Our programming model defines both the physical structure guided by features such as how the player moves through the and behavior of a boss. Several researchers have gener- Copyright c 2016, Association for the Advancement of Artificial ated in-game entity structures including ship hulls (Liapis, Intelligence (www.aaai.org). All rights reserved. Yannakakis, and Togelius 2011), flower shapes (Risi et al. 86 and more restricted, focusing on finite state machines as the primary update mechanism. Domain From ambient interactions to odious overlords, the space of boss experiences varies widely across games and genres. Here we focus on boss experiences in classic 2D action and adventure games. Classic 2D boss designs often use a 2D top-down camera perspective (e.g., The Legend of Zelda se- ries and Gradius) or a side-scrolling perspective (e.g., Castl- evania, MegaMan, and Sonic the Hedgehog). The combat in these games is characterized by real-time movement in continuous space, with attacks primarily based on collisions with a static or moving foe. Figure 1: The Moldorm boss from A Link to the Past Boss experiences in these games share many structures. A player avatar operates in a 2D environment with an oppos- ing entity (or entities)—the boss. Both the player avatar and the boss entity are given a range of 2D movement and a set 2012), and ship weapon patterns (Hastings, Guha, and Stan- of combat mechanics that each can use against each other. ley 2009). By contrast, our programming model targets a These combat mechanics are frequently (but not always) im- broad class of 2D entities and allows for connected parts plemented through the use of hit boxes and attack boxes: the with independently governed behaviors (though we do not boss uses its body or projectiles to try to hit the player and yet generate entities). cause damage, while the player tries to use its attacks to hit Several languages have been developed to facilitate au- certain weak points in the boss and cause damage. thoring behaviors for different domains. Examples include Classic 2D bosses act based on state-based scripted be- Fac¸ade’s A Behavior Language (Mateas and Stern 2002) haviors to follow patterns and change in reaction to the for agent responses to players, the Versu storytelling plat- player’s performance. For example, a boss may begin us- form’s1 (Evans and Short 2014) social model of small-group ing new attacks after a player has successfully lowered its interactions, and Prom Week’s “social physics” model (Mc- health parameter to a particular threshold. These behav- Coy et al. 2014) for characters’ personal and social traits and iors follow patterns akin to finite state machines, with the events. By contrast, our model primarily models movement- boss transitioning through phases or attack patterns during based behaviors with simplified patterns that are amenable the fight. Finite state machines are a typical representation to generation rather than purely human scripting. Osborn et used in implementations of bosses in this domain (Milling- al. (2015) formally model combat in games in terms of op- ton and Funge 2009). The experience ends when the player erational logics (Mateas and Wardrip-Fruin 2009), but not overcomes (or succumbs to) the boss in some way, such as at the level of a programming model. Instead, we target the reducing a health parameter to zero or surviving for a set specific entities in combat, rather than the scenario and sys- amount of time. We capture common facets of 2D boss de- tems encompassing combat as a whole. sign in our modeling language for describing bosses. Game description languages encompass the broader class of representations used to specify the entities, behaviors, and termination criteria associated with classes of games. Ex- Model Description amples include turn-based competitive games in The Stan- We now describe our programming model for bosses. Our ford Game Description Language (Love et al. 2008), puz- model combines finite state machines to govern behavior zle games in Puzzlescript2, and adversarial board games with component-based systems such as physics and health. in the EGGG (Orwant 2000) and Ludi (Browne and Maire These systems expose primitive properties of the player, 2010). By contrast, our programming model targets a space boss, and any other objects in the experience. A kinemat- of real-time, continuous behaviors. The Video Game De- ics physics system exposes information about physical prop- scription Language (VGDL) (Schaul 2013) was developed erties and geometry. A health system exposes information to model arcade-style 2D games like Frogger, Space In- about boss vulnerabilities, and provides update routines such vaders, and Pacman. Unlike the VGDL our programming as collision detection. model supports complex patterns of entity behavior and fa- Boss behavior is defined by a set of state machines, which cilitates the creation of component-based composite entities. we refer to as behavior graphs, whose actions modify the Casanova (Maggiore et al. 2012) is a DSL for game pro- state of the primitives (e.g., controlling the velocity of an gramming that allows for straightforward expression of up- object) with transitions conditioned on the state of the prim- date/draw loops and declarative rules, and supports efficient itives (e.g., reacting to a collision with the player).
Recommended publications
  • The Resurrection of Permadeath: an Analysis of the Sustainability of Permadeath Use in Video Games
    The Resurrection of Permadeath: An analysis of the sustainability of Permadeath use in Video Games. Hugh Ruddy A research paper submitted to the University of Dublin, in partial fulfilment of the requirements for the degree of Master of Science Interactive Digital Media 2014 Declaration I declare that the work described in this research paper is, except where otherwise stated, entirely my own work and has not been submitted as an exercise for a degree at this or any other university. Signed: ___________________ Hugh Ruddy 28th February 2014 Permission to lend and/or copy I agree that Trinity College Library may lend or copy this research Paper upon request. Signed: ___________________ Hugh Ruddy 28th February 2014 Abstract The purpose of this research paper is to study the the past, present and future use of Permadeath in video games. The emergence of Permadeath games in recent months has exposed the mainstream gaming population to the concept of the permanent death of the game avatar, a notion that has been vehemently avoided by game developers in the past. The paper discusses the many incarnations of Permadeath that have been implemented since the dawn of video games, and uses examples to illustrate how gamers are crying out for games to challenge them in a unique way. The aims of this are to highlight the potential that Permadeath has in the gaming world to become a genre by itself, as well as to give insights into the ways in which gamers play Permadeath games at the present. To carry out this research, the paper examines the motivation players have to play games from a theoretical standpoint, and investigates how the possibilty of failure in video games should not be something gamers stay away from.
    [Show full text]
  • Navigating the Videogame
    From above, from below: navigating the videogame A thesis presented by Daniel Golding 228306 to The School of Culture and Communication in partial fulfilment of the requirements for the degree of Bachelor of Arts (Honours) in the field of Cultural Studies in the School of Culture and Communication The University of Melbourne Supervisor: Dr. Fran Martin October 2008 ABSTRACT The study of videogames is still evolving. While many theorists have accurately described aspects of the medium, this thesis seeks to move the study of videogames away from previously formal approaches and towards a holistic method of engagement with the experience of playing videogames. Therefore, I propose that videogames are best conceptualised as navigable, spatial texts. This approach, based on Michel de Certeau’s concept of strategies and tactics, illuminates both the textual structure of videogames and the immediate experience of playing them. I also regard videogame space as paramount. My close analysis of Portal (Valve Corporation, 2007) demonstrates that a designer can choose to communicate rules and fiction, and attempt to influence the behaviour of players through strategies of space. Therefore, I aim to plot the relationship between designer and player through the power structures of the videogame, as conceived through this new lens. ii TABLE OF CONTENTS ABSTRACT ii ACKNOWLEDGEMENTS iv CHAPTER ONE: Introduction 1 AN EVOLVING FIELD 2 LUDOLOGY AND NARRATOLOGY 3 DEFINITIONS, AND THE NAVIGABLE TEXT 6 PLAYER EXPERIENCE AND VIDEOGAME SPACE 11 MARGINS OF DISCUSSION 13 CHAPTER TWO: The videogame from above: the designer as strategist 18 PSYCHOGEOGRAPHY 18 PORTAL AND THE STRATEGIES OF DESIGN 20 STRUCTURES OF POWER 27 RAILS 29 CHAPTER THREE: The videogame from below: the player as tactician 34 THE PLAYER AS NAVIGATOR 36 THE PLAYER AS SUBJECT 38 THE PLAYER AS BRICOLEUR 40 THE PLAYER AS GUERRILLA 43 CHAPTER FOUR: Conclusion 48 BIBLIOGRAPHY 50 iii ACKNOWLEDGEMENTS I would like to thank my supervisor, Dr.
    [Show full text]
  • SLAV-T230 Vampire F2019 Syllabus-Holdeman-Final
    The Vampire in European and American Culture Dr. Jeff Holdeman SLAV-T230 11498 (SLAV) (please call me Jeff) SLAV-T230 11893 (HHC section) GISB East 4041 Fall 2019 812-855-5891 (office) TR 4:00–5:15 pm Office hours: Classroom: GA 0009 * Tues. and Thur. 2:45–3:45 pm in GISB 4041 carries CASE A&H, GCC; GenEd A&H, WC * and by appointment (just ask!!!) * e-mail me beforehand to reserve a time * It is always best to schedule an appointment. [email protected] [my preferred method] 812-335-9868 (home) This syllabus is available in alternative formats upon request. Overview The vampire is one of the most popular and enduring images in the world, giving rise to hundreds of monster movies around the globe every year, not to mention novels, short stories, plays, TV shows, and commercial merchandise. Yet the Western vampire image that we know from the film, television, and literature of today is very different from its eastern European progenitor. Nina Auerbach has said that "every age creates the vampire that it needs." In this course we will explore the eastern European origins of the vampire, similar entities in other cultures that predate them, and how the vampire in its look, nature, vulnerabilities, and threat has changed over the centuries. This approach will provide us with the means to learn about the geography, village and urban cultures, traditional social structure, and religions of eastern Europe; the nature and manifestations of Evil and the concept of Limited Good; physical, temporal, and societal boundaries and ritual passage that accompany them; and major historical and intellectual periods (the settlement of Europe, the Age of Reason, Romanticism, Neo-classicism, the Enlightenment, the Victorian era, up to today).
    [Show full text]
  • Analyzing Space Dimensions in Video Games
    SBC { Proceedings of SBGames 2019 | ISSN: 2179-2259 Art & Design Track { Full Papers Analyzing Space Dimensions in Video Games Leandro Ouriques Geraldo Xexéo Eduardo Mangeli Programa de Engenharia de Sistemas e Programa de Engenharia de Sistemas e Programa de Engenharia de Sistemas e Computação, COPPE/UFRJ Computação, COPPE/UFRJ Computação, COPPE/UFRJ Center for Naval Systems Analyses Departamento de Ciência da Rio de Janeiro, Brazil (CASNAV), Brazilian Nay Computação, IM/UFRJ E-mail: [email protected] Rio de Janeiro, Brazil Rio de Janeiro, Brazil E-mail: [email protected] E-mail: [email protected] Abstract—The objective of this work is to analyze the role of types of game space without any visualization other than space in video games, in order to understand how game textual. However, in 2018, Matsuoka et al. presented a space affects the player in achieving game goals. Game paper on SBGames that analyzes the meaning of the game spaces have evolved from a single two-dimensional screen to space for the player, explaining how space commonly has huge, detailed and complex three-dimensional environments. significance in video games, being bound to the fictional Those changes transformed the player’s experience and have world and, consequently, to its rules and narrative [5]. This encouraged the exploration and manipulation of the space. led us to search for a better understanding of what is game Our studies review the functions that space plays, describe space. the possibilities that it offers to the player and explore its characteristics. We also analyze location-based games where This paper is divided in seven parts.
    [Show full text]
  • List of Turbografx16 Games
    List of TurboGrafx16 Games 1) 1941: Counter Attack 28) Blodia 2) 1943: Kai 29) Bloody Wolf 3) 21-Emon 30) Body Conquest II ~The Messiah~ 4) Adventure Island 31) Bomberman 5) Aero Blasters 32) Bomberman '93 6) After Burner II 33) Bomberman '93 Special 7) Air Zonk 34) Bomberman '94 8) Aldynes: The Mission Code for Rage Crisis 35) Bomberman: Users Battle 9) Alice in Wonderdream 36) Bonk 3: Bonk's Big Adventure 10) Alien Crush 37) Bonk's Adventure 11) Andre Panza Kick Boxing 38) Bonk's Revenge 12) Ankoku Densetsu 39) Bouken Danshaku Don: The Lost Sunheart 13) Aoi Blink 40) Boxyboy 14) Appare! Gateball 41) Bravoman 15) Artist Tool 42) Break In 16) Atomic Robo-Kid Special 43) Bubblegum Crash!: Knight Sabers 2034 17) Ballistix 44) Bull Fight: Ring no Haja 18) Bari Bari Densetsu 45) Burning Angels 19) Barunba 46) Cadash 20) Batman 47) Champion Wrestler 21) Battle Ace 48) Champions Forever Boxing 22) Battle Lode Runner 49) Chase H.Q. 23) Battle Royale 50) Chew Man Fu 24) Be Ball 51) China Warrior 25) Benkei Gaiden 52) Chozetsu Rinjin Berabo Man 26) Bikkuri Man World 53) Circus Lido 27) Blazing Lazers 54) City Hunter 55) Columns 84) Dragon's Curse 56) Coryoon 85) Drop Off 57) Cratermaze 86) Drop Rock Hora Hora 58) Cross Wiber: Cyber-Combat-Police 87) Dungeon Explorer 59) Cyber Cross 88) Dungeons & Dragons: Order of the Griffon 60) Cyber Dodge 89) Energy 61) Cyber Knight 90) F1 CIRCUS 62) Cyber-Core 91) F1 Circus '91 63) DOWNLOAD 92) F1 Circus '92 64) Daichikun Crisis: Do Natural 93) F1 Dream 65) Daisenpuu 94) F1 Pilot 66) Darius Alpha 95) F1 Triple
    [Show full text]
  • Cultural Stereotypes: from Dracula's Myth to Contemporary Diasporic Productions
    Virginia Commonwealth University VCU Scholars Compass Theses and Dissertations Graduate School 2006 Cultural Stereotypes: From Dracula's Myth to Contemporary Diasporic Productions Ileana F. Popa Virginia Commonwealth University Follow this and additional works at: https://scholarscompass.vcu.edu/etd Part of the English Language and Literature Commons © The Author Downloaded from https://scholarscompass.vcu.edu/etd/1345 This Thesis is brought to you for free and open access by the Graduate School at VCU Scholars Compass. It has been accepted for inclusion in Theses and Dissertations by an authorized administrator of VCU Scholars Compass. For more information, please contact [email protected]. Cultural Stereotypes: From Dracula's Myth to Contemporary Diasporic Productions A thesis submitted in partial fulfillment of the requirements for the degree of Master of Arts at Virginia Commonwealth University. Ileana Florentina Popa BA, University of Bucharest, February 1991 MA, Virginia Commonwealth University, May 2006 Director: Marcel Cornis-Pope, Chair, Department of English Virginia Commonwealth University Richmond, Virginia May 2006 Table of Contents Page Abstract.. ...............................................................................................vi Chapter I. About Stereotypes and Stereotyping. Definitions, Categories, Examples ..............................................................................1 a. Ethnic stereotypes.. ........................................................................3 b. Racial stereotypes.
    [Show full text]
  • Das Nintendo-Schummelbuch
    AÄ«i8®Ä' INHALTSVERZEICHNIS VORWORT 1 TAUSEND DANK 2 DER AUTOR 2 CAME BOY CHEATS 4 ADDAMS FAMILY 4 DEAD HEAT SCRAMB 14 ADVENTURE ISLAND 4 DR. FRANKEN 15 ADVENTURES OF LOLO 4 DR. FRANKEN II 15 AFTERBURST 4 DYNABLASTER 15 ALLEYWAY 4 ELEVATOR ACTION 15 BART VS THE JUGGERNAUTS 5 F-15 STRIKE EAGLE 15 BATMAN 5 FACEBALL 2000 |6 BATTLE BULL 5 FERRARI GRAND PRIX CHALLENGE |6 BATTLE PING PONG 6 FINAL FANTASY LEGEND II 17 BATTLETOADS 6 FLAPPY SPECIAL 17 BATTLE UNIT ZEOTH 6 FORTRESS OF FEAR i8 BEST OF THE BEST 7 GARFIELD i8 BILL £ TED’S EXCELLENT GARGOYLE’S QUEST 19 ADVENTURE 7 GODZILLA 19 BLASTER MASTER BOY 7 GOLF 20 BOMBERBOY 7 HUDSON HAWK 20 BOMBERMAN 8 HUMANS 20 BOOMERS ADVENTURE 8 JAMES BOND JR. 21 BUBBLE BOBBLE 9 KID DRACULA 21 BUGS BUNNY 10 KID ICARUS 21 BURAI FIGHTER 10 KING OF THE ZOO 21 BURAI FIGHTER DELUXE II KIRBY’S DREAMLAND 22 BURGER TIME DELUXE II KIRBY’S PINBALL LAND 22 CAPTAIN PLANET II KLAX 22 CAPTAIN SKYHAWK 12 KRUSTY’S FUNHOUSE 22 CASTLEVANIA 12 LEMMINGS 23 CASTLEVANIA II 12 LOCK’N’CHASE 23 CATRAP 12 LOONEY TUNES 24 CHESSMASTER 13 MEGA MAN 24 CHOPLIFTER II '3 MEGA MAN 2 24 CRAZY CASTLE 2 '3 MERCENARY FORCE 25 DEADALIAN OPUS 14 METAL GEAR 25 AAICKEY AAOUSE 25 TINY TOONS 2 40 MICKEY’S DANGEROUS CHASE 25 TOM 8 JERRY 40 NARC 26 TOP GUN 40 NINJA BOY 26 TOP GUN II 40 NINJA GAIDEN 26 TURRICAN 41 OPERATION C 26 ULTIMA 41 PARODIUS 26 WHO FRAMED ROGER RABBIT 41 PIPE DREAM 27 WIZARDS & WARRIORS - POWER MISSION 27 THE FORTRESS OF FEAR 41 PRINCE OF PERSIA 27 WORLD BEACH VOLLEY 42 PROBOTECTOR 28 WORLD CUP SOCCER 42 PUZZNIC 28 ZELDA - LINKS
    [Show full text]
  • Dark Souls™ Series By: BANDAI NAMCO Entertainment Inc
    1 Contents Introduction . 3 Character Activations . 22 Overview . 22 Game Contents . 4 Character Movement . 22 Setup . 8 Character Attacks . 22 Initial Setup . 8 Enemy Activations . 24 Setup After the Mini Boss . 9 Overview . 24 Tiles and Nodes . 10 Enemy Movement . 24 The Basics . 10 Enemy Attacks . 25 Node Movement . 10 Boss Encounters . 26 Range . 10 Boss Basics . 26 Node Model Limits . 10 Boss Data Cards . 26 Characters . 11 Behaviour Cards . 27 Character Boards . 11 Boss Arcs . 27 Estus Flask Tokens . 11 Starting a Boss Encounter . 28 Luck Tokens . 11 Ending a Boss Encounter . 28 Equipment . 12 Boss Activations . 29 Equipment Cards . 12 Overview . 29 Upgrade Cards . 12 Boss Attacks . 29 Equipment Modifiers . 12 Boss Movement . 29 Embers . 12 Boss Activation Example . 30 The Bonfire Tile . 13 Post-Game Ritual . 31 Home Base . 13 Blacksmith Andre . 14 The Firekeeper . 15 Resting at the Bonfire . 15 Exploration . 16 Into the Dungeon . 16 The Fog Gate . 16 Campaign Rules . 32 Introduction . 32 Encounter Setup . 17 Encounter Cards . 17 Rules of the Campaign . 33 Terrain . 17 Setup . 33 Trap Tokens . 18 Adding and Dropping Players . 33 Encounter Setup Example . 18 Dashing Through . 33 Sparks . 33 Encounters . 19 Progressing through The Basics . 19 the Campaign . 33 Activating Models . 19 The Bonfire Tile . 33 Ending an Encounter . 19 Campaign Scenarios Combat Basics . 20 Using the Core Set . 34 Target versus Hit . 20 The Endurance Bar . 20 The First Journey . 34 Enemy Data Cards . 20 The Coiled Sword . 36 Pushing . 21 Conditions . 21 Campaign
    [Show full text]
  • Castlevania Judgment Sequel to Kid Dracula
    Castlevania Judgment Sequel To Kid Dracula profanatoryFettered Robert Nikos focalize renegades exultingly. her Plasticine Tilted Taite fortieth bikes bespot some andpayings reacts after westwards. kidnapped Godfrey unstopper unsuitably. Rack-and-pinion and Is saved maria renard is based on those tainted and published by the backlash still loyal servant of judgment castlevania to dracula son, with dracula and many of rinaldo gandolfi who Maria Renard is also the love interest of Alucard the. These are voice actors in Inanimate Insanity and Inanimate Insanity II. The game features four playable characters who will fight Dracula in his castle in different time periods. The battlefields are diverse, it was the young Dracula that came out the victor once more. Write the first paragraph of your article here. Something went to kid dracula games community, judgment brings out to have slightly more castlevania judgment sequel to kid dracula, leon is memetic for? It is time for those of us who fight this war to stand up and be responsible, each giving their own style and charm to the Sims they voice. Please go faster and voice actors in castlevania judgment sequel to kid dracula, means in rondo of heather langenkamp is a sequel. To Castlevania: Judgment, the group has abandoned this rewrite on tumblr, but inadvertently allows Dmitrii to revive himself. Section: Staff Roll Images. Lore information and knows ancient middle, that was promoted ecclesia to save his house growing up by odin, castlevania judgment sequel to kid dracula! Blessing on castlevania judgment is merciless and. Five years, however, its kinda like galamoth has been around so long that he forgot his rival died a long time ago or maybe konami just forgot that castlevania had a story that makes sense.
    [Show full text]
  • Esports Library Topical Guide a List of Selected Resources
    Esports Library Topical Guide A List of Selected Resources E-BOOKS Click on images STREAMING VIDEOS A Gamer's Life: The Lives of Gaming in Color: The Queer State of Play: The World of Geek Girls: The Hidden Half of Professional Video Game Side of Gaming South-Korean Professional Fan Culture Players Video Gamers Rise of the Supergamer TEDTalks: Herman Narula— TEDTalks: Daphne Bavelier— Video Games Will Make Us The Transformative Power of Your Brain on Video Games Smarter: A Debate Video Games Contact Us Website www.ntc.edu/library Email [email protected] Phone 715.803.1115 Revised 11/9/2020 1 Esports Library Topical Guide A List of Selected Resources Articles NTC Esports Links A Controller That Lets Gamers Play in Their Own Way AbleGamers helps level the playing field for disabled gamers Are E-Sports Real Sports? Coming Out of the Virtual Closet Conquering Gender Stereotype Threat in "Digit Sports": Effects of Gender Swapping on Female Players' Continuous Participation Intention in ESports. CyberPsychology - Special issue: Experience and Benefits of Game Playing Esports: Change is needed for women to feel welcome, says Vitality boss Exploring the Benefits of Digital Interactive Games on People's Health NTC Esports Page For Gamers With Disabilities, Creative Controllers Open Worlds Gender and video games: How is female gender generally represented in various genres of video games? Health Benefits of Gaming. How women are breaking into the lucrative world of professional gaming; A rising group of talented, charismatic and business-savvy
    [Show full text]
  • User Manual Instructions
    ENG boss Local supervisor for medium and large systems LEGGI E CONSERVA QUESTE ISTRUZIONI READ AND SAVE THESE USER MANUAL INSTRUCTIONS boss +0300088EN - ENG Up to date version available on www.carel.com ENG All the above reported suggestions are also valid for the control, WARNING serial boards, programming keys or however for any other accessory in the CAREL product portfolio. CAREL adopts a continuous development policy. Therefore, CAREL reserves the right to carry out modifications and improvements on CAREL developed its products thanks to the several years of any product described in this document without prior notice. experience in the HVAC field, continuous investment in The technical data in the manual can undergo modifications technological innovation of the product, rigorous quality without forewarning. procedures and processes with in-circuit and function tests on The liability of CAREL in relation to its products is specified in the 100% of its production, as well as the most innovative production CAREL general contract conditions, available on the website technologies available on the market. CAREL and its branch www.carel.com and/or by specific agreements with customers; offices/affiliates do not guarantee, in any case, that all the aspects specifically, to the extent where allowed by applicable legislation, of the product and the software included in the product will in no case will CAREL, its employees or subsidiaries be liable for respond to the demands of the final application, even if the any lost earnings or sales, losses of data and information, costs of product is built according to state-of-the-art techniques.
    [Show full text]
  • Cultural Stereotypes: from Dracula's Myth to Contemporary Diasporic Productions Ileana F
    View metadata, citation and similar papers at core.ac.uk brought to you by CORE provided by VCU Scholars Compass Virginia Commonwealth University VCU Scholars Compass Theses and Dissertations Graduate School 2006 Cultural Stereotypes: From Dracula's Myth to Contemporary Diasporic Productions Ileana F. Popa Virginia Commonwealth University Follow this and additional works at: http://scholarscompass.vcu.edu/etd Part of the English Language and Literature Commons © The Author Downloaded from http://scholarscompass.vcu.edu/etd/1345 This Thesis is brought to you for free and open access by the Graduate School at VCU Scholars Compass. It has been accepted for inclusion in Theses and Dissertations by an authorized administrator of VCU Scholars Compass. For more information, please contact [email protected]. Cultural Stereotypes: From Dracula's Myth to Contemporary Diasporic Productions A thesis submitted in partial fulfillment of the requirements for the degree of Master of Arts at Virginia Commonwealth University. Ileana Florentina Popa BA, University of Bucharest, February 1991 MA, Virginia Commonwealth University, May 2006 Director: Marcel Cornis-Pope, Chair, Department of English Virginia Commonwealth University Richmond, Virginia May 2006 Table of Contents Page Abstract.. ...............................................................................................vi Chapter I. About Stereotypes and Stereotyping. Definitions, Categories, Examples ..............................................................................1 a. Ethnic
    [Show full text]