[
  {
    "path": "README.md",
    "content": "# muOS-Artwork\nBox art was created with Skraper using the [muOS RG35XX Box mix](https://github.com/antiKk/muOS-Artwork/blob/main/Skraper%20Mixes/muOS%20RG35XX%20Box.xml)\n\nPreview art was created with Skraper using the [muOS RG35XX Preview mix](https://github.com/antiKk/muOS-Artwork/blob/main/Skraper%20Mixes/muOS%20RG35XX%20Preview.xml)\n\nMeta text generated with Skraper and converted with [this script](https://github.com/antiKk/muOS-Artwork/blob/main/Skraper%20Mixes/convert.ps1)\n\n> [!NOTE]\n> The system icons in this set are from [here](https://github.com/Vidnez/retro-systems-icons-for-GarlicOS)\n\n### System Art\n![muOS_20240131_1857_0](https://github.com/antiKk/muOS-Artwork/assets/4548266/a161f8a9-8d62-4d14-8756-9222618f162d)\n### Box Art\n![muOS_20240131_1858_0](https://github.com/antiKk/muOS-Artwork/assets/4548266/fefe7c46-312b-4673-b1f9-4ca4d0cb85d6)\n### Preview Art\n![muOS_20240131_1859_0](https://github.com/antiKk/muOS-Artwork/assets/4548266/a21a3771-0c10-48a8-83a9-8ba5097a9f3d)\n### Meta Text\n![muOS_20240131_1858_1](https://github.com/antiKk/muOS-Artwork/assets/4548266/81971ccc-c110-4ea5-a00c-78254b196a72)\n"
  },
  {
    "path": "Skraper Mixes/convert.ps1",
    "content": "# This script will ingest an EmulationStation XML Generated by Skraper\n# and extract the Description for use with muOS\n# It can ingest multiple XML files and reads them from whatever \n# directory this script is run from\n\n# Grab all XML files from current dir\n$xmlFiles = Get-ChildItem -Path $PSScriptRoot -Filter *.xml\n\n#Set Output INFO path\n# This will out put the Metadata text file in a muOS compliant way\n# Replace this with the output folder you'd prefer\n$muosInfo = \"J:\\RG35XX Plus\\muOS\\Tiny Best Set\\Meta\\INFO\"\n\n# Legacy Text from older muOS versions\n# $descText = \"# Description of the game or content.\"\n# $kindText = \"# The genre of the game separated by commas.\"\n# $timeText = \"# Timestamp of last played - This is updated dynamically.`r`nlast=\"\n# $coreText = \"# The specific RetroArch core used, this can be any file in the CORE directory.`r`n# Leave it as 'detect' to have it run based on the default core in the 'core.txt' file.`r`ncore=detect\"\n# $modeText = \"# The cpu governor that will be used. Can be one of the following:`r`n# \tinteractive performance powersave userspace`r`n# Leave it as 'detect' to use the default which is 'interactive'`r`nmode=performance\"\n\n# Load the XML file\nforeach ($xmlFile in $xmlFiles) {\n    # Extract the system name from the file path\n    # This will put things in the muOS directory strucure using the XML filename\n    # as the muOS directory name\n    # i.e if your ROMs are saved as /ROMS/Gameboy/ name the XMl Gameboy.xml\n    $systemName = [System.IO.Path]::GetFileNameWithoutExtension($xmlFile.Name)\n    #Write-Host $systemName\n    [xml]$xml = Get-Content $xmlFile\n\n    foreach ($game in $xml.SelectNodes(\"//game\")) {\n        $gamePath = $game.SelectSingleNode(\"path\").InnerText\n        $gameDesc = $game.SelectSingleNode(\"desc\").InnerText #-replace \"`r|`n\", \" \" # Early versions stripped linebreaks\n        $gameGenre = $game.SelectSingleNode(\"genre\").InnerText\n\n        # Extracting filename from the path\n        # This ensures the metadata get's the correct name /INFO/content/System/meta/filename.txt\n        $fileName = [System.IO.Path]::GetFileNameWithoutExtension($gamePath)\n    \n        # Created the files!\n        $outputFolderPath = \"$muosInfo\\content\\$systemName\\meta\\\"\n        $outputFilePath = Join-Path -Path $outputFolderPath -ChildPath \"$fileName.txt\"\n\n        # Create the directories if needed\n        if (-not (Test-Path -LiteralPath $outputFolderPath)) {\n            New-Item -ItemType Directory -Path $outputFolderPath | Out-Null\n        }\n        #$content = \"$descText`r`ndesc=$gameDesc`r`n`r`n$kindText`r`nkind=$gameGenre`r`n`r`n$timeText`r`n`r`n$coreText`r`n`r`n$modeText\"\n        $content = $gameDesc\n        Write-Host \"Writing $outputFilePath\"\n        Set-Content -LiteralPath $outputFilePath -Value $content\n    }\n}"
  },
  {
    "path": "Skraper Mixes/muOS RG35XX Box.xml",
    "content": "\n<ImageComposition xsi:noNamespaceSchemaLocation=\"https://www.skraper.net/ImageComposition.xsd\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\">\n  <Information ShortName=\"muOS Box Art\" LongName=\"muOS Box Art Mix\" Description=\"2DBox + Support\" Author=\"antiKk\" />\n\t<Viewport Width=\"320\" Height=\"240\" />\n\t<Drawings>\n    <Item Type=\"Box2DFront\">\n      <Display X=\"80%\" Y=\"95%\" Antialiasing=\"None\" Width=\"80%\" Height=\"80%\" KeepRation=\"true\" Anchor=\"BottomRight\" />\n    </Item>\n    <Item Type=\"Region1\">\n      <Display X=\"85%\" Y=\"5%\" Antialiasing=\"None\" Width=\"20%\" Height=\"20%\" KeepRation=\"true\" Anchor=\"TopRight\" />\n    </Item>\n    <Item IfSystem=\"IsInTheList:20,23,57,58,59,114\" TestOnly=\"true\">\n    <Children>\n      <Item Type=\"Support\">\n        <Display X=\"99%\" Y=\"99%\" Antialiasing=\"None\" Width=\"60%\" Height=\"60%\" KeepRation=\"true\" Anchor=\"BottomRight\" />\n      </Item>\n    </Children>\n    </Item>\n    <Item IfSystem=\"IsNotInTheList:20,23,57,58,59,114\" TestOnly=\"true\">\n    <Children>\n      <Item Type=\"Support\">\n        <Display X=\"99%\" Y=\"99%\" Antialiasing=\"None\" Width=\"35%\" Height=\"35%\" KeepRation=\"true\" Anchor=\"BottomRight\" />\n      </Item>\n    </Children>\n    </Item>\n\t</Drawings>\n</ImageComposition>\n"
  },
  {
    "path": "Skraper Mixes/muOS RG35XX Preview.xml",
    "content": "<ImageComposition xsi:noNamespaceSchemaLocation=\"https://www.skraper.net/ImageComposition.xsd\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\">\n  <Information ShortName=\"muOS Preview Image\" LongName=\"muOS Preview Image Mix\" Description=\"Screenshot\" Author=\"antiKk\" />\n\t<Viewport Width=\"515\" Height=\"275\" /> <!-- This is the maximum size of the muOS preview pane. -->\n\t<Drawings>\n    <Item Type=\"Screenshot\">\n     <Display X=\"50%\" Y=\"50%\" Width=\"515\" Height=\"275\" Antialiasing=\"None\" KeepRatio=\"true\" Anchor=\"VCenterHCenter\" />\n    </Item>\n\t</Drawings>\n</ImageComposition>\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/1941.txt",
    "content": "The goal is to shoot down enemy airplanes and collect weapon power-ups (POW). One is only able to perform three loops per level and a bonus is awarded at the end of the level for unused loops. Player 1 uses a P-38 Lightning and Player 2 uses a Mosquito Mk IV. The game shifts from the original Pacific Front setting with that of the Western Front.\n\nThe game consists of six levels.\n\nIt was the first shoot 'em up to add +1 to the score when a continue is used.[1]\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/1942.txt",
    "content": "\"1942\" is a vertically-scrolling shoot-em-up set in the Pacific theatre during World War II, in which the goal is to reach Tokyo and destroy the entire Japanese air fleet.  \n \nThe player pilots a plane dubbed the \"Super Ace\" (its appearance is that of a Lockheed P-38 Lightning) and has to shoot down waves of enemy planes while avoiding incoming enemy fire. The 'Super Ace' can perform a limited number of rolls or 'loop-the-loops' to evade enemy planes and shots.  \n \nDuring the game, waves of red enemy planes periodically appear. If the player manages to destroy a red wave, a power-up, in the form of a 'POW' symbol, will be dropped and can be picked up. The power-up will award either increased fire-power (doubling the player's guns from two to four), a smart bomb that destroys all on-screen enemy planes the instant it's collected, two wingmen planes that flank the Super Ace and increase fire power, or simply extra points. \n \nAt the end of each stage the 'Super Ace' lands on an aircraft carrier and bonus points are awarded based on player performance. \"1942\" differs from other games in that its levels are numbered in reverse order, so the game begins at stage 32 and ends at stage 1.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/1943.txt",
    "content": "The game is set in the Pacific theater of World War II, off the coast of the Midway Atoll. The goal is to attack the Japanese Air Fleet that bombed the players' American Aircraft Carrier, pursue all Japanese Air and Sea forces, fly through the 16 levels of play, make their way to the Japanese battleship Yamato and destroy her. 11 Levels consist of an Air-to-Sea battle (with a huge battleship or an aircraft carrier as an End-Level Boss), while 5 levels consist of an all-aerial battle against a squadron of Japanese Bombers and a Mother Bomber that needs to be destroyed.\nAs in 1942, players pilot a P-38. Two buttons are used: one for regular attacks (with several weapons) and one for special actions that executes either a loop like in 1942 or one of three special attacks that damage the plane. Unlike 1942, the player only has one life, with one refillable energy meter. Destroying a complete formation of red enemy planes will result in a power-up, such as a health boost or a temporary special weapons which replaces the default twin gun.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/1943kai.txt",
    "content": "An update of 1943 with tweaked weapons, fewer levels, and a new soundtrack.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/1944.txt",
    "content": "The game takes place in the heated battles of 1944 during the Second World War as a super ace pilot attempts to defeat an entire army. The game operates and plays like most standard shooters. The objective of every level is to shoot enemy planes, tanks, trains, turrets, battleships, and defeat the boss after each level. Unlike its predecessor, 19XX: The War Against Destiny, the game plays more like the early games in the series.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/19xx.txt",
    "content": "19XX: The War Against Destiny is a vertical scrolling shooter arcade game made by Capcom in 1995 (copyrighted in 1996). The game is the 4th of a series of World War II vertical shooters made by Capcom. The story takes place before a fictional war (Hence, the 19XX) as a lone pilot tries to defeat an entire army/evil organization from starting another World War, which soon escalates to a nuclear apocalypse.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/2020bb.txt",
    "content": "In the year 2020, baseball finally evolved. There is no longer conventional professional baseball in 2020. Baseball designed by the Super Baseball Association has been very popular and is the best sport.\n\nHowever, the truth is that the association has used a colossal sum of money to promote Super Baseball as show business. They have manipulated each player's ability using the control computer to secretly decide victory or defeat in every game. The players who knew this removed the connecting parts of the computer to play their own game of baseball. Finally, a fair game is going to be played at Cyber Egg Stadium.\n\nIn 2020 Super Baseball is a fast-paced game with new rules, where you can select 1 of 12 individual men, women, or robot players. During play, you can make your team stronger with prizes earned from amazing catches. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/3wonderu.txt",
    "content": "Three Wonders contains three games from which a player may choose: \n \nMidnight Wanderers: Quest for the Chariot - A platform game that sees the player control a hobbit named Lou and his traveling companion, Siva, to run, climb, and shoot at enemies. \nChariot: Adventure through the Sky - A shoot 'em up game featuring the characters from Midnight Wanderers, but in a Gradius-esque game. \nDon't Pull - A puzzle game similar to games like the Eggerland series, Pengo and Capcom's own puzzle game Pirate Ship Higemaru. It involves the player controlling either a rabbit named Don (Player 1) or a squirrel called Pull (Player 2), pushing blocks to crush monsters.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/720.txt",
    "content": "A one or two-player arcade game with players taking on the role of a skateboarder, and must perform various tricks and maneuvers to earn the points and tickets needed to compete for medals in the game's numerous skate parks.  \n \nThe bulk of the action takes place in a 'Skate City', a small urban area made up of ramps, jumps and hazards. Players can skate anywhere they wish as they perform the tricks and jumps needed to reach the score thresholds that will earn them entry tickets to Skate City's skate parks to compete for medals and cash prizes.  \n \nEach score threshold must be reached and a park entered within a tight time limit. Failure to do so sees the skater persued by a swarm of bees and the words SKATE OR DIE appear. Should the bees touch the skater before he enters a park, the game ends. Skate City's roads and pavements are populated with moving traffic and pedestrians and any collision with them will result in the skater being knocked from his board, costing the player precious seconds.  \n \nThe parks themselves each feature one of four different disciplines: Slalom, Jump, Downhill and Ramp. Each park has a timer and players can earn either a bronze, silver or gold medal - together with a cash prize - depending on how quickly the park is completed. If the park target score or finish line is not reached before the timer expires, no medal or money is awarded.  \n \nMoney won can be used to buy equipment upgrades from the stalls that litter Skate City. Players can buy upgraded boards, helmets, pads and shoes. Boards give faster speed; helmets allow for more risky maneuvers; pads give a faster recovery from falls and shoes provide more height on jumps, as well as giving a quicker standing start.  \n \nAt the start of each new game, players can select from one of two play modes. 'Training Level' is available for beginners and gives players numerous playing hints and tips. 'Experienced Level' is more challenging as well as offering fewer hints. It does, however, include the 'add-a-coin' feature, which allows for awards and items already won to be carried over to a new game.  \n \nThe main objective is to compete in as many skate parks as possible. There are numerous city hazards to be avoided, such as BMX riders, cars, Frisbee throwers and other skaters. To guide the player around Skate City are map tiles. Riding over one of these will temporaily pause the action and display the layout of the city, including the locations of the skate parks and equipment stalls.  \n \n\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/aburner.txt",
    "content": "After Burner is another 3-D Sega game rendered with their superb sprite-scaling technology; this time putting the player into the seat of a powerful jet fighter. \n \nA number of colorful, fast-moving environments await the player, as he or she takes on the hordes of enemy planes intent on the player's destruction.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/aburner2.txt",
    "content": "After Burner is another Sega game rendered with their then-ubiquitous 3-D sprite-scaling technology; this time putting the player into the seat of a powerful F14 Tomcat jet fighter.  \n \nPlayers must fight their way through 21 colourful, fast-moving stages, shooting down waves of enemy fighters while avoiding the enemy's incoming missiles. The F14 is equipped with a machine gun and a limited number of homing missiles. The gun has infinite ammunition and targeting is achieved by maneuvering the Tomcat so that the targeting cursor situated just in front of the jet is placed over an enemy fighter.  \n \nAfter Burner's straightforward shoot-em-up gameplay is simple and repetitive, but the game's incredible visuals ensured its success.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/actfancr.txt",
    "content": "A platform game with shoot'em up elements where you play as a robot that can transform into a more powerful robot by collecting power-ups.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/aerofgt.txt",
    "content": "A superb vertically scrolling shoot-em-up in which the player chooses an ace fighter pilot from a selection of 4 countries (USA, Japan, Sweden and Britain) and takes to the skies to destroy enemy jets, boats, helicopt\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/airwolf.txt",
    "content": "Airwolf is a horizontally scrolling shoot'em up game.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/aliensu.txt",
    "content": "Aliens is an arcade game based loosely on the 1986 movie Aliens. You and a friend play female Marines and you must explore and destroy all aliens who have taken over a now abandoned space settlement LV426 Acheron. If you can find any survivors try to rescue them. As well as your normal gun there are other weapons that can be used to help you. A Caterpillar P-5000 can also be found and used. Aliens is mainly a side view horizontal shooter where the screen scrolls as you move from left to right. Some parts of the game require you to look behind the hero firing into the screen as aliens come towards from the distance as well as moving in other directions like in a lift. You can also be driving into the screen trying to shoot aliens.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/aliensyn.txt",
    "content": "Alien Syndrome is a overhead-view run and gun game for one or two players in which a number of Mankind's space ships and bases have been overrun by an alien race, who have taken the human inhabitants hostage. \n \nPlayers control two soldiers named Ricky and Mary and must fight their way through large eight-way scrolling levels to rescue their captured comrades. Once a set number of hostages have been rescued, an exit opens and players can pass through it to fight the end-of-level guardian. Once the guardian is defeated, play moves onto the next stage. \n \nA time-bomb is automatically set at the start of each stage, which must then be completed before the bomb's timer runs down. Failure to finish the level in time results in the death of the player characters. Weapon upgrades and maps of the current level are available at certain points and are accessed via hatchways in the wall. \n \nAlien Syndrome consists of 6 full stages plus a 7th final mini-stage, consisting solely of a fight to the death against the game's final, massive guardian.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/aligatun.txt",
    "content": "Strange reptilian-looking aliens are invading earth and is up to the most brave and skilled soldiers (apparently a duo of skateboarding youths!) to stop the invasion and destroy the enemy base. Features nice graphics and great shoot'em up gameplay which is quite similar to \"Cabal\" & \"Blood Bros.\".\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/alpham2.txt",
    "content": "The lunar nightmare of a bloody 200-year space war was thought to be over in the \"original\" ALPHA MISSION. But now with the advent of more technically sophisticated weapons, the evil \"Fulvar\" and his \"Seven Star Alliance\" have returned to destroy all planets that stand in their way of the ultimate target... Earth! Now in the year of 2525! Your mission as pilot of the new SYD-FX fighter is to use every weapon at your disposal to rid the galaxy once and for all of the evil that now dominates and threatens Earth. So suit up, hold your breath, and stand ready for unbelievable graphics and stereo sound that'll suck you into the far reaches of deep, dark inner space. Be prepared... you may never come back!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/altbeast.txt",
    "content": "You are a hero raised from the dead by the god Zeus to rescue his daughter Athena. With scenery inspired by Ancient Greece, you have to fight hordes of undead and demons, with a boss at the end of each level until you meet the god Neff, who holds the girl captive. The Altered Beast title refers to your shapeshifting abilities. In this platformer, you can collect spirit balls by defeating two-headed wolves, allowing you to mutate into different beasts such as a werewolf, a dragon, a tiger, a bear and others depending on the version. Each form, tied to a level, comes with special abilities such as flight and powerful attacks, easily superseding the basic set of punches and kicks in your human form.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/amidar.txt",
    "content": "Amidar is an abstract arcade game in which players must 'colour in' all of the rectangles on the screen. Each level has a number of patrolling enemies called 'Amidars' that must be avoided but players are aided in their task with the inclusion of a JUMP button which, when used, causes all the on-screen enemies to jump, giving the player time to escape. There are only three 'jumps' given per level, however. \n \nOn odd-numbered levels, the player's character is a gorilla who eats coconuts; on even-numbered levels, it's a paint roller. The game's enemy Amidars are savages and pigs respectively. Whenever a rectangular portion of the board is cleared (either by collecting all surrounding coconuts, or painting all surrounding edges), the rectangle is coloured in and on the even levels, bonus points are awarded, while on the odd-numbered levels, points are awarded for each coconut eaten.  \n \nIf players manage to fill in all four corner rectangles of a board, they are briefly able to kill the enemies by touching them (similar to the 'Power-pill' from Namco's Pac-Man series). Enemies killed in this way fall to the bottom of the screen and recover after a few seconds. \n \nOn the even-numbered paint roller levels, the roller cannot move too far from grid rectangles that have already been filled without running out of paint and having to return to completed parts of the map to refresh its supply. When this happens, any painted lines that are not part of a filled rectangle will vanish and must be painted again. This means that the player must build their completed squares around the starting point of the level and spread outwards, rather than completing squares on any part of the board as they can on the odd-numbered Gorilla levels. This makes filling in the corner rectangles to become invincible much more difficult. \n \nIn between levels players are given the possibility of earning 5,000 bonus points. Here, an Amidar moves across the top of the screen, by pushing the jump button the Amidar traces a random path down towards the bottom of the screen. If the Amidar reaches a bunch of bananas, a bonus is awarded.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/androdun.txt",
    "content": "The invasion of an unknown life source is getting worse. Nobody knows if the defensive line or the heart of the enemy base is ruined first. With the people's hope, the most advanced fighter will be dispatched into multi-scrolling space.\n\nFight your way through seven stages in this horizontal-scrolling game, and defeat a boss at the end of each one. You start the game with four main weapons, which you can switch from with the click of a button. Some of these weapons are more powerful than others. You can also fire off a charged shot if your main weapon level is two or greater, simply by holding down the fire button for about two seconds. Using charged shots can do more damage to an enemy ship. If you happen to die, you will lose one power level from all four weapons. If all your lives are lost and are forced to continue, you will start again with your main weapon on the second power level and all three sub-weapons on the first power level.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/aodk.txt",
    "content": "Aggressors of Dark Kombat is another one-on-one street fighting beat 'em up from the Neo-Geo's seemingly endless library of fighters.\n\nIt pits 8 fighters of different styles and strengths against each other in a tournament to see who's the toughest mofo on the streets of Tokyo. Your objective as usual is to deplete your opponent's health bar within the time limit by using your basic attacks and special moves (triggered by specific controller motions) while avoiding his moves and attacks.\n\nUnique to Aggressors of Dark Kombat is the combination of traditional side-scrolling beat 'em up elements, meaning characters can freely move in an isometric space instead of being restricted to a single plane of movement. Weapons and throw-able items are usually thrown into the arena by the crowds and you can pick them up and wield them for added damage. Additionally, matches are 1-round only affairs, with an extended multi-layered health bar that allows for longer rounds than usual.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/aof.txt",
    "content": "The storyline of Art of Fighting takes place in 1978. Ryo Sakazaki and Robert Garcia set out to find Ryo's sister, Yuri, who was kidnapped by Mr. Big. Mr. Big took Yuri to entice Takuma Sakazaki, Ryo's father and originator of Kyokugen Karate, and also because Ryo refused to work for Big. After Ryo & Robert defeat Mr. Big, they face the enigmatic Mr. Karate. Art of Fighting's story ends with a cliff-hanger; Yuri is about to disclose the true identity of Mr. Karate as their father Takuma.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/aof2.txt",
    "content": "In this sequel to the original Art of Fighting, and prequel to the original Fatal Fury, we learn that Mr. Karate, the final boss of the original game, behind the mask, is really Takuma Sakazaki, Ryo and Yuri's father, that Takuma was being used by Geese Howard for his own evil intentions, and that Mr. Big was the one who had originally kidnapped Yuri.\n\nMany of the problems that existed in the first game have been fixed in this installment (it is easier to execute special moves, you no longer have only Ryo or Robert to choose from in 1 player mode, etc.).\n\nThe entire cast from the first Art of Fighting is here (with the exceptions of Todo and Mr. Karate), along with a few new characters: Takuma Sakazaki, Ryo and Yuri's father; Yuri Sakazaki, Takuma's daughter and Ryo's sister; Eiji Kisaragi, a sworn enemy of the Sakazakis; Temjin, a Mongolian trucker; and a younger version of Geese Howard, whom you face as the last boss if you beat the game without losing a round.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/aof3.txt",
    "content": "In this third and final entry in the Art of Fighting series, the story shifts from Ryo Sakazaki to his best friend and rival, Robert Garcia, as he ventures into Mexico to try and locate Freia Lawrence, a childhood friend, who asked for his help. However, he leaves without the consent of The Garcia Foundation, which sends an agent named Karman Cole to get him back. But not everything is as simple as it looks... because Robert is not the only one looking for Freia.\n\nArt of Fighting 3: The Path of The Warrior features ten playable characters with different fighting styles, a completely new fighting system based on joystick and button combinations, and incredibly detailed graphics and animation. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/aquajack.txt",
    "content": "A chase-view shoot'em up were you pilot a hovercraft over water and land while dodging bullets and avoiding objects by either going around them or jumping over them.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/arknoid2.txt",
    "content": "Arkanoid - Revenge of DOH  1987 Taito Corp. \n \nThe mysterious enemy known as 'DOH' has returned to seek vengeance on the 'Vaus' space vessel. The player must once again take control of the Vaus and overcome many challenges in order to destroy DOH once and for all.  \n \nAn update of the popular 1986 original, Revenge of DOH sees the player battle through 34 rounds, taken from a grand total of 64. Revenge of DOH differs from its predecessor with the introduction of \"Warp Gates\". Upon completion of a round or when the Break ('B') pill is caught, two gates appear at the bottom left and bottom right of the play area respectively, the Vaus is then taken through one of the gates - the choice will affect which version of the next round is provided. \n \nThe game also features two new features for bricks. Notched silver bricks, like normal silver bricks, take several hits to destroy. However, after a short period of time after destruction, they regenerate at full strength. Fortunately, clearing a level does not require that any notched bricks to be destroyed. Also, some bricks move from side to side as long as their left and/or right sides are not obstructed by other bricks. \n \nThe game features a mini-boss in the form of a giant brain, which will help you practice for DOH. You must aim for the brain's mouth to defeat it.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/arknoidu.txt",
    "content": "The original Breakout concept involves controlling a bat at the bottom of the screen and using it to catch and direct a ball so as to hit all the bricks which are arranged at the top of the screen. It was unpopular for over a decade, before Taito revived it with some new ideas in this arcade game. \nThe game's plot redefines the bat as a Vaus spaceship, the ball as an energy bolt, and the bricks form a mysterious wall stopping the ship from progressing to safety. \nBy the mid-80s, power-ups were popular in most types of arcade games, and Arkanoid features them. They are caught by positioning the bat below them as they fall (meaning that you risk missing the ball if you go for them at the wrong time). The power-ups include lasers (which are mounted to each side of the ship and allow you to shoot out the blocks), a catching device (so as to be able to fire the ball off at a different angle every time you hit it) and one that slows the bolt down.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/armwaru.txt",
    "content": "In the year 2281, the war spanning half a century over territory between the United World Forces and the Raian Kingdom had at last come to an end.\n\nBut this peace was not to last. A year after a truce was signed between the two forces, former Raian army captain Azrael, who has converted himself into a cyborg in an attempt to become \"the perfect warrior\", has marshalled several thousand other cyborgs and declared war against the Raian Kingdom. Robbing mobile weapons from the army, this group of rogues has invaded the Raian capital of Merkid and has begun to abduct the civilians.\n\nThe United World Government, receiving an emergency message from the planet Raia, has but one choice: to organize and dispatch an army formed around its elite corps, a squadron of warriors called \"Bloody Armor\", to eradicate the enemy forces and rescue the civilians.\n\nAnd so, in October 2282, the United World Forces begin to launch its attack upon the planet Raia.\n\nThe most intense battle in human history is about to begin...\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/asterix.txt",
    "content": "Asterix is a horizontally-scrolling beat-em-up for one or two players and is based on the French comic-book series, 'Asterix & Obelix'. Players fight as either Asterix the Gaul or his best friend, Obelix, as they take on the might of the oppressive Roman Empire.  \n \nAsterix and Obelix each have standard jump/attack controls, as well as a dash attack activated by tapping the joystick forward twice then pressing the attack button. Each character also posesses a powerful spinning arm attack, this is activated by holding the attack button for a short while until the character's face turns red, after which players must release the button. If the button is held down for too long, the character gets out of breath and takes a few seconds to recover. \n \nThe heroes' main foes are Roman legionaries and fat - ocassionally horseback riding - centurions. After an enemy has been beaten enough to fall to the ground, he can be picked up and attacked again, the nature of the attack is dependant on which character picks them up; Asterix will spin the stunned enemy above his head, whereas Obelix smashes him repeatedly into the ground. These stunned enemies also act as tempoarary weapons, as they will cause damage to any other enemies they come into contact with. \n \n\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/asteroid.txt",
    "content": "Asteroids  1979 Atari, Incorporated.\n\nAsteroids is a legendary, genre defining game - in an era replete with genre-defining classics - in which a single player takes control of a spaceship trapped in the middle of an asteroid belt. A number of large, slow-moving asteroids drift randomly around the play area and must be shot by the player. When shot, the asteroids will break into a number of smaller pieces which must also be shot until eventually, all of the asteroids and fragments will be destroyed and the next wave begins. \n\nAsteroids introduced real-world physics to video games for the first time, with speed and inertia all adding to the player's problems. As well as the inertia of the player's ship - forcing the player to allow for the ship slowing down and speeding up whenever the Thrust button was utilized - shot asteroids would often send fragments flying in seemingly random directions, and at varying and unpredictable speeds. \n\nAs well as the ever-present asteroids, flying saucers also make a regular appearance. These move horizontally and diagonally around the screen, firing at the player's ship, and must be quickly destroyed. They are destroyed when hit by the player's shot, when hit by a saucer's shot or when they collide with an asteroid. \n\nCAST OF CHARACTERS - \n\nSpaceship - This is you, the player. You can rotate 360 degrees, fire bullets, thrust forward in any direction, and hyperspace to safety if you feel you are in danger. \n\nLarge Asteroid - These are the large rocks that fill the screen at the beginning of each stage. Hitting one with a bullet will break it apart into two Medium Asteroids. \n\nMedium Asteroid - Slightly smaller than Large Asteroids, but faster moving. Shooting one of these will result in two Small Asteroids. \n\nSmall Asteroid - These are the smallest and fastest rocks on the screen. If a bullet hits one of these, it will vaporize. \n\nLarge Saucer - Large flying saucers appear on the screen from time to time, randomly firing shots around the screen. They pose a minor threat. \n\nSmall Saucer - The smaller flying saucers are deadlier than the large variety. They are much more precise with their shots, and are more likely to kill you. Eliminate them quickly or get out of their range.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/astorm.txt",
    "content": "Alien Storm is a side-scrolling beat-em-up in which up to 3 players take on the role of one of 3 futuristic warriors. The game heroes are charged with destroying the hoards of repulsive aliens who are invading the Earth. Many of the aliens are disguised as a variety of everyday street objects; such as telephone booths, oil cans, trash cans and mailboxes. The aliens reveal their true forms as the warriors approach. \n \nEach of the 3 heroes carries their own individual weapon; Gordon has his plasma gun, Karla has a flamethrower and Scooter has an electric whip. At the end of each level, the warriors will enter a building and the shoot-em-up action will switch to a first-person perspective.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/avspirit.txt",
    "content": "While walking out with his girlfriend the game's hero is ambushed by unknown enemies who snatch his girlfriend and shoot the hero dead. Now, as a wandering spirit with the ability to possess almost anybody he comes across, the hero is summoned by his girlfriend's father and given a mission to save her from the mysterious crime syndicate that holds her hostage. Only then can the hero rest in peace. \n \nThe player's character 'inhabits' a body with which to combat the game's enemies. When that body is killed, providing there is a living enemy nearby (other than that of a boss) the player can posses them and continue playing. Each time this is done, it costs the player some of their 'spirit energy'. Should the hero die when there are no enemies close by for the player to possess; the game is over.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/avspu.txt",
    "content": "San Drad, California, has been overrun by the Aliens, and the cybernetically-enhanced Major Dutch Schaefer and Lieutenant Linn Kurosawa have been abandoned by their superiors and are cornered by a swarm of the Alien drones. Before they can be killed, a pair of the Predators appear and destroy the Aliens. The Predators offer an alliance with the two humans in order to stop the Alien infestation.\n\nThe players take control of up to three of four characters: Dutch, Linn, a Predator hunter, and a Predator warrior, and battle the Aliens through several environments. In the process, the characters discover that the Alien presence on Earth is the result of an experiment headed by a renegade General Bush of the U.S. Colonial Marines in conjunction with the Weyland-Yutani corporation. They destroy the Alien hive by crashing a military ship into San Drad, causing a huge explosion. The Predator warrior then gives his wrist blades to Dutch and Linn in recognition of their skills as warriors, before the Predators depart back into space.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/baddudes.txt",
    "content": "The game starts in New York City, where President Ronnie has been kidnapped by the nefarious DragonNinja. The game's intro begins with the following introduction: \"Rampant ninja related crimes these days... Whitehouse is not the exception...\". As soon as that occurs, a Secret Service agent asks two street-smart brawlers, named Blade and Striker: \"President Ronnie has been kidnapped by the ninjas. Are you a bad enough dude to rescue Ronnie?\". \n\nAfter hearing that, the Bad Dudes pursue the DragonNinja through the city streets, highway, sewers, transport train, forest, cave and into the secret ninja base in order to save President Ronnie.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/bangbead.txt",
    "content": "Bang Bead, known in Japan as Bang Beads, is a 2001 ball-and-paddle game developed and published by Visco exclusively for the arcade cabinet known as the SNK Neo-Geo MVS hardware. It combines the genres of the Magnavox Odyssey Tennis game, Atari's Pong and Breakout arcades, and Nintendo's Spitball Sparky of the Game & Watch series. You can select from 9 characters and play against another player or the computer. Knock out the stars behind the other player then get the bouncing ball through to win the round.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/bankp.txt",
    "content": "Bank Panic is a reaction-based shoot-em-up in which the player takes on the role of a gun-slinging Deputy, who has been charged with protecting the town bank from outlaws. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/batcir.txt",
    "content": "Battle Circuit take place in an alternate future earth, the game revolves around a group of bounty hunters who must capture the mad scientist Doctor Saturn and secure a sophisticated computer disc carrying a program known as the \"Shiva System\". Battle Circuit, which was Capcom's last beat 'em game for the arcades, contains comic-like characters in a futuristic science fiction setting and is considered by some to be a cult classic.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/batman.txt",
    "content": "Batman is a horizontally scrolling beat 'em up arcade game released by Atari Games, Midway Games, Data East and Namco in 1990 in North America, and in 1991 in Japan and Europe. The storyline is based on the eponymous 1989 movie. It features stages based on locations in the film, including first-person control of the Batmobile and the Batwing. The game features audio clips of Batman (Michael Keaton) and the Joker (Jack Nicholson) as well as digitized photos from the film. Batman can use various weapons, such as batarangs and gas grenades, as he takes on various goons and the Joker.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/batrider.txt",
    "content": "An excellent vertically scrolling shoot'em up.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/bbros.txt",
    "content": "One or two players control safari-suited characters armed with harpoon guns, who must destroy the numerous different-sized balloons that litter each stage. When hit by a harpoon, the balloons break down into smaller fragments.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/berzerk1.txt",
    "content": "The player controls the 'Humanoid' and must negotiate a number of robot-filled rooms; each with up to as many as eleven, laser-firing enemy robots. The Humanoid can be killed either by a single shot from a robot, by running into a robot, by running into a wall of the maze, or by being touched by the player's nemesis, 'Evil Otto'. \n \nTo advance through the game, players must fight their way through each room to an opening at one of the far walls. Each robot destroyed is worth 50 points and while it's possible to progress without killing every robot in each room, destroying all of them will earn the player a per-maze bonus (worth ten points per robot). The game has an impressive 64,000 mazes, with each level designed to be more difficult than the last.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/biomtoy.txt",
    "content": "Biomechanical Toy is an eightway-scrolling platform shoot-em-up set in a world of magically-animated toys, in which the magical pendulum that animates the toys has been stolen by the evil 'Scrubby', a criminal once imprisoned for trying to steal the pendulum who has managed to escape and take his revenge. The player takes on the role of Inguz and is tasked with freeing the few remaining good toys that are trapped throughout the stages, while destroying or avoiding the many evil toys that now patrol the kingdom.  \n \nInguz carries a basic, single-firing pistol, although additional ammo clips can be found throughout the game that upgrade the gun with either extra shot power, automatic firing or exploding bullets. When the gun's current ammo clip is empty, Inguz will take a moment to reload, leaving him vulnerable to attack. Freed toys will give help to Inguz by providing additional firepower for a short time. \n \nInguz begins each stage and each new life with a full health meter of eighty units, but food can be found that will replenish the meter. The player can lose a life either by running out of health, falling off the bottom of the screen (or into a hazard, such as a lava pit), or by running out of time. Clearing each stage awards bonus points based on both remaining time and health units. \n \nCheckpoints - indicated by red flags - are located at certain points throughout the stages. In the event of losing a life, play restarts from the last checkpoint reached. Objects with Inguz's face on them (such as wooden chests and balloons) release bonus items when shot.  \n \nAn abstract, oriental-looking face occasionally forms part of a level's platform which, when shot, releases balloons which can in turn be shot for bonus items. A giant flying hat also occasionally appears and will drop bonus items when shot. Smart Bombs can also be found at certain points that, when run into by Inguz, will damage or destroy all enemy toys on screen.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/bionicc.txt",
    "content": "Bionic Commando is a scrolling platform shoot-em-up set ten years after the end of World War III, with the player taking on the role of 'Super Joe'; an elite Commando tasked with infiltrating the enemy's heavily defended military base to discover their secrets plans and destroy their missile silos.  \n \nTo aid him in his mission, Joe is equipped with a bionic arm; a telescopic grappling hook that is used to traverse the many platforms and ledges that make up the game's levels. The arm can also be used to temporarily stun enemies or knock them from platforms, as well as to retrieve the bonus items, wooden crates and weapons that are occasionally dropped into the war zone by parachute.  \n \nAs well as the bionic arm, Joe is armed with a shotgun used to kill enemies and destroy obstructions. The shotgun can only be fired left and right, however, and cannot be used at the same time as the bionic arm. More powerful guns can be picked up throughout the game. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/bjourney.txt",
    "content": "The planet of Raguy was once beautiful and peaceful, but all hell broke loose when it was invaded by the Daruma tribe. The pollution started to spread through the city. Blue was summoned to get rid of the Daruma tribe, and save Raguy from the Daruma Empire that has turned the inhabitants into slaves.\n\nYou control Blue, who only has one weapon to deal with the Darumas. You can use his leaf to whip enemies upside-down, and hurl these enemies at others. Along the way, you can get flowers for use at the shop to buy items that will help you along the way. These items include flower honey (increases stamina), swim fins (easier swimming), light safe (protects all your items), spikes, and ocarinas. Later in the game, you can also get the shopkeeper to sing you a song. This helps you break curses that are placed on you by a witch.You will also interact with other characters along the way that can also help you if you tell the truth.\n\nYou exit each stage by jumping on a huge plant. The higher up you are on this plant, the more points you are awarded. Every two or so stages, you have to defeat a boss before a guy in a devil suit offers you something. You can refuse or accept the other. If you accept the offer, you will have to pull one of four strings that will give you a life ball, more stamina, 30 flowers, cocoons, or five flowers.\n\nYou are on a time limit. If you run out of time, a black creature appears out of nowhere, and starts firing \"bird\" missiles at you.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/blazstar.txt",
    "content": "The unofficial sequel to Pulstar, Blazing Star is again a horizontal-scrolling shoot-'em-up. One or two players proceed along levels, each with a boss enemy at the end, trying to redeem the humankind. There are six ships to choose from, each with its own pilot (four of them females), weapons and characteristics of movement. Each ship has its own types of shots, but also a standard shot, charged shot (more powerful) and split shot (a charged shot can be parted into more bullets, lowering the power of each bullet while widening the fire range).\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/blktiger.txt",
    "content": "Black Dragon/Tiger is a scrolling platform shoot-em-up set in a fantasy world and is the spiritual successor to the Capcom classic, \"Makaimura\" (\"Ghosts'n' Goblins\" outside Japan). \n \nThe player takes on the role of a barbarian hero who must jump and fight his way through a variety of colourful, enemy-packed levels, collecting treasure and weapon power-ups and rescuing the trapped 'wise old men' that litter the levels.  \n \nRescuing the wise men sees the player awarded 'Zeny coins'; these are the game's currency and allow the player to buy such items as weapon and armour upgrades, keys for treasure chests, anti-poisoning potions and health potions from the shops that appear on each level. Occasionally, a rescued wise man will also offer to sell the player weapon and armour power-ups.  \n \nThe barbarian hero is armed with a spiked mace on the end of a long chain, as well as unlimited throwing daggers. Both these and the armour worn by the barbarian (which offers limited protection from enemy attacks) can be upgraded by finding or buying the relevant power-ups. \n \nThe sprawling, eight-way scrolling levels are packed with hidden bonuses to encourage and reward exploration. These bonuses are in the form of weapon and armour power-ups, as well as valuable treasure items. Many levels also include a hidden dungeon and each dungeon is filled with both bonus items and trapped wise men. \n \nSpecial items that reveal coins, upgraded armour, or simply bonus points can be found by attacking certain walls.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/blstroid.txt",
    "content": "As the name suggests, this arcade conversion updates the basic Asteroids gameplay. That means to say that the main gameplay consists of flying through single-screen wrap-around levels shooting at rocks, which split into smaller rocks when hit, eventually becoming small enough to disappear. In this case the Asteroids are protecting Mukor, an evil being who is poisoning planets under the Colonising Corp's control.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/blswhstl.txt",
    "content": "The planet Meru is on the attack by the Iva forces. A plea for help has reached Twinbee and you must guide him through a perilous journey through a colorful world fighting to restore peace. This vertically scrolling shoot'em up game features colorful anime-style graphics, lots of power-ups and a fun challenge.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/bnj.txt",
    "content": "Bump 'n' Jump (Burnin' Rubber in Japan) is an overhead driving game where you jump or bump enemy cars for points.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/bogeyman.txt",
    "content": "You play as a young ghost hunter boy who runs around a haunted house. Your objective is to destroy with your sword all the crystal balls that are in the house, you must go through all the floors and go through the doors guided by the map at the top of the screen in a time limit without getting caught by the ghosts, frankenstein, witches and other creepy creatures. With the help of your magic glove can freeze ghosts for a short period of time to later hit them with the sword. \n \nOnce you've destroyed all the crystal balls, the haunted house starts falling apart, and you must run for your life towards the exit to win the stage. You can transform into a super hero, entering through the flashing door to grab special items.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/bombjack.txt",
    "content": "Bomb Jack is a fast-moving platform game in which the aim is to collect all of the bombs on each level before progressing to the next. A variety of constantly spawning mechanical enemies patrol the platforms and airspace so the longer a player takes to collect all of the bombs, the more difficult progress becomes.  \n \nExtra point bonuses are awarded for collecting bombs with their fuses lit. Only one bomb at any time has a lit fuse, and collecting twenty or more of these lit bombs on any given level will earn the player points bonus (see TIPS AND TRICKS for details). Jack is pursued around each level by the spawning enemies and when he gets killed, he drops down to the nearest platform, always landing on his head.  \n \nA 'Powerball' appears at semi-regular intervals and moves diagonally around the screen. If the player manages to grab this, all of the level's monsters are frozen for several seconds and can then be killed by having Jack fly into them (similar to the 'Powerpill' feature in \"Pac-Man\"). Collecting the Bonus 'B' symbols will increase the amount of points awarded for collecting bombs with their fuses lit. Picking up an 'Extra' symbol awards the player with an additional life, while catching the 'Special' symbol will give the player an extra credit.  \n \nEach of Bomb Jack's levels feature one of five different background pictures, some of which represent famous historical landmarks. They are: the Sphinx in Egypt, the Acropolis in Greece, Castle Neuschwanstein in Bavaria, skyscrapers and a cityscape by night. While the backgrounds themselves are repeated as the game progresses, the platform layouts for each level are completely different. At least until level 18, after which the levels are repeated.  \n \nThe basic play mechanic of collecting objects to clear a level, as well as the powerball feature, is hugely reminiscent of Namco's seminal \"Pac-Man\".\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/boogwing.txt",
    "content": "A superbly playable, humourous and utterly unique shoot-em-up from the Date East stable. The player begins each life in control of a bi-plane with a huge metal hook attached to its rear. This hook can be used to pick up enemies, objects, bombs and vehicles which can then be thrown both at other enemies, and at any walls and doorways that may be barring the player's route. \n \nIf the bi-plane takes two hits from enemy forces, it will explode and the player is forced to continue on foot. The on-foot sections play in a vaguely similar fashion to SNK's legendary \"Metal Slug\" series, but while on foot, the player has no protection from enemy hits and is very vulnerable to attack. As such, a replacement vehicle (which appear in the form of tanks, motorbikes, giant robots, elephants etc.) must be found quickly. \n \nBoogie Wings features highly detailed and completely destructible scenery, with a multitude of background animations making the game feel 'alive' and giving it much of its distinctive character. The game's settings are as original as its gameplay; with museums, fairgrounds, the inside of skyscrapers etc. all making an appearance. Boogie Wings soundtrack is also unique to the genre, with a mixture of well-known jazz and blues tunes accompanying the frenetic on-screen action.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/bosco.txt",
    "content": "Bosconian is a multi-directional space shooter where the player must destroy several enemy bases on each round while evading enemy ships, asteroids and mines. Enemy bases are destroyed either with a shot to the center or by shooting out all six base cannons. The player's ship is always positioned in the center of the screen with everything else scrolling around it as the player flies. A radar map to the right shows the position of the player, enemy bases, and occasional formation attack groups.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/breakers.txt",
    "content": "In Breakers, choose one of eight fighters who have their own moves and special attacks. There are eight stages in the game, and each stage has two battles. The object of each battle is to drain your opponent's energy in order to win the battle. If there is a draw, a third battle takes place. If the time limit expires, the player with the less energy loses the battle. Once you have completed all eight stages, you will face a opponent that is much tougher than previous ones. Different endings and in-game dialog are viewed depending on the character that you select.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/breakrev.txt",
    "content": "8 initially selectable characters face off to become the Tae Kwon Do master! After defeating the absolutely WACKY Master Taekuk, he becomes selectable as well to face off against end boss Karate Kenji.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/bstars.txt",
    "content": "Baseball Stars Professional is the follow-up to Baseball Stars for the Nintendo Entertainment System, and features comic-style graphics. Choose from a variety of teams that include Celestial Planets, Heavenly Bodies, Shadow Demons, Battle Knights, Fabulous Superstars, and many others. Then select the field where the game is to be held: The SNK stadium or the SNK dome. Each field has the same dimensions, but their capacity varies. The game is played the same way as normal baseball. Features a VS. mode in which two players can play against each other.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/bstars2.txt",
    "content": "This follow up to Baseball Stars Professional features a fast-paced arcade style baseball with six fictitious teams, each with their own strengths and weaknesses.  There are two difficulties of play: Beginner, which automatically fields the ball for the player while Exciting has the player do the field manually.  Additionally, there are two main modes of play where in the single player mode the player will compete in a fifteen-team tournament or go head-to-head against a friend in a multiplayer mode.\n\nThe standard rules of baseball still apply, but it adds power-ups that the player can pick up and use during the game, such as the ability for their pitcher to throw faster or their batter to hit better.  They can also substitute a player during the game, but are limited to three substitutions per game. The game is shown through 2D graphics with comic-style cutscenes to illustrate the action, such as dramatic catches and home runs that will pop-up during the game.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/btime.txt",
    "content": "A platform game in which one or two players take on the role of burger chef 'Peter Pepper'. The chef must create a set number of burgers per level by collecting the separate ingredients needed to make each one (two pieces of bun, the burger itself and/or a garnish, such as lettuce or cheese).  \n \nEach screen is made up of platforms joined by connecting ladders. At the bottom of the screen are a number of empty plates while the burger ingredients lay across the platforms directly above the plates. The chef must walk across the entire width of the ingredients to make them drop to the platform below. A burger is only completed once all of its ingredients have been dropped onto the corresponding plate at the bottom of the screen.  \n \nThe chef's efforts are hampered by the rogue ingredients that are constantly chasing him. They are called 'Mr. Hot Dog', 'Mr. Egg' and 'Mr. Pickle'. Any contact with them results in the loss of a life. The chef can temporarily freeze the enemies by throwing pepper at them. He only carries a limited amount of pepper but this can be replenished by collecting the bonus food items that randomly appear (ice cream cones, coffee, and fries). In addition to the pepper, any enemies located on a platform below the chef can be killed by dropping an available burger ingredient on top of them. .\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/btoads.txt",
    "content": "Battletoads is a (mostly) horizontally-scrolling beat-em-up in which up to three players take on the roles of Rash, Pimple, or Zitz and must punch and kick their way through six enemy-infested stages to save their alternate universe from the Dark Queen. \n \nThe Toads each vary in fighting style: Rash is nimble, Pimple is burly and strong, and Zitz is a balance of the two. Each Toad also has its own signature exaggerated power and attack, in which their limbs turn into objects such as axes and drills. \n \nIn a visually unique twist, the Toads can knock the game's enemies 'off-screen' so that they appear to fly towards the players, breaking the fourth wall. Enemies include aliens, mutant rodents and snowmen. \n \nThe game's stages, in addition to having their own unique visual theme, often differ in gameplay style. Some levels are Double Dragon-style 2.5D brawlers, while others are strictly two-dimensional, platform-like stages. In one level, the Toads wear jet-packs and descend a tunnel and in the final level, the Toads shoot enemies from a vehicle.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/bubbles.txt",
    "content": "In Bubbles you control a cartoon soap bubble inside a large sink. The object of the game is clean out the sink. You can safely scrub away ants, grease, and crumbs all the time. But sponges, roaches, brushes, and razor blades are deadly to a small bubble. Don't worry too much though, because your bubble grows in size as it swallows up the dirt in the sink. When it gets big enough it will be able to hit brushes and sponges (but still not razors).\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/bubbobr1.txt",
    "content": "One or two players take on the role of Bub and Bob, two cute dinosaurs who must battle through 100 platform-packed single screen levels to rescue their girlfriends. Bub and Bob are armed only with the ability to blow bubbles, in which the game's many enemies can be trapped and killed. The bubbles can also be used as temporary platforms, to help the dinosaurs reach previously inaccessible areas of a level.  \n \nAny trapped enemies who are not killed quickly enough will turn red and escape their bubble prison. These angry enemies are much faster than before, making them harder to kill. Enemies also become angry if players are taking too long to complete a level. Defeated enemies are turned into bonus fruit items that can be collected for points. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/bubsympu.txt",
    "content": "Bubble Bobble II, also known as Bubble Symphony, is the first direct sequel to Taito's 1986 platform classic, \"Bubble Bobble\" ('Rainbow Islands' was the first official sequel, but played very differently) in which one or two players take on the role of the infamous bubble-blowing dinosaurs who must once again fight their way through a large number of single-screen platform-based levels, trapping monsters with their bubbles before bursting them to destroy the trapped enemies.  \n \nWhile the game plays identically to its predecessor, several new changes and additions have been made to breathe new life into the classic gameplay. As well as new bonuses, weapons, enemies and characters, players can now create 'Multiple Bubbles'; if the player holds the button down for a few seconds before releasing, up to three bubbles are produced at once. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/buckrog.txt",
    "content": "Buck Rogers: Planet of Zoom is a forward-scrolling rail shooter where the user controls a spaceship in a behind-the-back third-person perspective that must destroy enemy ships and avoid obstacles. The game was notable for its fast pseudo 3-D scaling and detailed sprites. The game would later go on to influence the 1985 Sega hit Space Harrier. Buck is never seen in the game, except presumably in the illustration on the side of the arcade cabinet, and its only real connections to Buck Rogers are the use of the name and the outer space setting. In Japan, the game was known as Zoom 909.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/buckyua.txt",
    "content": "Bucky O'Hare is a scrolling shoot-em-up for up to four players based on the TV cartoon series Bucky O'Hare and the Toad Wars. Players must stop the Toad Empire from invading their home planets in the 'Aniverse' and enslaving their people. To achieve their goal they must shoot their way through an army of brainwashed toads to destroy their evil leader, a computer program known as 'KOMPLEX' and release the 'Interplanetary Life Force.' \n \nPlayers choose to play as either Blinky (a one-eyed android), Bucky (the heroic rabbit captain), Dead-Eye Duck (a four-armed mallard) or Jenny (an 'Aldebaran cat' and telepath). Differences between the characters are purely visual as each plays the same. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/burningf.txt",
    "content": "The Castella family from the Metro City started ruining the peaceful city of Osaka with the violent Japanese group, \"Heiwa-gumi\". To stop the fight, Metro police detectives dispatched two dangerous characters, Duke and Billy, to Japan. With the support of the famous Japanese detective Ryu, they decided to rush into the enemy's fortress. Ruthless violence in the neon lights of Osaka. Will there be an end to this war?\n\nBurning Fight is a side-scrolling street-fighting game similar to Final Fight. As Duke, Billy, or Ryu, you must fight your way through the various locations in Osaka. At the start of the game, you can only use your fists to deal with gangs, but by by breaking things like phone booths and street signs along the way, you can get new weapons and more health. At the end of each location, you will have to defeat a boss in order to continue the mission.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/bwidow.txt",
    "content": "In Black Widow you have to move around a web using two joysticks to control the action. The left joystick moves, while the right joystick fires. \"Robotron - 2084\" players will feel right at home playing this game, as the controls are identical. You have to defend your little vector spider around her vector web in order to keep out all the deadly bugs. Shoot down bugs and they turn into bonuses. Watch out for eggs, if you see any eggs, then you should quickly push them off the web before they hatch. Other enemies include mosquitoes, beetles, and hornets.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/bzone.txt",
    "content": "Battlezone is a classic one-player first person 3-D wire frame shoot-em-up in which the player controls a tank patrolling a dangerous war zone. Set in a valley surrounded by mountains, the aim is to destroy as many enemy tanks as possible, while avoiding return fire and destroying or avoiding the homing missiles that occasionally appear. \n \nEnemy tanks come in two varieties; standard slow-moving tanks and fast-moving 'Super Tanks'. A single hit taken from either an enemy tank or homing missile will result in the loss of a player tank. A flying saucer also occasionally appears but does not attack the player and can be either ignored or destroyed for bonus points. \n \nA radar screen at the top of the play area shows the current position of any enemy tanks or missiles within range, and the war zone is littered with indestructible pyramids and boxes that can provide temporary cover. Only a single shot is allowed on screen at any one time so accuracy of shots is vital to survival.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/cabal.txt",
    "content": "Cabal is a war themed shoot-em-up with one or simultaneous two-player gameplay in which two unnamed commandos must battle through five different stages - each containing four screens of play - to reach and defeat an evil dictator. \n \nThe game is an into-the-screen shooter with the action viewed from an over-the-shoulder perspective. The commandos can move left and right to avoid incoming fire while the enemies themselves are targeted by moving an on-screen cross-hair over them and pressing fire. If the fire button is held down, the commando remains static, allowing for more accurate targeting of the cross-hair. While static, the commandos are vulnerable to incoming enemy fire. \n \nInitially, the commandos are armed with only a standard single-shot gun (albeit with unlimited-ammunition) and a limited number of grenades, but additional grenades and weapon power-ups can be earned as play progresses. \n \nAs well as enemy troops, vehicles such as tanks, armoured cars and helicopters also appear and take numerous shots to destroy. When destroyed or killed, some on-screen targets release points bonuses and weapon power-ups that drop to the bottom of the screen and can be picked up by the commandos. Weapon power-ups include additional grenades, a rapid-fire machine and an automatic shotgun, which has a slightly lower firing rate but has a larger targeting cross-hair, allowing it to strike a wider area with each shot. \n \nEach of the game's screens is littered with buildings and barricades that can also be destroyed. This removes enemy cover as well as earning players bonus points.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/candance.txt",
    "content": "Osman is a side-scrolling action platforming game produced by Mitchell Corp. that was released exclusively to arcades in 1996. Many ex-Capcom staff including Kouichi Yotsui (credited as Isuke), worked on the original arcade version of Strider and designed Osman as an unofficial sequel to Strider. Yotsui directed both titles. \n \nIn contrast to Strider's futuristic Kazakh-Soviet setting, Osman is set in a neon-lit cyberpunk Arabian setting, while Strider Hiryu is replaced by a Middle Eastern protagonist named Kirin who fights without any weapons.The game's bizarre plot supposedly mocks director Kouichi Yotsui's experience at Capcom after Strider. \n \n\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/captavnu.txt",
    "content": "A side-scrolling beat'em up (punctuated with occasional shoot'em up sections) in which one or more players take on the role of either Captain America, Iron Man, Vision, or Hawkeye as they prepare to do battle with Red Skull and his henchmen. Each player character has a different weapon or power that can be used throughout the game to assist them in combat. Captain America uses his shield, Iron Man uses his repulsor rays, Vision uses his solar beam and Hawkeye uses his bow and arrows. There are also additional superheroes such as Quicksilver, Sub-Mariner, Wonder Man, and The Wasp who appear at certain points in the game to assist the player characters. Some of the super-villain foes that await the heroes are Klaw, The Living Laser, Whirlwind, The Grim Reaper, The Wizard, The Controllers, The Mandarin, The Juggernaut (from X-Men), Ultron and Crossbones. The game consists of all five stages.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/captcomu.txt",
    "content": "Captain Commando is set in a crime-ridden future in the year 2026, where a superhero named Captain Commando, assisted by his three faithful Commando Companions rise up to protect the Earth and all the Galaxy from a gang of super-powered criminals.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/cawingu.txt",
    "content": "Carrier Air Wing / U.S. Navy is a horizontally-scrolling shoot-em-up for one or two players set in the 1990s, a decade of great change marked by growing friendships between old enemies and never before seen levels of co-operation between powerful nations of the world. However, in 1997, using new weapons designed in secrecy, the Middle Eastern country of 'Rabu' threatens to destroy this new and fragile peace.  \n \nPlayers chose to pilot any one of three different jet fighters and must battle their way through ten enemy-packed stages. Each fighter has a fuel bar which is full at the start of each stage but gradually decreases, additional fuel is lost each time the fighter takes damage from an enemy.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/cbuster.txt",
    "content": "Crude Buster  1990 Data East.\n\nIn the near future, ruthless gangs are the new rulers of the streets. Only a brave duo of seasoned street brawlers can end this terror and return peace to the streets. Don't forget to grab and use anything you can find as a weapon (pipes, stones, signs, cars, even enemies!) to survive this onslaught. Features solid graphics & sound and very fun gameplay mechanics!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/ccastles.txt",
    "content": "Bentley Bear is trapped in the crystal castles! To get out, he must collect all the gems located in each castle. The game is played in a false 3D isometric view through multi-platform castles. When Bentley collects all the gems in the level, he moves on to the next, more difficult castle. Bentley will have to avoid a wide variety of dangerous creatures that roam the levels. Occasionally a magic hat will appear. If Bentley collects the hat, he will be temporarily invincible.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/cclimber.txt",
    "content": "Crazy Climber is a 2-D, strategy style game. The game is strategic in the fact that you must plan your moves as you climb up the building and anticipate the hazards that await you. You start out the game at the bottom of a building to be scaled. As you climb up the building, you will be assailed by bald people throwing flowerpots, signs with loose electrical wires, very large apes, falling signs, trash and barbells, and a bird that likes to drop bad things on your character. Your goal is to make it to the top of the building and catch the helicopter, which will transport you to the next building to be scaled. Of course, you will be rewarded for quickly making it up the building by getting a bonus (that is as long as you can catch the helicopter). The things one does for publicity.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/centtime.txt",
    "content": "Centipede is a vertically oriented single screen shoot-em-up in which the aim is to use the 'Bug Blaster' to shoot the centipedes that snake down towards the bottom of the screen to amass as high a score as possible.  \n \nThe play-field is littered with randomly placed mushrooms and the rapidly descending Centipede changes direction when it runs into a mushroom. When a segment of the Centipede is shot, the segment is destroyed and a mushroom appears in its place, the Centipede then breaks into two smaller centipedes, each with its own head, and continues its descent.  \n \nPlayers can move the Bug Blaster vertically as well as horizontally, although only for the lower fifth of the play-field. Mushrooms can also be shot for points and to clear blocked areas. Once a Centipede reaches the bottom of the screen, it starts snaking back up, but remains within the lower section of the play-field near the player's Bug Blaster. \n \nAdditionally, any Centipede that reaches the very bottom of the screen without being shot releases its tail section which then becomes a new head. Other new heads also enter the screen from the bottom corners of the play-field as time progresses. \n \nRandomly moving Spiders also appear in the first wave. Spiders can destroy any mushrooms they move over, eliminating many mushroom targets for a player. If the Bug Blaster and a Spider collide, both are destroyed. the Spider either moves at a 45-degree angle or vertically up and down, never simply left or right like the centipede does. \n \nA bombardment of Fleas appears from the second wave onward. As a Flea descends, it leaves a trail of new mushrooms behind it. Fleas appear when a certain number of mushrooms remains at the bottom of the screen. This number increases as the game progresses, meaning Fleas appear more often later on in the game. The Bug Blaster must hit a Flea twice to destroy it; the first shot simply speeds up its descent. \n \nWhen a Centipede with fewer than eleven segments appears, a Scorpion enters from either side, moving at a relatively slow speed. As the player earns more points, the Scorpion's speed increases. As the Scorpion travels across the screen, it 'poisons' the mushrooms that it moves over and changes their colours. These mushrooms cause any Centipedes that would collide with them to head straight towards the bottom of the screen, rather than continue snaking left and right. The Bug Blaster can stop a poisoned Centipede by shooting its head. \n \nIf a player earns at least 60,000 points, two things happen to increase the challenge: the Fleas descend at a faster speed and the Spiders restrict their movement to a smaller area at the bottom of the screen.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/chasehq.txt",
    "content": "\"Chase H.Q.\" is a checkpoint-based racing game in which the player takes on the role on an undercover cop called Tony Gibson in this 'Miami Vice' inspired game from Taito. Gibson drives a powerful unmarked police car (resembling a Porsche 911) along with his partner, 'Raymond Broady' and must chase down and apprehend various criminals. \n \nThe player has between fifty-five and seventy seconds (depending on the game's 'Dip' settings) to catch up with the fleeing criminal, then the same time period again to repeatedly ram into the criminal's car until it is too damaged to drive. The criminal's car is constantly moving away, so if the player repeatedly crashes or drives too slowly, the criminal will escape and the game ends.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/chinagat.txt",
    "content": "China Gate is a 2D side-scrolling beat 'em-up game with platform elements for one or two players. The game offers a roster of three characters to choose from who have to recover a stolen book. These are the monkey man Gocoo, pig man Hakai and bird man Gojou. There are 3 buttons, one to jump, another to attack and another for power-ups. There is a limited time to defeat the numerous enemies that appear and jump through the platforms to harm the player. At the end of each level there is final boss. It is possible to obtain power-ups like beams that neutralize all the visible enemies of the screen.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/chplft.txt",
    "content": "The player assumes the role of a combat helicopter pilot. The player attempts to save hostages being held in prisoner of war camps in an unnamed enemy country. The player must collect the P.O.W.s, transport them safely to the nearby friendly base, all the while fighting off hostile tanks and other enemy combatants. There are a total of 32 hostages per level. To rescue more than 20 will advance the player to the next level.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/circusc.txt",
    "content": "Circus Charlie is a single-player abstract platform game in which the player must guide the eponymous Charlie through six different circus events. Bonus points can be won by finishing a level as quickly as possible, with further points awarded for collecting any of the money bags that occasionally appear. \n \nFinally, additional bonus points are awarded for completing a level without losing a life. The game is over when all Circus Charlies are lost. \n \nThe six different events are: \nRide a lion and jump through fiery hoops and over blazing pots.  \nJump over monkeys while walking a tightrope.  \nBounce on trampolines, avoid fire breathers and sword jugglers.  \nJump on giant, rolling beach balls.  \nRide a horse while avoiding obstacles.  \nTrapeze.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/citycon.txt",
    "content": "The player controls a small red car and dripping paint must jump between platforms to paint them in.  Oil cans are collected and used to shoot at:  police, taxis, ambulances and jeeps; that roam the levels. Catch 3 balloons to advance multiple levels.  Cats must be avoided at all costs.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/columns.txt",
    "content": "Columns is a Tetris-style puzzle game in which you stack falling jewels in order to created a chain of three of the same colored jewel.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/commandu.txt",
    "content": "Commando is a vertically scrolling shoot'em up in which the player takes on the role of a highly trained commando soldier called \"Super Joe\", who starts the game by being dropped off in a jungle by a helicopter.  \n \nJoe's mission is to rescue captives and destroy the enemy bases and strongholds that appear at the end of each level, killing as many enemy soldiers as possible in the process.  \n \nThe end-of-level strongholds see waves of enemy soldiers ordered to attack by a cowardly officer, who immediately runs away. Shooting the fleeing officer earns the player bonus points. Along the way, players can attempt to free prisoners-of-war by shooting their enemy guard escorts as they are transported across the screen. \n \nSuper Joe carries only two weapons: a limited-range machine gun with unlimited shots, and a limited supply of hand grenades. Extra grenades can be picked up as the player progresses through the levels.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/congo.txt",
    "content": "Congo Bongo is an isometric platform game and is Sega's take on Nintendo's legendary \"Donkey Kong\". The game begins with an animated cut-scene showing Bongo the gorilla as approaches the campsite of a sleeping safari hunter and\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/contra.txt",
    "content": "In 2631, a meteorite strikes the Galuga archipelago near New Zealand, carrying with it a dormant alien being. Two years later, a terrorist organization calling themselves Red Falcon takes over the island as part of their plot to invade the Earth. Bill Rizer and Lance Bean, of the Contra unit, are sent to the Oceania island to stop the evil threat. \n \n'Contra' is a hectic one or two player platform shoot-em-up featuring 10 stages. In addition to the standard side-view levels, there are also \"3D maze\" stages in which the player must proceed through a series of corridors inside an enemy base, destroying various sensors, in order to reach the core of the base. \n \nEach player's character is equipped with a semi-automatic machine gun with an unlimited amount of ammunition and can jump, move and fire in all eight cardinal directions. Players can also move and jump simultaneously while firing. Co-ordination of the character's movement is essential as a single hit from any enemy, bullet, or other hazard will instantly kill the player's character and also eliminate the current weapon from the player's inventory. \n \n\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/crimfgt2.txt",
    "content": "Crime Fighters is a beat-em up arcade game where your job is to rescue several women that have been kidnapped by a crime boss and clean up the streets by pummeling as many gang members as possible with your bare hands, as well as anything else you might possibly discover. You will travel through eight levels throughout the city, in locations that range from subways to the docks. \n\nAt the end of every stage is a fight with a boss character, many of whom happen to be knockoffs of famous horror movie antagonists like Freddy Kruger and Jason Voorhees. Scoring is handled by a system wherein you simply get a point for every enemy you kill. Occasionally examples of cartoon physics pop up, such as when your character gets squashed flat by a moving steamroller or a falling billboard.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/crsword.txt",
    "content": "As a knight, you must travel the countryside fighting monsters and bandits using your sword and shield. When you enter combat the view changes to a pseudo 1st-person perspective where the body of your knight is outlined so that you can see the creatures that you are fighting. When enemies have been defeated, they drop money and power-ups. There are seven chapters in the game, and each chapter (except one) starts with you entering a merchant's shop and buying weapons using the money that you have collected so far. There are also alternate paths which take you to different parts of the game. At the start of the game, you may choose a chapter (from one to three only) you want to start at.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/ctomaday.txt",
    "content": "A comical vertically scrolling shoot'em up starring a mutated tomato who punches the enemy and can transform to other weird characters.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/ctribe.txt",
    "content": "Three player simultaneous melee battle in which larger-than-life fighters battle against rival gang members. As well as being able to pick up objects such as motorcycles etc. and throw them at the enemies, players also have a number of interesting fighting moves that can be unleashed upon their opponents. These include picking up unconscious enemies and hitting OTHER enemies with them, as well as banging two enemies' heads together and smashing recumbent enemies' heads into the ground to finish them off.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/cyberlip.txt",
    "content": "Cyber-Lip is a 1-2 player side-scrolling game where you must fight your way through several areas, and defeat a boss at the end of each one. Along the way, you can pick up a variety of weapons along the way, and use them against the invaders. By destroying certain enemies, you receive a \"core bot\", which is a ring that surrounds you, and when this touches the invaders, they are destroyed. Time is against you. When it expires, you lose a life.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/cybots.txt",
    "content": "Near the end of the 21st century, Earth begins to become overpopulated, leading to many people living in man-made space colonies. The primary army of Earth called \"Earth Corps\", has been conducting nefarious experiments and their work, along with the actions of the playable characters, will determine Earth's future.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/cyvern.txt",
    "content": "Take control of 3 artificially enhanced elemental dragons and battle against tons of enemy airships and hulking bosses in this excellent overhead shooter. Features awesome graphics & sound effects as well as responsive controls and a high level of challenge.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/darkseal.txt",
    "content": "Fantasy hack and slash game in which up to four people can play at the same time, choosing from three stock fantasy characters (Knight, Wizard and Bard) and, for some reason, a Ninja. Players must then fight their way through enemy-packed levels, plundering treasure and avoiding the game's many traps. Gameplay is highly reminiscent of Atari's legendary 1985 classic, \"Gauntlet\".\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/dassault.txt",
    "content": "The players control one of four soldiers, in his mission must grab machine guns or other projectile weapons, throw grenades and shoot their way through the terrorist arsenal, you could make uses of some war vehicles, while you save the hostages and reach to  terrorist lair and stop the leader and his evil plan of launch a missile of chemical arms  containing deadly spores, stop it before it's too late the world needs you soldier.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/dbreed.txt",
    "content": "Zambaquous has done everything to make life hell for the people of Agamen, and as their King Kayus, the time has come to head out to destroy him. This leads to six levels of horizontally-scrolling shoot 'em up action, although with some vertical movement as well. \n \nThe thing which sets the game apart from every other horizontally-scrolling shoot 'em up (except Saint Dragon) is that you are riding on the back of a dragon, called Bahamoot. Both you and the dragon have firepower, and holding down the fire button increases Bahamoot's energy bolt's ferocity. The dragon's tail can be controlled indirectly, and because it is indestructible, it can be used either as a shield, or as a weapon in its own right. \n \nThere are power-ups to collect by dismounting from the dragon and walking into them. These include fiery breath, bolts shot from Bahamoot's tail, homing missiles of sorts, and lightning bolts, with only one ever active at a time. Each level has a time limit.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/ddcrew.txt",
    "content": "There's a massive terrorist plot underway and your country is under threat from a new and deadly evil. You must become one part of a 4 man wrecking crew and hit the streets to take the awesome fighting to the waves of terrorists baddies! Jump out of helicopters as you descend to the streets and fight terrorists all over the city - from down on the tarmac to up on the roofs! Punch and kick your way through everyone, collecting their weapons and using them when you can!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/ddragn2u.txt",
    "content": "Following his defeat at the end of the original Double Dragon, Willy, the leader of the Black Warriors, retaliates against Billy and Jimmy Lee by murdering their friend, Marian, leaving the brothers with the task to avenge her death. \n \nThe sequel to Double Dragon is essentially an upgraded version of the original game, but with with a two-way attacking system similar to one previously used in Technos Japan's 1986 arcade game \"Renegade\". Many of the attacks and combos from the original \"Double Dragon\" are retained, as well as new techniques including the invincible Cyclone Kick. \n \nThe stages and weapons are redesigned versions of items previously featured in the original game. There are a few new traps such as a bulldozer in the middle of Mission 3 and all of the transition sequences between stages are now done with the character entering the next level via a lift, making it impossible to carry one weapon to the next area. \n \nMost of the enemy characters return from the original Double Dragon, with some given facelifts, but the stage bosses are all new. The enemies are as followed: \nWilliams - Has a wilder face and longer hair. He can now run towards the player and do cartwheels. He throws his knives in mid-air and sometimes carry a shovel which he throws towards the player. \nRowper - Has a beard and eye-patch, but otherwise is more or less identical to his original self. He carries shovels and can sometime pick up large objects. \nLinda - She now has a mohawk and face paint. She can also jump off platforms and do the elbow strike against the player. In addition to the ball and chain, she also carries grenades and knives. \nOharra - A strongman with a clean-shaved face. Replaces Abobo from the first game and has the same attacks. \nBolo - A head-swap of Oharra with long hair and beard. Replaces the mohawked head-swap of Abobo from the first game. \nJeff - Same as his original self, but now carries grenades. \nBurnov - The boss of Mission 1. An obese wrestler whose face is concealed with a mask. He grabs the player and throws similar punches in the face. After dying, he will stand up and yell, disappearing in front of the player and leaving only his clothes. In later encounters, he will revive himself at least once. \nAbore - The boss of Mission 2. A huge suspender-wearing strongman with Terminator-like sunglasses. His slaps and shoulder tackles do massive damage to the player. \nChin Taimei - The boss of Mission 3. A Chinese martial artists armed with twin kali sticks. In addition to his energy-draining stick combo, he also has a jump kick and sweep kick. \nWilly - The boss of Mission 4. Looks like he does in the original game, but now dresses in red. He still uses the same machine gun from the first game. \nThe clone - After defeating Willy, the player will have to fight their character's evil self. This clone has all the techniques the player has, but can also throw energy beams and possess the player's body to drain his energy.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/ddragonu.txt",
    "content": "Double Dragon is a side-scrolling beat-em-up for one or two players, featuring twin brothers and martial arts masters, \"Billy & Jimmy Lee\". The brothers must defeat the savage street gang known as the 'Black Warriors' to rescue Billy's kidnapped girlfriend, Marian. Standing between the brothers and Marian are four huge, colorful and varied levels; each populated with a wide variety of thugs. \n \nMany of the game's enemies carry weapons (knives, baseball bats etc.) and should Billy or Jimmy manage to knock the weapons from the enemies' hands, the heroes can pick the weapons up and use them against the enemies. \n \nThe Black Warriors is made up of six distinct enemy characters- plus Willy, the game's final boss - with each differing in both physical appearance and fighting style. The members of the Black Warriors consist of the following fighters:  \nWilliams - A street punk in a tank top. In addition to the standard punches and jump kicks, his signature technique is a body blow to the stomach. He also wields weapons such as baseball bats, knives and dynamite sticks. \nRowper - A punk who wears matching-colored pants and shirtless vest. He wields all the same weapons as Williams, but can also lift and throw heavy objects such as oildrums, boxes and stones. \nLinda - Female punk who usually carries a whip. She's not very strong, as she falls down to ground with a couple of punches or a single kick (because of this, she is the only regular-sized enemy who cannot be placed on a headlock). \nAbobo - A tall, big-muscled bald guy. His attacks includes punches, a standing kick and a body toss. He can also lift and throw heavy objects like Rowper. Due to his large size, he cannot be put into a headlock. \nBoss 1 - The first boss, a head-swap of Abobo with a Mr. T-style mohawk and beard. Fights just like Abobo, only with an added double-handed slap. Unlike Abobo, he does not use weapons. A green version of him appears as the Mission 3 boss. \nBoss 2 - The second boss. A head swap of the player who uses almost all the same techniques.  \nWilly - The game's final boss, armed, somewhat unfairly, with a machine-gun. \n \nDouble Dragon was a huge success due to the many game-play innovations it brought to the genre (see TRIVIA for details), but it demonstrates its final moment of inspired genius at the very end of the game. Should both players still be alive after the final boss has been defeated, they will then have to fight each OTHER. The winner of this fight will be the one who wins Marian's affections.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/ddsomu.txt",
    "content": "Dungeons & Dragons: Shadow over Mystara is an arcade game developed and published by Capcom in 1996 as a sequel to Dungeons & Dragons: Tower of Doom. It was also released on the Sega Saturn, packaged with Tower of Doom, under the title Dungeons & Dragons Collection. The game is set in the Dungeons & Dragons campaign setting of Mystara. It was one of the last 2-D arcade side-scrollers created by Capcom; only Battle Circuit (1997) came after Shadow over Mystara.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/ddtodu.txt",
    "content": "Dungeons & Dragons: Tower of Doom is the first of two video games created by Capcom based on the Dungeons & Dragons tabletop role-playing game. The game was also released on the Sega Saturn, packaged with its sequel, Dungeons & Dragons: Shadow over Mystara, under the title Dungeons & Dragons Collection, although the Saturn version limited the gameplay to only 2 players. The game is set in the Mystara campaign setting.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/deadconx.txt",
    "content": "Mobsters & criminals own the streets. Law enforcement has taken a backseat against the criminal empire that overwhelms the city and innocent people turn up dead with each passing moment. Take control of 4 brave vigilantes and exterminate the criminals using their rules! Features excellent sound effects as well as fast & furious action with plenty of weapons & stuff to find!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/defendg.txt",
    "content": "Defender is a legendary sideways-scrolling shoot-em-up - the very first of its genre - in which the aim is to pilot a laser-firing spaceship and protect humanoids stranded on the planet's surface from swarms of alien abductors. \n \nA long-range scanner at the top of the screen shows the positions of both the humanoids and the attacking aliens. The ideal strategy is to shoot down the alien ships before they reach the humanoids. If a humanoid is captured, the alien abductor can still be destroyed, but the player must then catch the falling humanoid and return it to the safety of the planet's surface before it falls to its death. \n \nIf an alien is allowed to carry its victim to the very top of the screen, the humanoid will mutate, becoming a permanent part of the alien that captured it. This new and deadly mutation will then immediately join in the alien attack. \n \nThe challenge becomes more intense as action progresses. Fighter ships and their mines will soon join the abductors. There are also mother ships that must be destroyed; these are particularly difficult as a direct hit smashes the mother ship into a swarming mass of mini-ships that must also be wiped out. Throughout the entire mission, the player must act quickly or face possible destruction by the cosmic baiter, a fast and dangerous enemy. \n \nPlayers have two escape options to use as a last resort. The first is the 'smart bomb', which destroys all on-screen enemies. The second option is 'hyperspace', which randomly teleports the player's ship to another part of the level. This is highly risky as it may place the player's ship in a position more dangerous than the one it left. \n \nIf all humanoids are successfully abducted, the planet will explode in a blinding flash and the waves remaining until the next planet is reached take place in outer space, and consist solely of destroying enemy waves.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/digdug.txt",
    "content": "Dig Dug is single screen action game in which the player must dig horizontal and vertical tunnels to reach and eliminate the underground-dwelling monsters living there. This is achieved by either inflating them with an air pump until they explode, or by dropping rocks onto them. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/digdug2.txt",
    "content": "For this sequel to the 1982 classic, \"Dig Dug\", Namco changed the game's perspective from a cutaway side-on viewpoint to an overhead one. The action now takes place on a series of small islands, the gameplay itself retains much from its predecessor, with Dig Dug still being chased by the 'Pookas' (round, goggle-wearing red enemies) and the 'Fygers' (green, fire-breathing dragons). \n \nAs with the first game, Dig Dug is still armed with a pump that allows him to inflate and burst the enemies. For the sequel, however, he is also armed with a jackhammer. This can be used at the round ground-pegs scattered around each island to create and connect up fault lines in the ground. If both ends of a system of faults reaches the water, the ground surrounded by them will sink into the ocean killing all creatures on it, including Dig Dug himself if he is standing on the destroyed section of land.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/dimahoo.txt",
    "content": "The game is set in a futuristic environment with dragons, little turtles with lasers on their back, and little green goblins with red eyes. The player picks one of four friends to travel with. The two characters fly through the levels in the game and collect items. Each item has a point value and the points are used to fill up a chart at the end. The items include: food, swords, armors, boots, etc. Towards the end of the game, the bosses become incredibly hard. The fast backgrounds create a confusing state of mind for the player.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/dinou.txt",
    "content": "The plot is based on the comic Cadillacs and Dinosaurs and takes place in the \"City In The Sea\" and its neighboring nearby jungle. The story starts 500 years from the 20th century, when an ensemble gang called the Black Marketeers begin hunting the dinosaurs to serve their unknown purpose. The continuous hunting process has made the dinosaurs violent and now they have started attacking villages and people. In order to get things sorted again, mechanic and shaman Jack Tenrec, diplomat and explorer by profession Hannah Dundee, friend and engineer Mustapha Cairo, and mysterious Mess O'Bradovich have decided to teamp up against the evil deeds of the Black Marketeer. The protagonists reach \"the City in the Sea\" where they suspect the whole hunting network being operating from.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/dkong3.txt",
    "content": "Stanley is a bugman. Donkey Kong has taken refuge in his greenhouse and it is now up to Stanley to stop the ape from stirring up any more insects that will soon destroy his flowers. Stanley saves the flowers by spraying bug spray on Donkey Kong.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/dkongjr.txt",
    "content": "Fate has turned the tables on the inimitable Donkey Kong. \n \nAfter Mario saved the Beautiful Girl from the lustful clutches of Donkey Kong, he led the brokenhearted ape into captivity, locking him behind steel bars, never again to strut his stuff before the fair maidens of the world. \n \nAs the frustration of confinement enrages Donkey Kong, Mario complacently stands guard over the cell, holding the sought after key to freedom. \n \nBut wait! Unbeknownst to Little Mario, Donkey Kong has produced an offspring - Donkey Kong Junior! A death-defying little monkey, shrewd and cunning, who resists all enemies to rescue Papa Donkey Kong. \n \nAs Mario's brigade of snapping jaws, ape-eating birds and energy pods launch their offensive, Junior bombards them with a fusillade of Fruit Bombs that aim to annihilate his every foe.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/dkongo.txt",
    "content": "EVERYONE'S GOING APE OVER DONKEY KONG! \n \n\"HELP! HELP!\" cries the beautiful maiden as she is dragged up a labyrinth of structural beams by the ominous Donkey Kong. \"SNORT. SNORT\" Foreboding music warns of the eventual doom that awaits the poor girl, lest she somehow be miraculously rescued. \"But, wait! Fear not, fair maiden. Little Mario, the carpenter, is in hot pursuit of you this very moment\" \n \nThrowing fate to the wind, risking life and limb, or worse, little Mario tries desperately to climb the mighty fortress of steel, to save the lovely lady from the evil Mr. Kong. Little Mario must dodge all manner of obstacles - fireballs, plummeting beams and a barrage of exploding barrels fired at him by Donkey Kong. \n \nAmidst me beautiful girl's constant pleas for help, your challenge is to maneuver little Mario up the steel structure, while helping him to avoid the rapid-fire succession of hazards that come his way. \n \nAs little Mario gallantly battles his way up the barriers, he is taunted and teased by Donkey Kong, who brazenly struts back and forth, beating his chest in joyful exuberance at the prospect of having the beautiful girl all to himself. It is your job to get little Mario to the top. For it is there, and only there, that he can send the mighty Donkey Kong to hit mortal doom. Leaving little Mario and the beautiful girl to live happily ever after. \"SIGH. SIGH. \n \nSo, if you want the most exciting, most fun-filled, most talked about family video game on the market, don't monkey around with anything but the original Donkey Kong.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/docastle.txt",
    "content": "The player controls a clown, named Mr. Do!. Mr. Do is in his garden, and wants to collect the cherries there. Monsters roam there, and will not let Mr. Do quietly collect. If a monster touches Mr. Do, it dies, and the player loses a life. At each level a path is dug through the garden, going from the bottom to the top of the screen, passing through the center. Monsters can only take paths that have already been dug. Mr. Do is able to dig new paths, at the cost of slower movement speed.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/dogyuun.txt",
    "content": "Dogyuun is an arcade Shoot 'em Up. \n \nThe plot is somewhat vague, except that it involves two pilots destroying aliens after an alien mecha kills the reconnaissance ship leading them. \n \nOne interesting feature of the game is the ability in Co-Op Multiplayer for player 1 to combine with player 2, producing a larger ship with better firepower. The game also features loads of homing lasers and large bosses.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/dondokod.txt",
    "content": "Don Doko Don is a platform game where you play a bearded dwarf with a mallet as your only weapon. Very abstract colors, talking trees, cute graphics and sounds. The object is to defeat all the enemies and advance to the next round which reveals more and different enemies.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/donpachi.txt",
    "content": "An excellent vertically scrolling shoot'em up. The player assumes the role of a pilot who is sent by their squadron to fight their former allies until one side destroys the other, all of which is a part of a mission to strengthen the military power that controls each side. The player flies their selected fighter over 5 areas of various terrain, encountering a number of land, sea and air enemies. The player's ship has two modes of fire: by tapping the fire button, shots are fired; holding it down produces a concentrated vertical beam, but also reduces the ship's speed. \n \nThe player can choose one of 3 aircraft at the start of the game, or upon continuing: \nType A: A red (or yellow/orange, for player two) fighter, which fires a narrow stream of shots \nType B: A green (or purple, for player two) helicopter, which fires its main guns forward, but has side guns that rotate in the direction of movement \nType C: A blue (or black, for player two) fighter, which fires a wide, three-way spread of shots\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/doubledr.txt",
    "content": "Released around the same time as the film of the same name and loosely based on its story, this installment in the Double Dragon series also moves away from the traditional roam-the-streets-fighting to a pure one-on-one fighter. There are ten characters to choose from, including Billy and Jimmy and the game has colorful interactive backgrounds, screen zooming, over-the-top special moves and with the inclusion of double jumps, combos, charges for the losing player and counter hits, there is plenty of room for advanced fighting strategies.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/drtoppel.txt",
    "content": "Dr. Toppel's Adventure is a cutesy vertically scrolling shoot'em up where you play as a cute green creature.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/dsaber.txt",
    "content": "Dragon Saber is a less known sequel of Dragon Spirit. Gameplay-wise, little has changed from the original, as both games are vertically-scrolling shoot 'em ups putting you in control of a dragon. You are flying over built-up land, complete with rivers and their banks. The enemies and waves can be shot or avoided - shooting them reveals extra points as well as the occasional power-up. Ground units are shooting at you but can't be shot back, so be careful which parts of the screen you occupy at which times.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/dstlku.txt",
    "content": "People tremble in fear of these monsters. A mysterious force awakens them from their long slumber. 'Arise and show your fangs!' The silence of the night is broken by the growls and roars of these evil spirits which have been summoned from beyond. They are coming... tonight! DarkStalkers - the warriors of the night! \n \nDarkStalkers features spectacular fighting between supernatural monsters with 4 TIMES the graphics of SFII (its 15,000 animation patterns put it way out in front of SSFII Turbo, resulting in realistic movement with smooth animation). With endless playability you'll never tire of, make sport of your opponent with incredible moves like the Special Attack and Death Blow which are humanly impossible. We're talking about unlimited varieties of attack! \n \nThe unimaginable secret power of the dark is unleashed!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/dw.txt",
    "content": "This game is a side-scrolling beat-em-up based on Japanese manga books of the same name and is a re-enactment of the historical battles between the Kingdom of Shu and the Yellow Turban rebels. Up to two players assume the roles of one of the four Chinese generals riding on horseback whose goal is to wipe out the 'Huang Ching', the organization responsible for the unrest of the Han Dynasty, and to eventually defeat the tyrant, Dong Zhuo.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/ecofghtr.txt",
    "content": "Eco Fighters is a horizontal shooter, where the player controls a ship with a rotating gun. As suggested by both its titles, the game has an \"eco-friendly\" theme. It was also developed by the same team from two Mega Man arcade titles, The Power Battle and The Power Fighters.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/edrandy.txt",
    "content": "A fast moving platform game in which the player controls the Indiana Jones-esque and unfortunately named 'Edward Randy'. The levels are an inventive mix of standard platform action and 3-D scrolling levels; the latter usually having the player driving a jeep and repelling the enemy attacks. The game is based on the archetypal Hollywood action blockbuster and features a filmic score to back up the on-screen action. The player's only weapon is a whip - another nod to the Indiana Jones character - which can be used to both attack enemies and as a 'rope', to enable the player to reach distant platforms.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/eightman.txt",
    "content": "The super-hero must stop the destruction of a city at the hands of a giant robot and its maker. The object, as Eightman (or Nineman), is to move left or right punching enemies and fight a boss at the end of the level. In some levels, you are chasing after a vehicle while enemies jump out at you. Power-ups can be collected along the way, which, when collected will make your kicks and punches stronger as well as give you bombs which are used to damage all enemies. If a two-player game is in progress, a spark will be between them and their bomb power will be increased.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/elevator.txt",
    "content": "Agent 17 (code name 'Otto') is to secure the top secret documents from the security building. The enemy spies are in pursuit and their orders are to stop him at any cost. Having made it to the top of a 30 story building, Agent 17 has to make his way down to the basement to get to the getaway car and save the documents. Enemy spies are everywhere and the documents are hidden behind the red doors (bonus points awarded). He has to open the door and keep moving. If either of them shoots the lights out there will be a temporary blackout. If Otto finds himself on top of the elevator the player will not be able to control the elevator. If he gets caught in the elevator he is a sitting duck and cannot duck the bullets. By using the escalator he can reach the basement quicker. Otto can defeat his enemy by jump kicking or firing at them. Help Otto to grab all the documents and escape the spies.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/elvactr.txt",
    "content": "Elevator Action Returns is a scrolling platform shoot-em-up for one or two players who each take on the role of a special task force operative and must foil a terrorist group that has planted nuclear bombs in various facilities. Players must also obtain the secret intelligence data scattered throughout each facility in order to disarm the bombs.  \n \nThe objective of the game is to enter all of the red-coloured doors in each stage, then proceed to the exit. If players miss one of the red doors, they will be unable to progress beyond a certain point. There are also blue-coloured doors and entering these will award the player a special item, these include health refills, special firearms, sub-weapons and bonus points.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/enduror.txt",
    "content": "Enduro Racer is an off-road racing game in which players ride a dirt bike across five extremely hilly and twisting courses. Each course is littered with logs, rocks, trees and rival racers that must be either jumped over or avoided. \n \nJumps can only be performed at specific locations on each track. These locations feature a dirt ramp that spreads across the width of the track. Players must have the bike in the 'wheelie' position when the ramp is struck, the bike will then be launched into the air. If the bike is not in a wheelie position when the ramps are struck, the bike will still clear the ramp, but will land front-wheel first and crash. \n \nEnduro Racer is perhaps best remembered for its 'Wheelie' feature, which required the player to physically lift the cabinet's handlebars to raise the front wheel of the game's on-screen counterpart.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/exedexes.txt",
    "content": "Exed Exes is an arcade vertical shooter developed by Capcom. It was licensed to Memetron and released outside of Japan in the arcades as Savage Bees Memetron (licensor to the game). It uses similar hardware to Capcom's 1942, but it is more of a spiritual successor to Capcom's earlier shooter Vulgus. It takes place in a science fiction alien hive where you must pilot your ship through many stages protected by insects, some as large as your craft, and some even larger. \n \nWhat made Exed Exes stand apart from other shooters, besides the high resolution graphics for its time, and the detailed use of parallax scrolling to indicate depth, was the fact that it was one of the earliest vertical shooters to allow for two player simultaneous play. Rather than waiting for one player to take his turn, two players could enjoy the game at the same time, and even work cooperatively to get further along in the game.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/fantzn2.txt",
    "content": "Once again you control Opa-Opa, a pretty colored ship with wings on its side and must destroy the large creatures in each world before moving on to the next. Your task becomes difficult by other small creatures that happen to pass by. If you destroy a large creature, they will drop a dollar bill, which you can pick up and use at the shop to buy items and powerful weapons such as laser beams, x-way shots, and big wings. Another way to get money is to shoot certain kinds of enemies all in a row.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/fantzone.txt",
    "content": "The Fantasy Zone is under attack by an army of ruthless, yet undeniably cute, alien enemies. A fearless space fighter by the name of 'Opa-opa' (a craft that is as cute as the game's enemies, featuring wings and feet - the latter appearing whenever the player flies down to ground level at the bottom of the screen) must stop the alien invasion to restore peace to the Fantasy Zone, as well as finding his missing father, 'Opapa', in the process.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/fatfursp.txt",
    "content": "Fatal Fury Special is an improved version of SNK's 2D one-on-one fighter Fatal Fury 2. It's a conversion of the 1993 arcade game of the same name. The objective is still to win the tournament by defeating all other fighters including end boss Wolfgang Krauser. Fatal Fury Special features a fairly large selection of fighters. A new Count Down mode (defeat as many opponents as possible in 3 minutes).Extra color schemes for every character.New & improved background graphics.Dolby Surround Sound support.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/fatfury1.txt",
    "content": "Southtown City plays host to the King of Fighters Tournament. Andy & Terry Bogard take part in the tournament cause winning the tournament is the only way they can defeat Geese Howard. Geese Howard controls Southtown City and killed their father several years ago. Also taking part is Joe Higashi, a Japanese kickboxer. Select either Joe, Andy or Terry, visit several locations in Southtown City and win that tournament!\n\nFatal Fury is a 2D fighter and is the first game in a series of one-on-one fighting games by SNK. It's a conversion of the original Fatal Fury arcade game. This first game does not yet feature the series' trademark pseudo 3D mode (which allows you to move between the foreground & background while fighting). Includes a two-player vs. mode. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/fatfury2.txt",
    "content": "Again, the Lone Wolves return!\n\nGeese Howard may have been defeated, but that doesn't mean all is peaceful. A new opponent, Wolfgang Krauser, has come forth to begin a new Fatal Fury tournament. The Lone Wolves return, with new faces amongst them. Only one can be declared the winner though.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/fatfury3.txt",
    "content": "An adaptation of the Neo-Geo fighting game.  2-D scrolling one-on-one fighter with pseudo-3D aspects (that allows for players to \"escape\" holds, throws, and other attacks.)  Part of the incestuously-popular SNK fighting game pantheon... \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/fbfrenzy.txt",
    "content": "You'll never play another football game again, after you play Football Frenzy! Football Frenzy, with on-going play-by-play announcing, is hard-hitting action at its best! You will hear, in full stereo, every bone-crushing tackle and helmet-to-helmet, metal-on-metal hit. The piercing grunts and groans of players sacrificing their bodies for the team puts you right on the field with them! The camera zooms give you the most dazzling close-ups ever seen. So, bring your pads and helmet! Tournament mode, cinematic displays and over 10 teams to choose from make this football package complete. Play against the computer or a friend in this 46-MEG bone-jarring gridiron great... Football Frenzy!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/ffightu.txt",
    "content": "Final Fight can be played by up to two players simultaneously, with each player controlling a different character. Before the game begins, the player chooses between the three main characters, Guy, Cody, and Haggar, each with his own fighting style and attributes. Guy is the weakest but has faster attacks, Haggar is the strongest but also the slowest, and Cody has all-round attributes.\n\nFinal Fight consists of six stages or \"rounds\", as well as two bonus rounds. Each round takes place in a different section of Metro City such as the Slums and the Subway, with most rounds featuring more than one level. At the end of each round the player will face a boss character unique to that round.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/fightfev.txt",
    "content": "There are 8 characters to select from and two boss characters (the first boss character is only playable in two player mode). The object of the game is to win two matches out of three. Each character has a set of moves in addition to two basic punches and kicks. Each character also has a super move called a \"Danger Move\", which are similar to the Desperation Moves from Fatal Fury 2. Players also have the ability to taunt others, but unlike games such as Art of Fighting, this has no effect and would actually leave the player open to attacks.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/flicky.txt",
    "content": "Flicky is a side-scrolling platform game in which the player controls 'Flicky', a flightless bird who must collect her lost chicks - called 'chirps' - and guide them safely to the exit, represented as a door with Flicky's name shown above it.  \n \nFlicky must watch out for the house cats that emerge from cat-flaps and start roam the levels, as any contact with a cat results in the loss of a life. Any chicks that are touched by a cat will be separated from Flicky and must again be retrieved.  \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/flipshot.txt",
    "content": "Battle Flip Shot is an arcade game that mixes elements of Pong with Japanese character design.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/foodf.txt",
    "content": "Food Fight  1982 Atari.\n\nThe player, as Charley Chuck, must dodge all kinds of flying fruit and vegetables and try to eat an ice cream cone before it melts. How many ice cream cones can he eat? Your players will soon find out in this incredible video feast. As an ice cream cone melts on the other side of the screen, Charley Chuck just naturally has to go for it, But he must get past Oscar, Angelo, Jacques and Zorba, four chefs who unexpectedly pop out of holes, chase Charley Chuck and throw food at him. They all have different personalities and they're all out to stop Charley Chuck if he isn't fast enough. There are piles of tomatoes, peas, bananas, pies and watermelon Charley Chuck can use to defend himself from the persistent chefs. The player controls Charley Chuck with an analog joystick which allows 360 degree movement on the playfield, and a Throw button, used when Charley Chuck needs to throw food at one of the chefs.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/forgottn.txt",
    "content": "The planet used to be beautiful, with gorgeous cities and gleaming countrysides. Until the Aliens attacked! With fire, bombs, and napalm they devastated the world! They made the planet so abominable that it became an outcast in the universe - the Forgotten World. Until you, the Nameless One, appear. You're a Super Warrior of incredible power and energy. You make it your business to reclaim the panet for its rightful owners - the Human Beings!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/frogger.txt",
    "content": "Frogger is a one or two-player game in which players must overcome a number of hazards to safely guide the green amphibian from the bottom of the screen to one of five home bases situated at the top of the screen. \n \nA round is completed once five frogs have been guided safely home, after which the next round begins with an increased level of difficulty. This includes faster-moving vehicles on the road section and new, deadly hazards on the river section, including crocodiles, otters and snakes.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/funkyjet.txt",
    "content": "In this game, you play with a character who has a jet-pack on his back (enabling him to fly in the air), while he is punching the badguys.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/ga2.txt",
    "content": "Like its legendary prequel, 1989's \"Golden Axe\"; 'Revenge' is sideways scrolling beat-em-up set in a traditional fantasy world, in which the evil 'Death Adder' has arisen to take over the lands. The game supports simultaneous four-player gameplay, with each player taking on one of the game's characters. The four available characters are 'Sternblade' (a barbarian warrior), 'Dora' (a female centaurian), 'Goah' (a giant with a dwarf sitting atop his shoulders) and 'Little Trix' (an agile, oriental-style warrior).\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/gaiden.txt",
    "content": "Ryu, the Dragon Ninja, travels the world to defeat evil wherever he finds it.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/galaga.txt",
    "content": "Galaga is a single-screen shoot-em-up in which the player controls a 'Fighter' spaceship and must defend the home planet against the on-coming hordes of alien invaders called \"Galagans\". The Fighter can only move left and right along the bottom of the screen.  \n \nGalagans fly onto the screen in a variety of formations before forming troop lines at the top of the screen. Once all troop lines are formed the Galagans separate and start attacking the player's Fighter in ones, twos and threes. The top-line Boss Galaga need to be shot twice before they are destroyed. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/galaga88.txt",
    "content": "Galaga '88 is an updated version of the old favorite, \"Galaga\", with more invaders and more player firepower. Galaga '88 gives players a chance to once again repel the invaders from the Galagan Kingdom. One or two players can try their hand at fighting the invaders. This time the Galagans have four more allies, each with unique weapons and defenses that a player must overcome.  \n \nBy destroying special enemies or obstacles the player can get 'items'. When a player has two items, they can warp to another dimension to confront more Galagan ships with new strategies. In the Challenging Stages (labelled in this game as 'That's Galactic Dancin'), the player shoots down as many invaders as possible as the Galagans dance to a waltz, tango, march or jazz tune.  \n \nThe player selects single or dual ship power. The objective is to destroy all the Galagan foes in each of the 29 sectors of the galaxy, with each sector more difficult than the last.  \n \nUnique Features:  \nMore opponents. In addition to Boss, Goei and Zako, the original Galagan crew, Don, Nin, Ban, and Gan have been added. Each of the Galagans has a unique way of challenging the players.  \nDifferent types of ships. Players can choose single or dual ships (if the game option is set for dual and single). When the player retrieves a dual ship from the Boss's tractor beam, it turns into a triple ship with ten times the power of a single ship.  \nChallenging Stages. In the 'That's Galactic Dancin' stages, the Galagan invaders dance to a waltz, tango, Sousa march or jazz tune, while the player shoots down Galagans to earn bonus points.  \nWarping to a new dimension. By destroying particular enemies or obstacles and capturing two of their items, the player can warp to the next dimension.  \nPlayer challenge. Each dimension has different mix of Galagans with different strategies to be overcome.  \nWin back captured ships. The player can win back ships captured in the Boss Galaga's tractor beam. When the player destroys the Boss, the ships are released. If the player retrieves them, the ships become dual ships if they were single and triple if they were dual.  \nHigh Score Mode. Upon completing a game, a player can enter his initials if they are among the top eight scorers on the game.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/galaxian.txt",
    "content": "Galaxian is a legendary single-screen shoot-em-up that took everything that made Taito's ground-breaking \"Space Invaders\" so good, and improved upon it on every level. Each screen starts with a wave of multi-colored aliens moving left and right at the top of the screen; the aliens quickly break ranks and start dive-bombing the Galaxip (player's ship) - either in single units or in groups of 3 - dropping multiple missiles as they descend. All of the aliens need to be destroyed before the player can progress to the next wave. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/galaxyfg.txt",
    "content": "People have prayed to the gods, but the devil descends from the sky. Your mission is to defeat Felden Kryse, ruler of the underworld. The fantastic challenge ferociously unfolds on eight different planets. Screen image changes on-the-fly to zoom in and out based on how the battle unfolds. Use Dash to your utmost advantage, and speed through the field of infinity.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/galmedes.txt",
    "content": "Galmedes is a vertical scrolling shooter arcade game released only in Japan.. The ship has two types of attack: the standard firing weapon and a charge attack. Once the player collects all three weapons, the player can select any of those weapons during combat. \n \nOn the alien planet of Gaston, a dictator named Gildy rose to absolute power. Gildy started a plan to take over his home solar system, but upon doing so, he decided to spread his influence. After conquering his home galaxy, the next galaxy that Gildy planned on invading was the Galmedes Galaxy. In response, the unified forces of the planets of the Galmedes Galaxy have created a powerful space fighter known as the LEPTON (Launched Electro-Projectile Thermal Osmotic Nullifier). Two pilots, Foo and Bar, are selected to launch the LEPTON fighters against the invading Gastonian Forces.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/gangwars.txt",
    "content": "2 street brawlers fight their way through a gang of hoodlums that like to laugh incessantly at you while they're beating you up! Features customizable statistics for your fighter.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/ganryu.txt",
    "content": "One month has passed since Musashi defeated his sworn enemy, Kojiro. Musashi was on the way to Kyoto, where his beloved Otsu was waiting for him. Around this time, many abductions had occurred by a mysterious group of ninjas, and Otsu was one of the missing. What is the true purpose of these ninjas? The time to fight has come again for Musashi!!\n\nYou must guide Musashi or his sister, Suzame, around several locations defeating a horde of ninjas with only a sword. Weapon power-ups and life bonuses can be collected along the way. You can jump high and use your grappling hook to attach to and climb some ceilings, as well as attaching yourself to faraway objects. At the end of each location, you must defeat a guardian in order to continue the game. Cut-scenes are viewed between locations.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/gaplus.txt",
    "content": "Gaplus is the third game in Namco's classic \"Galaxian\" series, Gaplus picks up where 1981's \"Galaga\" left off. While maintaining the same classic 'look' of its predecessor, Gaplus's graphics are a definite improvement over those of \"Galaga\"; the game's increased color palette and subtle use of shading making the attacking aliens look rather more solid.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/garou.txt",
    "content": "It's been several years since Geese Howard was defeated in a battle with Terry Bogard, a young man looking to avenge his father. Rather than looking to be saved from death after falling off his office balcony, Geese instead decided to die, and left behind his young son, Rock. Terry took Rock in and became like a big brother to him, raising the boy throughout his life.\n\nNow Rock is a teenager, and Terry is a man in his 30s, and both are about to come together in a new clash...new faces and old come together for the greatest battle yet! \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/gaunt22p.txt",
    "content": "Gauntlet II is a direct sequel to the legendary maze-based fantasy themed shoot-em-up, released a year earlier. Atari chose not to tinker with the core game-play mechanic to any great degree, opting instead to enhance the already excellent multi-player action that had created such a stir upon the original game's release. \n \nAs with its prequel, up to four players once again take on the role of either 'Thor the Warrior', 'Thyra the Valkyrie', 'Merlin the Wizard', or 'Questor the Elf' and must play cooperatively as they explore and fight their way through the enemy-packed mazes, collecting potions, food and treasure as they searched for the exit that would lead them to the next dungeon. \n \nChanges to the sequel included the ability for players to play whatever character they wanted, even if that character was already in play. Characters were now colour-coded and players would find themselves taking on the role of 'Blue Elf', 'Green Wizard', etc. New in-game speech was added to allow for the new player definitions. \n \nOther changes included the ability to 'bounce' shots off walls - known as 'Reflective Shots' - providing the correct potion was picked up. As well as new potions, Gauntlet II also featured several new monsters. The most notorious of the new additions was the Fire-breathing Dragon that guards the exit to some dungeons. This powerful creature takes multiple hits to kill and defeating it would see the players rewarded with a permanent potion and a bag of treasure. \n \nAnother notable addition was the 'It' monster: any player who was tagged by the creature would suddenly find that all of that level's monsters would ONLY chase the tagged player, completely ignoring the presence of all other players. The only way to remove this curse was to tag another player, thus making them 'it'. \n \nNew level elements were also added to further increase variety. These included dungeons with entirely invisible walls, magical walls (which changed into monsters or items when hit), stun tiles (which stunned any player that walked on them) and exits that flashed between functioning and non-functioning.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/gaunt2p.txt",
    "content": "Gauntlet is a maze-based shoot-em-up for up to four players. Heavily influenced by classic fantasy conventions, players take on the role of either Thor the Warrior, Thyra the Valkyrie, Merlin the Wizard, or Questor the Elf and must play cooperatively as they explore and fight their way through the enemy-packed mazes. Competitive play is encouraged as players must fight for the limited amount of food, treasure, magic potions and power-up items that litter the dungeons.  \n \nEach of Gauntlet's four characters have different strengths and weaknesses: Thyra has the strongest armour, Thor is best at hand-to-hand combat, Questor has the fastest speed and Merlin has the most powerful magic attacks. The object of the game is simply to survive as long as possible while exploring Gauntlet's mazes in search of treasure, food, magic potions and, ultimately, the exit that leads to the next dungeon.  \n \nThe potions - shown as blue bottles - that litter the levels offer either improved character abilities (such as 'speed' or 'extra shot power') or can be used as a 'smart bomb', destroying some or all of the on-screen monsters. Potions are also the only way to kill the game's 'Death' character that appears in many of the stages. Magic potions can be kept and used at the player's discretion by pressing 'Magic' button, although each potion can only be used once.  \n \nThe first seven mazes are always the same, but from level 8 onwards, players will find themselves on any one of over a hundred different mazes. If players survive for long enough, the mazes will be repeated in a different order. How long a player lasts depends upon the player's 'health' level. Health continually depletes as time progresses and further health is lost by contact with various monsters or their projectiles. Health can be replenished by consuming the food found in the mazes or by inserting more credits. The many treasure chests that litter the levels can be plundered for points, and collecting treasure increases a player's score multiplier when two or more players are playing the game.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/ghostb.txt",
    "content": "Adapted from the animated cartoon of the same name. Up to three players, each controlling a Ghostbuster, must run around a top-down universal scrolling terrain, shoot creatures and then try to suck up ghosts with their plasma guns. Players can shoot and then collect various power-ups, including a protective Aura, shot and beam boosters, and a \"Green Ghost\" Slimer shield satellite. Has interesting screen transition effects and a well-orchestrated version of the movie's popular theme song.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/ghostlop.txt",
    "content": "Ghost Lop is an excellent Ghostbusters themed puzzle game by Data East from 1996. It combines the fast action of an Arkanoid style game, with the quick thinking of a Bust-A-Move type game. The game was re-considered for release in 2001, but SNK's untimely demise later that same year may have ended that possibility. Data East was best known for its' Chain Reaction / Magical Drop series of puzzle games, and even later included the Ghostlop characters in one of the later releases for modern home game systems.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/ghoulsu.txt",
    "content": "Three years have passed since the events of \"Ghosts'n Goblins\" and the knight Arthur finds himself once again facing the horrible creatures of Demon World. This time the demons have invaded the kingdom and upon his return, Arthur is the only survivor, his beloved Genever having been killed by Lucifer. Arthur embarks once again on a quest to defeat the demonic invaders and save Genever's soul.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/gigawing.txt",
    "content": "'Medallions' are mystic stones sent from heaven, brought evolution to human technology and lead tremendous progress to the armories. To gain their powers which the 'Stones' hold for the promised victory, many nations fought over the mystic stones and reheated the world of war. Within all the 'Stones' is the 'Medallion of Wisdom', known as the power source of all mystic stones, it had enough energy to terminate humanity. The whole world was in despair. And now, four brave worriers have risen to fly straight into the combat zone! All four had different reasons, but their ultimate goal was the same: to destroy the Medallion of Wisdom! Fight to save the humanity! \n \nGiga Wing is a shoot-em-up set during a fictional war. The player controls one of four different futuristic aircraft and must destroy enemy aircraft, tanks, ships, and buildings using both guns and missiles mounted on the aircraft and a limited supply of bombs which damage or destroy all enemies on-screen when used.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/gijoeu.txt",
    "content": "Soldiers fight in a futuristic war against the army of an evil emperor. Unlike most army themed games, even trees and buildings can be destroyed if enough bullets are pumped into them.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/gnbarich.txt",
    "content": "Shoot back the enemy bullets! The breakout-like shooter with a variety of items and gimmicks! \n \nGUNBARICH is a breakout-like shooter game that first appeared in arcades in 2001. \n \nControl the flipper and shoot the pink ball = puck to break all the blocks to clear the stage. \n \nYou can set the difficulty level, life, number of continues, controls, screen orientation, item dropping speed, enemy bullet speed, and more. \n \nIn addition, now we have online rankings! \n \nBe the world's best GUNBARICH!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/gngt.txt",
    "content": "Ghosts 'n Goblins is a platform game where the player controls a knight, named Sir Arthur, who must defeat zombies, ogres, demons, cyclops, dragons and other monsters in order to rescue Princess Prin Prin, who has been kidnapped by Satan, king of Demon World. Along the way the player can pick up new weapons, bonuses and extra suits of armor that can help in this task. \n \nThe player can only be hit twice before losing a life. If the player loses a life, they are returned to the start of the level, or the halfway point if they have managed to get that far. Furthermore, each life can only last a certain length of time. After defeating the final boss, the player must then replay the entire game on a higher difficulty level to reach the genuine final battle.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/goalx3.txt",
    "content": "A soccer game with all the right ingredients, skill, flair, passion, and of course, GOALS! With 28 national teams to choose from, compete in a tournament to become the best soccer nation in the world. Get past the opening group stage and go on to a round-robin elimination stage where failure is not an option. To help you on your way, hold down the shoot button until the power bar fills up and you can do a POWERFUL SUPER SHOT!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/godzilla.txt",
    "content": "This arcade game has a few monsters that are playable, a few that can't be played as and a few that make cameos. All playable monsters in the 1 Player game (except for the one you play as) have many more abilities than what can be accessed in Battle Mode. All monsters can jump, jump and kick/punch, do a tail swipe, grab and throw, punch and kick, and block. Most have a beam weapon, though some don't. All playable monsters have alternate colors to distinguish between the same monster in muliplayer mode.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/goldnaxe.txt",
    "content": "Golden Axe is a sideways scrolling beat-em-up set in a traditional fantasy world, in which up to three warriors take up arms to rescue the kidnapped King and his Queen from the evil Death Adder. \n \nThe game's three different playable characters are an Amazonian warrior named Tyris Flare, a Barbarian hero named Ax Battler, and a Viking dwarf named Gilius Thunderhead. Each character has a special attack move that is activated by pressing both JUMP and ATTACK at the same time. Also, double-tapping the joystick right or left will make the character charge and smash into opponents.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/gorf.txt",
    "content": "The player's goal is to defeat the Gorfian Empire and safeguard the future of mankind. Gorf is a single screen shoot-em-up in the classic \"Space Invaders\" mould, the prime difference being that Gorf offers five distinct levels of shooting action. The levels are as follows:  \n \nMission 1 - Astro Battles: The first mission is more or less a straight clone of \"Space Invaders\", set against a sky-blue background. The player is protected by a glittering parabolic force field, which is gradually worn away by enemy projectiles. The force field also works in BOTH directions, and therefore must momentarily deactivate in order for the player's ship to fire out. To advance to the next mission, the player must destroy all the invaders.  \nMission 2 - Laser Attack: The other missions are all set in space. In this mission, the player is faced with two formations each made up of five enemies. The formations are cross-shaped, and at the bottom of each formation is a single laser gun. The laser guns fire a long, dangerous yellow beam at regular intervals. At the same time, the other enemies may break formation and attempt to dive-bomb the player. Destroying a laser gun causes the corresponding formation to break apart. To advance to the next mission, the player must destroy all the enemies.  \nMission 3 - Galaxians: This mission is a clone of \"Galaxian\". The player is faced with a swarm of galaxians, which continually dive-bomb and shower the player with deadly projectiles. To advance to the next mission, the player must destroy all the galaxians.  \nMission 4 - Space Warp: A wormhole is situated in the middle of the screen out of which enemies ships emerge, one at a time, and spiral outward at increasing speed; whilst growing larger and flinging fireballs at the player. The Space Warp level would have an influence on Konami's superb \"Gyruss\", released two years later. To advance to the next mission, the player must survive a number of these enemies.  \nMission 5, Flag Ship: The final mission is a one-on-one confrontation with the alien Flag Ship itself. The Flag Ship is one of the earliest examples of the 'boss' enemy in mainstream video games. It is equipped with its own force field, through which the player must blast in order to get a clean shot on the ship. It is also armed with a powerful fireball weapon. The player's weapon has a minor effect on the Flag Ship's hull, and can only blast off tiny pieces of it. This adds to the player's problems, as stray pieces of hull can destroy their ship. These pieces can be destroyed with a single shot. The only way to destroy the Flag Ship is to hit the glowing reactor at the heart of the ship, either by first blasting away the hull to expose it, or by managing to fire a shot directly into the tiny vent that leads to the reactor.  \n \nEach time the Flag Ship is destroyed, the player advances in rank. Initially, the player begins with the rank of Space Cadet, before moving on to Space Captain, Space Colonel, Space General, Space Warrior, and finally Space Avenger. The player's spaceship is equipped with a Quark Laser which allows the player to cancel a poorly aimed shot and fire another shot.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/gowcaizr.txt",
    "content": "The ultimate warriors are ready for battle! The Auto-Zoom feature draws you in to the red-hot action! Use the new \"Special Attack Tracing System\" to copy the special abilities of the foes you defeat and build your own warrior from over 100 combinations!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/gpilots.txt",
    "content": "Ghost Pilots is an overhead military plane shooter, in which you must shoot down fighter jets by either using bullets or bombs. Once you have killed enough fighter jets, you will have to defeat a boss fighter jet in order to continue. After some stages, you must select a route to continue your journey on. Power-ups can be collected that will increase your firepower, and stars can be obtained for extra points.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/gradius.txt",
    "content": "Gradius / Nemesis is a horizontally-scrolling shoot-em-up in which the player pilots a spacecraft known as the Vic Viper as they search through unexplored galaxies looking for a lost armada. These new galaxies are teaming with alien life set upon destroying the Viper.  \n \nThe game features a power-up system based on a selection meter at the bottom of the screen called a 'power meter', this allows players to 'buy' weapons and upgrades. To achieve this, players must destroy special individual enemies - usually red in colour - or enemy waves that then drop orange capsules. These capsules can be collected and used to upgrade the Viper's weapons. Each collected capsule advances the power meter by one step. Players can activate the highlighted item at any point, after which the power meter resets.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/gradius2.txt",
    "content": "The third game in Konami's renowned Gradius series; the prequel being \"Gradius [Model GX400]\" and a spinoff called \"Salamande.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/grdians.txt",
    "content": "A beat-'em-up developed by Winky Soft with 8 selectable characters and lots of special moves.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/grdius3e.txt",
    "content": "In the darkest reaches of infinite space, pure evil lies in wait ... The Dark Forces led by the god of destruction, Bacterian, prepare to launch a massive onslaught against the planet Gradius. Possessing unstoppable power, the Dark Forces threaten to plunge the Universe into total war and complete annihilation.\n\nTheir invasion force smashes the Gradius defenses, and the surrounding planets soon fall like dominoes. Now Bacterian's evil grasp reaches for the heart of the resistance...planet Gradius itself...\n\nTo counter the oncoming threat the United Gradius World Forces gather all their fighter craft. Half of them form a defensive net - the other half a strike team. But they are badly outnumbered and The Dark Forces easily tear through their thin frontline. No fighters survive the slaughter....\n\nIn a last gasp move, the United Gradius World Forces send out two fighters, previously considered too dangerous for combat missions: The InterDimensional VIC VIPER fighters.\n\nThe Fighters take off for the heart of darkness to join the fray that will decide the fate of the Universe...\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/growlu.txt",
    "content": "Beat-em-up with an outback Indiana Jones type theme to it. The arcade original allowed you to play up to four players. The game would later get a port done for the Sega Genesis.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/gtmr2.txt",
    "content": "You have 60 seconds to get from the starting line to the finish line. Finishing within 60 seconds allows you to go on to the next race. If you lose, a continue option is available. The screen scrolls fast. The only way you know about a turn coming up is by a little indicator that flashes with a picture of the turn. There are zig-zags, hairpins and all other cool turns, most of which you have to steer into in order to make it though.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/gunbird2.txt",
    "content": "Seven warriors are challenged to head on a quest to find three powerful elements of Sun, Moon and Stars. Whoever brings the elements to the Potion God will be rewarded the legendary Almighty Potion and all its magical powers. \n \nThere are seven stages in each game loop (two loops total). The first three stages are randomly chosen from possible four. At the second loop, enemies fire denser bullet patterns moving at faster speeds. Stage 2-1 takes place at the only stage not available in 1st loop, instead of the 1-1 counterpart. After completing the first loop with only one player, player can choose one of two choices for a wish with magic potion, with unique ending for each choice. If 1st loop is completed with two players, a combination-specific ending is played.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/gunforc2.txt",
    "content": "Gun Force II is a 2D side-scrolling science fiction themed run and gun game and sequel to GunForce. The game plays very similar to the later game Metal Slug. \n \nThe player controls a special soldier with two heavy guns that can jump an climb platforms. While playing the player encounters and has to kills or destroy various enemies including mutants, soldiers, vehicles and aliens. Additional weapons like flamethrowers and lasers can be picked up while playing. While making progress it is possible to mount vehicles, like mechs, motorbikes, tanks and flying crafts. Some music in this game is directly recycled (and remixed) from the earlier shoot 'em up game Air Duel, another Irem game.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/gunlock.txt",
    "content": "Vertically scrolling shoot 'em up released in 1993 as Rayforce in the Arcade. The subsequent home versions released in 1995 for Sega Saturn were titled 'Layer Section' in Japan, and 'Galactic Attack' in the US and Europe.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/gunnail.txt",
    "content": "A vertically scrolling shoot 'em up.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/gunsmoku.txt",
    "content": "Gun.Smoke is a vertically-scrolling shoot-em-up set in the Wild West, in which the player takes the role of a Billy; a young Sheriff charged with hunting down and killing a number of infamous 'Wanted' outlaws. \n \nEach level is packed with gun-toting bandits and the Sheriff must shoot his way through the stage, before finally taking on the wanted outlaw 'boss' character at the end. Each outlaw wields a special weapon unique to them, such as a Winchester rifle, knives, darts or boomerangs. \n \nShooting the barrels that litter the levels reveals power-ups such as boots (for extra speed), rifles (for increased range) and bullets (for rapid fire). The game's 3 directional fire buttons (for firing left, right or ahead) can be combined (pressed Simultaneously) to create a total of 8 different firing directions.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/gururin.txt",
    "content": "Your goal is to make three people of the same color line up and disappear--but to do that, you won't flip the people around as they fall but rather rotate the entire pit once they've landed. Like clothes in a dryer, you've got to flip the whole playfield around and try to match up the midgets as they slide down to the bottom of the screen, reorganizing themselves as they go.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/guwange.txt",
    "content": "The story of Guwange is set during the Muromachi period of Japan. During this time, increasing numbers of people suffer possession by shikigami. Although the shikigami grant great spiritual powers, the strain inflicted on the host causes them to die exactly one year after possession. However, a legend has sprung up regarding Guwange, the malevolent god trapped in Mt. Gokumon (i.e. Hell Gate). If one possessed by a shikigami can gather talismans of the five Chinese elements?wood, fire, earth, metal, water?from five demons serving Guwange, then infiltrate Gokumon and slay Guwange, the shikigami will be destroyed and the one possessed will not suffer a premature death.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/gyruss.txt",
    "content": "Gyruss is a single-player shoot-em-up in which the purpose is to fly through the solar system, destroying waves of alien attackers, before finally reaching Earth. Planets that must be passed before Earth is reached are Neptune, Uranus, Saturn, Jupiter, and Mars.  \n \nIt only takes two warps to reach Neptune, but all of the others, including Earth, take three warps to get to. Each time the player reaches a planet, they will be faced with a 'Chance Stage', a bonus stage in which players try to destroy as many aliens as possible to accrue points. After reaching Earth, there is a Chance Stage, followed by a very fast '3 Warps to Neptune' stage. After this, the levels and the background music start over.  \n \nGyruss' superb gameplay, in which the player ship rotates around the edges of the screen and fires 'inwards', is heavily influenced by Atari's 1981 classic, \"Tempest\". While the design of the alien ships themselves is similar to those of Namco's also-legendary \"Galaga\" series.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/hangon.txt",
    "content": "Hang-On is a superb point-to-point sprite scaling racing game in which the player takes control of a superbike and must race over five twisting circuits, avoiding rival bikers and trying to reach the end of each stage before the time limit expires. \n \nHang-On's handling and superb graphics were unlike anything seen before in the arcades and, like many Yu Suzuki games that followed, revolutionised the racing genre.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/hattrick.txt",
    "content": "An overhead 2-on-2 hockey game.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/heatbrlu.txt",
    "content": "A cartoon style shoot-em'up featuring four wacky western characters: Howdy Pardner, a tough rootin 'tooting' sheriff with a big gun, Chi Chi Gringo, a boomerang toting bearded Mexican, Little Plum, a stereotype Indian brave and Billy Six Guns, a willy quick-on-the-draw roving Clint Eastwood type chap. These four hombres have pledged to rid Dodgem City of outlaws, ne'er-do-wells and, erm, ghosts. Each character has their chosen weapon which may be powered up by collecting the right item until the stage is set for a feast of doom and death.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/hharryu.txt",
    "content": "This was released in Japanese Arcade's in 1990, and for the NES on November 15th 1991 and sometime in 1992 in Europe.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/hitice.txt",
    "content": "Welcome to no holds barred hockey brought to you by the Video Hockey League.  It's the Reds versus the Blues, the VHL's biggest rivalry. \n \nThe same hockey rules apply, pass the puck around around the ice rink and shoot it past the opposite goalie to score. You can also check your opponent just like real hockey, only each character has their own bone-crushing way of checking, each with maximum impact and zero tolerance for your well-being.  Players can also start fights with one another to really spice things up. \n \nFor an additional credit, players can purchase a 'power drink' that will make them 'Skate Faster and Shoot Harder' at the start of the period for one minute. \n \nNow get to the action and DROP THAT PUCK!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/hooku.txt",
    "content": "Straight out of the Peter Pan saga and based on the feature film starring Robin Williams, the Never-Never Land children fight to stop the evil Captain Hook from ruining their fun!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/horizon.txt",
    "content": "A horizontally scrolling shooter, Horizon is the sequel to Moon Patrol. Both were developed by Irem; Moon Patrol was licensed to Williams.   \n \nPlayers take control of hover vehicle armed with a turret and a cannon, rolling over the terrain and alternating their position and perspective on three different lanes to destroy enemies and dodge attacks while avoiding obstacles and picking up fuel and other items.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/hvysmsh.txt",
    "content": "Heavy Smash is a futuristic handball game. You start by choosing a team from the United States, Japan, Spain, Brazil, Germany, England, Italy, Egypt, Australia or a special team of cyborgs. \n  \nThe game is controlled with three buttons: one to throw the ball, another to pass it to another teammate, and a third button to jump. You have a power indicator that fills up quickly over time and when it's completely full, you can perform a super launch.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/ikari3nr.txt",
    "content": "Two shirtless Rambo-type players fight their way behind enemy lines to rescue a kidnapped hostage. Various military types must be killed by fist, knife, foot or gun. The players are occasionally marauded by tanks and \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/ikarijpb.txt",
    "content": "Ikari Warriors is a vertically-scrolling run 'n' gun shoot-em-up in which one or two players take on the roles of two bandana-wearing musclebound soldiers as they engage in jungle warfare, fighting over land and water to reach the village of Ikari. \n \nPlayers can rotate their guns through 360 degrees, allowing them to fire and move in all directions. Standing between the soldiers and their destination is a multitude of enemy soldiers, tanks, helicopters and reinforced bunkers.  \n \nThe enemy soldiers utilise a number of different weapons, including machine-guns, grenades, super grenades and flame-throwers. The game's standard enemy troops wear blue uniforms, but there are also enemies in red uniforms that when killed, often drop power-ups that either give players more ammunition, increase the power of bullets and grenades or even kill all enemies on the screen. The players' munitions are limited in number so additional ammo and grenades must to be picked up along the way.  \n \nWhile most of the action takes place on foot, unoccupied enemy tanks can be found that can be entered and driven. Tanks offer increased firepower as well as resistance to enemy shots. Too many enemy hits, however, will eventually see the tank explode, this is proceeded by a warning flash to allow the player to exit the tank before the explosion. Should the player be caught inside when the tank explodes, a life is lost. Tanks also have a limited amount of fuel but extra fuel can be found to replenish it. \n \nAnother obstacle that players need to be wary of, whether on foot or in a tank, are hidden land-mines. These cannot initially be seen put will appear and flash as the player approaches. These cannot be destroyed and contact with them results in an instant death. \n \nUnlike most arcade games, Ikari Warriors is not separated into different stages; the game takes place over one huge, scrolling stage. Ikari Warriors does have a continue feature, but it's only possible to continue from where the last game ended by first holding down the FIRE button, then pressing the start button. Simply pressing the start button restarts the game from the very beginning.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/imgfight.txt",
    "content": "Image Fight is a vertically scrolling shoot-em-up with an original premise. The game's first five stages are supposed to be a 'simulation' and serve as training to test the player's abilities. Player's will receive a penalty if their hit-ratio is too low. \n \nOnce players have proved themselves on the opening stages, they will progress to the game's last three stages, blasting off into space on a mission to destroy the alien vegetation surrounding the Moon's main computer. If the player fails in the mission, they must endure the dreaded 'Penalty Zone'. Features a high level of challenge, a wide variety of weapons and the ability to change speed. \n \nIf the player's ship is equipped with one or more red/blue extra guns, pushing both Action buttons simultaneously will sling the guns forward in a boomerang-like fashion. This is a powerful and destructive method and can be done an unlimited number of times.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/inthunt.txt",
    "content": "A 2D side scrolling shooter in which you take control of a small attack submarine and engage in underwater combat. The Dark Anarchy Society's forces threaten to destroy the earth's most important cities and only you can get past their defenses and destroy their secret underwater lair. \n \nIn the Hunt follows the classic template for 2D shooters, with the added feature of being able to control scrolling speed. Includes seven levels of underwater action (and keep an eye out for threats from above the surface), upgradeable weapons, and two player cooperative gameplay.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/invaders.txt",
    "content": "The most influential video game of all time. A single player moves an armed 'base' to the left or right along the bottom of the screen and fires at the endless waves of aliens that tirelessly parade across the screen towards earth. \nThere are 4 buildings (shields) at the bottom of the screen behind which the player can hide, but these will eventually be destroyed by enemy missiles or by direct contact with the invaders themselves. Player shots will also destroy shields. \nThe descent of the aliens accelerates as they are eliminated, making them more difficult to hit. A flying saucer will fly across the top of the screen at regular intervals and can be fired for extra points.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/irobot.txt",
    "content": "I, Robot is a 3-D shoot-em-up in which the player controls the \"Unhappy Interface Robot #1984\"; a servant robot who has become self-aware and decided to rebel against the all-controlling Big Brother and his ever-watchful 'Evil Eyes'. \n \nThe game is set over a series of platform-based stages constructed from solid coloured blocks and to complete a stage, players must \"eliminate the red zones\". This is achieved by moving the robot over all of a stage's red surfaces, changing their colour to blue. The colour scheme - including target colour - changes every 26 levels, however. So while the target colour is red for the first 26 screens, it becomes yellow from Level 27, blue from Level 53 and magenta from Level 79. \n \nIn order to reach all of the platforms and surfaces, the Interface robot will need to jump. This must be carefully timed, however, as jumping is not allowed under Big Brother's strict regime and his Evil eye - sitting atop a pyramid at the back of the playfield - will open at regular intervals to watch over the interface robot. Should the eye be fully open - indicated by it turning red - when the robot is mid-jump, he will be spotted and destroyed, costing the player a life. \n \nOnce all of the coloured squares on a stage have been eliminated, the enemy's shield is destroyed and the Interface Robot will need to be guided to a final, previously inaccessible coloured square at the back of the playfield. The Evil Eye is then zapped and destroyed. \n \nSome levels feature different background elements that affect gameplay, such as walls that must be shot and destroyed to reach coloured tiles, or indestructible moving columns that intermittently block access to coloured tiles, making timing difficult. There are also enemies to be shot or avoided, including birds, bombs and flying sharks. \n \n\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/irrmaze.txt",
    "content": "The Irritating Maze on Neo Geo is a game where you control a metal ball through a maze. The goal is to reach the finish without making contact with the electrified ledges. To further complicate the task of the player, the 3 course of the game are enhanced with various traps and time is limited.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/jailbrek.txt",
    "content": "A mass prison breakout has occurred and the prison warden has been kidnapped in this sideways scrolling shoot-em-up from Konami. The player controls a lonely police officer whose job it is to kill the hordes of escaped convicts and, eventually, rescue the kidnapped warden. Each level also has a number of civilian hostages that also roam the levels and need to be rescued. \n \nThe player begins the game with only a pistol, but 2 extra weapons, in the form of a bazooka and a tear gas gun, can be collected. The 'Weapon Select' button cycles through the player's weapons via a display at the bottom of the screen. When the desired weapon is highlighted, pressing the Fire button will select and fire the desired weapon. \n \nHostages will randomly run across the screen and can be rescued by running into them. Should the player accidentally shoot a hostage, all extra weapons will be lost leaving only the pistol.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/journey.txt",
    "content": "The Play mode begins when either the 1-PLAYER or the 2-PLAYER START button is pressed. The Play mode ends when all of your performers have been eliminated. When this happens, GAME OVER is written across the center of the monitor screen. \n \nON THE SCREEN: The game is made up of groups of 5 sequences for each rack. When play begins, all the performers run onto the screen and jump aboard their transport ship, the Scarab. The Scarab then lifts off and heads for a point in space that is at the center of a grouping of five planets. (The song that is played in the background during this scene is 'Lights'.) Each group member's instrument is on a different planet. \n \nAt the beginning of each sequence, when a 2-PLAYER game has been selected, the game tells which player is up. \n\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/joust.txt",
    "content": "Joust is a platform-based action combat game for one or two-players (with the two-player game offering either team-up OR head-to-head combat; the first time arcade gamers were given this choice) in which each player controls a knight riding on the back of a flying ostrich.  \n \nThe object of the game is to progress through platform-based levels by defeating groups of buzzard-riding enemy knights. This is achieved by 'jousting'; both enemy and player knights carry a lance and must fly around the level (actioned by repeatedly hitting the 'Flap' button) trying to oust rival knights from their steeds by ramming them with the lance. This can only be achieved if the attacking rider is above the enemy knight when the lance connects. A collision of equal elevations results in the two knights bouncing off each other, but if a player is lower than their enemy at the instant of contact, they themselves will be knocked from their steed and lose a life.  \n \nA defeated enemy will turn into an egg that falls to the bottom of the screen. This must be quickly collected by players as if the egg lands on a platform and isn't retrieved in time, it will eventually hatch into another enemy knight that must be defeated again.  \n \nJoust features three different types of enemy knights - Bounder, Hunter, and Shadow Lord - with each earning players different points values when defeated. A pterodactyl will appear after a predetermined time to hunt the players.  \n \nAccurately navigating the player Knights can be initially quite difficult as control is strongly affected by both gravity and inertia. Players can lose a life by either being knocked from their steed by an enemy knight, or by falling into the lava pit at the bottom of each level.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/joyjoy.txt",
    "content": "This game is a crossover between Tetris and Breakout (or Arkanoid) in that your balloon is trapped at the bottom of the puzzle, and you have to break the lines down far enough to give it a clear flight path to the top. Open up a space, and your balloon (shark-shaped if you're the boy) floats to the top, and it's on to the next floor in the tower. Sound easy? It is... at first. The tower is divided into multiple floors, with 10 stages (puzzles) per floor. There are over 50 puzzles here and the action gets pretty furious.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/jungleh.txt",
    "content": "Jungle King is a jungle adventure game where players take on the role of Jungle King, a Tarzan-like jungle man, who is going in search of his Jungle Princess, who has been kidnapped by a pair of barbaric cannibals.  \n \nJungle King has four stages, each with its own unique scenarios, so each stage could be considered a separate game in its own right. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/junofrst.txt",
    "content": "Juno First a vertically-scrolling shoot-em-up viewed from a third-person perspective in which players must destroy waves of attacking aliens. Unlike other shooters of the time, the game's enemies don't line up in a gallery formation but instead move freely around the screen. Because of this, the player's ship can move both forwards and backwards (in addition to left and right). \n \nAs well as the attacking aliens a spherical 'space capsule' occasionally appears on-screen and if shot, it releases an enemy astronaut that can then be captured. This must be done within a set time, however, with the screen having  a red tint for the period in which rescue is possible. During the capture phase, every enemy the player shoots is worth an additional 200 points.  \n \nAs a last resort players also have the option to 'warp' to another random part of the play area. This is highly risky as it may place the player's ship in a position more dangerous than the one it left. Players are allowed three warps per level. \n \nStarting formations vary from stage to stage and the aliens mutate into more dangerous forms the longer they survive. To complete a level all aliens must be destroyed.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/kabukikl.txt",
    "content": "\"Kabuki Klash\" is a 2D fighting game that features characters from the famous Japanese role-playing series  Tengai Makyou, also known as Far East of Eden. The heroes of the three first Tengai Makyou games must participate in a tournament and find out who is the most skillful fighter in the magical land of Jipang (which is very similar to the medieval Japan). The characters include well-known Far East of Eden heroes such as Ziria, Manjimaru, Kabuki, Orochimaru, and others - a total of eight playable characters. During the fights, you can either punch, kick, or use special attacks, that require a precise usage of buttons and also deplete your magic gauge. There are random items (such as healing potions) thrown on the battle field while you are fighting, which you can pick up. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/kangaroo.txt",
    "content": "A platform game in which the player controls a mother Kangaroo who must climb through the treetops trying to rescue her captured son. Numerous monkeys, the kidnappers of her child, roam the levels set on stopping the player's progress. The monkeys constantly throw apples at the Kangaroo which must either be avoided (either by ducking or jumping, depending on the height of the approaching apple), or punched away, the latter of which allows the Kangaroo to punch the apple back towards the attacking monkey. \n \nIf the player stalls for too long or does not punch either an apple or a monkey, a giant ape will appear and steal the Kangaroo's boxing gloves, leaving the player temporarily defenseless. The gloves are returned after a short time. \n \nFruit and vegetables litter the levels and can be picked up for bonus points. Each level also has a bell hanging from one of its platforms, which can be punched to make fruit and vegetable items appear. The game consists of 4 different stages, once these are completed the game begins again with an increased level of difficulty.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/karnov.txt",
    "content": "Karnov is a 2-D, platform style game. You control Karnov through 9 scenes. Each of these scenes gives you piece of a map (except the first scene). Get all the pieces of the map and you get to the treasure. Your journey won't be easy though. You will be going through some rough environment such as towns, forests, oceans, and caves. To further make your travels a hazard, different enemies attempt to end Karnov's life prematurely and prevent him from getting to the treasure. To aid Karnov in his adventures, he has certain items that he can draw from his inventory. In addition, there are other items that can make Karnov a potent foe of those wishing to harm him. You must complete each scene in order to advance to the next scene. All in a days work of a hearty explorer.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/karnovr.txt",
    "content": "Karnov's Revenge is a 2-D Street Fighter II clone from Data East. Choose one of 13 fighters from around the world to play as, each with their unique moves and special attacks. As usual, there are two rounds in each stage, and the object of each round is to drain your opponent's energy in order to win the battle. If there is a tie after two rounds, a third round is played. There is a time limit, and if this expires, the player with the less energy loses. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/kchamp.txt",
    "content": "Karate Champ  1984 Data East USA.\n\nA seminal 1-on-1 fighting game set over the course of a karate tournament, Karate Champ was the first game of its type and would influence every game of the fighting genre that followed. Karate Champ's control system utilised a somewhat awkward dual joystick control system, with simultaneous joystick manipulation required to execute even the simplest of kicks.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/kick.txt",
    "content": "Move a man on a unicycle and catch falling balloons and Pac-Men on your head. Use the Kick button to make the character's legs kick out and knock balloons back up for another try. Balloons stack up eight high and then the man will pop them. Stack Pac-Men for bonus points.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/kizuna.txt",
    "content": "Fight Alone! \nCompetition or Team Battles. The Tage Battle of a Lifetime Begins! \nOr Fight with a Friend! \n \nWhy Do You Fight?! For money? For glory? For...?! \nThe Fate of 10 of the World's Mightiest Warriors Rests on the Grand Ambitions of King Lion!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/klax.txt",
    "content": "The tiles klank end over end down the ramp. Catch them on the paddle, or they fall in the pit. Flip them from the paddle into the bins, matching the same-colored tiles horizontally, vertically, or diagonally. Each line of colored tiles is a Klax. When you've made a Klax, you hear a fanfare. When you complete a wave, the crowd cheers. Let a tile fall in the pit, and you hear a scream as it falls in. If you fail to complete a wave, the crowd is disappointed. Stay alive, complete the waves and don't drop any tiles! \n \nCatch the tiles as they come to the end of the ramp on the paddle. Flip a tile into a bin by pressing the start/flip button. Pull the joystick forward to increase the speed of the closest tile as it klanks down the ramp. Push the joystick back and toss the top tile on the paddle back on the ramp and gain a little time. \n \nThe paddle can hold up to five tiles. As long as the green light is on below the paddle, you can pile more tiles on the paddle. When the red light appears, you must flip at least one tile in a bin or toss it back on the ramp before you can collect any more tiles. You can flip tiles into a bin as long as the green light is on below the bin. \n \nTo succeed in Klax, make points and also complete each wave. Create a horizontal, vertical, or diagonal row of at least three tiles (just like in tic-tac-toe) in the bins to make a Klax and make points. You receive the most points for diagonals, less for horizontals and the least for verticals. When you create a Klax, the tiles in the Klax disappear to make room for more tiles in the bins. \n \n\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/knightsu.txt",
    "content": "Knights of the Round is an arcade game released by Capcom in 1991. A side-scrolling beat 'em up based loosely on the legend of King Arthur and the Knights of the Round Table, the game features an role-playing video game-like level advancement system, with fighters getting new weapons and armour as they advance through the game, however the player can not choose how to upgrade his/her character - the level up system is static.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/kodu.txt",
    "content": "The King of Dragons is a 1991 side-scrolling hack and slash video game by Capcom that allows players to choose from five characters (Elf, Wizard, Fighter, Cleric, and Dwarf) in order to travel through the kingdom of Malus and defeat the monsters that have taken over, as well as their leader, the red dragon Gildiss. Like Capcom's Knights of the Round, it features a level advancement system, allowing character attributes to be upgraded as players progress through the game. The setting is very similar to that of Dungeons & Dragons and other medieval fantasy worlds, with familiar monsters such as Orcs, Gnolls, Harpies, Wyverns, Cyclopes, and Minotaurs.\n\nThe game was ported to the Super NES and released in 1994. An emulated version of the game was released as part of Capcom Classics Collection Vol. 2 and Capcom Classics Collection: Reloaded.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/kof2000.txt",
    "content": "The final King of Fighters game released by SNK in its original state, The King of Fighters 2000 expands on the story and gameplay presented in The King of Fighters '99. This year's tournament is sponsored by the Ikari Warriors in an attempt to discover more about the NESTS organization, and to derail the plans of potential NESTS agents K' and Maxima. Not everything is as straight-forward as it usually is, however, and even the Ikari Warriors themselves are at risk of being betrayed from within by the end of the tournament.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/kof2001.txt",
    "content": "In this eighth installment of the King of Fighters series, ten different teams once again battle it out in several countries to decide which team will be this year's King of Fighters. However, the NESTS organization is once again standing in the participant's way; they have deployed their own team of four fighters, lead by two individuals of high-rank within NESTS: a man claiming to be the original Zero and Igniz, the CEO of NESTS. The character roster has been updated yet again for this release in the series.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/kof2002.txt",
    "content": "The second plotless \"dream match\" in The King of Fighters series, this game sports 39 normal characters and 5 hidden characters, some of whom haven't appeared since KOF98. The King of Fighters 2002 also has five characters exclusive to the X-Box, the PS2 and/or Dreamcast systems: Shingo Yabuki, King, Geese Howard, \"Riot of the Blood\" Iori and Leopold Goenitz. Shingo and King are available on all the non-Neo Geo systems, while Geese and the rest are only available on the PS2 and X-Box platforms.\n\nThe gameplay system has also changed. The striker system and four-character teams found in the last three KOF releases have been totally removed. In their place are the old-school three man teams and the \"Advanced system\" from The King of Fighters '97 and The King of Fighters '98. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/kof2003.txt",
    "content": "Like The King of Fighters 2002, this game reverts back to the old 3-on-3 format used from KOF '94 to KOF '98. A new feature to this game that old-school KOF fans might have trouble getting used to is the new interchangeable team system. You still pick three characters and decide your character order before a match, but now you have the option to change to another character during a match. You can change at any time during a match, but you cannot when two of your teammates have been taken out, and only one character is left in reserve.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/kof94.txt",
    "content": "The King of Fighters '94 is notable in that it is one of the first known fighting games that pits a team of fighters against each other in single combat. Each team consists of three fighters for each player, the winner being the player who is able to eliminate the other team first. Each active character can charge up \"Art of Fighting\" style in order to gain access to \"Desperation Moves\", or \"DMs\" (moves which operate very much like Street Fighter's Super Combos). Playing against the computer, the player must defeat all 8 teams in the game in order to reach the final boss, Rugal Bernstein.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/kof95.txt",
    "content": "Summer, 1995. The world's toughest combatants once again team up for the supreme competition. A stellar cast of fighting stars gather in the most colossal conflagration in history! Along with terrifying new challenges... out of the storm of battle comes The King of Fighters '95! Experience a new age in fighting games with the original Team Edit Mode! \n \nChoose from 24 characters! Take your pick from a bountiful selection to create history's most awesome team of pure pugilism. Create your own original bruise-giving team of 3 by selecting your favorite fighters!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/kof96.txt",
    "content": "SNK's flagship series returns for another year. Many of the changes in this year's KOF release come in the form of improved graphics, sound effects, music and totally redone character sprites. The gameplay of the system has been altered with the addition of \"Rush\" multi-hit combos and new moves for practically every character. The storyline of the series receives heavy focus in this release with the Orochi Saga swinging into high-gear. Other features carried over from the previous year include the ability to choose between the default \"Team Fighting\" mode or the traditional \"Single Fighter\" style of gameplay, plus the \"Versus\" and \"Survival\" gameplay modes.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/kof97.txt",
    "content": "Another year, another KOF. Additions this year come in the form of slightly improved graphics and sounds, new moves and a new game mode. Gameplay is much more plot-driven, as you have middle-bosses that can change depending on what team you select. In addition, there are several special endings which are only shown when certain \"Edit Team\" combinations are selected. New characters include the New Face Team, the Fatal Fury Outlaw Team (featuring the KOF debut of \"Blue\" Mary Ryan and Ryuji Yamazaki, and the return of Billy Kane), and Kyo's pupil Shingo Yabuki. In total, The King of Fighters '97 sports 29 separate characters.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/kof98.txt",
    "content": "For all you King of Fighters fans, SNK offers the ultimate KOF installment! A total of 38 of your favorite fighters from all the characters appearing in the '94 to '97 versions. The nostalgic American Sports team, Lugal, as well as Heidern, Takuma, Saishu Kusanagi and other long-awaited characters are back! The ultimate reunion is about to begin in The King of Fighters '98! \n \nTHE ADVANTAGE SYSTEM HEATS UP THE COMPETITION \nDuring battles, if one of your team members lose, you gain the systematic advantage with KOF '98's revolutionary game system. In the Advanced Mode, each player gets up to three power stock items. The second player can get up to four, and the third player up to five. In the Extra Mode, the length of the power gauge decreases progressively with the second and third players to make building up power easier. \n \nTHE EXCITING, ADRENALIN-FUELED ROULETTE TEAM EDIT MODE \nUse the roulette wheel to select team members at random. You can select one to three members with the roulette wheel! As a team wins, the roulette wheel spins again. Who will join your team is up to fate!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/kof99.txt",
    "content": "A new hero and surprising plot twists offer white-hot excitement! It is the season of KOF! A new chapter in the saga begins! With a story centering around the new hero K' (K Prime), along with an overhauled game system that pits 4-member teams against each other, KOF '99 is sure to raise excitement levels through the roof. The new battle begins here! \n \nAlong with K', six new characters and two Kyo Kusanagi clones appear as Edit Mode characters. This means players can choose their favorite from a whopping total of 30 characters! \n \nFOUR MAKES ONE FOR FEARSOME BATTLES \n3-on-3 is old hat. From now on, it's 4-on-4, buster. Each team consists of three contestants, along with the Striker (who specializes in Tag Team attacks and brings new possibilities to battle strategies). Push the B and C buttons simultaneously to summon the Striker at any time during a fight (up to five times in a single match), but don't go nuts! Using the Striker at the right time is the key to victory! \n \nINCREASE YOUR POWER GAUGE ENERGY \nIncreasing Power Gauge energy above a certain point lets players stockpile up to three separate Power Gauges. When gauges are sufficiently stockpiled, use them to activate Super Special Moves and awesome feats like the Guard Cancel Emergency Evasion and Guard Cancel Blow-Away Attack. \n \nSELECT YOUR POWER UP MODE \nUse up to three power gauges at once to enter the timed Power Up Mode! There are two types of Power Up Modes to select from by entering special button commands: Counter Mode (press A + B + C to use Super Special Moves whenever you want; can also link normal special moves for Super Cancellation Attacks) or Armor Mode (press B + C + D to increase your defensive power significantly; Super Special Moves cannot be used during this mode).\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/kotm.txt",
    "content": "King of the Monsters is a two player (or one player vs. computer) fighting game, in which the players take control of two gargantuan monsters (like Godzillas) and battle it out in different city locations.\n\nThe city gets gradually destroyed as the two creatures fight it out. The players can also interact with the scenery by picking up boats and such, to use as weapons against the other player.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/kotm2.txt",
    "content": "The object of King of the Monsters 2 is similar to its predecessor. Choose from three monsters which include a large lizard, a large robotic ape, and a huge mutant human. Then walk through each city, making sure to destroy everything in site, including planes, buildings, and other creatures. When smashed, some buildings reveal power-ups that make your character more powerful. At the end of each city, you go head-to-head with the boss creature. There are small stages in between where you fight a second monster for bonus points, or you fall from the sky and land underwater where you try to collect points and power-ups while falling. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/kungfum.txt",
    "content": "Kung-Fu Master, known in Japan as Spartan X (スパルタンX?), is a 1984 beat 'em up arcade game developed and published in Japan by Irem. It was later published in North America by Data East. The Japanese version was based on the Jackie Chan movie Wheels on Meals, known as Spartan X in Japan, and credited \"Paragon Films Ltd., Towa Promotion\", who produced the film upon which it was based. The game is considered by many to be the first beat 'em up video game, and contains elements of Bruce Lee's Game of Death.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/landmkrp.txt",
    "content": "The objective of Land Maker is to shoot a certain colored block to other blocks of the same color to create a building. The larger the building the greater damage that is done to the player's opponent which in effect speeds up the moving counter which pushes the blocks ever closer to the edge after which the player or opponent will lose the battle.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/lastblad.txt",
    "content": "Choose one of several characters to play with, each with their own unique moves and special attacks. Each stage in the game has two battles, where the object of each is to drain your opponent's energy in order to complete the battle, and you will complete the stage if you do this twice. If there is a draw, then a third battle is then played. There is a time limit, and when this expires, the player with the most energy wins the battle.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/lastbld2.txt",
    "content": "The Last Blade 2: Heart of the Samurai is a 2D fighting game which features anime-style characters that fight each other with swords, clubs, and even fishing poles. These characters pull off their special moves with that 'quarter-circle-to-half-circle' and 'double-half-circle' controller motions, reminiscent of Street Fighter. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/lbowling.txt",
    "content": "The lanes are crowded every night with Big Time Pin Slammin' action! You call the shots selecting a right or left handed bowler. Determine ball weight, and develop the skills of the pro's as you skillfully throw a variety of shots that you control. So pop some refreshments and settle into this indoor sport like you've never seen before!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/ldrun.txt",
    "content": "The Bungeling Empire has stolen a huge cache of gold from its rightful owners, and your mission is to infiltrate its treasury and recapture it. This entails progressing through 150 screens of platforms, ladders and ropes. \n \nThe Empire has sent robotic guards down to protect the gold, and contact with any of these will cost you a life. Your method of escaping them is to press fire to dig a hole in their line of movement, thus causing them to fall in briefly, allowing you to move across the gap safely. Once all the gold has been collected, a ladder allowing you to move onto the next screen is added. Completing these screens often requires forward planning and precision.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/ldrun2.txt",
    "content": "Your commando runs around a vertical maze of tunnels made of brick and dirt. Use your blaster to dig holes, collect gold nuggets, and escape to the next level.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/ldrun4.txt",
    "content": "The subtitle of this game translates from Japanese as 'Escape From the Empire'.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/legendos.txt",
    "content": "Joe Yabuki is a little punk wandering the streets. He was spotted by a boxing coach retired from the circuit that sees him as a future champion and decides to manage him. Such is the plot of this boxing game on Neo Geo, adapted from the manga \"Ashita no Joe\" created by Tetsuya Chiba and Asao Takamori in the 70s.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/lethalth.txt",
    "content": "A simple shoot-em-up with multiple endings based on your performance in each level. Your guns build up power and get stronger as you tap the fire button rapidly, but the power gauge will drain if you stop tapping the button.  \n \nAfter charging up enough power, you can press the bomb button for a smart bomb attack which uses up the whole power gauge. With more power it creates a bigger explosion.  \n \nPower-ups switch your weapon to fire different projectiles, like lasers that spread out at right angles, and a flamethrower that reaches farther with more power.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/lifefrce.txt",
    "content": "Salamander is a 1 or 2 player sequel to 1985's superb shoot-em-up, \"Nemesis\". While it retained the same basic gameplay and feel of its predecessor (particularly the superb and innovative weapons system), Salamander featured both superior graphics and a more imaginative approach to level design. The earliest example of the latter appears towards the end of the very first level, in which imposing, organic obstructions grow before the players' eyes. The game's third level - the infamous 'lava' level - is another good example of Salamander's superb design; with huge solar flares constantly erupting both above and below the player's ship that must be carefully navigated to avoid instant loss of life. Salamander introduced further variety to the action with the introduction vertically-scrolling levels, which alternated with the standard side-scrolling levels. \n \nSalamander's weapon power-up system is as follows: \nSPEED UP: Five speed levels. \nMISSILE: Press missile button to launch. \nLASER: Your forward rockets turn into deadly lasers. \nRIPPLE LASER: Use shoot button to fire. \nFORCE FIELD: Protect your ship with barriers. \nMULTIPLE: Increase your fire power by up to four times. \n \nMultiple special powers can be obtained, but the LASER cannot be used in conjunction with the RIPPLE Laser.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/lightbr.txt",
    "content": "Four mythical heroes traverse dungeons and castles to find and defeat the source of evil corruptive power that is threatening their land. Gameplay is refreshingly less linear than most beat'em ups.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/liquidk.txt",
    "content": "Help Hipopo save his friends from the clutches of the Fire Devil!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/lkage.txt",
    "content": "As a Ninja, defeat the evils from Devil's World and save the Princess. \n \nAt the end of the Edo Period (late 19th century) in Japan, a Corps formed by the evils, which had come back to life from the Devil's World, was terrifying people all over the country. One day the princess 'Kiri', a daughter of the lord, was kidnapped by the Corps. In order to save her from them, a number of militia were sent to the Corps' Headquarters, but none of them ever returned. Then one young man headed for the Corps' Headquarters to save the princess. His name 'Kage', a ninja from Iga Village.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/llander.txt",
    "content": "Lunar Lander is a 1-player coin-op electronic game that simulates landing a manned spaceship on the moon. Various video-display phrases indicate score, time elapsed during this landing mission, fuel units consumed, altitude above the moon, and horizontal and vertical speed. The fuel consumption and both speed readings are important for the player to determine how to land the craft. Realistic engine rumble and crash sounds accompany game play. A high beep warns of an almost-depleted fuel supply, whereupon players can add coins to automatically extend the game and 'fill up' their fuel tanks. Depending on the quality of the landing or the crash, various messages are displayed on the screen. \n \nGame play begins with engine rumble and the lander drifting towards the bottom \nright corner of the screen. Horizontal and vertical speeds are constantly displayed, including two arrows to show horizontal and vertical directions of travel. Altitude is measured in distance above the surface of the mountain - not above 'sea level'. The screen also shows time in actual seconds, representing time elapsed in the current mission. \n \nThe operator can select from four different settings for fuel units - 450, 600, 750 or 900 fuel units per coin (free play is also available). As the lander module flies over the landscape, it approaches the mountains and a landing site. At a certain point near the mountains, the game 'zooms in' for a close-up view of everything on the screen. \n \nIf the player realizes the speed is too fast and the landing looks hopeless, he or she can press the ABORT button on the control panel. This will give the lander extra thrust and make it fly upwards at top speed. The abort feature does consume 120 to 180 fuel units, though, as a disincentive to overusing it. If the ABORT button is pressed too late, however, a crash cannot be avoided. \n \nThe four levels of mission difficulty are determined by the player and can be changed at any time during the game or the ready-to-play mode. The differences between the four are printed on the mission select panels and are self explanatory, except perhaps rotational momentum. This feature causes the lander to tumble around when either ROTATE button is pushed. The longer either button is held down, the faster the lander module will spin in that direction. The player gains control of the lander by pressing the other ROTATE button for the same amount of time.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/loderndf.txt",
    "content": "Lode Runner: The Dig Fight is an arcade sequel to Lode Runner. It is very similar to its predecessor. You must find all gold on the map and several enemies chase you. You can dig temporary holes in the ground to catch and eliminate enemies. The game uses a new graphics set and has some story elements, presented through static cut-scenes. \nMaintenance Code: In test mode enter this code... \n5-0-8-2-0: Some nice features appear include stages select, obj test, etc... and a complete Map editor!!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/loht.txt",
    "content": "A little caped hero fights his way to the boss' castle through a cute scrolling world. Enemies can be killed by fireballs or stunned when jumped upon. Killed enemies and chests leave coins to increase a person's score and options give aiming shots and bouncing fireballs.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/looping.txt",
    "content": "As the player begins his flight into Adventure-Land, his airplane is quickly surrounded by hot air balloons. WATCH OUT! These seemingly innocent colorful objects mean destruction. \n \nImmediately the Player's flying skills are tested. The hot air balloons challenge and engage the Player in a fierce dogfight. The Player must loop his plane to avoid and destroy the swirling balloons. \n \nAs the Player continues his journey into Adventure-Land he encounters the Maze Tunnel. Now the Player must guide and loop his airplane through the labyrinth with precision movements.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/lresort.txt",
    "content": "Last Resort is a 1-2 player horizontal shooter game where you pilot a spacecraft across horizontally scrolling cityscapes and wastelands, while destroying hordes of enemy spacecraft, either metallic or organic, including huge mid- and end-level guardians. Getting power-up pods provide the craft with a movable drone which can be charged up and fired or locked into position and used as an extra gun or 'battering ram'/shield. A clone of R-Type (both one and two), but with much improved graphics and sound\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/lwings.txt",
    "content": "The human race was about to achieve the evolution from an ancient civilization to a state of millennium with the help of DARK, a super powerful computer left by spacemen long ago. DARK suddenly began to malfunction. \n \nThe world was in a panic. The human race was on the brink of extinction. \n \nARES, god of war, gave two young men Wings of Love and Courage and entrusted them with the survival and future of the human race. Time is of the essence. Destroy DARK Take wings, legendary soldiers.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/macross.txt",
    "content": "Super Spacefortress Macross is a vertically-scrolling shoot'em up based on the 1984 theatrical film in the Macross franchise, commonly known in English as Macross: Do You Remember Love?. Players control the VF-1 Valkyrie fighters of ace pilots Max Jenius and (in two-player games only) Hikaru Ichijyo in combat against the Zentradi. \n \nThe game consists of seven levels, mostly based on action scenes from the film, including confrontations over Macross City, in the rings of Saturn, the surface of the devastated Earth, and the final battle against Boddole Zer. \n \nGameplay is similar to Raiden: the Valkyrie can transform into one of three different modes by collecting the appropriate power-up: in Fighter mode, the ship fires a spread shot, Gerwalk mode has a narrow but powerful laser that passes through enemies, and Battroid mode features homing missiles. The intensity of the attacks can be upgraded in three stages through another power-up. There are also smart bombs to pick up that clear most enemies off the screen with one shot. Each level ends with a boss battle. Besides shooting down the hordes of enemies, picking up medals and rare Minmay dolls also increases the score. In two-player mode, both players take on the enemy simultaneously. Between levels, cutscenes recreate scenes from the film to illustrate the storyline.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/macross2.txt",
    "content": "In 1999, an alien ship crashes on South Atalia Island and makes the human race aware of other life in space. Ten years later, the ship is reconstructed and christened as the SDF-1 Macross. However, on the day of its maiden voyage, an alien race called the Zentraedi make their appearance on Earth, beginning the UN Spacy/Zentraedi war that would change the history of both races forever.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/macrossp.txt",
    "content": "Macross Plus is a 2D vertically scrolling shooter, based on the Macross anime. The player can choose one from 3 characters: Isamu Dyson in his YF-19, Guld Bowman in his YF-21, and an unnamed female pilot in the VF-11. Gameplay is very straightforward - player flies forward and shoot enemies. He has gun, bombs and missiles (press shot to release missile attack - they have special homing system). The player can collect power-ups dropped by special enemies.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/magdrop2.txt",
    "content": "In Magical Drop II, you control a clown that can grab and throw balloons. You have to match three balloons of the same colour or more vertically to pop them and clear the screen. You can hold multiple balloons of the same colour at once and cause consecutive collisions. There are special balloons that cannot be removed that easily and power-ups that clear entire rows or provide additional help.\n\nDepending of the originating country, there are different game modes:\n\n1. Survival: Play as long as you can - an endless flow of balloons appears at a rapidly increasing speed while you move up levels.\n\n2. Puzzle: You have a limited time to clear a fixed set of balloons before time runs out.\n\n3. VS Mode: Fight the CPU or a fellow player in a direct split-screen duel. Each character has specific item balloons during gameplay.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/magdrop3.txt",
    "content": "This is the third installment in the puzzle frenzy series Magical Drop. In the game you control a clown who throws marbles up on the screen into the cluster of multi-colored marbles, rocks and crystals. The goal is to get three or more of the same color to remove marbles, but you can also grab more than one at the time to create long chain combos and gain better \"special\" blocks at the top of the screen.\n\nYou can play the game in single player modes or versus a friend in versus mode. In versus mode you get to pick your character, much like in a fighting game, each with their own counter attacks and abilities.\n\nFor the PSX version, the first Magical Drop was included on a separate disc.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/maglord.txt",
    "content": "Magician Lord puts you in charge of Elta, a wizard who has the task of collecting eight books of wisdom from the clutches of Az Atorse, the god of destruction. By collecting the right power-ups along the way, you can transform into different characters, including the Rajin, Samurai, Waterman, Shinobi, Poseidon, and Dragon Warrior. Each character has different abilities. There are eight areas in the game, and each stage ends with you trying to defeat both a guardian and the end-of-area boss (which are basically Atorse's incarnations). One of the first games that demonstrated the graphical abilities of the Neo-Geo.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/mainev2p.txt",
    "content": "A wrestling game in which you select 2 wrestlers from a choice of 8 and compete in tag-team battles.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/mappy.txt",
    "content": "You control Mappy a police-mouse whose job is to collect valuables (consumer electronics)from a cat's house. You are being pursued by a gang of five pink cats. Doors are your only defense against the cats. You get from floor to floor by jumping on one of the trampolines. \nPoints are earned by recovering stolen goods. Other ways of earning points are bouncing on a trampoline, putting cats in the microwave, striking a cat with a door, striking cats with a bell, retrieving a treasures from the Boss cat Goro or dropping cats through a hole in the floor.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/marble.txt",
    "content": "Marble Madness is an abstract maze game for one or two players. The game's goal is to guide a small glass marble over a three-dimensional maze and reach the finish line before the level's timer has expired. Any seconds that remain on the timer when the finish line is crossed are carried over to the next level.  \n \nAs well as having to negotiate the marble over treacherous walkways and ramps, numerous obstacles and unfriendly creatures will try to slow the marble's progress or knock it over the edge of a platform, wasting yet more precious seconds until a replacement marble appears. The two-player game has players competing to reach the goal first.  \n \nMarble Madness features six different mazes.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/mario.txt",
    "content": "Mario Bros. is a superb, single-screen platform game in which the legendary \"Mario Bros.\", Mario and Luigi, must try to rid each level of a number of pests that have infested the waterworks: Shellcreepers (turtles), Sidesteppers (crabs that need to be hit twice) and Fighterflies (flies that can only be attacked when they touch a platform). \n \nPlayers can jump upwards to hit the platform above them, which will 'flip' any enemies on the above platform onto their backs. The prone enemies can then be kicked into the water to remove them. A 'POW' button also appears on a number of screen; this can be 'butted' by a player, causing all on-screen enemies to flip onto their backs; as well as destroying any enemy fireballs that may be around. Each POW can only be used a maximum of three times.  \n \nAs well as the game's enemies, players are also hampered by the huge amount of inertia that comes into play when controlling Mario or Luigi. This is due to the low degree of traction that exists between the Mario brothers and the platforms. On later phases, ice appears on the platforms reducing the amount of traction even further. As the game progresses, water droplets hang below the platforms and freeze into deadly icicles, which will eventually break off and fall.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/matrim.txt",
    "content": "The king of certain country wants to find a worthy successor for the throne and the ideal husband for his little daughter (or a beautiful and strong woman for his older son). So he holds a fighting tournament where the prize is the hand of the princess and the throne succession.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/mazinger.txt",
    "content": "Vertical shoot'em up with 3 selectable characters: Mazinger Z, Great Mazinger and Grendizer.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/mbombrd.txt",
    "content": "Professional wrestling experienced a sudden increase in popularity during the early 1980s, where many professional wrestling organizations were started all over the world. A severe rivalry existed among the organizations. \n \nIn order to resolve this conflict, 8 organizations combined to form the Capcom Professional Wrestling Association (CPWA), led by Victor Ortega, the CPWA?s first champion. \n \nOne day, Ortega suddenly vanished. He was considered to be the axis of the sport and his unexpected disappearance caused the CPWA to enter an age of confusion and disorder. The BPWA, a dark underground wrestling organization, chose to take advantage of this opportunity and began moving. With \"Fighters of Muscle Bomber = Destiny\" as the theme, the CPWA chief executives decided to hold a world tour called the ?Crash Carnival,? to decide the new king of the CPWA. \n \nThe gong that determines the new ?Master of Muscle Bomber? is sounded?\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/megaman2.txt",
    "content": "Building upon the previous game, you must battle Dr. Wily's evil robot criminals with the help of Megaman, Protoman, Bass & Duo. Features cool 2-D graphics and the same tried & true Mega Man controls. Pay attention to Dr. Light's advice and you may reach Dr. Wily's fortress and come out victorious!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/mercs.txt",
    "content": "The US faces a grave crisis! The former president has been kidnapped by a group of revolutionaries while on a trip on Central Africa meant to promote world peace. Take control of three highly skilled anti-terrorist soldiers and venture through enemy lines to save the former president & annihilate the rebel army in the process. Features solid graphics & sound, plenty of weapons & vehicles to use and hulking bosses to defeat.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/metamrph.txt",
    "content": "Beat-'em-up with 4 selectable characters who have the power to morph into Were-animals.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/metmqstr.txt",
    "content": "Metamoqester is a 2D arcade fighting game, similar in concept to Red Earth or Monster Maulers. One or two players (there is a co-op mode) fight against big monsters in deadly duels. There are three different characters to choose from. The game uses four buttons - Weak Attack, Medium Attack, Strong Attack, and Shoot/Throw Weapon.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/mgcrystl.txt",
    "content": "Magical Crystals is a maze/shooter game, developed and published by Kaneko, which was released in 1991 (also licensed to Atlus).  \nThe player impersonate a magician going through a set of mazes suspended in the air; the goal of the game is to rescue the pixies trapped inside the magical crystals. The game has a total of 6 worlds. Each world is divided into 3 acts and has a boss fight and a bonus stage at the end.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/mhavoc.txt",
    "content": "Major Havoc is a vector-based shoot-em-up and platform game in which the evil Vaxxian Empire overran the galaxy many years ago. Most of humanity was enslaved and abducted to the Vaxxian home world, although a few human scientists managed to escape. The Vaxxian Empire has long since collapsed but numerous Vaxxian space stations, all blindly controlled and defended by robots, still remain in the galaxy, mindlessly following their original, pre-programmed orders. \n \nThe small band of scientists who initially escaped have cloned the great human hero, 'Major Havoc' and tasked him with flying his 'Catastrofighter' through a wormhole in space so that he may lead a clone army against the dreaded Vaxxian robots and to liberate the remnants of humanity by destroying the enemy reactors. The player controls Major Rex Havoc, the leader of this band of clones. \n \nThe game is broken down into two distinct gameplay genres. The first is a shoot-'em-up in which the player controls Major Havoc's spaceship against the numerous robot ships that defend the enemy reactors. The ships are encased in a force-field shield which must first be shot and depleted before the ship itself can be destroyed. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/milliped.txt",
    "content": " \nMillipede is a 1- or 2-player game with a color raster-scan video display. The game action takes place on a playfield filled with mushrooms, flowers, and deadly DDT bombs. The player tries to destroy a variety of insects that drop from the top of the screen or enter from the sides of the screen, most of them to attack the player. The player controls a bow-shaped vehicle called the Archer. The object of the game is to shoot and destroy as many objects as possible for a high point score, before the player's lives are all used up. \n \nPlayer control consists of a Midi Trak-Ball control and a FIRE button. The Archer is moved by rotating the Midi Trak-Ball control. The Archer can be moved in all directions, but only within the bottom fifth of the screen. However, the Archer must move around mushrooms, flowers, and DDT bombs, since these are fixed and not 'transparent' objects. Pressing the FIRE button causes the Archer to emit an arrow that travels upward. The Archer may fire one or many arrows (by holding down the FIRE button constantly). But only one arrow will appear on the screen at a time. \n \n\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/missile.txt",
    "content": "Missile Command is a one or two-player game depicting the outbreak of a nuclear war. Players must defend six cities from waves of incoming nuclear missiles by launching their own anti-ballistic missiles (ABMs) from one of three missile batteries.  \n \nThe game is played by moving a cross-hair across the sky and pressing one of three buttons to launch an ABM from the corresponding battery (either Alpha Base, Delta Base or Omega Base). Upon reaching the cross-hair the player's ABM explodes, creating a fireball that lasts for several seconds and destroys any enemy missiles that enter it. Each battery is initially armed with ten anti-ballistic missiles and becomes useless when either all of its missiles have been fired or it's been destroyed by enemy missiles.  \n \n\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/mk.txt",
    "content": "Mortal Kombat, first in the Mortal Kombat series, is a 1-on-1 fighting game featuring a cast of seven different characters. Mortal Kombat took ideas from Capcom's seminal Street Fighter II, such as the game's special moves and projectiles. It also introduced a cast of photo-realistic digitized fighters for players to fight either as or against.  \n \nMortal Kombat characters list: \nJOHNNY CAGE \nKANO \nRAIDEN \nLIU KANG \nSCORPION \nSUB-ZERO \nSONYA BLADE \n \nBattles are fought over the best of three rounds. At the end of a battle, a voice instructs the winner to 'Finish Him/Her!' and players have only a couple of seconds to try and execute their character's 'fatality', which sees the winner killing the loser in a spectacular and grisly fashion.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/mk2.txt",
    "content": "Mortal Kombat II is a direct sequel to the 1992 original featuring new fighters (increasing the character roster from 7 to 12) and improved graphics.  \n \nAs with its predecessor, MKII's matches are divided into rounds, with victory awarded to the first player to win two rounds. At the point of defeat, the losing fighter will become dazed and the winner is given the opportunity to execute a 'finishing move'.  \n \nSome of the standard fighting moves (moves shared by all characters) have now been expanded or enhanced. A crouching punch has been added and the 'roundhouse kick' is more powerful and now knocks opponents across the screen. Also, the difference in hit boxes between high and low kicks is now more marked.  \n \nAdditionally, returning characters gain new special moves and MKII marks the first appearence of multiple Fatalities - as well as additional, non-lethal finishing moves - in the series. In addition to the Fatalities of its predecessor, MKII offers 'Babalities' (turning a defeated opponent into a crying baby), 'Friendships' (a non-malicious interaction, such as dancing or giving a gift to the defeated opponent) and stage-specific Fatalities (the winner uppercutting their opponent into an abyss below, spikes above, or a pool of acid in the background).  \n \nEach character still shares generic attributes - speed, power, jump height and airtime - albeit with differing hit boxes. The sequel drops the points system of its prequel in favour of a consecutive win tally.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/mk3.txt",
    "content": "Succeeding in taking over the Earth realm, Shao Kahn takes all the human souls on Earth as his own. To stop the Outworld realm from totally merging with the Earth realm, a few Earth warriors were chosen to have their souls protected from Shao Kahn in order to defend the Earth realm in a new Mortal Kombat tournament. 14 digitized characters fight to overthrow Shao Kahn and his Centaur lieutenant Motaro.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/mmatrix.txt",
    "content": "A prediction is that before human civilization, there was once an advanced civilization on Mars. A sorceress destroyed the civilization and everything that was remembered of it, except a chip called \"INFINITY\". In 2100, millions of people were starving due to massive food shortages and has caused civil wars around the world. Centuries later, however, the world government had sent colonists to Mars which began to solve these problems. At a nearby farm, the Infinity chip was discovered and it revealed all the technology of the advanced civilization. In 2309, a Declaration of Independence has been sent to Earth. Large armies have been amassed on Mars, and a gigantic armada was waiting for any attack from Earth. The Earth government sends out a fleet of battleships followed by a special air raid unit called ACID; ACID is equipped with a new fighter ship known as the Mosquito. Their mission is to enter Mars, stop the rebel violence, locate and destroy the rebel leader, whoever... or whatever it may be...\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/monsterb.txt",
    "content": "MONSTER BASH is a fascinating cartoon theme game featuring colorful graphics in three exciting scenes of hunt-and-hide adventure. Light-hearted, suspenseful music and audio sounds add to the fun, and heighten player interest and intrigue. \n \nDRACULA'S HOUSE \nThe player-hero of the game is LITTLE RED, a wily, red-headed boy who chases Dracula throughout his five-story haunted house. Up and down staircases and through Warp Doors leading to secret passageways, Little Red zaps defending bats while attempting to light candles in certain rooms. When a candle is lit a Magic Sword is energized with mystical powers. Little Red must touch the flashing Magic Sword to gain SuperZap power... only a SuperZap will defeat the sly Dracula. \n \nFRANKENSTEIN'S CASTLE \nLittle Red enters the eerie castle of the hulking Frankenstein. He pursues Frankenstein around his six-story castle while avoiding the fierce Wolfmen.  The tricky Wolfmen can be zapped, but be careful, they can duck under the zap and attack Little Red. Fewer candles are now available to be lit. Warp doors to secret passageways can be used only when they flash. Special jump-down zones allow Little Red to jump down several levels at once, eliminating any Wolfmen in the way as he descends, but Frankenstein can only be defeated with a SuperZap. \n \nCHAMELEON MAN'S GRAVEYARD \nThe greatest challenge yet... to dispatch the sneaky Chameleon Man and his horde of Spiders.  Entering the spooky graveyard, Little Red finds that only one candle is available for lighting which is found in a crypt guarded by giant Spiders. Chameleon Man changes his color to match that of the background and thus becomes invisible. Little Red must pass over one of the Color-Change Spots to change the background color making Chameleon Man visible again. Chameleon Man can do away with Little Red with a flick of his long tongue. Chameleon Man can only be done in with a SuperZap.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/moonwalk.txt",
    "content": "Based on the movie of the same name, Moonwalker is a scrolling, isometric beat' em up in which Michael Jackson (1958-2009), along with his chimp Bubbles, attempts to save children and defeat the evil 'Mr. Big'. During each round, the player must defeat each and every one of Mr. Big's henchmen and the deadly enemy machines that patrol the levels. This is achieved either by shooting them with Michael Jackson's 'magical energy', or by using his Dance Magic - the game's equivalent of a smart bomb. Some enemies take only one shot to defeat whereas others take several shots before they are destroyed. The longer the player holds down on the fire button, the greater the amount of magical energy Michael can inflict. At the start of each round, the player is given 2 dance magic smart bombs. Towards the end of each round, Michael's pet chimpanzee, Bubbles, will be seen moving about. If Michael touches Bubbles, he will turn into a powerful robot (the 'Moonwalker' of the game's title). After Michael has become Moonwalker, he will be able to shoot lasers and fire missiles. Michael must defeat every boss enemy at the end of each round in order to proceed to the next.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/mooua.txt",
    "content": "Wild West C.O.W. Boys of Moo Mesa is a horizontally-scrolling platform run 'n' gun game for up to four players. The game is set in America's Wild West and is based on the cartoon series of the same name.  \n \nPlayers take on the roles of four recently mutated cows - now turned lawmen; the Cowlorado Kid, the Dakota Dude, Marshall Moo Montana and the shotgun-toting Buffalo Bull. The lawmen must shoot their way through enemy-packed stages to take down wanted criminals. \n \nControls consist of a jump and an attack button and pressing both buttons simultaneously will cause the player character to perform a stampede attack, do a spinning jump, or use any equipped item like dynamite sticks and tomahawk blades.  \n \nNumerous variety of power-up items can be found by shooting flying chickens, these include a rapid-fire Machine Gun and a Power-Up for wider bullets. Players have a three-unit life gauge that allows them to take three hits before losing a life.  \n \nThe game consists of eight stages, each with a boss fight at the end, and after the first stage, players can choose in which order they want to tackle the following stages.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/mpatrol.txt",
    "content": "Moon Patrol is a horizontally-scrolling shoot-em-up in which the player takes the role of a Luna City police officer assigned to Sector Nine, home of the toughest thugs in the galaxy.  \n \nThe player controls a moon buggy that travels over the moon's surface, trying to avoid or destroy any obstacles in its path, including craters, rocks and mines. UFOs attack the buggy from above by dropping bombs, some UFO bombs will create a new crater when they hit the ground, generating a new obstacle to avoid. \n \nThe buggy can jump to avoid craters, mines and rocks, it also has both front and vertically-mounted cannons that fire missiles simultaneously. The vertical cannon is to destroy UFOs while the front-cannon can take out obstacles that lie in the buggy's path. \n \nMoon Patrol has five different stages spread over 26 check-points, each designated a letter of the English alphabet. The five checkpoints that denote a new stage are E, J, O, T and Z and each new stage sees a change in background graphics as well as an increase in difficulty. One example of this is the introduction of landmines in the third stage (stage 'J'). \n \nA status panel is displayed at the top of the screen that gives the player useful information. A progress bar showing the five major checkpoints and the player's current position is displayed at the bottom of the panel. Above the progress bar is an indicator of the current checkpoint, the time spent in the stage and three indicator lights: the top light indicates upcoming enemy aerial attacks, the middle one indicates an upcoming minefield and the bottom one indicates enemies approaching from behind. \n \nAt the end of each stage bonus points are awarded based on how quickly the stage was completed. \n \n\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/mrdo.txt",
    "content": "Mr. Do! is a colourful and addictive maze game in which the player takes on the role of the eponymous Mr. Do, a circus clown, who must clear each level of either cherries or monsters. The game's single screen levels are made up of tunnels surrounded by a colourful, soil-like substance. This soil can be dug through to create new tunnels, allowing Mr. Do to escape his enemies and to reach the many cherries that litter the levels. A number of apples are also scattered around each level, and Mr. Do can push them along tunnels (to block and/or kill monsters) or can tunnel beneath them to drop them onto the heads of any pursuing enemies. Mr. Do himself can also be killed by a falling apple. \n \nMr. Do is armed with a 'Powerball' that can be fired down a tunnel, it will then bounce around the tunnels until it either returns to Mr. Do, or comes into contact with, and kills, one of the level's monsters. The Powerball regenerates immediately the first time you use it, but takes longer each time it is used to return to your hands. As each level progresses, the monsters themselves start to dig tunnels of their own in their pursuit of Mr. Do. Monsters can also push the apples. \n \nEach screen has a doorway through which the monsters enter the level. Once all of the monsters have appeared, the doorway will turn into a 'prize', (ice cream, biscuits, etc.). If Mr. Do collects the prize, the 'Alphamonster' and his three 'Muncher' henchmen will appear. The Alphamonster may be in the EXTRA box at the top of the screen or be moving around the screen. The Alphamonster and the Munchers cannot be easily crushed under apples because they tend to eat them. They can be killed individually with the Powerball or by killing the Alphamonster itself, at which point any remaining Munchers will turn into apples. \n \nAfter every three levels, there is a brief intermission in which a tune is played and a large, animated Mr. Do appears, together with some of the game's monsters. The time to complete each level and the preferred method (monsters, cherries, Alphamonsters, or Diamond) is shown. The paths in the first level resemble a 'D', after this each level's tunnels resemble a digit, ('2', '3', '4' etc.) up to '0' for level 10. \n \nA level can be completed any one of several different ways: either by collecting all of the on-screen cherries; by killing all of the monsters, by completing the EXTRA box, or by collecting the diamond. The latter appears only very occasionally ('Special' awards an extra credit).\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/mshvsfj.txt",
    "content": "Marvel Super Heroes vs. Street Fighter is the fourth Marvel Comics-licensed fighting game produced by Capcom and the second installment in the Marvel vs. Capcom series. It is a sequel to X-Men vs. Street Fighter which replaces most of the X-Men characters with characters from Marvel Super Heroes. In an attempt to balance the previous game's problems, the game engine was altered, although it remained aesthetically the same which is what the game was criticized for. The game was released for the arcade in 1997 \n \nMarvel Super Heroes vs. Street Fighter features a roster of 17 playable fighters, with nine characters from the Street Fighter universe and eight heroes from the Marvel Universe, It utilizes the same one-on-one tag team format previously employed in X-Men vs. Street Fighter.  \nThe player chooses a team of two fighters, each sporting their own life gauge; at the start of the match, the first selected character is controlled by the player, while the second character remains off-screen and acts as support. \n\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/mslug.txt",
    "content": "Metal Slug, originally released on the Neo Geo, is a side-scrolling shoot'em'up.\n\nThe player(s) takes the role of a soldier (or two) and fights a gigantic army. Every level consists of running forward blasting anything that moves, while collecting power-ups along the way (there's also a wide selection of weaponry in the game). In the end of each level the player goes up against one gigantic boss. \n\nThe PlayStation port introduces some extra features: there is a combat school where the player may fight with other players for the best time on each level and an art gallery. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/mslug2.txt",
    "content": "As Marco, Eri, Tarma, or Fio, you must defeat the evil General Morden and his henchman. To do this, you must defeat various enemies that get in your way. Throughout the game, you can collect new weapons including the Heavy Machine Gun, Shot Gun, Rocket Launcher, Flame Shot, Laser Shot, Flame Bottles, and Armor Piercer. Also scattered throughout the game, you can ride in  four different vehicles (aka: Slugs) such as the Metal Slug, Slug Flyer, Camel Slug, and SlugNoid. By using these vehicles, you can cause awesome destruction against Morden's evil army. Other items such as energy, extra ammunition, and food (eat too much and your player will gain weight) are also found throughout the game. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/mslug3.txt",
    "content": "In the third installment of the Metal Slug series, General Morden is back and he plans to establish a new world order. You guide one of the heroes: Marco, Tarma, Eri or Fio as they blast their way through sidescrolling levels with a unique theme, filled with countless enemies and difficult bosses. You have to free hostages and you can ride bizarre vehicles such as camels, elephants, tanks and robots.\n\nIn the Xbox version, additional game modes, such as Storming the Mothership and Chubby Isle Paradiso, can be unlocked upon completing the five arcade stages. A co-op mode has been included, but no online multiplayer. The only Xbox Live feature available allows you to compare singleplayer scores.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/mslug4.txt",
    "content": "The 5th episode of the most famous arcade-shooting-series comes bringing the unaltered classic gameplay, a new weapon, 6 new vehicles as well as 2 new soldiers for the pantheon. The most notable introduction to the series is the Metalish System, giving to the player a new possibility to score more points: after pick up certain shield-shape emblems, a timer bar will be displayed at the top of the screen. During this time, you must to shoot rapidly as many enemies as possible and, depending on your acting, you will receive a corresponding badge bonus that will be added to your score after completing it. When you die, the bonus wears off.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/mslug5.txt",
    "content": "The latest installment of the most famous arcade-shooting series brings a lot of changes: this time, you will not face Morden's army like in the previous games, but with a new group of enemies that composes the already mentioned Ptolemaic Army. More content in this title, 3 guns and 2 vehicles from past games were reincorporated, as well as all brand new stuff of 3 vehicles. The most important addition is a sliding move: pressing the B Button when ducking will make your character slide for a short time in the ground. You are not be able to throw grenades, but your gun can be fired normally.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/mslugx.txt",
    "content": "Jump! Shoot! Evade! The time to test your reflexes has come once again! Scatter the swarms of oncoming enemies with triple the firepower (compared with past SNK games). A festival of dazzling destruction, take on the Metal Slug world, if you dare!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/mspacman.txt",
    "content": "In this, the first proper sequel to Namco's legendary pill eating maze game, players must once again run around a number of mazes, eating all of the pills that are scattered throughout. The ever-present ghosts (Blinky, Pinky, Inky and Sue) return to hamper the player's progress. The infamous 'Power Pills' are also present and correct, with four appearing in each maze.  \n \nNamco introduced a number of changes and enhancements over the original game. The first difference is in the main character. For the first time in video-game history, the game's lead character was female. Ms. Pac-Man is almost identical to the original character with two main differences; she wears a bow in her 'hair', and is also wearing lipstick.  \n \nAnother change from the original is that the bonus fruit items are no longer static but now move randomly around the mazes.  \n \nMs Pac-Man features four different maze layouts, which alternate every two to four rounds:  \n\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/mswordu.txt",
    "content": "Magic Sword: Heroic Fantasy is a side-scrolling fantasy arcade game released by Capcom in 1990. The player can use a sword, an axe, or magic, and can also rescue and recruit potential allies from different character classes, each with their own special abilities. Three years earlier, Capcom had released the similar Black Tiger in 1987. \n \nMagic Sword is set in a nameless world threatened by the dark lord Drokmar, who is in control of an evil crystal known as the \"Black Orb\" that would allow him to rule the world. To prevent this from happening, the Brave Hero must climb to the top of the 50-story tower that Drokmar resides in, known as the Dragon Keep. After Drokmar is defeated, the player has the option of two endings: destroy the Black Orb, or take control of it and become the new Dark Lord.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/mtwins.txt",
    "content": "The game features two twins who are attempting to re-take control of their land, Alurea, after a monster unexpectedly attacks, destroying everything in its path. The people of Alurea have lived in peace for a thousand years and have forgotten how to fight, yet the land's only survivors, the twin sons of the king, must take up the challenge and return their kingdom to its former glory. The two twins, aged around 15 at the time the game takes place, venture forth in search of a legendary stone known as \"Dragon Blue Eyes\", which is rumored to be able to put everything back to rights.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/mutnat.txt",
    "content": "The Slum... an area of town completely forgotten. No one could imagine the cruelness suffered by innocent people who were transformed into horrible mutant creatures by genetic experiments. They hovered everywhere and completely took control of the town.\n\nMutation Nation is a 1-2 player action game where you must control your hero and beat up any mutant that gets in your way, by either using your fists or one of four special attacks. A boss at the end of each area needs to be defeated if you want to proceed further through the game.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/mvsc.txt",
    "content": "Marvel vs. Capcom: Clash of Super Heroes is the fifth Marvel Comics-licensed fighting game by Capcom and the third game in the Marvel vs. Capcom series. In contrast to X-Men vs. Street Fighter and Marvel Super Heroes vs. Street Fighter, the game features characters from numerous Capcom franchises such as Mega Man and Strider, rather than just Street Fighter characters. The game takes place within the Marvel comic continuity, as Professor Charles Xavier calls out for heroes to stop him before he merges with the consciousness of Magneto and becomes the being known as Onslaught, the final boss. The game was developed in late 1997 and first released in January 1998.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/mystwaru.txt",
    "content": "Mystic Warriors is a horizontally-scrolling platform beat-em-up for up to four players, in which the evil 'SKULL' organisation has taken over the world and driven its terrified civilians into hiding. Five Ninja warriors set about destroying SKULL and freeing the World from its grip. \n \nMystic Warriors features five selectable characters, one of which is shown being kidnapped by SKULL once players have made their character choices. What follows is eight levels of platform 'run-and-gun' action, with an end-of-level boss waiting at the end of each stage. \n \nPlayers are armed with both Shuriken throwing stars and with a sword for close encounters. Numerous boxes are scattered throughout the levels (or are being carried by enemies), all of which contain bonus items such as weapon power-ups or energy-replenishing food. Other power-ups include an invulnerability shield (known as the \"Shinobi Shield\") which lasts a few seconds and a \"Smart Bomb\" power-up, which destroys all on-screen enemies. Some boxes also contain points-giving items, such as bags of money, jewellery and gold.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/nam1975.txt",
    "content": "As a soldier, you and/or a friend must travel through Vietnam to stop the scientist and his world destroying laser machine. In the game, you must shoot enemy soldiers, tanks, helicopters, jeeps, and more by aiming the machine gun cursor and shooting at them. Within each location, you can pick up more powerful weapons such as machine guns and flame throwers, but these have a limited supply of ammunition. Pressing down on the joystick while running at the same time will cause your character to perform a somersault and be invincible for a second. At the end of every location, you will need to defeat a series of bosses, which are not the same every play. Cut-scenes are viewed in between locations, and contain dramatic digitized dialogue.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/narc.txt",
    "content": "NARC is a graphically violent one or two-player side-scrolling shoot-em-up in which players take on the role of \"Narcs\"; futuristic police officers whose duty it is to either arrest or kill drug dealers, junkies and attack dogs as players fight to crush the criminal empire known as K.R.A.K.  \n \nThe Narcs have both machine guns and rocket launchers at their disposal and players can also pick up (confiscate) discarded drugs and money to earn extra points. These are totaled up at the end of each level. On many stages a special colour-specific 'Keycard' needs to be found before players can progress to the next section of the level.  \n \n\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/nbajam.txt",
    "content": "Two-on-two basketball with digitized images of real NBA players, monster dunks and no referee - it's a blowout!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/nbajamte.txt",
    "content": "An update of the classic 'NBA JAM'. New players, new features but still the same classic gameplay.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/nbbatman.txt",
    "content": "Ninja Baseball Batman is an abstract, horizontally-scrolling beat-em-up for in which up to four players control a team of robotic baseball-star ninjas who must fight their way through a variety of levels, defeating the game's many enemies.  \n \nThe object of the game is to recover a number of artifacts stolen from the Baseball Hall of Fame, a task prescribed to them by the Commissioner of Baseball. Each stage takes place in several parts of the United States, with a boss character appears at the end of each stage. \n \nThe game's enemies are themed entirely around the sport of Baseball; taking the form of Baseballs, Catcher's mitts, bats etc. The game also allows players to perform combos, throws and dash attacks against multiple enemies. When a player's health bar flashes red, more moves can be performed as long as the player does not restore or completely lose health.  \n \nHealth restoring food and drink items appear throughout the game, as well as throwable weapon pick-ups, including baseballs and shuriken. Occasionally players will find a pink heart, collecting this summons cheerleaders who either damage all on-screen enemies or drop a large amount of food. \n \nThe four characters of \"Ninja Baseball Batman\" and their traits are: \n \nCaptain Jose - Head of the team and technician. Well-balanced and a good choice for beginners.  \n     \nTwinbats Ryno - Very fast and wields two bats, but is the weakest of the four. \n     \nBeanball Roger - He is a powerful buster, but not as fast as others.  \n     \nStick Straw - A long-reach hitter, making him the best choice for long-range moves.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/ncombat.txt",
    "content": "Ninja Combat puts you in the middle of, you guessed it, a Ninja invasion! The Kage Ichizoku clan has caused a giant tower to appear in the middle of the city, and it's up to our heroes Joe (Player One) and Hayabusa (Player Two) to take them down. Both characters can attack incoming enemies by using Shuriken (throwing stars) which can be upgraded and they can also unleash a fairly strong special attack which destroys many enemies on the screen, or does heavy damage to the bosses, but it takes away a quarter of your life.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/ncommand.txt",
    "content": "The Mars Corporation has caused a problem in the time continuum, and it's up to the Ninja Commandos to go after Spider, leader of the MC, and stop his evil work.\n\nAs one of three Ninja Commandos, you must fight your opponents through different time periods, such as The Primitive Age, The Egyptian Era, and the Japanese Civil War Era. Each of the Ninja Commandos have their own specific style of attack and a special \"ninja trick\" super power. Boxes and other storage units can be broken to reveal power-ups that upgrade your weapons. The bosses are super-powered historical figures and include a dinosaur, a medieval samurai, an Egyptian pharaoh, etc. Cut-scenes occur between the different time periods.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/nemo.txt",
    "content": "One night, as Nemo sleeps, he is visited in a dream by the King of Slumberland, who invites Nemo to come and play with the King's daughter, the Princess. Nemo finds himself unable to find the Princess however, so he and 'Flip', a strange companion who also turns up in the dream, decide to explore Slumberland and find the king.\n\nNemo is a colourful and abstract platform shoot-em-up set in the dream world of Slumberland, a surreal world in which childrens' toys are running amok and must be destroyed. Nemo is armed with a magical staff that emits a burst of magic to destroy the many enemies, some of which require multiple hits. A number of power-ups also appear at regular intervals to aid Nemo in his quest through seven tough stages.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/neobombe.txt",
    "content": "As Bomberman, you must kill all the enemies in the level before proceeding to the next. To do this, you clear a path of blocks by setting bombs that will detonate a few seconds later, and then use the bombs to wipe out enemies. Some blocks will uncover power-ups, and depending on which ones you collect, you will receive more bombs, more lives, more time, manual bomb detonation, expanded blast zone, and the ability to move faster. In some levels some blocks will reveal eggs that you can hatch to produce a bird that you can ride on and allows you to take an additional hit from an enemy or bomb blast without losing a life.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/neocup98.txt",
    "content": "Neo Geo Cup'98 is a football simulation based on the World Cup 1998. This title is a new installment in the series Super Sidekicks and updates all data to focus on the event. In qualification phase or during games knockout, lead one of the 64 available teams to victory.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/neodrift.txt",
    "content": "Neo Drift Out on Neo Geo is a rally game including 3 vehicles (Toyota Celica, Subaru Impreza and Mitsubishi Lancer) and 6 races for many environments. The driving is done exclusively by drifting and each course must be completed within the allowed time in order to reach the next level.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/neogeo.txt",
    "content": "A cartridge-based arcade system board. The MVS stands for Multi Video System, and as its name suggest, offers owners the ability to put up to six different arcade titles into a single cabinet, a key economic consideration for operators with limited floorspace. With its games stored on self-contained cartridges, a game cabinet can be exchanged for a different game title by swapping the game's ROM-cartridge and cabinet artwork.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/neomrdo.txt",
    "content": "Neo Mr. Do! is an enhanced version of Mr. Do!, and features greatly improved graphics, stereo sound, and intermissions that can be viewed when an area is completed. You can also travel to the bonus stages, where the object is to make your way toward the exit by carefully dropping apples to create a path. These bonus stages can be reached by killing all enemies on the screen, rather than collecting all the items that are in groups.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/nibbler.txt",
    "content": "A maze game where you control Nibbler the snake to eat food around the maze. With each food you eat, Nibbler gets bigger. Complete each level by eating all the food on the screen. You lose a life if Nibbler hits his own body.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/ninjak.txt",
    "content": "The Ninja Kids is a horizontally-scrolling hack 'n' slash beat-em-up for up to four players who must defeat a demented cult plotting to summon Satan. A karate sensei sends out his four ninja puppets to combat this looming threat.  \n \nAll four ninjas carry different weapons and have different fighting styles. As well as their weapons, each ninja also has a screen-filling magical attack based on one of four elements (earth, fire, wind and water). \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/ninjakd2.txt",
    "content": "This game is known in US as \"Rad Action\" and \"JT 104\", outside US as \"Ninja Kid-II\", and in Japan as 'Ninja-kun - Ashura no Shou' (translates from Japanese as 'Ninja Kid - Chronicle of Ashura').\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/ninjamas.txt",
    "content": "Ninja Master's, is set in the fictional land of \"Zipangu\". Players can select from 10 different ninjas and warriors with which to test their might. The main feature of this game is the ability for each character to use a wide variety of weapons. Also, as each character's Super Attacks change depending on whether they are armed or unarmed, the player needs to respond differently according to the situation. Damage increases with respect to the Super Power Gauge. There are also many must-see deadly techniques like \"Super Death Blow\", \"Ultimate Super Mode\", \"Dark Super Power\" and \"Dark Combo!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/nitd.txt",
    "content": "This was an ancient story when people still believed in witchcraft.\n\nThere lived one gravedigger at a very small village in a remote region. He lived a quiet, solitary life in a corner of the cemetery. He kept away from the village people due to his very ugly appearance. One day, he found the graves were ransacked and some corpses were stolen. He didn't want the village people to find out, so he decided to eliminate the grave burglars by himself. Thus, he patrolled the cemetery every night.\n\nThere are five stages with five levels each, and each one of them has you throwing fireballs at ghouls, ghosts, goblins, and zombies. When you keep throwing fireballs at these enemies, they will ignite into a giant fireball, which you can throw at other enemies to kill them, and get the remaining treasure before moving on to the next level. At the end of the fifth level, a boss must be defeated in order to continue the game.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/nitrobal.txt",
    "content": " \nFuturistic, fast and furious vertical action game, it's a sort of \"Smash T.V.\" in a pinball environment.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/noboranb.txt",
    "content": "This game is a vertical scrolling shoot 'em up where the player controls a character that has to climb a tree and shoot bug-like enemies. The story is that the princess has been kidnapped by the villains of the Insect World, and Zippy Bug has to rescue her. After shooting the enemies, they drop fruits that the player can collect for extra points, and skulls that are deadly if touched. The player is able to fly for a short time, and every time this is done, one of the letters from the 'I Love You' at the bottom of the screen is used up. The letters regenerate over a small period of time. There are also other items, such as the key, which surrounds the player in a bubble and makes him invulnerable to 1 hit. Another item is a ring which seems to instantly replenish all of the used up 'I Love You' letters. One other item is the hammer, which allows the player to wipe out all the enemies off the screen. There is a boss at the end of each level.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/nrallyx.txt",
    "content": "New Rally-X is a scrolling, overhead mazed-based racing game in which the player drives a racing car around a maze and must collect ten yellow flags before the car's fuel runs out. In-game opponents consist of red enemy cars that pursue and try to ram into and destroy the player's car. The enemy cars are faster moving than the player's vehicle.  \n \nThe player's car automatically moves in whichever direction the joystick is pushed and if it runs into a wall, it will turn automatically and continue moving. To disrupt the chasing enemy cars a smoke-screen can be activated that trails behind the player's car, causing any pursuing vehicles to crash. Activating the smoke screen uses a small amount of fuel, however, so players must be careful to not overuse it. \n \nEach maze also has rock formations and crashing into these will result in the loss of a player car. A radar display to the right-hand side of the playing area shows the relative positions of the flags, rocks and enemy vehicles.  \n \nIn addition to the standard ten flags, each maze also contains a special flag (indicated by the letter \"S\"). If collected, the value earned for the round's remaining flags doubles from 100 to 200 points. If the player dies before the end of that round, the flag value is set back to 100 points and the double bonus is lost.  \n \nThe mazes also contain a 'lucky flag'. This is marked with the letter 'L' and - providing there are still standard flags remaining - awards the player extra points for remaining fuel, after which the round will continue as normal. Upon completion of a round, bonus points are awarded based on how much fuel the player has remaining. \n \nAs players progress through the rounds, the number or pursuing enemy cars increases.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/nslasher.txt",
    "content": "A horror-themed brawler where three elite fighters, an American cyborg monster hunter, a European vampire hunter, and an Asian martial arts expert, must save humanity from an army of monsters, mutants, and the undead.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/nspirit.txt",
    "content": "A side scrolling ninja action game. You take control of a ninja who has the ability to make shadow duplicates which trail your movements, and attack at your command. In your path are armies of ninjas, samurais and demons who are constantly out to kill you.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/nwarr.txt",
    "content": "Night Warriors: Darkstalkers' Revenge is the second game in the Darkstalkers series of gothic horror fighting games. Released in 1995, it is the upgraded version of the original game which introduced several gameplay changes to the game. \n \nThe game introduced two new playable characters, Donovan Baine and Hsien-Ko, who were out to hunt the other Darkstalkers (hence the Japanese title, Vampire Hunter). The two bosses from the first game, Huitzil and Pyron, were now playable characters as well. The game was first released for arcades and later ported to the Sega Saturn. Character art was done by Ikeno.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/offroad.txt",
    "content": "In his never ending quest for adventure and excitement, man invented off-road racing. These races were then brought before the masses by converting huge sports stadiums into dirt and mud obstacle courses in which off-road 'Ironmen' battled for top honors.  \n \nNow the Leland Corporation brings this fast moving, hard driving sport to the video game arena.  \n \nIronman Ivan Stewart's Super Off-Road is stadium off-road racing at it's best. One to three players are asked to test their dirt track skills against the best dirt truck driver in the world.  \n \nContestants compete on eight different tracks with a total of 16 configurations and these courses are packed with enough jumps, bumps, hills, and holes to challenge even the most skillful driver.  \n \nWinning drivers earn 'cash' prizes, and use this 'cash' to 'buff out' their machines. At the end of each race, players take their trucks to the 'Speed Shop' to buy better shocks, tires, engines, and higher top speed. They can also buy nitro packs to help them blast over the jumps and through the mud.  \n \nThe 'Convert-a-Credit' feature allows drivers to add to their winnings by using credits as 'cash'. Each additional quarter, when converted, becomes $200,000 in game 'cash' and this additional 'cash' may be used for purchases in the 'Speed Shop'.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/outfxies.txt",
    "content": "A platform 'versus' shoot'em up in which either one player (playing against the computer) or two players (playing against each other) attempt to destroy each other by any means necessary. The levels themselves are interesting and varied, with airships, planes etc. providing a detailed and highly interactive backdrop in which the players do battle. That interactivity is increased further with the introduction of destructible sections which, when blown up, can often open up new areas or rooms. Each level is littered with a variety of weapons that can be picked up and utilized by the player(s). Graphically, Outfoxies employed superb sprite scale and rotation techniques that elevated the already fun gameplay still further. The aeroplane level, for instance, dips and sways, bringing problems of inertia and gravity to the platform action. Also; the in-game camera zooms in and out of the level, depending on how far away the two opponents are from each other. Playable characters range from a monkey to a pair of psychotic school children, with each character choice offering the player different aptitudes (the monkey can jump higher, for example). A fun enough game in one-player mode, Outfoxies really came into its own when two human protagonists took part.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/outrunb.txt",
    "content": "Out Run is a ground-breaking racing game in which the player drives a red Ferrari Testarossa through a number of colourful European locations, trying to reach each end-of-level checkpoint before the tight time limit expires. \n \nEach of the game's stages is packed with civilian traffic that must be carefully avoided, as players try to negotiate the game's twisting, hilly roads.  \n \nAt the end of every stage players are presented with a fork in the road, allowing them to chose which route they wish to take next. This was not the first time this feature had appeared (Tatsumi's 1983 racer, TX-1, was the first to introduce forked roads). \n \nAs well as being able to choose routes, players could also - via the game's \"in-car radio\" - choose one of three different catchy tunes to listen to while driving. The songs are 'Magical Sound Shower', 'Passing Breeze' and 'Splash Wave'.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/outzone.txt",
    "content": "A vertically scrolling run and gun game, in which the player controls a soldier who must fight his way through 7 increasingly difficult levels. At the end of each level a boss must be defeated before the player can progress any further.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/overtop.txt",
    "content": "In 1991, ADK (then Alpha team) released Thrash Rally for the Neo Geo. While fun to play, it was most noted for its woefully bad graphics. Five years later, ADK released another \"look-out-for-the-next-turn!\" game called Overtop. This time they got it almost all right: Great graphics, good sounds, lots of vehicles, and kept the excellent playability of its predecessor.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/pacland.txt",
    "content": "Pac-Land is a horizontally-scrolling platform game set in the cartoon world of the game's title. A fairy has lost her way and needs Pac-Man to help her get back to her home of Fairyland. Pac-Man, with the fairy safely hidden beneath his hat, must run and jump through the colourful world until he reaches and enters the magical door to Fairyland. Upon being rescued, the fairy gives Pac-Man a pair of magical shoes for his trip back home. These enable him to jump wherever he wants, without the need for a platform to jump from. This effectively means Pac-Man can 'sky-jump' back home if he so wishes. \n \nDirectional buttons make Pac-Man walk left and right and it's possible to make him run by tapping the desired directional button twice. Pac-Man is pursued by his ever-present enemies in the form of five ghosts - Pinky, Inky, Blinky, Clyde and Sue. Pac-Man must avoid the ghosts and other deadly objects that populate the levels. As with previous games in the series, a small number of 'Powerpills' appear. Eating a Powerpill makes Pac-Man temporarily invincible and turns the ghosts purple and vulnerable to being eaten. On some stages, Pac-Man must use a springboard to jump over large ponds by leaping from the springboard and rapidly moving left and right while in the air. \n \nThe game's stages are called 'trips', with players able to start on any one of the first five. Each trip made up of four rounds (three rounds to reach Fairyland and one round to return home) with a short interval between each one. The objective in all trips is to get the fairy safely back to Fairyland then return home to Pac-Man's family. The majority of the trip involves moving from left to right, avoiding various obstacles such as the enemy ghosts, water spurts and quicksand traps. The journey home, however, scrolls right to left. \n \nEach stage must be completed within a set time limit and if the player runs out of time before finishing a round, Sue (the purple ghost) will speed up considerably and kill Pac-Man. At the end of each round, players are awarded bonus points based on how much of the time limit remains. On each stage, cherries and other items can be collected for extra points. There are a total of 8 different trips in the game, totalling 32 levels. After the 8th trip, the 9th trip is a repeat of the 5th trip, with level 33 effectively being level 17, with an increased difficulty level.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/pacman.txt",
    "content": "Export release by Bally/Midway for North America. Game developed by Namco and originally known as Puckman in Japan. For more information about the game itself, please see the original Japanese release entry, \"Puckman [Upright model]\".\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/pang3.txt",
    "content": "Pang! 3 is the second sequel to the superb 1989 original, Pang! 3 retains the same gameplay of its predecessors but adds vastly improved graphics and a choice of three difficulty levels; Beginner, Normal and Panic. On both the 'Normal' and 'Panic' skill levels, players can choose from 4 different playable characters; each possessing different strengths and weaknesses, such as a double harpoon or quick shots. On the beginner level, players can only use the Mexican character. \n \nAnother notable difference is in the game's use of backdrops: instead of the world landmarks of the first two games, Pang! 3 features classical works of art in the form of paintings and sculptures.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/panicbom.txt",
    "content": "That one-player game consists in facing nine opponents through duels with individual screens. Each one in his playground have to stack blocks composed of three different colored helmets. Like Tetris, it is possible to rotate, move left or right or accelerate the fall of these blocks. Starting from three identical helmets lined up horizontally, vertically or diagonally, they explode and generate a bomb in the playground. When they disappear, they can initiate chain reactions, for example with the blocks lying above falling. After a certain number of removed blocks, comes an activated bomb: player have to place it in order to make the most of these bombs explode on his table.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/paperboy.txt",
    "content": "Paperboy  1984 Atari Games.\n\nPaperboy is a one or two-player game in which the objective is to deliver Newspapers to the Paperboy's customers from Monday through to Sunday. \n\nEach game begins with ten customers and ten non-customers. Paperboy's customers live in the brightly coloured houses, while non-customers live in dark coloured houses. To deliver to a customer, the player must throw a paper either into the customer's mailbox, or onto their front porch. Failure to deliver a paper to a customer results in the loss of that customer for the next day. Any damage done to a customer's property also results in the loss of that customer. Losing all ten of Paperboy's customers will get him fired and the game is over. However, on any day in which all customers have their papers successfully delivered, one of the non-customers will re-subscribe.\n\nNon-customers' houses and yards are loaded with targets at which to throw your extra papers (windows, lamps, statues, etc.). Hitting these targets earns points for the \"Breakage Bonus\", which is displayed at the top center of the screen. The total Breakage Bonus is awarded to the player at the end of each day (or at the end of the game-whichever comes first). \n\nIf Paperboy loses a customer, that customer's house will be dark coloured the next day. As a non-subscriber, this house now presents more targets at which to throw newspapers for building up the Breakage Bonus. At the start of each day, a map of Paperboy's route is displayed to indicate subscriber and non-subscriber houses. This helps to remind players of what customers they may have lost on the previous day and the location of remaining customers. \n\nPaperboy can carry a maximum of ten papers at a time, but can restock his supply by riding over paper bundles placed here and there on his route. A paper supply indicator is displayed underneath the player's score. \n\nWhile making his deliveries, Paperboy must avoid collisions with all stationary objects and other characters moving about the neighborhood. To avoid collisions, Paperboy can ride his bike anywhere - on the sidewalk, in the street, or into front yards. A collision with anything results in the loss of a life. \n\nIn addition to the obstacles, non-subscribers are hostile towards Paperboy and will attack him and try to knock him down. If Paperboy damages a subscriber's property, that character may also attack. So the more customers that are lost, the more hostile the neighborhood becomes toward Paperboy. \n\nAt the end of each delivery day, players have a chance to sharpen their skills by guiding Paperboy through the Paperboy Training Grounds. This obstacle course is filled with various targets at which to throw newspaper, as well as ramp jumps to be negotiated. This is a bonus round and no lives are lost for failing to reach the finish line.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/parodius.txt",
    "content": " \nParodius Da! is a horizontally-scrolling shoot-em-up in which the Great Octopus has threatened Earth. To help Parodius save the planet, the player and his friends must begin their search across the world to find the enemy and destroy him.    \n \nParodius Da! was created as a parody of Konami's own \"Gradius\" series of shoot-em-ups but adopted a graphical style that was entirely its own; something that becomes evident at the very start of the game when players can chose to pilot either a penguin or an octopus rather that the traditional Gradius ship. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/pbobbl2n.txt",
    "content": "Bub and Bob are back! Like in Tetris in reverse, you shoot bubbles at an array of different-colored bubbles stuck in an ever descending ceiling, attempting to match them up three by three to make them disappear. This edition contains both puzzle challenges, multiplayer and normal progressive stages.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/pbobblen.txt",
    "content": "Puzzle Bobble (known as Bust-A-Move outside of Japan) is a spin-off of the Bubble Bobble series, featuring themes from the original game (such as enemies trapped in bubbles by the cutesy dinosaur duo Bub and Bob that must be popped). Players attempt to clear a board of colored bubbles by firing other bubbles at an angle and matching multiple bubbles of the same color. Its characteristically cute Japanese animation and music, along with its play mechanics and level designs, made it successful as an arcade title and spawned several sequels and ports to home gaming systems.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/pengo.txt",
    "content": "Pengo is an action game set in an overhead maze constructed of ice blocks. The player controls Pengo, a red penguin that lives in the Antarctic and fights the blob-like Sno-Bees. The objective of the game is for Pengo to survive a series of rounds by eliminating all Sno-Bees, while amassing bonuses by bringing together the three diamonds dispersed in the maze.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/peterpak.txt",
    "content": "Peter Pack Rat is a platform game in which the player, controlling the game's hero, a rat called Peter; must rush around a platform-filled screen collecting a variety of objects to take back to Peter's nest. These objects include bottles, watches, hats, balls, and cans. \n \nA number of enemy creatures hinder the player's progress; these include rats, cats, dogs, bats and owls. There are 3 different levels to play through; a junkyard, a sewer and a tree. \n \nAs well as the objects that must be collected and taken to Peter's nest, additional objects can also be collected and thrown to stun attacking animals. Flying animals that have been stunned can be ridden around the screen for a short period of time. A round ends when all the desired objects have been collected and placed in the nest. Successive rounds add more objects and enemies, as well as changing the patterns of the shortcuts.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/pgoal.txt",
    "content": "Released in 1996, Pleasure Goal (Japanese title: Futsal) is Saurus' first and only football (Soccer) game for the Neo Geo. It features 16 teams which compete for the \"Saurus Cup\". Your team plays against all the others in your group, then it goes into an elimination tournament's semifinals and then the final to win the cup. It's worth mentioning that Pleasure Goal's rules barely base on Futsal, which is basically a 5-on-5 player indoor soccer style. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/phoenix.txt",
    "content": "Phoenix is a classic vertical shoot-em-up in the mould of Taito's \"Space Invaders\" and Namco's \"Galaxian\", but takes the concept further with the introduction of progressive stages of play (instead of simply repeating a single playfield over and over with an increasing difficulty level). \n \nAccording to Centuri's Joel Hochberg, the game was licensed from \"a smaller Japanese developer.\" Amstar Electronics licensed the game to Centuri for manufacture in the United States. Taito released the game in Japan.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/pipedrm.txt",
    "content": "Put your advanced plumbing skills to the maximum test and connect the points on the board in the least moves possible! Use the pieces of pipe supplied to plug the gaps and fix the leaks as quickly as possible. You're against the clock and at the mercy of pipe supply so think fast and lay pipe quickly!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/pitfight.txt",
    "content": "Three digitized brawlers face off co-operatively against a variety of street thugs, with gameplay featuring crowd interference and usable weapons. Players also get to fight each other in a 'Grudge Match'. Pit-Fighter featured impressive camera zoom and side-to-side pan but was somewhat flawed as a gameplay experience. On the dedicated cabinet version, up to three players can play simultaneously.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/pnyaa.txt",
    "content": "A nice puzzle game that is pretty similar to Super Puzzle Fighter but doesnt reach the same quality level!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/polepos.txt",
    "content": "Pole Position is a 1-player game using a color raster-scan video display. Game action takes place at the Fuji Speedway in Japan. The country around the speedway consists of green meadows, hills, and snow-capped Mt. Fuji.  \n \nThe player drives a Formula-1 race car on the track. The first objective of the game is to finish the qualifying lap as quickly as possible. If the player beats the clock, he or she qualifies for the race. If not, he or she drives out the remainder of the time along the qualifying course. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/polepos2.txt",
    "content": "Pole Position II is a 1-player game using a color raster-scan video display. Game action takes place at four different raceways - the Fuji Speedway in Japan, the Test Track (an oval track like Indy), the Seaside Speedway (with the Long Beach Pike in the background), and the Suzuka Speedway in Japan. The unique and picturesque scenery around each raceway adds exciting realism to each race!  \n \nThe player drives a Formula-1 race car on each track. The first objective of the game is to finish the qualifying lap as quickly as possible. If the player beats the time, he or she qualifies for the race. If not, he or she drives the remainder of his time along the qualifying course.  \n\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/pooyan.txt",
    "content": "The player takes on the role of a bow-and-arrow welding pig who must protect her piglets from the pack of hungry wolves ballooning up or down the cliff face. The pig is suspended in a winch-controlled cage and must move vertically up and down, shooting the balloons and sending the wolves plummeting to the ground. Any wolves she misses will, having safely reached the ground, climb a ladder to try and bite her. Also, if any of the wolves reach the ground, more piglets will be captured by them. Mother Pig must try to kill as many wolves as possible without letting them reach the ground. \n \nOn the second level, the wolves use balloons to float upwards to the top of a high cliff. If enough of them reach the cliff, they will push a huge boulder down onto Mother Pig's cage. After this level has been completed, the piglets who have been captured are rescued and the game starts over with increased difficulty. \n \nThere is also a bonus round where Mother Pig will attempt to eliminate as many wolves on ascending balloons as possible by throwing as few slabs of meat as possible for a maximum bonus score.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/popbounc.txt",
    "content": "Pop'n Bounce is a puzzle game similar to Break Out; the player must bounce a ball off a paddle in order to knock out a wall of sprites. However, in Pop'n Bounce, the sprites are of assorted living creatures instead of bricks.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/popeyef.txt",
    "content": "Popeye is a superb and demanding platform game featuring characters from the famous King Features Syndicate cartoon show of the same name. The aim of the game is to rescue Popeye's girlfriend, Olive Oyl. This is achieved by catching a set number of objects thrown down by Olive from the top of the screen; such as hearts, letters and musical notes. Popeye is constantly pursued in his quest by love rival, Brutus (originally known as Bluto). Popeye must either run away from Brutus or grab some spinach and punch him off the screen (he will, of course, return). \n \nShould any of Olive Oyl's items fail to be caught, they will fall into the water at the bottom of the screen. Popeye will then have only a few seconds to retrieve the object or a life is lost. Several other Popeye characters also make an appearance in the game; namely Wimpy, Swee'Pea, the Sea Hag, and her vulture Bernard. The game's three levels are the dock scene, the street scene and the shipboard scene. These repeat with increasing difficulty.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/pow.txt",
    "content": "Prisoners of War is a horizontally-scrolling run 'n' gun platform game for one or two players in which Special Forces soldiers escape from a POW camp and must fight their way through enemy territory to reach the extraction point and rescue.  \n \nThe escaping POWs fight primarily using hand-to-hand combat, but limited-use knives and sub-machine guns can be retrieved from fallen enemy soldiers. The game consists of three action buttons for punching, kicking and jumping. There are also three special attacks performed by pressing two buttons simultaneously: a jump kick (jump, then kick), a back punch (jump and punch simultaneously) and a headbutt (punch and kick simultaneously). \n \nThe controls change when wielding a weapon; the knife is thrown by pressing the punch button, but can preserved by using kicks. When wielding the machine gun, players can fire it by pressing the kick button, or can conserve its ammo by pressing the punch button to gun-whip enemies from close-range.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/preisle2.txt",
    "content": "Different types of dinosaurs have emerged: big ones, small ones and some even have wings! Your mission is to eliminate these primitive beasts from the city. Rescue and help all the trapped citizens!nnWith one or two players, pilot a combat helicopter and annihilate these prehistoric monsters. The title is made up of levels set in a variety of horizontally-scrolling environments, including the city, the sea and the jungle. Whenever possible, you must also rescue civilians in distress.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/progear.txt",
    "content": "In a time when the industrialization of the world had just begun, various inventions appeared and changed the life of the peaceful kingdom. One of them was a propeller that evolved from pure wind generation by using the created electricity to re-rotate it. It was called 'The Professional Gear', or just 'Progear'. This invention was the key to conquer the great wide open sky. Another discovery made the ancient dream of the immortal body come true. But it was affordable only by some wealthy elderly. They formed a new council called 'the Motorouin' and declared the current government as a corruptive and greedy establishment and that they want to correct it by a new educational system, in order to create a new race of man. So they built a military force to realize the first step of their plan, which was the takeover of the kingdom. The government decided to stop the aggression by putting it's own army in motion. It was a dreadful battle with many victims. But it was won by the Motorouin. This battle is mentioned in the books of history as 'The Punishment of the Sages'. \n \nA group of young pilots, actually children whose families were killed in that war, finally decided to fight back. They secretly developed a new powerful weapon which adults were not able to use. They called it 'Gun Flyer' and installed it in all of their planes. The Storm of Progear was about to begin!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/pspikes2.txt",
    "content": "Power Spikes 2 on Neo Geo is a sport game in which you control one of three categories of volleyball teams: male or female internationals and futuristic teams. The encounters are divided into three phases of the game: attack, defense and service. Vary the attacks by the panoply of special moves and anticipate your opponent to come out the winner of various tournaments.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/pulstar.txt",
    "content": "An alien threat looms over the galaxy and only you and your trusty star fighter can defeat them.\n\nPulstar is a 2D side-scrolling shooter in which you control your ship as it makes its way past stages filled with waves after waves of enemies bent on your destruction. You can upgrade your main weapons by collecting power-ups and charging up energy allows you to release charged attacks at the cost of power-up consumption. Additionally your ship comes with an ever-prescent \"option\" gun pod that floats around your ship and which can be positioned in several configurations to help protect the ship or increase its firepower.\n\nWhile completely 2D, the game uses pre-rendered 3D sprites and includes fully animated cutscenes between each level. Also features support for two-player gameplay.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/punchout.txt",
    "content": "The player assumes the role of a green-haired boxer, who must fight his way through six increasingly larger-than-life boxers to earn the title of 'Champ' in this superb 1-on-1 fighting game. \n \nDuring matches, the player's boxer is viewed from behind as a wire-frame (so the player's opponent can be seen). Players must time their punches, dodges and blocks in order to defeat the opposing boxer. \n \nThe player's opponents are each rendered as humorous cartoon-like caricatures - adding much to the game's atmosphere - and each boxer fights in a slightly different style, forcing players to adapt to their strategy. The top monitor is used for statistics while the bottom one is used to display the actual fight.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/punishru.txt",
    "content": "A Capcom arcade beat-em-up game similar to games like Double Dragon featuring the Marvel character The Punisher. Nick Fury is also a playable character in this game.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/punksht2.txt",
    "content": "Punk Shot takes up to four players to downtown NYC for some two-on-two street basketball, no referee, no rules. The opposing two-man teams face off for a match played in four quarters (2 to 5 minutes each), on improvised courts in 3 different locations: the alley, the park, and the harbor.\n\nNaturally, it ain't just about being cool and shooting some b-ball outside of the school: on each side you have a couple of guys who are up to no good, with a constant enthusiasm for making trouble in the neighborhood. As such, Punk Shot joyfully turns basketball into a full-contact sport - heads will be bashed, noses punched, and private parts kicked. To top it off, each court features an assortment of environmental hazards, from slippery banana peels and having your butt set on fire, to the park dogs and their special taste for pants.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/puyopuy2.txt",
    "content": "This sequel to Puyo Puyo is, like its predecessor, a game of falling blocks, in which the aim is to combine four or more blocks (Puyos) of the same colour, which then disappear. The remaining Puyos then fall and can produce combos that cause special harmful blocks to appear on the enemy's terrain.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/puyopuya.txt",
    "content": "Puyo Puyo is an incredibly addictive and original puzzle game in which players must form chains of four or more beans (known as 'Puyos') of the same colour to make to disappear. \n \nPlayers can hinder their opponent by forming Puyo combinations; a successfully formed chain removes some some of the player's Puyos and causes 'junk' Puyos to fall into the opponent's play area. As these Junk Puyos are transparent, they cannot be used to form a chain and can only be destroyed when a nearby chain is created.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/puzloopu.txt",
    "content": "Puzz Loop is a puzzle game for one or two players in which different coloured marbles continually roll down a spiral path towards a central goal line. \n \nPlayers control a rotating cannon situated at the center of the spiral and must stop the line of marbles from reaching the goal by shooting matching coloured marbles into the line. If three or more marbles of the same colour are matched, they will disappear. \n \nIn addition to standard marbles, bonus marbles occasionally appear that will, for example, temporarily slow down the rate the marbles' advance, or cause all marbles of a certain colour to be destroyed. Also, providing there is a clear line of sight, unwanted marbles can be fired straight out of the play area to prevent them from adding to the advancing line. \n \nAll marbles must be destroyed to complete a level. The game is over once the marbles are pushed over the goal threshold.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/puzzledp.txt",
    "content": "The player clears the colored balls on the screen by firing balls against other balls of the same colour, the objective of the game is not to clear the screen of balls. It is instead to clear all the balls from around the level shape, referred to as the \"drop token\". Once this shape is freed, it explodes and the player travels onto the next level. There are 39 levels in the game, divided in groups of three levels. In the first two levels, the shape is something generic; in the third level the shape is a Zodiac sign, up to level 36 (since there are 12 signs). Level 39's shape is the Solar Symbol.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/qbert.txt",
    "content": "Q*bert is an isometric platform game with puzzle elements where the player controls the titular protagonist from a third-person perspective. Q*bert starts each game at the top of a pyramid of cubes, and moves by jumping diagonally from cube to cube. Landing on a cube causes it to change color, and changing every cube to the target color allows the player to progress to the next stage.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/qix.txt",
    "content": "The objective of Qix is to claim a certain proportion of the playing field as your own. At the start of each level, the playing field is just a large, empty rectangle, containing the Qix - a stick-like entity that performs peculiar, erratic motions within the confines of the rectangle. The player controls a small marker that can move around the edges of the rectangle. To claim an area of the screen, the player must detach from an edge and draw Stix within the rectangle. Stix are simply lines traced out by moving the marker. When the marker traces out a closed shape, the area enclosed by the shape becomes solid and has been claimed. The player may draw either Fast Stix, which appear blue when solid, or Slow Stix, which appear red. Slow Stix take longer to draw, but are worth twice as many points. Once the player has claimed an area, the marker can safely move along the border of that claimed area. To complete a level, the player must claim 75% or more of the rectangle's area.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/ragnagrd.txt",
    "content": "This is a fighting game originaly designed in 3D , and 2D sprites transposed (known as Computer Graphics, or CG), like Donkey Kong Country or Pulstar. Story: It is a world occupied by gods, the world in which reign the god of the Arc of Orion. He decided to offer his succession in a tournament at eight gods. The winner will have access to the throne of the god of the Arc of Orion. A struggle between the gods is about to begin.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/rallyx.txt",
    "content": "In Rally-X, the player drives a car around a maze picking up all of the yellow flags, of which there are ten, before the car's fuel runs out. The game-play has a similar feel to another Namco legend, \"Pac-Man\"; although in Rally-X, the mazes are much larger and, with each maze having only ten flags to collect, is more sparsely populated than Namco's pill-eating legend. \n \nIn-game opponents consist of red enemy cars that try to ram into and destroy the player's car, a problem compounded by the fact that enemy cars are faster than the player's. A smoke screen can be activated which trails behind the player's car and causes any pursuing enemies to crash. Each maze also has rock formations which, if crashed into, will result in the loss of a player car. A radar display to the right hand side of the playing area shows the positions of both the flags, and the enemy vehicles.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/rampage.txt",
    "content": "George, Lizzy and Ralph were just ordinary Americans, until an experiment went wrong, turning them into a Gorilla, Lizard and Werewolf respectively. Following this, the three of them plan to go round destroying buildings, and up to 3 human players can join in.\n\nSmashing at the edges of the buildings for long enough will make them collapse. The police and military are after you, and will shoot at you, so try to destroy them (failing that, you can avoid the bullets). You will need to eat regularly, with things like plants on offer, to avoid shrinking back to being human.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/ramprt2p.txt",
    "content": "Rampart is a superb arcade puzzle game in which up to three players must build up a castle using Tetris shaped pieces to form a castle wall and enclose their keep. Each player must then place a limited number of cannons inside their castle wall before the timer expires. Once the cannons have been placed the battle itself begins. Players must target their cannons onto the enemy's castle (or, in the one-player game, enemy ships and peons) and destroy as much of the enemy army as possible before the time limit expires.  \n \nOnce the battle is over the players must repair their castles, again using tetris shapes. The players' Keep must be completely encircled with castle wall or the game is over. In the single-player sea attack game, any enemy ships that manage to reach the coast nearest the player will unload peons that will attack the player's castle by land.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/rastanu.txt",
    "content": "Rastan saga known in North America simply as Rastan, is a 1987 hack and slash platform arcade game developed and published by Taito.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/rbff1.txt",
    "content": "The fourth title of fighting Fatal Fury series. Now, you can destroy fight scene objects and the \"Fatal Fury 2\" fighters are back forming this list: Terry Bogard, Andy Bogard, Joe Higashi, Franco Bash, Mai Shiranui, Bob Wilson, Geese Howard, Billy Kane, Hon-Fu, Ryuji Yamazaki, Sokaku Mochizuki, Blue Mary, Kim Kaphwan, Jin Chonrei, Jin Chonshu and Duck King.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/rbff2.txt",
    "content": "SNK's Fatal Fury fighting series reaches its 7th episode bringing a lot of \"innovations\" and some significant changes, starting from characters: all the 20 fighters from previous game return with new artworks and battle stages completely redrawn, as well as some remodeled (or new) moves.\n\nThe traditional fighting system comes with sensible modifications, like the removal of both \"Rank System\" (SSS, SS, S, AAA etc.) and ground breakable objects. The match system using 2 battle plans (foreground/background) remains semi-intact, because now some battle fields (like Cheng Sinzan's stage) uses a single plane, forcing the players to use only the basic defense to avoid attacks.\n\nBut the main addition of this title (and the reason for subtitle \"The Newcomers\") are 2 new characters entering for Fatal Fury's main cast: Rick Strowd, a mysterious fighter with a particular fighting style and Li Xiangfei, a young female Chinese martial arts fighter. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/rbffspec.txt",
    "content": "It was the sequel of Real Bout Fatal Fury, with which sixth delivery of the series was arrived at his, in this we had 20 characters (Terry Bogard, Andy Bogard, Joe Higashi, Mai Shiranui, Tung Fu Rue, Cheng Chinzan, Laurence Blood, Wolfgang Krauser, Duck King, Kim Kaphwan, Blue Mary, Hon-Fu, Bob Wilson, Mochizuki Sokaku, Franco Bash, Ryuji Yamazaki, Jin Chonshu, Jin Chonrei, Billy Kane and Geese Howard) and their aspects are 100% remodeled.\nAlso, the game maintains the capacity to destroy some things of the fight zone.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/renegade.txt",
    "content": "Classic arcade beat-em-up that would get many ports done for other systems. Pioneered gameplay elements which would become the foundations of the scrolling beat 'em up genre.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/ridhero.txt",
    "content": "Riding Hero is a motorcycle racing game with three modes of play: W.G.P. mode, R.P.G. (Story) mode, and Multi-Play mode.\n\nIn W.G.P mode, you pick your bike that you want to use, and then race up to ten world circuits, including France, Germany, Italy, U.S.A, Spain, Sweden, and more. You race against the top riders. Try to aim for the top.\n\nR.P.G. mode is interactive. You travel between locations, and explore them, and speak to any people here. You start with no bike, so you must go to the Bike Shop and purchase one. Then with some help with the owner, you can race against up to six opponents. The more races you win, the more money you earn. Keep winning and you will be able to race the Suzuki 8-hour. During this mode, a timer will count down. If this expires, you must insert a coin in order to continue.\n\nMulti-Play mode lets you \"link\" cabinets together so that two players can race each other side-by-side.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/ringdest.txt",
    "content": "Ring of Destruction: Slam Masters II, is the 1994 sequel to Saturday Night Slam Masters and the second game in the series. It was not ported to home consoles. \n \nUnlike the first game, which played like a traditional wrestling game, Ring of Destruction's format was changed to play like a traditional one-on-one 2D fighting game (similar to Super Street Fighter II), with the action restricted to one plane. The game's configuration was changed to a five-button setup (two punch buttons, two kick buttons and a grappling button). The objective of each match is to deplete the opponent's life bar in two out of three rounds. It is no longer necessary for the player to pin their opponent to win a match, although all the other moves have been retained. \n \n\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/ringking.txt",
    "content": "Ring King is a boxing game in which the action in the ring is viewed in a 3D top-down view and a full range of moves is provided, with the standard jabs complimented by body punches and the ability to dodge, duck or raise your guard. Each punch...\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/roboarmy.txt",
    "content": "A mad scientist decides to create an army of robots to destroy the city, capture all the citizens, and use their brains for more robots to take over the world. You control one of two robots who use its fists and special attacks to take on the army throughout a jungle stage and various buildings in the destroyed city. Robots and robot dogs sometimes leave arms or metal bars that can be used as weapons. At the end of each area, you need to defeat a boss in order to proceed to the next area.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/robocop.txt",
    "content": "RoboCop - The Future of Law Enforcement is a single player, side-scrolling platform shoot-em-up based on the 1987 movie of the same name. The game's story mirrors that of the film, with former cop Murphy, now a half-human cyborg called 'RoboCop', on a quest to bring down the evil OCP corporation. \n \nRoboCop features nine levels of action, with two of the game's nine stages being into-the-screen target ranges, in which players can try to accrue bonus points and earn extra health. Wooden crates occasionally bar RoboCop's progress, but these can be punched to remove them. Marked crates can be smashed to reveal one of three Weapon power-ups; Three-way Gun, Dual Laser and the incredibly powerful Cobra Gun. \n \nThe film's incidental music plays throughout the game and RoboCop's speech is sampled directly from the original film.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/robocp2u.txt",
    "content": "An arcade-only sequel to the 1988 original, placing less of an emphasis on platform action than the face game and concentrating almost exclusively on the shooting aspect.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/robotron.txt",
    "content": " \nSet in the year 2084, Robotron is a single-screen shoot-em-up in which super-intelligent self-aware robots known as 'Robotrons' - designed and built to help mankind - have revolted against their creators and vowed to either reprogram the humans into Robotrons or, failing this, wipe-out the human race entirely.  \n \nThe player must destroy the robots and rescue the Earth's remaining human families. The player's only weapon is a multi-directional Anti-Robot Laser Gun. Used effectively, it will give players the power to destroy all the Robot waves, with the exception of the indestructible 'Hulk' unit.  \n \nAt the start of the attack wave, players will have three chances to wipe out the enemy and advance to the next wave. Every 25,000 points players are granted another chance to complete their mission.  \n \nMAN, WOMAN, CHILD: These are the only three types of human clones left on Earth. Defenseless and easy prey to the Robots, they are totally dependent upon players for their survival and will wander aimlessly until the player makes contact with them. Touching them will place them under the player's protective powers and earn them the following points: 1,000 for rescuing the 1st human; 2,000 for the 2nd: 3,000 for the 3rd; 4,000 for the 4th; 5,000 for the 5th; and 5,000 for every additional human saved. At the beginning of each new wave and when the player loses a turn, rescue scoring will again begin at 1,000. \n \n\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/rocnrope.txt",
    "content": "Roc'n Rope is an incredibly difficult yet playable platform game featuring four different levels. The player takes on the role of a an archaeologist whose mission is to return the missing tail feathers to the golden Phoenix. The archaeologist is armed with a harpoon gun and uses it to fire a rope into a platform above, in order to climb up the rope and progress up the level. This is vaguely similar to the superb 'telescopic arm' feature that appeared in Capcom's superb \"Bionic Commando\". \n \nAll levels are patrolled by enemies in the form of dinosaurs and cavemen and all are deadly to the touch. Some cavemen will pull on the harpoon rope while the archaeologist is climbing it. This will result in the player falling from the rope and losing a life. The archaeologist is armed with a light ray that will kill the enemies. \n \nA breakdown of the game's four levels: \n \nThe first level is possibly the most difficult in the game. Players begin at the bottom left of the screen and must work their way up to the Roc, who is sitting at the upper right of the screen. There are many layers of ledges coming out from the sides of the screen. While the middle of the screen is open to the sky (except for a few floating platforms). To reach the top, players must use the harpoon gun to climb diagonally back and forth until they reach the top (ensuring that the Phoenix feathers have been collected on the way). \nThe second level is set underground. There are a lot of dinosaurs on this screen and far fewer platforms than on the first level. Many of the platforms stretch completely across the screen, so there aren't many pitfalls to be wary of. Once again, players must get the archaeologist to the top of the screen to complete the level. \nThe third level is set outdoors. A 'ferris wheel' style rotating platform sits in the center of the screen, but this can be avoided if players don't wish to use it. The easiest route to the top is on the right-hand side of the level. \nThe fourth and final level is shaped a little like a mountain. The player's main concern here is a large waterfall in the center of the screen. Players must time their harpoon climb just right to avoid being killed by the deadly waters. Once this level is finished, the game starts over with an increased level of difficulty.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/rohgau.txt",
    "content": "A good-looking horizontally scrolling shoot 'em up with a few unique features that make it stand out in the crowd.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/rotd.txt",
    "content": "Originally designed by Evoga to be a sequel to the 1995 fighting game Double Dragon (changing it to a homage after failing to acquire the intellectual rights to the series), Rage of the Dragons is a 2-on-2 tag-team fighting game with the same art style as Noise Factory's earlier Sengoku 3. \n \nThe story involves various pairs of martial artists and those with supernatural powers, with everybody having personal motivations for fighting in Sunshine City. Some of these fighters harness the power of dragon spirits (with brothers Billy and Jimmy Lewis controlling the Blue and Red Dragons and main antagonist Johann controlling the Black Dragon).\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/rthun2.txt",
    "content": "Rolling Thunder 2 is a straight sequel to the superb 1986 original, Rolling Thunder 2 sees one or two players taking control of secret agents in this scrolling, platform shoot-em-up. The agents once again find themselves up against the sinister GERDRA organization and its many armed agents. Gameplay is very similar to the original, with doors both releasing enemies and hiding weapons and ammunition for the players to collect.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/rthunder.txt",
    "content": "Rolling Thunder is a single-player scrolling platform shoot-em-up in which a James Bond-esque secret agent codenamed 'Albatross' has been ordered by the Rolling Thunder anti-espionage unit to stop the criminal organization known as Geldra. Albatross must also rescue captured field agent, Lelia Blitz and overthrow Geldra's leader, Maboo.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/rtype2.txt",
    "content": "The sequel to the hugely successful original finds the evil Bydo Empire once again intent on the destruction of all mankind in this sideways scrolling, six-level shoot-em-up. \n \nThe innovative weapons system of the original game - the 'Beam Weapon' and 'Force Pod' - make a welcome return and remain unchanged for the sequel. \n \nThe tight, demanding gameplay and high emphasis on correct usage of the weapons system also return - although the sequel is, if anything, even more demanding than its already unforgiving predecessor; with more durable enemies and trickier level design.  \n \nR?Type II features three new weapon shot types:  \nGreen - Search Laser - fires semi-homing lasers that can bend at 45° angles.  \nGrey - Shotgun Laser - fires large shells that travel a short distance before exploding powerfully.  \nScatter Bomb - drops bombs to the ground; when these explode, the explosion scatters forwards along the ground. This is a supporting weapon that can be equipped instead of missiles. \n \nIn addition to the new weapons, R-type II's Beam Weapon has received an upgrade. As with the first game, holding down the fire button makes a power gauge fill up, releases the button then unleashes a powerful plasma shot. For the sequel, however, continuing to hold down the button causes the gauge to charge up further. This 'double-charged' gauge flashes blue and red and releases an even more powerful plasma burst.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/rtypeleo.txt",
    "content": "R-Type Leo is a horizontally-scrolling shoot-em-up and is the third and final arcade release of this classic series (although numerous console-only sequels would follow, see 'Series' for details). \n \nMankind are currently at peace with their former adversaries, the Bydo Empire, and have taken the opportunity to undertake a massive project called 'Project Paradise'. This involved the construction of an artificial terrestrial-like planet called 'Eden', created as a safe haven should humanity once again find itself under threat. However, soon after construction is completed, 'Major' - the bio-computer system responsible for maintaining Eden - malfunctions, taking control of the planet's defences and launching an attack on mankind. It is up to the newly-developed 'R-9 Leo' fleet to fly in and stop Major's assault on its creators. \n \nR-Type Leo deviates from the gameplay style of its predecessors by removing the use of both the 'Force Pod' and the 'Wave Cannon'. The new weapons are called 'Force Bits' (later identified in \"R-Type Final\" as \"Psy Bits\") and the 'Bit Shot'. The three 'Force Bit' weapon types are: \nRed - Claw Laser: a powerful horizontal laser beam and horizontal traverse wave \nBlue - Mirror Laser: fires multiple, ricocheting lasers. \nGreen - Search Laser LRG: fires semi-homing lasers that can bend at 90 degree angles. \n \nUnlike previous 'Bit' devices, the 'Force/Psy Bits' are capable of firing either forwards or backwards (their direction dictated by the movement of the ship itself). Finally, the 'Wave Cannon' is replaced by a 'Bit Shot', in which the Psy Bits detach from the ship and collide with the nearest enemy. The Bits can only do this for a limited time before running out of energy, and must be recalled to the ship to recharge. \n \nR Type Leo consists of 6 stages and is the first game in the series to allow 2 players to play simultaneously.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/rtypeu.txt",
    "content": "RType is a sideways-scrolling shoot-em-up in which the evil Bydo Empire rules the galaxy through fear and intimidation and it's up to the player - piloting their heavily-armed R-9 space ship - to battle through eight tough levels to the heart of the Bydo stronghold and defeat them. \n \nThe game's revolutionary weapons system is its real stroke of genius. The first of numerous innovations that R?Type bought to the genre is the beam weapon: when the fire button is held down, a 'power meter' starts to charge up; once the meter is full, releasing the fire button unleashes a very powerful plasma burst capable of inflicting much greater damage to enemy ships or even destroying numerous enemies simultaneously. The trade-off is that charging the weapon takes up valuable seconds, giving the Bydo ships time to attack. \n \nThe most significant addition to R-type's arsenal is the now-legendary 'Force Pod'. This takes the form of an invincible, detachable laser-firing pod that can be attached to either the front or rear of the player's ship, or can be detached completely, after which the pod sits some distance either ahead or behind the player's ship, tracking its movements and providing additional fire power. When attached to the R9 ship, the pod acts as a shield. This forms a crucial part of R?Type's gameplay and has to be fully utilised to navigate certain sections of the game, such as the huge mothership that comprises the game's 3rd stage. \n \nR?Type's levels are designed to make full use of its unique weapons system, making for very linear and demanding gameplay in which losing or picking up the wrong weapon at the wrong time often leads to an instant death. Its intelligent, precise and demanding level design, gave the world its first truly 'strategic' shoot-em-up.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/rushatck.txt",
    "content": "Depending on which title you use, and how you interpret it, this game is about a guy who a)rushes in before attacking b)attacks Russians (this was the mid-80s, when the US helped bin Laden do the same), or c)wears a rather goofy hat. One way or another, this arcade conversion arms you with a knife and sends you on a kamikaze mission against hordes of enemy fighters. \n \nThere are four distinct sections of gameplay, taking in a Missile Base, a Harbour, a Bridge, and an enemy Prison Camp. Extra weapons with limited ammunition can be collected along the way, which will make the task a lot easier. The level is divided into 3 horizontal levels, which can be moved between either by jumping or using ladders, and this gives a chance to avoid the more threatening mobs of enemy fighters\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/rygar.txt",
    "content": "Rygar is a classic game for many home consoles. It also has an Arcade version that plays different than the home console versions.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/s1945.txt",
    "content": "In 1945, the second world war ended. Soon, there was peace, but an organization of high-ranking military officers from all over the world form a global army known as CANY. Their mission was to conquer the world. CANY activity was found in areas like the Soviet Union, America, Japan, and even Germany. It is revealed that CANY had weapons never seen before from rockets to mechanical walkers. The world quickly formed a group of pilots and planes called the Strikers whose mission is to rid of CANY from the world.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/s1945ii.txt",
    "content": "Continuing where the last game ended, the forces of CANY had been demolished by the previous Strikers' line-up. However, a small group known as the FGR stole the sources and technology responsible for the last events and planned to continue CANYs work by initiating world-warfare with massive mech technology. Once again, the Strikers are called into action.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/s1945iii.txt",
    "content": "Year 1999, fall. The countless super minimum machine group 'nano-machine', which came flying, invaded the principal weapon and military terminals of each country from outer space and began multiplication. This weapon group which is automated with the 'nano-machines' repeated attack with non discrimination and the metropoles of each country were in a devastating state. A fear of the extensive nuclear warfare with the strategy nuclear missile error morphism hit the world!!! Barely the unit of each country which prevents the invasion of the 'nano- machine' is summoned because of the unmanned weapon eradication maneuvers. So, fighting with the weapons of the entire world was not enough. The Strikers start the attack on the enemy center! By the way of the time of half a century, new legend of special force STRIKERS now starts!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/s1945p.txt",
    "content": "The player chooses one of six planes or can opt for a random choice. The first four stages are in random order, while the last four are sequential. Players collect weapon powerups, bombs, and gold bars for points. Each plane has a unique \"supershot\" which is charged by damaging enemies and fired by holding then releasing the fire button. Supershots can be stored, although the number varies from plane to plane. Using a bomb results in a large friendly fighter swooping onto the screen and blocking shots while returning fire for a few seconds. \n \nAfter the player beats the final boss, the game starts again from the beginning, albeit at a much higher difficulty level. All level are similar to the ones in Strikers 1945 II. Only one of the four bosses that are randomly chosen and the sixth boss is changed.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/samsh5sp.txt",
    "content": "An ordained meeting of 28 fierce warriors begins, to precede a series of duels to the death. These individuals entrust their fates to their skill and their weapons. For those not up to the task, a cherished end in battle is their only hope. The twenty-eight Samurai characters clash in one epic title.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/samsho.txt",
    "content": "In early Japan, a man named Shiro Tokisada Amakusa preaches a heretic religion. Little does anyone know that Amakusa is really a servant of the evil Ambrosia, who took over Amakusa's body. Ambrosia wishes to shroud the world in darkness.\nNow, choose between 12 warriors (and 3 bonus characters) to fight for the honor of destroying Amakusa, and fulfilling a mission.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/samsho2.txt",
    "content": "One of SNK's legendary fighting game series has made a return! In Samurai Shodown II, you can take on one of the roles of 15 warriors as you fight your way through the land to defeat the evil Mizuki! Slash, kick, and slice your opponents in half...do whatever it takes...live by the sword, and die by its blade.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/samsho3.txt",
    "content": "The 12 samurai (and ninja) elite are back, this time to answer the threat of the demon Zankuro, Minazuki. The possessed swordsman has brutally slaughtered innocents in his path, yet could not raise his blade to the cries of an innocent baby. Vowing never to spill innocent blood again, he targets those who live by the way of the sword...but now the hunter becomes the hunted. The third series of Samurai Shodown introduces 2 different techniques for each character. The \"Slash\" techniques are the original moves of the most of the characters whereas the \"Bust\" techniques maybe the \"darker\" version of each character.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/samsho4.txt",
    "content": "Bringing a new breath to SNK's swordsman fighting series, this 4th installment marks the return of 3 classic characters (Yagyu Jubei, Charlotte and Tam Tam, now with updated stuff), introduces 2 newcomers for the pantheon (the brothers Sogetsu Kazama and Kazuki Kazama) and brings some new backgrounds.\n\nIn spite of these little improvements, the game preserved (and improved a lot) many elements that did the previous one (Samurai Shodown III: Blades of Blood) a quite popular title, like the dodge move and the chance to choose between two versions of the fighter: the standard one and an alternative dark-styled one (SLASH and BUST, respectively).\n\nWith the intention to provide more action in the battles, the \"No Contest\" Moves were introduced: working in similar way (and under certain conditions) to the many games of Mortal Kombat Series, your fighter will execute an ultimate-slaughter move in a stunned opponent. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/samsho5.txt",
    "content": "Seven years after the fourth game in the series, Samurai Shodown returns. In the game's time frame, this is the earliest game, hence the Japanese title Samurai Spirits Zero. It takes place in 1786 from January through the later summer. The game is therefore considered a prequel to the series.\n\nThe overall gameplay was slightly altered. It is a little faster, and the Slash/Bust system has been removed. Each character now has only one version, or the Bust mode is simply replaced by a new character of very similar setup. Combo slashes, sidestepping and fatalities have also vanished. The basic moves have been modeled after the first games in the series. They consist of three types of slashes, a single kick, and various dodge maneuvers similar to Samurai Shodown II.\n\nThere are 24 characters, a familiar cast with some new faces. Unlike the previous games, it is not possible to kill your opponent.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/samuraia.txt",
    "content": "This game is known in Japan as \"Sengoku Ace\" (translates from Japanese as 'Civil War Ace'). \n \nSamurai Aces is the very first game developed by Psikyo (Psikyo was founded in 1992 in Tokyo). \n \nNote: There are 22 different endings!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/savagere.txt",
    "content": "The evil King Lion has crowned himself as the master of Fuun-Ken, a new style of martial arts that includes throwing weapons in addition to hand-to-hand combat. This does not sit well with the rest of the Fuun-Ken fighters around the world, so they all decide to beat each other up in classic 2 round fights to decide who gets to get down with King Lion himself.\n\nSavage Reign is a one-on-one 2D fighter in which you select your character and try to defeat all challengers using your basic attacks and special moves. The game features 2 different horizontal planes to which the characters can freely jump to in order to avoid attacks a la Fatal Fury. You cannot escape completely however, as all characters have a throwing weapon they can use in different ways to reach each other no matter where they are.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/scontra.txt",
    "content": "A year after the battle with the Red Falcon organization, Bill and Lance are sent on another mission. This time, the alien forces have taken over an allied military base somewhere in Africa, possessing most of its troops. Bill and Lance must not only fight against their former comrades-in-arms, but also a new mutated form of the same alien creatures they fought during their previous mission.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/sdodgeb.txt",
    "content": "Super Dodgeball uses the same basic gameplay used in the other games in the series with some minor differences. The game puts you in control of a team of 3 characters (with you controlling the lead character or the one with the ball at the time) that must defeat a selection of other teams in order to become the champion. This time around the teams are all formed by characters from the Nekketsu Kunio Kun universe, each representing different suburbs of Tokyo that compete in an amusement park for the ultimate title. Each character has their unique stats and special moves, which now depend on a power bar that can be charged-up by holding both attack buttons.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/seawolf.txt",
    "content": "The game screen is a side view of a underwater scene (with the surface towards the top). You control a crosshair at the surface level. The object is to shoot as many ships as possible, before the time runs out. Your torpedoes are launched from the bottom of the screen, and must move upwards to hit the enemy ships (while avoiding the mines that float at different levels of the water). Your submarine can shoot 5 shots before it has to reload (an automatic action that takes about a second). Your game will be extended if you reach a certain score before time runs out (the score is operator adjustable).\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/seganinu.txt",
    "content": "A run & gun shooter arcade game released by Sega in 1985, also known as Sega Ninja or The Ninja.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/sengoku.txt",
    "content": "A 2D side-scrolling beat 'em up, Sengoku casts you and a friend as two renegade fighters out to beat the crap out of the many assorted gangs that threaten the post-apocalyptic cities of the future. Unfortunately for them they also get caught in a time-warping scheme caused by the evil Nobunaga who attempts to invade the time period with mythical warriors and evil creatures from the Japanese sengoku period.\n\nThe game thus takes you from the city to a spirit-realm from time to time, in which you must fight all sorts of Japanese mythical figures, and release three haunted spirits that can aid you in your battle. Collecting orbs from defeated enemies allows you heal up, gain weapons and even energy attacks and also summon the warrior forms of the spirits you released, which change your character's form and give you a new collection of attacks and powers.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/sengoku2.txt",
    "content": "A sequel to Sengoku, Sengoku 2 once again casts you as two street fighting heroes caught in the midst of a supernatural attack by the undead forces of the evil Nobunaga from the Japanese sengoku period, although this time the game warps you through several time periods and locations to fight evil, from feudal Japan to WWII Europe.\n\nAs in the original, the game plays as a standard 2D side-scrolling beat 'em up, in which you have to proceed through each stage killing all enemies that cross your path and defeating the stage boss to proceed. New for the sequel is the inclusion of swords as your default weapons, which now feature both high and low attacks, as well as a block move that allows you to parry enemy attacks. Collecting orbs gives you weapon upgrades and energy attacks, as well as the ability to morph into any of the three spirits released in the original which give you a new arsenal of moves and powers.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/sengoku3.txt",
    "content": "The third game in the Sengoku series of beat 'em ups, Sengoku 3 once again pits you and a friend against the undead forces of Nobunaga, however this time you can freely select from a group of different characters each with their own weapons and abilities, as well as choose which location in the world (or level) to tackle whenever you want.\n\nThe game incorporates a more complex fighting system similar to a one-on-one fighting game, by giving players different attack buttons, special moves based on directional inputs, combos and even a super bar used to unleash devastating super moves. You cannot change weapons or transform into other characters as in the previous games, but you can acquire different ranged weapons for additional attacks as well as unlock certain bosses to increase your available characters.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/sf1us.txt",
    "content": "Martial arts masters Ryu and Ken enter a worldwide martial arts tournament spanning 5 nations as they face 10 of the world's greatest fighters. The game can be played alone or with 2 players competing, with Player 1 taking the role of Ryu and Player 2 as Ken. The predecessor to the ultra-popular \"Street Fighter II - The World Warrior\".\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/sf2.txt",
    "content": "GET READY TO RUMBLE!\n\nFrom across the globe comes eight of the wildest fighters the world has ever known. Choose your champion, gather your courage and prepare to battle your opponents in a bare knuckle brawl. Face Ken and his devastating \"Dragon Punch\"! Watch the temperature rise as Dhalsim incinerates you with his mystical Yoga Flame! Hear your spine crack as Zangief smashes you to the pavement with his spinning pile driver! Cover your ears as Guile breaks the sound barrier with the awesome power of the Sonic Boom!\n\nAnnihilate your competition and claim the right to test your skills against the bone-crushing power of the Grand Masters! Can you survive? Can Anyone?\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/sf2t.txt",
    "content": "From the corners of the globe come twelve of the toughest fighters to ever prowl the streets. Choose your champion and step into the arena as one of the eight original challengers or as one of the four Grand Masters! Pound your opponent as Balrog and knock them out for the count. Tower over your prey as Sagat and daze them with your awesome Tiger Shot. Slash your opponent with Vega's claw and send them running for cover. Or strike fear into your enemies as M. Bison, the greatest Grand Master of them all!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/sfa2.txt",
    "content": "Street Fighter Alpha 2, known as Street Fighter Zero 2 in Japan, Asia and South America, is a 1996 fighting game originally released for the CPS II arcade hardware by Capcom. The game is both a sequel and a remake to the previous year's Street Fighter Alpha: Warriors' Dreams, which is itself a prequel to the Street Fighter II series in terms of plot and setting\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/sfa3.txt",
    "content": "Street Fighter Alpha 3, the third game in the Alpha series, has a total of 31 fighters, the most in the series so far. New characters include old favorites E. Honda, Blanka, Vega, Cammy, T. Hawk, Dee Jay, Juni and Juli. Some of the newest fighters on the block include a former Final Fight character (Cody, who has been in jail since the last Final Fight game, or so his clothing suggests), Karin Kanzuki and Rainbow Mika. The major difference between this Alpha and the last two are the new play modes World Tour, Arcade, VS, Training and Entry.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/sgemf.txt",
    "content": "Super Gem Fighter: Mini Mix / Pocket Fighter is a superb, abstract and humorous fighting game featuring miniaturized renditions from several Capcom fighting games; including the legendary \"Street Fighter\" series, as well as \"Darkstalkers\" and the little-known \"Red Earth\". \n \nDuring a bout, players will be able to release coloured gems from successful attacks against their opponent, as well as from wooden chests that regularly appear. Collecting these gems will 'power-up' the player's character, giving them more powerful attacks. There are two bars and three sub-bars in the interface. The two main bars are the life bar and the super bar; the first indicates the player's health and the second their ability to throw super combos. The Super Bar itself can be filled up to nine levels, allowing players to execute more super combos. Each super combo has a level assigned to it, and it uses Super Bars depending on it.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/shadfrce.txt",
    "content": "Shadow Force is a side-scrolling platform beat-em-up for one or two players, who choose to play as one of four Ninjas and must use all the means at their disposal to free the world from the grip of the evil Dr. Wong and his terrifying 'Theaser' organization. \n \nShadow Force has 6 buttons: 2 for punches (low and high) 2 for kicks (low and high) 1 for jumping and 1 for possessing an enemy. Additional attack moves can be utilised by moving the joystick up or down and pressing punch and kick buttons. It's also possible to combine punch and kick attacks to obtain different combos and while the enemies can do the same, the number and variation of their attacks is generally lower than those available to the players. \n \nIn addition to being able to possess nearby enemies, Shadow Force also features something else new to the side-scrolling beat-em-up genre; at the end of each stage players take part in a bonus round consisting of a one-on-one fight.  \n \nPlayers can choose to start on any one of the first three stages and the game features 14 different possible endings.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/shangon.txt",
    "content": "Super Hang-On is a checkpoint-based racing game and is the sequel to the acclaimed \"Hang-On\", released two years earlier. As with the prequel, players take control of a superbike and must race over twisting road-based circuits, avoiding rival bikers and trying to reach the end-of-stage checkpoint before the time limit expires. \n \nFor the sequel, Sega introduced the hilly, undulating roads that had been executed so superbly in 1986's \"Out Run\". The gameplay was further enhanced with the introduction of the 'turbo' button. Upon reaching the bike's maximum speed of 280kph, players could press and hold the turbo and push the bike up to 324kph - something that was necessary to beat the game's extremely tight time limits. This had to be used carefully, however, as the increase in speed made the bike harder to control and accelerating at the wrong time would invariably see a head-on collision with either rival bikers or the road-side objects that litter the stages. \n \nPlayers could chose to race on any one of four courses: Africa, Asia, America and Europe. Africa is the easiest and shortest of the four, with each subsequent course becoming both more demanding - with tighter bends and more aggressive rival racers - and having a greater number of stages to have to beat. Africa, for example, is made up of only six stages, while the hardest course, Europe, has eighteen stages.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/shaolins.txt",
    "content": "Kung-fu player jumps around multiple level boards, kicking opponents and collecting power-ups and bonus items. Player defeats by way of three kicks the board \"boss\" and advances to the next level.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/sharrier.txt",
    "content": "Space Harrier is a sprite-scaling 3D shoot-em-up set in the 'Fantasy Zone'; a surreal world composed of abstract structures and a checkerboard landscape. The game's enemies are as abstract as its setting; with creatures including prehistoric Mammoths, alien pods, giant mushrooms and, at the end of most stages, a huge, fireball-spitting Chinese Dragon. \nnnThe player's on-screen counterpart carries a portable jetpack under his arm which allows him to fly. The player can also run along the ground to avoid overhead structures and enemies. \nnnIn addition to its flight capability, the jetpack is also equipped with a laser, used to destroy both the game's many enemies as well as some (but not all) obstructions, such as the trees and floating rocks on the first stage.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/shdancer.txt",
    "content": "Shadow Dancer is a one-player game in which you control Shinobi. With the help of your dog, you must kill your enemies while you venture through locations such as airports, railroads, waterfalls, sewers, and more. Furthermore, you must find and disarm several bombs along the way before you leave each. You also have the option of using magic against enemies, which may consist of tornadoes or fireballs. \n \nThere are five missions you must complete; and each one has different objectives such as obstructing the enemies deadly mission, disrupting the enemy's supply route, raiding the enemy's industrial units, attacking the enemy's underground forces, and liberating and securing the shuttle's base. Each mission consists of three stages and there is a boss on each of the mission's final stages.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/shinobi.txt",
    "content": "Shinobi is a scrolling platform beat-em-up in which the player takes on the role of Joe Musashi, a Shinobi Ninja, who must fight his way through 5 tough missions - each made up of between 3 to 5 stages - in his quest to rescue the kidnapped Ninja children of the Iga clan; now hostages of an evil Ninja syndicate called \"Zeed\". To complete a mission, the player must rescue all of the kidnapped children on each level, with the number of hostages remaining displayed on a meter in the bottom left corner of the screen. \n \nShinobi was a huge success for Sega, and deservedly so. Its perfectly realized blend of platform and fighting action and is as fine an exponent of the 'easy to get into, difficult to master' gameplay ethic as video games have seen.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/shocktr2.txt",
    "content": "As one of four playable characters each with unique methods of attack and power-ups, go through the level and destroy any enemies that get in your way, and defeat the boss at the end of that area. When you have completed the first area, you need to select a path to continue the game on.\n\nThe second game in the Shock Troopers series enables shot locking, close proximity attacks, and evasive maneuvers allowing for flexible operation. In addition to the four characters, versatile modes of attack are featured using powerful vehicles and special shots. Letters that make up certain keywords can be collected throughout the game, and by collecting each letter in the keyword, you will receive a high score. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/shocktro.txt",
    "content": "Shock Troopers is a 1-2 player game where players select one of eight characters to play as. Each character has their own attack. Players also have to choose one of three routes to take. The object of the game is to go toward the end of the level and defeat the end-of-level boss, which is usually a huge vehicle. Crates that are scattered throughout the levels can be broken into to reveal new weapons and power-ups.\n\nThere is a team mode where players have to select three characters. The characters can be switched on-the-fly during gameplay, which is useful if one of them is badly injured. Players can use the other teammates until life-ups can be found.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/shollow.txt",
    "content": "Satan's Hollow is a 1- or a 2-player game. When playing this game, the Rocket Launcher is under YOUR control. YOU make it move back and forth across the screen to launch Rockets that will eliminate your attackers. These attackers are displayed in groups, called 'racks', across the top of the screen. The first rack is made up of a small number of attackers. The second rack is made up of a larger number of these attackers. And intermixed with the racks of attackers is a rack with only a single fire-breathing Devil's head.  \n \nThe attackers and the Devil's Head will try to wipe out your Rocket Launcher. If they do, you lose one player. In emergencies, you have a Shield which goes all around your Rocket Launcher for a short period of time. It is activated by pushing the Shield button on the control console. BUT BE CAREFUL!! This consumes a lot of power and will only last a VERY SHORT TIME!  \n \nEach attacker eliminated will cause a Bridge Section to appear at the lower left corner of the screen EXCEPT: when there is already a Bridge Section there or when you have a Bridge Section in tow under your Rocket Launcher. Pick these Sections up with your Rocket Launcher and move them over to build a Bridge across the gorge at the right side of the screen leading into the land of SATAN.  \n \nWhen you complete your Bridge into the land of SATAN, you can cross it and do battle with him. If you win you will be rewarded by increased fire power for your Rocket Launcher. If SATAN defeats you, you lose one player.  \n \nAs your skill level increases, the number of attackers is increased and the speed that the fire-breathing Devil's Head moves is increased also.  \n \nBonus Rocket Launchers are awarded to you periodically throughout the game as you reach or pass certain preselected point values. Each attacker has an assigned point value.  \n \nThe object of the game is to HAVE FUN while constantly improving your skills as you play, eliminating as many attackers as possible each time to get the highest score.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/sidearmr.txt",
    "content": "An evil alien race called the 'Bozon' are trying to wipe out Mankind, and Lieutenant Henry and Sergent Sanders are given the responsibility of saving the Human Race. They each climb into a Mobilsuit - a jet-powered, heavily armoured combat suit - and set out on their mission.  \n \nSide Arms is a horizontally - and occasionally vertically - scrolling shoot-em-up for one or two players. Each player has two fire buttons, one for shooting ahead and one for shooting behind; crucial for a game in which enemies attack from all directions. Shooting certain enemies will reveal power-ups - displayed as 'POW' icons - and shooting the icons will either change their type, or reveal a special weapon. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/simpsn2p.txt",
    "content": "A jewel heist gone wrong sees Mr Burns's sidekick, Smithers, kidnapping Maggie and making his escape. Between one and four players take on the role of either Homer, Marge, Lisa, or Bart in this colorful, horizontally-scrolling beat-em-up from Konami. Each Simpsons character possesses an attacking move specific to them; Marge is armed with a vacuum cleaner, Lisa has a skipping rope, Bart has his skateboard, and Homer fights with his fists. The players must battle their way through a variety of Simpsons-themed levels - such as Springfield and Krustyland - fighting goons, thugs, zombies, drunks, firemen, and several Simpsons regulars. Many Simpsons characters that don't appear as enemies have 'cameo' scenes in the game (Otto working at a burgerstand in Krustyland, for example). The archetypal 'boss' character awaits the players at the end of every stage. The game ends with a final showdown with the evil Mr. Burns in his luxurious mansion. \n \nThe Simpsons was designed to Konami's typically-high production standards and was, like the 'Ninja Turtles' games that appeared a couple of years' earlier, very faithful to its source material. The colorful, smoothly-animated sprites captured the spirit of the legendary cartoon superbly, and the game's many humorous touches were timed to perfection.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/sinistar.txt",
    "content": "Your intergalactic crystal-mining mission takes you to the antipodes of the known universe. But your parametric DeepSpace scanner faithfully displays the sector of the galaxy you presently occupy (including an area fully three parsecs across, no less)!  \n \nKeep the galaxy safe for all its sinizens! Fiendish Worker ships from the planet Sporg will attempt to fabricate a Sinistar from the remains of derelict planetoids in your very sector. You must not let them do this for two reasons:  \n1) These planetoids contain the life-sustaining crystals that your civilization requires for its vital technologies.  \n2) With the eminently unstable Sinistar in their possession, the Sprogites can lay waste to any civilization in your sector. You alone stand in their way.  \n \nYou must mine the sinisite crystals. Williams has equipped you with the latest heuristic electret cannon technology. All you need to do is aim at a planetoid and shoot. Now collect your motherlode!  \n \nIn fact, only with sinisite can you manufacture sinibombs to eradicate the Sinistar. But you must also rebuff the Workers and disintegrate their even more aggressive comrades-at-arms, the evil skelomorphic Warriors! Intelligent beings everywhere depend on your courage, your dedication, your reserve, your shrewd command of tactical invention! It's up to you, space cadet!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/slammasu.txt",
    "content": "A 1-on-1 fighting game in which players choose from 10 different wrestlers and take to the ring to try and defeat their larger-than-life opponents. Each wrestler has an assortment of moves, including his own special 'super slam'. The object of the game is to win and defend the championship by pinning or putting a submission hold on your opponent.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/slyspy.txt",
    "content": "Secret Agent is a side-scrolling platform shoot-em-up which the player takes on the role of a James Bond-esque secret agent who must fight his way through a terrorist group called 'CWD' to reach the final Boss confrontation and prevent a stolen nuclear missile being launched. \n \nThe player starts the game armed only with a pistol, and this has a limited amount of ammunition. Once the ammo has run out, players can only kick their enemies. Machine guns are occasionally dropped by defeated enemies and can be picked up and used. Also, Golden Gun components are sometimes dropped; there are six of these in total and once all have been collected, the player is rewarded with a very powerful golden rifle. This weapon kills all enemies instantly but will only last for twenty-five seconds, indicated by a meter at the top-right of the screen. \n \nMost of the game's eight stages are platform-based, but there are also two underwater scuba levels and a motorbike chase. All of the game's end-of-level bosses reappear on the final 'underground lair' level. \n \nWhile not officially licensed as a James Bond game, Secret Agent is unmistakably meant to represent both the Bond character and movie series. The Bond villain Jaws shows up at the end of stage two and another famous Bond villain, Odd Job also appears. Another memorable Bond reference is the use of a Shaun Connery impersonator who tells players that they have done a Great job upon completion of a level.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/smashtv.txt",
    "content": "Smash TV is a single-screen shoot-em-up for one or two players and is set in a futuristic game show in the year 1999. Contestants must enter enclosed arenas and compete to collect prizes, money and keys, while fighting to stay alive as they are attacked on all sides by waves of enemies. \nThe game is a sequel to the legendary \"Robotron: 2084\" and like its prequel, utilises a dual joystick control system, with the left stick controlling player movement and the right controlling the direction of fire. \nEnemy waves enter each arena from four directions via open doorways and all must be killed before players can progress to the next stage. Some arenas feature static gun emplacements set into a wall that must also be destroyed. Power-ups that improve weapons, speed and armour appear at regular intervals, although each only lasts for a limited time. \nSmash TV is broken down into stages, each with a set number of arenas. Tough end-of-level bosses await at the end of each stage. \n\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/snowbrob.txt",
    "content": "One or two players take on the roles of snowmen Nick and Tom as they battle a variety of monsters over fifty platform-based, single screen levels.  \n \nThe snowmen can throw snowballs at the enemies with the aim of encasing them completely in snow. The encased enemies can then be kicked in order to destroy them and this is achieved by standing next to the snowball and pressing the \"kick out\" button. This sends the giant snowball flying around the screen, killing any enemies that lay in its path.  \n \nIf players take too much time to complete a stage, an evil pumpkin head will appear and try to kill them. The pumpkin is invincible but can be stunned with snowballs. After a short time the evil pumpkin will spawn ghosts that can travel freely around the stage as they seek out Nick and Tom. These ghosts can't be killed or stunned, so the player's only hope is to avoid them while eliminating the remaining standard enemies, to move on to the next screen as soon as possible. \n \nWhen players defeat an enemy, it may drop a coloured potion bottle. These can be picked up and act as power-ups: \nYellow = Long shot \nRed = Speed up \nBlue = Bigger snowballs (encases monsters quicker) \nGreen = Inflates the players like a balloon and lets them fly around the screen, killing any monsters they touch. \n \nEvery 10th level features a battle with a large end-of-level boss.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/socbrawl.txt",
    "content": "The Cybernetic players use special kick shots and built-in arm phasers to destroy other players. Make sure your power meter is FULL when exercising these brutal tactics. Both stadiums, which are magnetically enclosed, enable you to kick or pass... off the wall! There are no fouls in this league, so watch your back or you'll get pulverized by the opposing team! You'll find here the most advanced sport in the world of soccer... SOCCER BRAWL!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/solomon.txt",
    "content": "Solomon's Key is a single player platform/puzzle game in which the wizard Dana is on a quest to retrieve Solomon's key and vanquish the demon hordes that have broken through into his world. To achieve this Dana must advance through the fifty rooms of 'Constellation Space', before finally reaching the magical key. \n \nDana is armed with a magic wand that can be used to both destroy and create granite blocks, while blocks situated directly above Dana's head can be destroyed by repeatedly jumping up into them until they shatter. The blocks act as platforms, as well as barriers to defend Dana from the numerous patrolling enemies. Each room contains a golden key, retrieving this automatically opens the room's exit door and players must then try to find/create a safe route past the constantly spawning demons to reach the exit and progress to the next room.  \n \nBonus Items - some hidden inside pre-existing granite blocks - are scattered throughout each room. Collecting these earns the player extra points. Power-ups can also be found, these appear as potion bottles with a flame emblazoned on them and a maximum of three can be carried at any one time. When a potion is used, Dana shoots a fireball which will move along the walls and platforms until it hits and kills the first demon it comes into contact with. \n \nAs well as bonus items and power-ups, each room also contains a hand-bell. When collected this triggers the release of a trapped fairy, the fairy will then slowly fly around the room and can be rescued for bonus points. An extra life is awarded for every ten fairies rescued. \n \nThe game's levels are based on Zodiac star constellations. The main levels are divided into groups of four - making a total of fourty-eight standard rooms - with each group representing a separate constellation. In addition to the standard rooms, each constellation also has a secret bonus room that can only be accessed by finding the given constellation's 'Seal', which is located in the last room of each group. There are three further secret rooms - 'Page of Time', 'The Page of Space' and the 'Princess Room' - that are only accessible if the player has found the 'Hidden Seals of Solomon'. \n \nThe four room groups are: \n1-4 Aries 5-8 Taurus 9-12 Gemini \n13-16 Cancer 17-20 Leo 21-24 Scorpio \n25-28 Libra 29-32 Virgo 33-36 Sagittarius \n37-40 Capricorn 41-44 Aquarius 45-48 Pisces\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/sonic.txt",
    "content": "Segasonic The Hedgehog is a scrolling, isometric racing game for one to three players featuring Sega's legendary mascot, 'Sonic the Hedgehog'. Sonic's nemesis, 'Dr. Robotnik', is once again intent on World domination and is preparing to launch his latest attack from his new island base, Eggman Island. \n \nWhen 'Sonic', 'Ray', and 'Mighty' drop in to thwart his plans, Robotnik catches them with one of his devious machines. After finding themselves imprisoned in a tower, the trio break free onto the island, and proceed to make their escape and try to defeat Robotnik and his evil plans. \n \nSega Sonic's gameplay retains elements of the original console games, such as Sonic's ability to jump on the heads of enemies to kill them. The golden rings that Sonic collects are also included. Each level is littered with Dr Robotnik's devious traps; with lava flows, collapsible platforms, locked gates etc. all serving to hamper Sonic's progress.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/sonicwi2.txt",
    "content": "Aero Fighters 2 is a vertically-scrolling shooter in the same vein as 1942 and similar games. It supports up to two players and  has 8 different aircraft to choose from, each equipped with unique primary and secondary weapons. Power-ups upgrade the look, power, size and shape of the shots. Bombs activate a special power that usually wipes off the enemies on the screen. The game has a total of 10 stages (Japan, Brazil, Atlantic, U.S.A., France, Australia, Himalayas, Mexico, Hawaii and Space), all of them with a boss battle.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/sonicwi3.txt",
    "content": "Aero Fighters 3 is a vertically-scrolling shooter in the same vein as 1942 and similar games. It supports up to two players and  has 10 different aircraft to choose from, each equipped with unique primary and secondary weapons. Power-ups upgrade the look, power, size and shape of the shots. Bombs activate a special power that usually wipes off the enemies on the screen. The game has a total of 8 stages placed on several countries (Japan, Germany, Libya, Egypt, Pacific, U.S.A., England, France, Panama, Thailand, Ukraine, Atlantic and Space), all of them with a boss battle.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/sonson.txt",
    "content": "Son Son is a 2-D sidescrolling platformer. The screen scrolls automatically, only stopping to fight major enemies. The screen features six continuous platforms that occasionally feature small gaps. Sonson and Tonton walk automatically across these platforms. Pressing up or down will cause them to jump up or down to the next platform. Pressing left causes them to move more slowly than the screen scrolls, essentially continuing to move forward but at a reduced pace. Pressing right does the opposite - SonSon and TonTon will move across the platforms faster than the screen scrolls. The duo have only one attack - the ability to fire energy blasts from their staves. Touching an enemy or an unfriendly projectile causes the player to lose a life. If a player has any additional lives, they will return to the screen riding on a cloud that will give them temporary invincibility. If the player presses the control stick in any direction, the cloud will disappear and the character will resume its usual walking mode. The cloud will eventually disappear on its own if the control stick is not used.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/spf2t.txt",
    "content": "Burst right into the feverish puzzle action that combines irresistible, addictive fun with famous Capcom characters. Beat your opponent to the punch by stacking block after block in strategic patterns and color combinations. Be the first to fill the opponent's screen with blocks and K.O. you win! But get ready for more, because you can't play just once.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/spidey.txt",
    "content": "Spider-man - The Video Game is a sideways scrolling beat-em-up for 1 to 4 players; choosing from Spider-Man, Black-Cat, Hawkeye or Sub-Mariner. The heroes must fight their way through four levels of Dr. Doom's villains; including Venom, The Scorpion, The Lizard, The Green Goblin, The Sandman, The Kingpin, The Hobgoblin, Electro, Dr. Octopus and, of course, Dr. Doom himself. \n \nEach player character has a different weapon or power that can be used throughout the game while fighting. Spider-Man uses his webs, The Black Cat uses her 'cat's claw' grappling hook and cable, Hawkeye uses his bow and arrows and The Sub-Mariner uses his hydro-electric charges. The game's viewpoint pans in and out between alternate large and small scale (4-way scrolling) sections. The game's 'camera' zooms out on alternate levels with the zoomed-out view introducing four-way scrolling platform sections to the gameplay. The game ends when the fourth and final chapter has been completed.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/spinmast.txt",
    "content": "An evil doctor has kidnapped John and Tom's friend, Mary, and has stolen their treasure map. Rescuing Mary and getting back all pieces of the map takes them through 5 levels of arcade-style Jump'n Shoot-action.\n\nThere are several weapons to acquire, ranging from a yo-yo (the standard weapon) to bombs, icicles, missiles and more. Weapons differ in range, shooting frequency, and power, and can be shot in all directions. Each weapon also has a unique chargeable attack as well as a super-attack (which uses up one bomb-symbol).\n\nIt is also possible to jump on enemies or perform a sliding attack.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/splatter.txt",
    "content": "In a dark and stormy night, Rick and his girlfriend Jeniffer take refuge in the creepy West mansion, only to find himself dead and Jeniffer missing! Now, a mysterious sacrificial mask with amazing powers brings him back from the dead and in order to free himself from its curse, he must destroy the evil lurking deep within the mansion and save Jennifer in the process! Features some of the goriest graphics ever seen at its release date, awesome music & sound effects, lots of the typical toys seen in horror flicks (knives, etc.) as well as lots of challenge!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/spnchout.txt",
    "content": "Super Punch-Out!! is an update of the superb boxing game, \"Punch-Out!!\", featuring five new larger-than-life opponents. The player once again assumes the role of a green-haired boxer who must fight his way up through five boxers to earn the title of 'Champ'.  \n \nAs with the original game, the player's boxer is viewed from behind with his torso rendered with wire-frame graphics (allowing the player's opponent to be easily seen). Punches, dodges and blocks must all be well-timed in order to defeat the opponent.  \n \nBoth the player and the opponent have stamina meters displayed at the top of the screen. These decrease when either boxer takes a punch and boxers will get knocked down if their stamina meter runs out completely. Faster knockdowns will cause the fallen boxer to recover less stamina upon getting up; the same happens if a boxer is knocked down by a knockout punch.  \n \nThanks to the refined roster of new and hugely distinctive enemy fighters, Super Punch-Out!! is considered to be an improvement over the first game.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/spyhunt.txt",
    "content": "Spy Hunter is an action/driving game. It places the player as the driver of a G-6155 CIA Prototype Interceptor sports car. The object of the game is to travel the freeways and waterways, hunting down and destroying as many enemy vehicles as possible, all the while not harming civilian vehicles. The view is top-down and the screen scrolls vertically underneath the player's car. \n \nThe game begins with the player driving the G-6155. Soon, the player starts to encounter enemy vehicles which try to force the player's car off the road and crash. Each enemy vehicle has its own special feature, such as tire slashers or bulletproof armor. \n \nPoints are scored for driving on the road and for destroying enemy vehicles. There is a lead-in time when the player has an endless supply of cars. After this time expires, the player will lose a life each time the car crashes. Extra cars can be earned with high scores. The first extra car is earned at a default value of 30,000 points, but this value can vary depending on settings. \n \n\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/ssf2t.txt",
    "content": "Super Street Fighter II Turbo, released in Japan as Super Street Fighter II X: Grand Master Challenge, is a competitive fighting game released for the arcades by Capcom in 1994. It is the fifth arcade installment in the Street Fighter II sub-series of Street Fighter games, following Super Street Fighter II. Like its predecessor, it ran on the CP System II hardware. \n \nSuper Turbo introduced several new play mechanics to the game system from the previous Street Fighter II installments, including the addition of powered-up Special Moves called Super Combos. It also introduced the hidden character of Akuma, who would go on to become a recurring character in later Street Fighter installments and other Capcom fighting games.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/ssideki.txt",
    "content": "Experience the roar of the crowd and the thrills of the stadium. SNK's live-action soccer game is here! Along with your Ace Striker and his array of sliding, overhead, and diving shots, lead your team to victory and seize the prized SNK Cup. Watch players perform miraculous overhead and diving shots, dazzle your opponent with gravity-defying dribbling. Avoid sliding defense players and bone-crushing blocks. Be overwhelmed with in-your-face action so real, you'll be washing the grass stains off your clothing when you're finished!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/ssideki2.txt",
    "content": "This is a soccer game on Neo-Geo. When you start the game, you go into a \"Regional Qualifying Round Final\" against another team from your region. After beating it, your team goes into the World (Cup) Tournament, in which you are grouped with three other countries in a round-robin. After winning against all of them, you go into an elimination tournament: the quarterfinals, semifinals, and the final for the World Cup. This type of tournament thus is more reminiscent of the real-life World Cup. If a match ends in a draw, you also have the option of replaying a full game, go to the penalty kick tiebreaker, or play a sudden death game.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/ssideki3.txt",
    "content": "Loaded with world class excitement! Features 6 competition modes like World Cup for 64 worldwide teams. Utilizes Digitized Trace Animation and 3D camera angled shots for a realistic on-the-fly action graphic explosion. With 8 different playing modes including options such as Speed and Stamina, you can mix and match 512 different team configurations. Accidents hinder or enhance a team's ability within head-to-head gameplay for the ultimate super-real soccer experience!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/ssideki4.txt",
    "content": "Super Sidekicks 4, also known as The Ultimate 11: SNK Football Championship, is a sports retro arcade football (soccer) game created for the Neo Geo arcade system, and is the fourth of the popular Super Sidekicks series. The game features 80 national teams divided into 8 regions of the globe. Build power the more you hold the ball. Maintain your dribble and guard off against enemy steals. Amass enough foot power and kick the ball to the goal!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/ssprint.txt",
    "content": "Like \"Championship Sprint\", released the same year, Super Sprint is an updated version of the old Atari Sprint series; with added the ability to allow players to upgrade their vehicles as the game progresses. Upgrades are won by collecting wrenches that appear once per track. After a player has collected four wrenches, they will be presented with an upgrade screen; giving them the opportunity to choose better traction, increased top speed, faster acceleration, or a faster helicopter. The only discernible difference between this and \"Championship Sprint\" is the addition of brand new tracks.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/ssrdrubc.txt",
    "content": "Sunset Riders is a horizontally-scrolling platform shoot-em-up for up to four players set in America's Wild West. Four sharpshooter bounty hunters (Steve, Billy, Bob and Cormano) set out to claim the bounties for killing the most wanted outlaws in the West, before a final showdown against the infamous Sir Richard de la Rose. \n \nThe action takes place both on foot and on horseback, with play sometimes broken up with a wild west pursuit; such as having to run along the backs of a herd of fleeing Buffalo. Each level ends with players entering a one-on-one battle against one of the wanted men they have been pursuing.  \n \nPower-ups and bonus items can be obtained by entering saloons or defeating certain sack-carrying bandits. The power-ups comes in the form of either a golden sheriff badge (that gives the player's weapon auto-fire) or a silver badge that gives the player a second gun (making it possible to shoot in two directions simultaneously). Both power-ups can be equipped at the same time.  \n \nOther weapons that can be used by players include sticks of dynamite carried by female bandits that can be thrown back at the enemy before they explode and a mounted Gatling gun available only in the last stage.  \n \nA bonus mini-game appears at the end of Stages 2 and 5 in which players must shoot at enemies from a first-person perspective before the timer runs out. \n \nSunset Riders features eight stages of play.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/stakwin.txt",
    "content": "Stakes Winner is a 2D horse racing game. Taking the role of horse jockeys, players must win a series of races using one of the game's eight selectable horses. Each horse is rated in strength, speed, and stamina, making each horse different in handling. During the game, horse ratings can be boosted through completing bonus levels. Each horse has a stamina bar displayed at the bottom of the screen, next to a picture of the horse's head showing its current health. The stamina bar decreases as the horse runs, and when it is depleted, the race is over for that horse.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/stakwin2.txt",
    "content": "Stakes Winner 2 is a sports game in which you get in the saddle to compete in horse races in Europe and the United States. Accelerating and sprinting at the right time while managing the horse's fatigue are the keys to a good performance. If you win, use your winnings to buy accessories and become even better at it. The handling is a bit smoother than in the first episode. The realisation is also a bit better, although the game is still very close to the first one.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/starcas.txt",
    "content": "Star Castle is a 1- or 2-player outer space action game designed with features geared for maximum player appeal: A progressively difficult competitive level and a clearly defined enemy which must be both attacked and avoided at various points in the course of play. \n \nThe center of the playfield is occupied by the Star Castle which is programmed to constantly home in on the players' ships. Surrounding the Star Castle are three concentric energy rings of twelve segments each, which serve as both a protective perimeter for the Star Castle and a source of points for the player. Contained within the energy rings are three protective mines which seek out the players' ships and destroy them upon collision. The movements of the mines are programmed to simulate the actions of heat-seeking missiles. \n \nThe object of the games of Star Castle is to score the maximum number of points possible. This is accomplished by the combination of three elements: \na) Exploding the ring segments. \nb) Exploding the Star Castle. \nc) Avoiding the Star Castle's mines. A player's turn is over when his ship has been destroyed. The number of ships per game is set by the operator. \n \nFor maximum scoring, a player will want to shoot out sections of the energy rings in order to give him a shot at the Star Castle in the center of the screen. As play progresses, there are 2 facts a player must keep in mind: \n1) Exploding all segments in a given ring will cause the entire ring to reappear - thereby eliminating a potential shot at the Star Castle in the center. \n2) Exploding the rings in a manner that gives you a shot at the Star Castle will also give the Star Castle a shot at you. The Star Castle is programmed so that its nose always seeks out the player's ship. If there is an open shot at the player, it will take it. \n \nWhen the Star Castle is hit by a player's missile, it will first implode and then explode with all remaining ring segments. After a one-second delay, the Star Castle will reappear with all three ring segments. If the Star Castle shoots the player, his turn is over. \n \nAs play begins, the Star Castle will appear in the center of the screen surrounded by its 3 energy rings. The player's ship appears about halfway up on the right hand edge. By using the control buttons to move forward, right or left, the player maneuvers about the screen using the firing button to launch missiles. \n \nPoints are scored by destroying the energy ring segments or the Star Castle itself. Exploding the Star Castle gives an extra ship as well as points. No points are given for the mines that attack the player. \n \nThe player's ship can be destroyed in 2 ways: By collision with the mines or by a hit from the Star Castle's torpedo. The mines are launched from the rings and attack the player for approximately ten seconds or until shot. The Star Castle's torpedoes are launched only when there is a clear shot at the player through all 3 rings. At this time the player also has his shot at the Star Castle. Both the Star Castle and the mines get smarter and faster as the game progresses. \n \nThe game of STAR CASTLE is not based on time units. The battle rages on until all the players' ships are destroyed. The length of the game depends solely on the skill of the player. It's the age-old challenge of man versus machine.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/starwars.txt",
    "content": "Star Wars is a single-player 3-D shoot-em-up based on the legendary movie franchise of the same name. This game is specifically based on the very first Star Wars movie, 'Episode IV: A New Hope'. The player takes on the role of Luke Skywalker (Red Five) whose goal is to blow up the infamous \"Death Star\" by firing a Proton Torpedo into an exposed exhaust port situated on the Death Star's surface.  \n \nBefore reaching the exhaust port, players must survive three attack phases.  \n \nPHASE 1: The game begins in outer space above the Death Star. Players must engage in a dog fight with Darth Vader and numerous enemy TIE Fighters. All but Vader's fighter can be shot and destroyed. Incoming enemy fire must be avoided or shot to prevent damage to the player's Deflector shields.  \n \nPHASE 2: The X-Wing flies down to the surface of the Death Star and is confronted with a barrage of laser turrets and towers as the X-Wing flies across the Death Star's surface. Any collisions with either the towers or incoming enemy shots will cause damage to the player's Deflector Shields.  \n \nThe laser tower tops have a progressive scoring incentive that is displayed at the top center of the screen, along with the number of remaining laser tower tops that need to be destroyed before the X-Wing enters the exhaust port trench. If the player manages to destroy all of the towers, a sizeable point bonus is awarded.  \n \nPHASE 3: The X-Wing begins its approach down the trench of the Death Star, heading for the exhaust port situated at the end of the trench. The trench walls are lined with red laser-gun turrets that fire at the player as he makes his approach. Incoming fire must either be avoided or shot. Trench catwalks of varying shapes and heights also appear in later trench runs. These must be avoided as any collision results in damage to Red 5's deflector shields.  \n \nIf the player survives the trench run, the voice of 'Han Solo' will advise that 'You're all clear, Kid' and the player must quickly shoot the exhaust port to destroy the Death Star. If a trench run is completed without the player having fired any shots other than the shot into the exhaust port, a sizeable point bonus is awarded for 'using the force'. If the exhaust port is missed, Red 5 will plough through the wall at the end of the trench and lose one deflector shield, after which the trench run will start over.  \n \nIf the player succeeds in blowing up the Death Star, Red 5 makes its escape before turning to view the colourful explosion. Bonus points for Remaining Shield Energy is now scored.  \n \nThe player is then returned to the fray and whole process begins again. Each successive Death Star run greatly increases in difficulty; TIE Fighters shoot more often, there are more Laser towers and batteries in successive rounds and there are many more obstacles and laser fire during the trench run.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/stdragon.txt",
    "content": "The galaxy is under threat from a malevolent race of cyborgs. Half animal, half machine, the cyborgs have already conquered most of the galaxy and now have their sights set on the galaxy's last hope, 'The Planet of the Golde\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/stmblade.txt",
    "content": "Storm Blade is a military themed vertical scrolling shoot 'em up game where you take control of either Lucky J. Striker in his F14 Tomcat, Alex in his MiG-29 Fulcrum, Camel Yuki Anderson in her AV-BB Harrier II or old man Isoroku Kaionji in his Zero Fighter Kamikaze Special. Each with their own weapons patrons. \n \nAs you make progress and fight of various planes, helicopters, tanks, static guns, ships and bosses power-ups come available. Power-ups cans can be collected from destroyed enemies and increase your firepower. These come in two forms: a normal power-up (P) and a super power-up (F). There are also a limited number of super bombs available that do a vast amount of damage. Destroyed enemies sometimes drop additional super bombs (B). The game can be played solo or with a friend.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/strhoop.txt",
    "content": "Which team is the best at 3-on-3? Choose from ten countries to find out. Shots vary according to the shooting distance. Fake dunk, aloof - a variety of techniques to choose from! Speedy! Powerful! Move your body to hip hoppin' rap music. When the power gauge reaches its max, Super Dunk sparks!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/strider.txt",
    "content": "Strider is a multi-directional scrolling platform beat-em-up in which the player takes control of 'Strider Hiryu', a ninja-style warrior who must defeat a legendary being known as 'Grandmaster Meio'.  \n \nSet in a dystopian future in the year 2048, Meio has been watching Earth from his own distant galaxy and has created a space station (known as 'The Third Moon') between Earth and its moon in order to rule over the Human race. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/superman.txt",
    "content": "Superman is a horizontal video game and may be played by one or two players interactively. The second player controlling a red Superman character, teams up with the first player in this battle against the evil Alien Powers.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/superpac.txt",
    "content": "Super Pac-Man is a 1- or 2-player game where you are in control of the legendary Pac-Man. As in the original \"Pac-Man\" game, the goal is to clear each maze, but this time, instead of dots, the maze consists of prizes which are locked away behind gates. There are two ways to access the prizes. You can eat the keys which open a particular gate, and not always the gate which is closest to that key. Or you can crash through the gate after you eat a Super Pill and become Super Pac-Man. You are not required to eat all of the keys in order to complete the stage.  \n \nFour Power Pills are in maze and allow Pac-Man to turn the tables on the ghosts and eat them for a short time. When the ghosts begin to flash, time is running out and they will switch back, so beware.  \n \nNew in this game is the Super Pill. There are two Super Pills in the maze which allow Pac-Man to become Super Pac-Man for a limited period of time. While in Super form, Pac-Man can crash through the maze gates, fly over the ghosts and avoid being killed (or eat them when they're blue), and travel at super speed whenever the player presses and holds the Super Speed button. When the super power is about to run out, Pac-Man flashes white and then returns to his normal form. You can extend the duration of Super time by eating a regular Power Pill. The Super time will then be extended by the duration of the ghosts' blue time.  \n \nPac-Man loses one life whenever a ghost catches him when the ghost is not blue and Pac-Man is not in Super form. You start with a set number of lives ('Lives' dip switch), and bonus lives can be awarded to you as you reach or pass certain preselected point values ('Extra Lives' dip switch).  \n \nThe tunnel is a great way to put some space between you and any ghosts that are on your tail since they can only move half as fast as you when they are in it. In Super Pac-Man, the ghosts are also slowed down by travelling through the passage directly beneath the ghost pen. \n \nOccasionally, a star will appear in the middle of the screen with a picture on the left, and a rotating picture on the right. You may eat the star at any time for bonus points, but if you manage to eat the star when the right picture matches the left one, you will receive a larger bonus.  \n \nAs the stages increases, the ghosts speed up their pursuit of Pac-Man and they stay blue for shorter and shorter periods of time after he eats a Power Pill until, in the high stages, they do not turn blue at all.  \n \nSuper Pac-Man also features bonus stages in Stage 3, Stage 7, and every fourth stage thereafter, where there are no ghosts, a time limit, and Pac-Man is in Super form throughout the stage. Your goal is to eat all of the prizes in the given time limit. As with gameplay on the regular levels, you don't need to eat all (or any) of the keys. You are awarded the remaining time in the counter as points for successfully eating everything. With each Bonus stage, the walls and gates change color.  \n \n\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/superspy.txt",
    "content": "Roy Heart has been asked by the CIA to wipe out terrorists who have taken over a large skyscraper of a major auto-maker in Japan. \nUsing your fists, knife, or gun, you must use the elevators to travel between floors and wipe out terrorists that try to bring you down. Each weapon has its disadvantages. The gun, for example, will only have so many bullets per life, and the knife will decrease in strength with every use. During your mission, you will also earn experience points, and meet and free hostages along the way. These hostages will heal you, fix your knife, and give you a machine gun. Some floors end with you defeating a boss, while others end at elevators. Your must reach the top of the building where you will confront the leader.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/svc.txt",
    "content": "SVC Chaos: SNK vs. Capcom on Neo Geo is a fighting game featuring the warriors of the two famous series Street Fighter and King of Fighters. The game offers an arcade mode where one follows the story of his hero, as well as modes versus, challenge and survival.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/tapper.txt",
    "content": "Taking on the role of an overworked bartender, the player must serve beer to the ever-thirsty patrons that populate his bar. All customers must be served before they work their way up to the beer kegs. Empty glasses must also be collected before they slide off the end of the bar and smash to the floor. Extra points are awarded for collecting tips, while bonus rounds involve locating the one beer that has not been shaken, and serving it. The game features four different levels: \nCowboys \nAthletes \nPunk Rockers \nAliens\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/tekken.txt",
    "content": "World's 8 best martial artists emerge into 'The King Of Iron Fist Tournament' for winning the title of King of Iron Fist and a large purse of prize money. Every artist will try his best to defeat Heihachi and win the prize money and fame.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/tekken2.txt",
    "content": "Two years after winning the original 'King of the Iron Fist' tournament, Kazuya Mishima decides to hold a second tournament in an attempt to finish off his father, Heihachi Mishima, in this sequel to 1994 original. \n \nThe gameplay in Tekken 2 is identical to that of its predecessor, with one or two players fighting over a series of 3D-rendered backdrops. As before, the fighting system utilises four attack buttons: left punch, right punch, left kick and right kick. Certain button combinations will initiate both standard and special grab and throwing moves.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/tekken3.txt",
    "content": " \nThe world's 19 toughest fighters enter The King of Iron Fist Tournament 3, in order to defeat Heihachi, and Ogre, who has taken the souls of many of the world's greatest fighters to adopt its own fighting style. Every character has his own ambition of winning the tournament. A fully 3-D game with one on one concept of fighting.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/tempest.txt",
    "content": "The objective of Tempest is to survive as long as possible and score as many points as possible by clearing the screen of enemies that have landed on the playing field. The player's ship can rapid-fire shots down the tube, destroying any enemies within the same segment, and is also equipped with a Superzapper, which destroys all enemies currently on the playfield once per level. (A second use of the Superzapper in a level destroys one random enemy.)\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/tetris.txt",
    "content": "Tetris was a very popular game in Japan. Taito partner up with Sega to convert unpopular games like \"Master of weapon\" or \"Rastan saga 2\" to Tetris (on the Taito B system). Later, Taito produced Sega's tetris on the Taito H system.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/thndrbld.txt",
    "content": "Taking control of a heavily-armed battle chopper, the player must battle through a variety of both overhead and 'into-the-screen' 3-D stages. \n \nThunder Blade consists of four stages, which are as follows: \nStage 1: The game begins in a skyscraper-packed city. Enemies consist of rival choppers, jets, and ground-based tanks and gun emplacements. The level ends over the sea, with the player facing a huge and heavily-armed battleship.  \nStage 2: This stage begins with the player navigating a desert canyon, before switching to the into-the-screen view and taking the player through a number of stalactite-packed and densely populated caves. A huge ground-based tank awaits the player at the end of the stage. \nStage 3: This begins in a river canyon, before moving on to a rain-forest river network. As well the the usual line-up of enemies, heavily-armed boats are introduced. the end-of-level battle takes place in the skies as the player attempts to destroy a massive jet fighter. \nStage 4: The 4th and final stage begins with a repeat of the first stage's city level, only this time the action takes place at night. The second half of this stage takes the player deep into an industrial complex, eventually leading to an end-of-game showdown with a massive and heavily-armed gun emplacement.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/tigeroad.txt",
    "content": "Tiger Road is a beat 'em up in which you (as Lee Wong) must rescue the village children from the evil Ryo Ken Oh. Many levels are horizontally scrolling, although with high ledges to jump onto and follow for a slightly different path. Magic urns containing improved weapons appear frequently. Most enemies are easy to attack and only need one hit to kill, although they come at you in large hordes. Once you get to the indoor sections you will find big enemies with the ability to kill you with one hit, in sections set on multiple levels complete with stairways.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/timeplt.txt",
    "content": "Time Pilot is a multi-directionally scrolling shoot-em-up in which the player controls a futuristic jet fighter and takes on the role of pilot trying to rescue fellow pilots who are trapped in different time eras. The game consists of five different stages of play, each of which is set in a different time period. \n \n\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/tmnt22p.txt",
    "content": "The sequel to 1989's hugely successful original, 'Turtles in Time' once more sees the four heroes taking on Shredder and his army. Gameplay remains similar to the original game, but the experience is enhanced further with the obligatory improved graphics and sound effects. 'Turtles in Time' also features a larger variety of levels, as now the battle between good and evil rages across time as the Turtles travel to prehistoric, pirate and Wild West times in their pursuit of the elusive Splinter.  \n \nYet again, Konami's mastery of the genre was in evidence as the manic energy and humour of the cartoon and comic-book series upon which the game is based was captured perfectly.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/tmnt2po.txt",
    "content": "Teenage Mutant Ninja Turtles is a side-scrolling beat 'em up released by Konami in 1989. It is based on the first Teenage Mutant Ninja Turtles animated series which began airing in the winter of 1987. The player chooses from one of the four Ninja Turtles: Leonardo, Michelangelo, Donatello, and Raphael. After Shredder kidnaps the Turtles' friend April O'Neil and their mentor Splinter, they must give chase, save their comrades, and defeat the evil Shredder. Up to four players (two in some versions) can take control of any of the Turtles. Donatello has slower attacks but a longer range, Michelangelo and Raphael have faster attacks but a shorter range, and Leonardo is a well-rounded Turtle with average range and speed. Most of the enemies the Turtles face are the Foot Soldiers, all color-coded to indicate their attack patterns and weapon of choices. Some enemies, such as the standard purple-clad Foot Soldiers and Roadkill Rodney robots, have the ability to restrain the Turtles' mobility and drain their health, leaving the player open to attack for other enemies. The bosses in the game include Rocksteady and Bebop (individually at first in that order, and later the two of them together), Baxter Stockman, Granitor, General Traag, Krang, and Shredder himself.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/tnzsb.txt",
    "content": "Set in Antipodean country of the game's title, The New Zealand Story is an eight-way scrolling platform game featuring Tiki the Kiwi bird. Tiki and his friends have been kidnapped by the evil 'Wally', a large blue leopard seal who wants the birds for his next meal. Tiki quickly escapes and sets about rescuing his trapped friends.   \n \nThe game's stages are made up of platforms with a caged kiwi bird awaiting rescue at the end of each. Touching the cage releases the trapped Kiwi and an open window appears, indicating the completion of the stage. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/tokiu.txt",
    "content": "Toki, known in Japan as JuJu Densetsu (JuJu 説?) is a 1989 shoot 'em up platformer arcade game, or a \"run and gun\" developed and published in Japan by TAD Corporation and published in North America by Fabtek. It features elements of tongue-in-cheek humor combined with the action. The player takes control of an enchanted ape who must battle hordes of jungle monsters with energy balls from his mouth (described humorously as \"monkey-spit\" or \"monkey-vomit\" by some gamers). The ultimate goal is to destroy the evil wizard who cast a spell on you; therefore transforming yourself from an ape back into a human, and rescuing the kidnapped princess. The game was ported to several video game consoles and home computers.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/toobin.txt",
    "content": "Toobin' involves Biff and Jet racing their way down the rapids of a river, riding on tires. You rotate your tyre left or right, and drift as the current sends you, making sure to avoid the banks of the river, and the dividing lines in the middle. Hazards include crocodiles, stray logs and branches, and fishermen - you are armed with a limited supply of tin cans to take care of these. There are gates to slide through on the way down - these give you a points bonus. Each level has a strict time limit to adhere to, although there's a kickin' party at the end if you succeed.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/tophuntr.txt",
    "content": "Clean up the Space Pirates! Time: The age of space colonialism. The dreaded Klaptons are on the loose, turning peaceful settlements into ghost towns. Searching for the price on the Klapton's heads come the cosmic bounty hunters RODDY and CATHY. Do these two have what it takes to save the universe? Can they work together without competing for the rewards themselves? Their fate, and the fate of the free universe is IN YOUR HANDS - the legendary team known as TOP HUNTER!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/totc.txt",
    "content": "Treasure of the Caribbean is a puzzle game: you must combine three ghosts or more of the same color. The number of combined ghosts above three are sent to the opponent in the form of graves. Of course, these can in turn be returned if they are close to a combination of three colored ghosts. Of course, the speed also increases but not enough to make the game impossible as a Puyo Puyo or Tetris for example.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/tpgolf.txt",
    "content": "First Class Competition! On a beautiful course, silent competition will begin. Select from four individual players. Play a Nassau game for a different twist. Enjoy real-life golf excitement!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/trackfld.txt",
    "content": "Track & Field  1983 Konami.\n\nTrack & Field is an athletics-themed action game for up to four players, who compete against each other in six track and field-based disciplines. \n\nThe game controls consist of two run buttons (one for each 'leg' of the athlete) and one 'Action' button. Players must hit the two run buttons alternately to build up speed and use action button to jump or throw.\n\nIn each event, there is a qualifying time or minimum score threshold that the player must achieve to advance to the next event. failing to qualify (in one heat for track events or in three attempts in the other events) will reduce the players' number of lives by one, the game is over once all lives are lost.\n\nTrack & Field can accommodate up to four players, who compete in pairs in the running events and individually in the others. If there are fewer than four players, the remaining slots are played by the computer (or player \"CPU\"). In all multiplayer heats, however, the relative performance of the players has no effect on the game and advancing is based solely on reaching qualifying times and targets.\n\nThe six events are:\n\n100M DASH - Run as fast as possible.\nLONG JUMP - Run to the take-off board then choose angle of jump (42 is the optimum angle).\nJAVELIN - Run to the line then choose angle of throw (43 is the optimum angle).\n110M HURDLES - Run and time jumps over the hurdles.\nHAMMER THROW - As the athlete spins faster and faster, time release of hammer and angle of throw (45 is the optimum angle).\nHIGH JUMP - The athlete will run to the bar; just as he reaches it, use Action button to start the jump and hold down the action button to reduce the angle of climb, i.e. you start going straight up at 90 degrees if you tap the button just once. Use run buttons while in the air to gain extra height.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/trally.txt",
    "content": "Thrash Rally is a fast-paced racing game, similar to Neo Drift Out and Overtop, but using a top-down view. You can either participate in a World Championship or do a complete Paris Dakar rally.\nUsing basic controls: accelerate with automatic transmission, brake and a combination of both to power drift, you have to follow a set path of courses. In the World Championship, each location consists of different stages that need to be finished in a single run. There is a strict time limit and you receive a time bonus upon finishing a section. The Dakar mode is one long track without stops. The championship uses regular cars, but in the Dakar race you can also choose a sand buggy, off-road bike or a truck.\n\nA global ranking is kept while racing, but it is based on your time, not on the number of cars you pass during the race. Aside from your opponents, you'll also find water, animals, hills, bridges, bushes and different obstacles in your path.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/trojan.txt",
    "content": "The game consist of six stages, where the player will face the usual series of small fry enemies, as well as a sub-boss at the middle of each stage and a boss at the end. The player is allowed to start the game at any of the six stages. However, the player must play through the entire game again after defeating the final boss, Achilles, in order to see the true ending (similarly to Ghosts'n Goblins). The player can continue after a game over depending on the dip switch settings.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/tron.txt",
    "content": "Tron is a 1- or 2-player game set inside the 'Tron' computer, and is based on the ground-breaking Disney movie of the same name. \n \nTron consists of twenty-two stages - or 'phases' - of play. Each phase consists of four separate games called \"domains\", all of which must be completed before moving on to the next phase. Players can determine the order in which each of the four domains is attempted, but the domain position is random and is only revealed once that domain has been chosen. \n \nThe four domains that make up a phase never change throughout the game, although both the difficulty level and number of enemies increases with each subsequent phase. The domains are as follows: \n \nLIGHT CYCLES: The player controls a Light Cycle that leaves a blue light trail in its wake. The aim is to 'box in' the yellow enemy Light Cycles, making them crash into either a cycle trail (theirs or the player's) or a wall. The player must also avoid any collision with either walls or light trails. The joystick controls the direction of the bike and the trigger controls its speed. \nI/O TOWER: Destroy the Grid Bugs that emerge from the grid surrounding the tower. The bugs will multiply and fill the entire screen if not stopped. Players must attempt to clear a path to - and enter - the I/O Tower before the timer runs out. The stick controls the movement of the player's character and the spinner controls the direction of fire. \nTANK MAZE: Destroy all enemy tanks that are patrolling the maze. The player's tank can fire in all directions and can bounce shots off walls, but can be destroyed by a single shot; while enemy tanks can only fire in the direction of travel but need three shots before they are destroyed. \"Recognizer\" tanks also feature in later phases; these Do NOT shoot but move quickly and will try to ram the player's tank. The joystick controls the movement of the player's tank and the spinner controls the direction of fire. \nMCP CONE: Destroy the blocks in the descending, rotating coloured column to clear a path and move the character up into the light cone above the blocks. A bonus is awarded if all of the blocks are destroyed. The stick controls the movement of the character and the spinner controls the direction of fire. \n \nBonus lives are awarded periodically throughout the game as specific point scores are reached. Each enemy and item has an assigned point value (see the \"SCORING\" section for details).\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/truxton2.txt",
    "content": "Gameplay is similar to the previous Tatsujin. Tatsujin Oh has six huge areas, each with a boss at the end; the game \"loops\" these six areas forever. Lives are given out at 70000 points, then every 200000 points after; players start with three. \n \nThere are power-ups to increase ship speed, add a smartbomb to your stock, and change/strengthen your current weapon. Red fires bombs in a small area around your ship,  blue is a homing laser, and green fires wide-reaching salvos of green shots.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/tumblep.txt",
    "content": "Tumble Pop is a platform game for one or two players in which the aim is to clear each level of enemies by sucking them into - then ejecting them from - a portable vacuum-cleaner.  \n \nHolding down the fire button sucks the enemies into the cleaner, releasing the button causes them to be expelled back out. Ejected enemies act as projectiles that can damage and kill any other on-screen enemies that they collide with. All enemies must be killed before players can progress to the next stage.  \n \nThroughout the game, letters of the alphabet randomly appear in bubbles. These can be collected to eventually spell the word \"TUMBLEPOP\". Once this has been achieved players are transported to a time-limited bonus level, giving them the opportunity to earn bonus points and extra lives.  \n \n\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/turfmast.txt",
    "content": "Neo Turf Masters is a golf game that offers play in three different countries. You can play in the US, Germany, and Japan. There are 18 holes per course, just like in real life, which totals to 54 holes. The game features a two-player versus mode and three single player modes. You can choose from one of six different characters, who each have their own strengths and weaknesses. Like many other golf games, you use an accurate click type of play, where you click in an overhead map where you want to hit the ball, then adjust hook, slice, and power. In Versus mode, you can earn \"super-clubs\" that can only be used once. These can also be traded between friends.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/twinspri.txt",
    "content": "Competitive shooter with flavors of Galaga, Fighting Games, and Sailor Moon.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/typhoon.txt",
    "content": "The player has been issued an emergency order. He must save the earth from being conquered by enemy forces. He climbs into his helicopter and prepares for intense aerial combat. Shooting oncoming enemy aircrafts and bombing the enemies below, he tries to make his way through the different stages to reach the enemy base. When he finishes the first stage, he is transported to his next mission by ab aircraft carrier. He hops into his jet fighters, tanks, ships, helicopters, and aircraft carriers. The player must also be aware of unseen enemies and surprise attacks. \n \nDifferent kinds of power ups can be obtained throughout the game. These include: \n'3' 3-Way: Bullets fire forward, right, and left. \n'L' Laser: Player can shoot double lasers. \n'T' Triple: Missiles are fired that spread out three ways in front. \n'V' Vulcan: Rapid bullets are fired in the directions controlled. \n'B' Bomb: Air to ground missles which can be upgraded twice. \n'O' Orbital: A small drone using the same weaponry as the helicopter which can be otained by clearing a special formation of little red fighters. \n \nThere is an additional super weapon that destroys all the enemies on the screen at once. However, use of this weapon is limited. \n \nAjax contains 2 different types of stages: 2-D and 3-D. In the 2-D stage, the player controls a helicopter. In the 3-D stage, the player commands a jet fighter. \n \nAjax features some impressive graphics filled with rotation and scaling effects (some may get a little dizzy, though!), a solid soundtrack and excellent game control. Highly recommended for any shoot'em up enthusiast!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/uccops.txt",
    "content": "Undercover Cops is a horizontally-scrolling beat-em-up for up to three players in which Dr. Clayborn and his henchmen have taken control of the city. Police Commissioner Gordon has called on three of New York's Finest undercover cops: Bubba, an ex-professional football player; Flame, a former Miss America; and Claude, a retired philosophy teacher. They must fight every lackey and vanquish Dr. Clayborn in order to restore law and order to the city.  \n \nBesides the usual human thugs, players fight strange mole creatures and mutants with jet packs and blades for hands. Players can never use enemy weapons, but the stages contain objects that can be picked up and used instead, These include burning oil drums, steel girders, concrete columns that shatter on impact, boxes of hand grenades and giant fish.  \n \nAs well as the standard punch and kick moves, each character also has a special attack. This move is more powerful than standard attacks but each time a special attack is executed, some of the player's health is lost. \n \nPlayer characters can eat mice, frogs, birds and snails to restore their health. The game consists of five stages with a powerful enemy boss character waiting at the end of each one.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/umk3.txt",
    "content": "This game is the same as Mortal Kombat 3 except for the inclusion of new backgrounds and more charactors (22 playable in all). This version marks the return of Scorpion, Reptile, Kitana and Jade (not to mention the endurance rounds). Hidden characters include Human Smoke, Classic Sub-Zero, Mileena, Ermac, Rain and Noob Saibot (Rain and Noob Saibot are not selectable in any way).\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/unsquad.txt",
    "content": "U.N. Squadron / Area 88 is a horizontally-scrolling shoot-em-up and is based on the Manga series of the same name. The game features characters from the original Manga and their mission is to battle their way through enemy-packed levels to stop a terrorist group known as 'Project 4'.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/upndown.txt",
    "content": "Up'n Down is an abstract racing game viewed in a forced third-person perspective.  \n \nThe goal of the game is to collect coloured flags, while avoiding the enemy vehicles and obstacles that litter each course. The flags needed are displayed at the top of the screen and are coloured as follows: Light green, blue, red, olive, dark green, magenta, yellow and black. If the flags are collected quickly enough, bonus points are awarded. Collected flags remain visible on the track but are changed to white in colour.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/valkyrie.txt",
    "content": "A top-down action-adventure game somewhat similar to The Legend of Zelda.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/varthu.txt",
    "content": "Varth: Operation Thunderstorm is an arcade game in the vertical scrolling shooter genre, published in 1992. The game did not see a console port following its initial release, but 14 years later Digital Eclipse Software would port the game onto the PlayStation 2, PSP and Xbox as part of the Capcom Classics Collection Vol. 2.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/vball.txt",
    "content": "The player takes control of a pair of beach bums named George and Michael who make their living playing beach volleyball against locals. One day, they find a flyer for a nationwide beach volleyball tournament offering the winning team a $2,500,000 cash prize. \n \nIn single-player mode, one person controls both characters on a team. In two-player mode, the players either cooperate by playing on the same team or compete against each other by controlling opposing teams. The American version allows the game to be played by up to four players (if the cabinet allows it). The single-player mode consists of two cycles with four stages: the Minor Circuit and the Major Circuit. The stages in the game are Daytona Beach, New York, Los Angeles and Hawaii. After completing the Major Circuit, the player faces against the U.S. Navy team, set in a naval base. \n \nThe controls consist of an eight directional joystick and two buttons for jumping and receiving. The characters perform several moves including power spiking, back spiking, jump-serving, blocking and diving. \n \nThere are a few minor differences between the Japanese and American releases. The Japanese release features an opening cut-scene explaining the plot. Between matches, intermission sequences depict the main characters visiting a car dealership to purchase a vehicle. As the player progresses, the cars increase in quality, shifting from used cars to new cars during the Major Circuit. The American release removes these cut-scenes, but extends the multiplayer support to up to four players with multiple game modes: 1 or 2 players against the computer, 1-on-1, 2-on-1, or 2-on-2.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/vendet2p.txt",
    "content": "The hero gang, called The Cobras, numbers five members: Blood (former prizefighter, with a passing resemblance to Mike Tyson), Hawk (former professional wrestler, with strong resemblance to Hulk Hogan), Boomer (a martial artist, possibly based on Jean-Claude Van Damme), Sledge (a military ex-convict with passing resemblance to Mr. T), and Kate, the damsel in distress, described as Hawk's protegee and wearing blue clothing similar to his.\n\nOne day, Kate is kidnapped by the Dead End Gang under the leadership of Faust. The four men go save her, fighting through the waves of enemies that are sent against them.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/vf.txt",
    "content": "In this 3-D fighting game, the game's battle system is simple, yet complex. There are 3 buttons: Punch, Kick and Guard. Movement is strictly confined to a horizontal plane. \n \nBattles are won by draining the energy bar of your opponent or by pushing your opponent off the edges of the ring (known as a 'Ring-out').\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/viewpoin.txt",
    "content": "Viewpoint is a top-down orthographic perspective game in the tradition of Zaxxon. The PlayStation and Saturn versions feature 3D rendered graphics with texture maps, unlike the other versions which primarily feature shaded polygons.\n\nOne or two players (in hot-seat or cooperative mode) control a spaceship equipped with a laser cannon which can be charged (by holding the shooting button down) for a stronger blast. Besides the main weapon, three special weapons are available: a wall of fire which wipes the screen up in a wave, a nova-like blast and a circle of spherical-green homing missiles.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/vigilntu.txt",
    "content": "A sequel to Irem's legendary 1984 beat-em-up, \"Kung-Fu Master\", Vigilante sees the hero's girlfriend, Madonna, kidnapped by a gang of thugs and driven away in the back of their van. The vigilante must fight through five enemy-packed levels to rescue his girlfriend. As with \"Kung-Fu Master\", a tough guardian enemy awaits the player at the end of each level. The guardians must be defeated as quickly as possible as their energy bars will replenish in between the player's attacks. \n \nA weapon, in the form of Nunchakas, can occasionally be found and picked-up; adding to the player's 'kick' and 'punch' fighting moves. Some of the game's many enemies are also armed, with either clubs, chains, knives or guns. The game ends once Madonna is rescued.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/viostorm.txt",
    "content": "Violent Storm is a sideways-scrolling beat-em-up for up to three players set in the aftermath of World War III. The survivors of the war are attempting to rebuild their world but are being terrorised by violent gangs . Three vigilante heroes called 'Boris', 'Wade' and 'Kyle' are trying to protect the citizens but are hampered in their efforts by the evil and corrupt 'GELD' gang. As the heroes are patrolling the streets, they see their friend, Sheena, kidnapped by the gang. The vigilantes must fight through seven enemy-packed stages to rescue their friend and destroy the gang. \n \nAs well as the standard punch and kick moves, each character also has a special attack. This move is powerful enough to fell several enemies at once, but with the trade-off that each time a special attack is executed, some of the player's health is lost. Health levels can be replenished by finding the food that lies hidden in breakable crates and barrels.  \n \nSome of the gang members will drop a weapon when they are felled. These weapons can then be picked up and used by the players. Destructible crates and barrels also contain weapons and random bonus items. Stunned enemies fall to the ground and can still be attacked while prone.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/vliner.txt",
    "content": "V-Liner is simply a money game (virtual) as a slot machine like a real Casino!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/volfied.txt",
    "content": "An update of Taito's 1981 classic, \"Qix\", Volfied adopts the same 'draw boxes to colour in the background' gameplay of its predecessor but updates both the graphics and in-game enemies. A number of power-ups are available, re\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/vsav2.txt",
    "content": "Fifteen characters fight to end the reign of Jedah, the Vampire Savior and save their own souls!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/vsavu.txt",
    "content": "Jedah, one of the ancient Three Lords of Darkrealm has returned. You play as one of fifteen Darkstalkers. Beat Jedah and take your throne as the Lord of the Darkness.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/wakuwak7.txt",
    "content": "The seven magical Waku Waku balls have surfaced once again and the few that know of their existence decide to battle against each other in order to collect them all. If they are able to defeat the powerful monster enslaved in them, the Waku Waku balls will grant the lucky victor whatever wish they desire. The game was created as a parody of anim series in general, WW7 pools together all the mainstays of the genre and has them fight against each other. From furry catgirls and effeminate, super-cool elfs to cute pokmon-like creatures and dumb and loud heroes.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/wb3.txt",
    "content": "Strange enemies are attacking your lands and have advanced weapons that they use to destroy everything, so you must take either the awesome Leo or the incredible Princess Purapril on a cool mission to fight these invaders to snatch their weapons and save your lands from total destruction. In the brilliant Wonder Boy III - Monster Lair you must fight the colourful and crazy creatures and defeat them all to save the land!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/wbmlb.txt",
    "content": "Wonder Boy in Monster Land is a multi-directional scrolling platform hack 'n' slash game with RPG elements, in which the game's hero, Wonder Boy, has seen his home of Wonderland invaded by the evil 'MEKA Dragon' and its army of minions.  \n \nAt the start of the game Wonder Boy is unarmed, but the mayor of Wonder Land (as it was known before the invasion) gives him a short sword to help him in his quest. Wonder Boy has a life meter represented as a series of red hearts and whenever he sustains damage, the hearts deplete. When all the hearts are depleted, Wonder Boy dies and the game ends. As well as the life meter, there is also an Hourglass Timer at the top of the screen; whenever this runs out, Wonder Boy loses some life. The Timer can be refilled by collecting hourglasses or by visiting hospitals or taverns.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/wboyu.txt",
    "content": "Just when things were going great with Tom-Tom and his girlfriend Tanya, some thug of a woodland king had to kidnap her and hide her away, and Tom-Tom doesn't have a clue where. That's why he has to explore deep dark forests, cross endless oceans, climb treacherous slopes, survive endless volcanoes, and even walk through clouds. But Tom-Tom will never be totally alone. You see, when he goes through the exotic locations, he has to come face to face with its inhabitants, like bees, spiders, snakes, coal-kids, frogs, bats, snails, coyotes, and octopuses, to name a few. The hatchet is Tom-Tom's only line of defense against these menaces.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/wh1.txt",
    "content": "An alien entity known as Geegus threatens the Earth in the year 3091.  As all of Earth's forces have been defeated, a scientist uses his recently-built time machine to find the greatest fighters of different eras to compete against Geegus.\n\nFeaturing a cast of characters ranging from ninjas to a cybernetic supersoldier, you'll fight your way through standard-fare one-on-one matches or take on an opponent in a Deathmatch, where spiked walls and landmines add to the danger.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/wh2.txt",
    "content": "The time traveling tournament fighters are back! The original eight characters from the popular arcade hit return, along with six new characters hand-picked from several different eras and locations all through time. But a new boss awaits the victor... who or what is behind this new tournament? You'll have to get to him to find out!\n\nThis sequel features all-new stages and music, and improved animation and graphics. You can now reflect projectile moves at your opponent, and reverse normal throws if your timing is right! The original game's Death Match mode is also back, but with a new feature - the life bar will increase or decrease as you inflict or receive damage. Get your side's life bar to 100% and your enemy will lose.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/wh2j.txt",
    "content": "World Heroes 2 JET is the third game in the World Heroes series. A third tournament featuring warriors from all over the world (and different periods in time) has begun, and it's up to you to fight to the finish to find out who is organizing it. The game is an upgrade / fine-tuning of World Heroes 2.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/whp.txt",
    "content": "In the final entry in the World Heroes saga, all sixteen fighters from previous games return for another tournament. New features include:\n\n1. An all-new attack mode where you use all four buttons to attack an enemy.\n2. A power bar which grants you special abilities depending on the character.\n3. All-new stages and music set across different locations in Earth's past and future.\n4. Three secret characters to choose from, including a character new to the series\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/wildfang.txt",
    "content": "Wild Fang is a sideways scrolling beat-em-up for 1 or 2 players with a medieval setting. Players take on a variety of orcs, ogres, demons and other mythical creatures in their bid to destroy Satan, decapitating each enemy they encounter in order to collect their skulls for points and power-ups. \n \nThe player's character is an armor wearing beastmaster who sits atop of a fist-fighting giant.  Upon the player's command, the player may switch his mount into a tiger and attack with his mace.  Within each stage, there are also power-ups that allow the player to morph into a laser breathing dragon for a limited period of time. \n \nThe player's life bar is represented by a fire breathing dragon in the upper corner.  With each hit the player takes, the fire breath grows smaller.  Once the life bar is depleted the player's mount is killed and the player travels on foot and fights with throwing daggers.  If hit in this form then the player loses a life.  The game is over when all of a players lives are lost.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/willow.txt",
    "content": "Willow is a sideways scrolling platform shoot-em-up game loosely based upon the movie of the same name. Players take on the role of one of two characters: Willow Ufgood or Madmartigan. The hero's mission is to rescue the baby Elora Danan from the evil Queen Bavmorda and bring her back safely. If the quest fails, the Queen will plunge the world into darkness and chaos. \n \nThe game consists of 6 levels, each representing a scene from the movie. Defeated enemies drop gold coins that can be collected by the player. In addition, each level is littered with locked treasure chests that can be shot open and the treasure within collected. The gold can be used to purchase a number of weapons and character power-ups from a nearby shop (represented on screen by a wise old man). All power-ups will stay with the player until all lives are lost and the game is over.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/wjammers.txt",
    "content": "Windjammers is based on a real-life sport known as Saucer Tennis or Frisbee Tennis. You and an opponent face off in an arena with a low net in the middle. Points are scored by throwing a disc into the goals behind a player or whenever your opponent is not able to catch the disc in time. There are two moves: a regular throw and a lob. By using quarter-circle movement, you can also add effect to the throw. To catch difficult discs, you can slide to move more quickly. There are six characters to choose from, with specific abilities and their own court fit for their skills. A single game consists of short sets of thirty seconds. The game is won after two winning sets or sudden death after two draws.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/wofu.txt",
    "content": "Warriors of Fate is a side-scrolling beat 'em up produced by Capcom, first released as a coin-operated arcade game in 1992 and later ported to the Sega Saturn and Sony PlayStation. It is Capcom's third game based on the Tenchi wo Kurau manga, following Dynasty Wars and Destiny of an Emperor.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/wow.txt",
    "content": "Wizard of Wor is a maze-based shoot-em-up featuring one or co-operative two-player gameplay. In a two-player game, player one controls yellow Worriors while player two controls blue Worriors. Players are also able to shoot each other's Worriors, earning bonus points and causing the other player to lose a life. Team-oriented players can successfully advance through the game by standing back-to-back and firing at anything that comes at them. \n \nEach single-screen dungeon consists of a grid forming walls and corridors. There are doors situated at the left and right edges of the screen that are inter-connected, making the dungeon wrap around. Whenever a door is used by a player or monster, it deactivates for a short period, making it impassable. A small radar display indicates the positions of all active monsters. \n \n\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/xevious.txt",
    "content": "It's a nightmare, but it's true! Research shows that we are the actual aliens on Earth, and the ruthless Xevions are the original inhabitants.\n\nNow the Xevions want Earth back -- minus humans! Their invasion forces are fierce -- the land is crawling with deadly Domogram Rovers; the sky is black with Toroid Patrol Fleets and Zoshi Death Squads.\n\nOur puny weapons offer no defense. Earth's only hope is our powerful new Solvalou Fighter Plane. Its pilot will have a single mission: Penetrate the enemy ranks and destroy the Xevious Mother Ship.\n\nThe mission is dangerous. We can't guarantee success. But at this point, it's do or die!\n\nOne small problem. We still need a pilot. Any volunteers?\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/xexex.txt",
    "content": "Xexex is a horizontally-scrolling shoot-em-up in which players pilot a ship called the 'Flintlock' and must save the blue-haired Princess Irene of the planet E-Square from an evil lord named Klaus.  \n \nThe player's ship has a detachable orb attachment called the Flint, which behaves in a similar fashion to the 'Force Device' from Irem's \"R-Type\" series. Power-ups can be obtained to increase the Flint's power, movement speed, change the main weapon, or even give the player an extra life. \n \nThe player starts the game armed with the Proton Laser, which emits thin stream of weak bullets. Defeating certain enemies will drop other weapons: \nHoming Laser: A 3-way laser with weak \"bending\" homing for top and bottom lasers. \nShadow Laser: A laser beam that creates a damage-inflicting shadow as the ship moves up and down.  \nRound Laser: An unusual spread shot (different from the overseas version's main weapon) \nSpiral Laser: A spiral laser of considerable width. \nSearch Laser: A laser with strong homing that travels in square trajectories. \nGround Laser: Fires an upgraded Proton Laser along with a laser beam that travels along the ground. \n \nThe name of the current weapon is displayed at the bottom of the screen. In the non-Japanese overseas versions, the only available weapon is the Proton Laser and picking up power-ups simply increases the spread of the weapon. Missiles are a secondary weapon.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/xmcotau.txt",
    "content": "X-MEN UNLEASHED! It's here! Ultimate combat! Mutant mayhem! X-Power! Special moves! Mid-air action! Big characters! Sizzling graphics! Exactly like you played in the arcade! You will need all your mutant powers, all your speed, all your strength... for this is the ultimate combat! Have you got enough to defeat Magneto, Omega Red and the Sentinel? Are you tough enough for Wolverine, powerful enough for Cyclops, cool enough for Iceman... are you good enough to join the new breed of mutant heroes? X-Men Children of the Atom - the fighting game to end them all!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/xmen2p.txt",
    "content": "X-Men is a side-scrolling beat-em-up for up to four players. The X-Men's mission is to find and rescue Professor X, who has been captured by evil mutants and is now being held prisoner by Magneto. \n \nEach X-Man character has an 'Attack', 'Jump' and 'Mutant Power' button. The mutant power attack is a powerful special move unique to each X-Man. While it inflicts a lot of damage on the enemies, the trade-off is that each usage removes 3 bars from the players health meter (a full meter has 10 bars). Each level ends with a face-off against a powerful mutant boss character. \n \nThe game has six stages, with the final one set on 'Asteroid M', Magneto's base. The defeated mutant bosses from the previous levels each make an appearance (albeit in a less powerful form) before the final encounter with Magneto himself. \n \nPlayers can chose from 6 X-Men characters, they are: \nCyclops  \nColossus  \nWolverine  \nStorm  \nNightcrawler  \nDazzler\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/xmultipl.txt",
    "content": "The game centers around an unusual alien invasion against a colony planet in the year 2249 the aliens themselves are microscopic creatures that invade, infect, and kill the colonists. Scientists have deployed the microscopic fighter X-002 into the body of the hapless woman whose body has been invaded by the alien queen. \n \nThe game itself is a side-scroller like R-Type, albeit with a short vertical-scrolling area towards the end of the sixth level. Instead of the Force pod, however, the main power-up apparatus takes the form of two flexible tentacles. The tentacles are invulnerable to all enemy attacks, and can be positioned with careful maneuvering of the X-002.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/xmvsfu.txt",
    "content": "X-Men vs. Street Fighter pits Marvel's mighty mutants against Capcom's legendary fighters in a slugfest of epic proportions. Now you can perform outrageous moves and link together amazing Chain Combos. X-Men vs. Street Fighter... the collision of two explosive universes in the world's most amazing fantasy fighter!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/zaxxon.txt",
    "content": "Zaxxon is an isometric scrolling shoot-em-up in which the player pilots an armed spaceship and must penetrate heavily-fortified enemy bases, destroying enemy ships and installations before reaching the final confrontation with a giant armoured robot. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/zedblade.txt",
    "content": "You and/or a friend must choose one of three characters to play as, each with different speeds at which they control their ships. Then select three weapons to use for the front and back of your ship. During play, you must travel to every planet in the solar system, and defeat the various enemy ships and the boss near the end of the planet. Your weapons can be upgraded during the battle, and you can also collect HyperBombs if you want to do maximum damage. Contains a nice soundtrack reminiscent of early 1990s \"rave\" music.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/zerowing.txt",
    "content": "The player is a lone hero who will save the universe from an evil force. \n \nIt enjoyed a degree of success in arcades and was subsequently ported to the Mega Drive by Toaplan on May 31, 1991, in Japan, and by Sega during the following year in Europe, followed by a Japan-only release by Naxat Soft on September 18, 1992, for the PC Engine's CD-ROM. \n \nThe European version of the Mega Drive port was the source for \"All your base are belong to us\", an Internet meme which plays off the poorly translated English in the game's introduction. \n \nSet in 2101, the game follows the signing of a peace treaty between the United Nations and CATS, an alien cyborg. However, CATS breaks the covenant and takes control of the Japanese space colonies. The protagonist leads the ZIG spacecraft, managed to escape from the mother ship destroyed by CATS, with the aim to defeat enemy forces and liberate the Earth. \n \nAs with other scrolling shooters, the aim of the game is to shoot all enemies that appear on screen and avoid getting obliterated by enemy fire, crashing into enemies or into foreground scenery. There are mid-level and end-of-level boss enemies that stay with the player until they are defeated. The game features eight levels.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/zookeep.txt",
    "content": "Zoo Keeper is a superb, fast-paced arcade game in which the player takes control of Zeke the zookeeper. Many of the animals at Zeke's zoo are running wild and have captured Zeke's girlfriend, Zelda. Zeke must recapture as many animals as possible and rescue his sweetheart from the animals' clutches. \n \nZoo Keeper features two different, alternating play fields, with each level having its own task to complete; as well as a final 'bonus screen'.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Arcade/text/zupapa.txt",
    "content": "Is a 2001 release of SNK for MVS. It's pretty much a puzzler / screen-cleaning game with bright and colourful optics and simple gameplay.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Atari 2600/text/Adventure (USA).txt",
    "content": "An evil magician has stolen the Enchanted Chalice and has hidden it somewhere in the Kingdom. The object of the game is to rescue the Enchanted Chalice and place it inside the Golden Castle where it belongs.  \n \nThis is no easy task, as the Evil Magician has created three Dragons to hinder you in your quest for the Golden Chalice. There is Yorgie, the Yellow Dragon, who is just plain mean; there is Grundle, the Green Dragon, who is mean and ferocious; and there is Rhindle, the Red Dragon, who is the most ferocious of all. Rhindle is also the fastest Dragon and is the most difficult to outmaneuver. \n \nThere are three castles in the Kingdom; the White Castle, the Black Castle, and the Golden Castle. Each castle has a Gate over the entrance. The Gate can be opened with the corresponding colored Key. Inside each Castle are rooms(or dungeons, depending at which Skill Level you are playing). \n \nThe Castles are separated by rooms, pathways, and labyrinths. Common to all the Skill Levels is the Blue Labyrinth through which you must find your way to the Black Castle. Skill Levels 2 and 3 have a more complicated Kingdom \n \nAdventure was the first action-adventure game on a video console, the first to contain a widely-known Easter egg, and the first to allow a player to have a stash of items, which required the player to select which one to use at any given moment, usually through keyboard or joystick input. Adventure allowed the player to drop one item and pick up another without having to type in any commands. The graphics, on the other hand, were not that great, and Adventure creator Warren Robinett even described the dragons as looking like ducks.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Atari 2600/text/Asteroids (Japan, USA).txt",
    "content": "Asteroids is a conversion of the arcade game of the same name.\n\nPlay the role of a spaceship pilot trapped in a gigantic asteroid cloud and pulverize incoming asteroids with the ship's photon cannon.  When all asteroids are destroyed, the play can them move to the next round. In addition to asteroid, the player will also face an Alien Robot Saucer which shoots randomly across the screen.\n\nThe player using the controller may rotate the ship (left or right) to any direction or move the ship forward. Shots will be fired according to the ship direction. The player has three reserved ships available to replace a destroyed spaceship. The spaceship is destroyed if an asteroid collides with the spaceship or is shot by an Alien Robot Saucer. Additionally, the player may opt to use the hyperspace warp to avoid collision. The warp however, may also destroy the spaceship in the process.\n\nAsteroids when shot will break-up into smaller pieces or be destroyed.. There are three types of asteroids: large asteroids, medium asteroids, and small asteroids. Large asteroids and medium asteroids when shot, will break-up into two smaller sized asteroids. Small asteroids when shot will be destroyed. \n\nAlien Robot Saucers come in two sizes: small and large. Both use photon lasers to shoot and will explode when destroyed. Alien Robot Saucers will not appear at the Novice Level.\n\nGame Difficulty and Variations\nThere are 4 available difficulty settings: Novice, Intermediate, Advanced, and Expert. \n\nThe game also offers three different game variations:\n\n1. Standard Play - For one or two players, taking turns when a player's ship is destroyed.\n\n2. Competition Asteroids - Two players appear on the screen at the same time. Friendly fire is in affect, which means shots fired from one player's spaceship will destroy the other player's spaceship. Each player has separate ship reserves.\n\n3. Team Asteroids - Two players on the screen at the same time. Friendly fire is disabled, which means shots fired from one player's spaceship will not destroy the other player's spaceship and just pass through. Ship reserves for both players are combined.\n\nScoring\nThe score of the Player 1 is viewable on the upper left side of the screen, while Player 2 on the opposite upper right side. A player will be awarded a new reserve ship for every 10,000 points.\n\n1. Small saucer - 1,000 points\n2. Other player's ship - 500 points\n3. Large saucer - 200 points\n4. Small asteroid - 100 points\n5. Medium asteroid  - 50 points\n6. Large asteroid - 20 points\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Atari 2600/text/Atlantis (USA).txt",
    "content": "The lost city of Atlantis is under attack! Wave after wave of Gorgon vessels are approaching, each armed with weapons capable of destroying a part of the city. You are in charge of the command posts at the edges of the city and need to defend it from the invaders. The various gorgon craft will keep flying by on the screen in varying numbers and in different flight patterns. At first they fly high in the sky but then progressively lower. If an enemy makes it low enough before you destroy it, it will use it's weapons and destroy one of the buildings in Atlantis. As you progress in the game, the enemy craft will keep increasing in speed. The game ends when all remaining buildings in the city have been destroyed.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Atari 2600/text/Battlezone (Japan, USA).txt",
    "content": "Atari Games' 3D tank game was ground-breaking when released to the arcades, and as such was converted officially to many systems. Earth has been invaded, and you and your tank lead the defensive effort. You drive around the battlefield from a first-person view, targeting and firing at tanks, planes and UFOs. You have a radar to help you see where the enemies are in direction and distance. Objects can be used as strategic cover. Controls simulate the tracks of a tank realistically, so the direction and speed settings are varied - combining forward right and backward left movements (as you can on keyboard versions) sees you change direction more quickly.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Atari 2600/text/Beamrider (USA).txt",
    "content": "Beamrider is a 3-D arcade action game. You control a beam riding spaceship on a mission to clear 99 sectors of space from hostile aliens. The spaceship is located at the bottom of the screen and it can only stop on one of five beams. You are armed with both lasers and torpedoes; torpedoes are more powerful and can destroy more enemies compared to lasers, however you only get three per level. To complete a sector, you need to destroy fifteen white flying saucers. After all saucers are destroyed, the sector sentinel passes by which can be destroyed for extra points. Each even number sector up until sector 16 will add a new type of enemy to deal with. These additional enemies will just try to slow your mission, though, only the saucers need to be destroyed to advance. Occassionally a rejeuvinator will appear; if this is collected, you can earn an extra life. But be careful, because if you accidentally shoot the rejeuvinator it will turn into an enemy!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Atari 2600/text/Berzerk (Japan, USA).txt",
    "content": "You are a prisoner on an alien planet that is made up of mazes. Robot gangs hunt you and you must shoot them before they hit you. Evil Otto, a grinning sinister face who is invincible, pursues you. If you can keep cool and not go bonkers, you'll eliminate robots, escape Evil Otto, and score big points. \n \nThe home video game version of a favorite Arcade game.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Atari 2600/text/California Games (USA).txt",
    "content": "California Games was the original \"Extreme Games\"  what today's generation might call \"X-Games in the sun\".  Players can select sponsors (absent in some versions) and compete in events such as skateboarding, footbag, surfing, roller skating, flying disc (frisbee) and BMX.  The surfing event is ranked by judges, which give a score to help the players improve their routine.\n\nThe Atari versions (2600 and Lynx) of the game omit the flying disc and roller skating events, while the Genesis version omits only the flying disc event.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Atari 2600/text/Centipede (Japan, USA).txt",
    "content": "In Centipede, the player is trapped in the Enchanted Forest. Armed with only a magic wand to ward off the forest's insect denizens, all of which apparently are attacking in the player in continuous waves. \n\nThe player must use the magic wand to shoot sparks at approaching insects to score points by pressing the controller button. Holding down the controller button will set the wand to rapid fire shots. If the player is bitten by an insect, the player will be temporarily paralyzed and lose one of the three starting magic wands. \n\nInsect Opponents and Mushrooms\nAll enemy insects have a distinctive sound before attacking, which may help the player identify which insect is attacking. Enemies and objects in the game are as the following:\n\n1. The Centipede\nThe Centipede will attack in 12 waves. In the first wave, the Centipede will have a head attached to 11 body segments. In the second wave, the Centipede will have a head attached to 10 body segments, in addition to a detached head. The third wave will have the Centipede with an attached head, 9 body segments, plus two detached heads. These body segments will transform into heads and continue to do so until Wave 12. In the last wave, the Centipede will have 12 detached heads, independently attacking the player. Centipede heads are worth more points than body segments.\n\nAttacks from the Centipede will come from the top of the screen, moving downward. If a spark hits any part of the Centipede, that particular body segment will transform into a mushroom, while the body segment behind it will become the new Centipede head. When the Centipede is destroyed, it will briefly disappear and re-appear from the top of the screen again.\n\nThe Spider\nThe Spider will attempt to distract the player from attacking the Centipede. It will destroy any mushroom it touches. Spiders will score more points if it is hit in closer distances.\n\nThe Flea\nThe Flea will appear if the player has destroyed most of the existing mushrooms. It will drop down creating a new batch of mushrooms where it falls. The Flea will disappear after two hits. After the first hit, the Flea will drop down much faster.\n\nThe Scorpion\nThe Scorpion will appear in the third wave. It moves slowly but will pick up speed, moving faster. While doing so, it will poison any mushroom it touches.\n\nMushrooms\nMushrooms fill the Enchanted Forest and may act as obstacles or cover for the player, with added effects to enemy insects. It takes for shots to complete destroy a mushroom. There are two type of mushrooms: Magic Mushrooms and Poisonous mushrooms. Magic mushrooms are the default mushrooms in the game and are also the the result of the player destroying an insect or Centipede body segment. Poisonous Mushrooms are the result of the Scorpion touching a mushroom. Poisonous Mushrooms will prompt the Centipede near it to move straight towards the player through any mushroom. Losing a wand will restore any partially damaged mushroom.\n\nGame Difficulty and Variations\nThe game offers four difficulty levels: Novice, Standard, Advanced, and Expert. Game Variations are as the following:\n\n1. One Player\nTwo Player Alternating\nTwo players will take turns when the active player is bitten.\nDual Player Competition\nTwo players will appear on the screen at the same time. Scoring is separate. Shots fired from one player will paralyze the other player.\nTeam Play\nTwo players will appear on the screen at the same time. Scoring is combined. Shots fired from one player will not paralyze the other player.\n\nScoring\nThe player will win a bonus magic wand for every 12,000 points to a maximum of six wands. The game will end when all wands are lost. Scoring are as the following:\n\nCentipede Head - 100 points\nCentipede Body Segment - 10 points\nSpider at close range - 900 points\nSpider at medium range - 600 points\nFlea - 200 points\nScorpion - 1,000 points\nFlea - 200 points\nRestored mushroom - 5 points\nDestroyed mushroom - 1 points\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Atari 2600/text/Chopper Command (USA).txt",
    "content": "Chopper Command is a side scrolling shooter. As the pilot of a helicopter gunship, your mission is to protect the convoy of trucks which is travelling at the bottom of the screen. Each wave consists of numerous enemy choppers and jets which are trying to destroy you and the convoy. When all enemies in the current wave are destroyed, you can move on to the next, more difficult wave. To help out, a long range scanner is located at the bottom of the screen which can locate trucks in the convoy as well as enemy aircraft. Good luck, the ground troops are counting on you!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Atari 2600/text/Circus Atari (Japan, USA).txt",
    "content": "Pop the balloons and score points. A wall of red, blue and white balloons will appear at the top of the screen. You must pop balloons by catching a clown on the teeter-totter and bouncing him up to the balloons. Use the controller to move the teeter-totter across the screen to catch the clowns. Each time a clown pops a balloon, the balloon will disappear and you score points. Each player receives five clowns or turns. If you fail to catch a clown on the teeter-totter he will crash and disappear from the playfield. Press the controller button and another clown will bounce off the trampoline from the right or left corner of the playfield. After five clowns have crashed the game is over. The clowns may land on any point on the teeter-totter except where the other clown is sitting, which causes them to crash.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Atari 2600/text/Combat ~ Tank-Plus (USA).txt",
    "content": "Combat is an early video game by Atari for the Atari 2600. It was released as one of the nine launch titles for the system in October 1977, and was included in the box with the system from its introduction until 1982.  \n \nCombat boasted having 27 games in one, which were all variations on the tank, biplane, and jet gameplay.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Atari 2600/text/Cosmic Ark (USA).txt",
    "content": "The Alpha Ro solar system is in crisis! Their sun is about to go supernova, meaning the death of all the many planets and the exotic lifeforms who call them home. Luckily, though, the noble Atlanteans have heard of Alpha Ro's plight and have sent a vast Cosmic Ark thousands of light-years across the galaxy to try and save as many species as possible. As the captain of the Ark, the player will have to contend with deadly meteor storms and planetary defense systems to succeed the mission.\n\nCosmic Ark features two play screens: On the first, the player will have to blast meteors with four-way cannons. Blast enough and the player can go on to the second screen. The Ark descends low over one of Alpha Ro's planets. The player will then have to guide a shuttle craft down and beam aboard two creatures, while avoiding any laser defense system that may be in operation. The player will have to get the creatures back on board quickly, because another meteor shower could happen at any moment. Then it's off to the next planet!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Atari 2600/text/Crystal Castles (USA).txt",
    "content": "Bentley Bear is trapped in the Crystal Castles! To get out, he will need to collect all of the gems located throughout the castle. The game is played with an isometric view of the multi platformed castle. When Bentley collects all of the gems on the current castle, he will move on to the next, more difficult castle. Wandering throughout the castles are a wide variety of dangerous creatures, which Bentley should avoid. From time to time, a magic hat will appear. If Bentley collects the hat, he will temporarily be invincible to the castles inhabitants.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Atari 2600/text/Demon Attack (USA) (Rev 1).txt",
    "content": "Demon Attack is an arcade action game with gameplay similar to Space Invaders. You control a laser canon at the bottom of the screen, and need to destroy wave after wave of brightly colored demons. The demons bounce around the screen in bizarre patterns, and try to destroy your canon with bombs or lasers. When you shoot a demon, it will be replaced with another or will split into two smaller demons depending on which wave you are playing. When the required number of demons for the current round is finally destroyed, you can move on to the next, more difficult round.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Atari 2600/text/Dig Dug (USA).txt",
    "content": "Dig Dug is a 1-2 player arcade game in which you have to use your shovel to dig your way through the earth. Stopping you from doing this are two monsters, called Pooka and Fygar, who will continually chase you around. The only weapon that you carry is an air pump, which you can use to inflate the monsters to the point where they explode. (if you start to inflate them but stop doing so, the monsters will get turned back to their normal selves.) Furthermore, rocks are scattered throughout the earth, and you can use these rocks to squash them. If the monsters do not find you for several seconds, they will eventually get turned into ghosts, which are able to walk through the earth. They are invincible and cannot be killed. From time to time, vegetables will appear in the center, and you can get these for points.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Atari 2600/text/Dragonfire (USA).txt",
    "content": "The king's treasures have been stolen! As the daring young prince, your goal is to recover them all. The treasures are being kept in various castles, each one guarded by a fire breathing dragon. Each level in the game has two parts; first you will need to cross the castle's drawbridge. You will have to jump and duck the dragons fireballs as well as avoid flying arrows to reach the other side! In the second part you need to collect all of the treasures on the screen and make it to the exit while avoiding the dragon who runs across the bottom of the screen. The dragons on each level have different patterns of movement and firing, and as the levels progress will become faster and trickier.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Atari 2600/text/Enduro (USA).txt",
    "content": "Enduro is an action racing game similar to Pole Position. Your goal is to last as long as you can in an enduro race; each day of the race you are required to pass a certain number of cars. If you succeed, you get to continue on, fail and you are out of the race. The driving conditions will vary as the days pass by; not only will you have to drive at different times of day with different amounts of light, but the seasons can change as well. Snow, ice, and fog will occasionally appear to make driving more treacherous. With each day that passes, the other cars will become faster and more aggressive. At the bottom of the screen is an odometer, so when the race is finally over you can see how far you made it.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Atari 2600/text/Frogger (USA).txt",
    "content": "Your task in this arcade conversion is to guide a frog across a treacherous road and river, and to safety at the top of the screen. Both these sections are fraught with a variety of hazards, each of which will kill the frog and cost you a life if contact is made.\n\nThe road is full of cars and trucks, at variable speeds. The river water itself is fatal, as are the snakes which hover within on later levels. Frogger must use the arrangement of logs, turtles (which are only there for a short time) and alligators (but stay away form their faces), and then jump into one of the open home-cells, ideally one containing a fly for extra points. Once all holes have been filled, you move onto the next, harder, level.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Atari 2600/text/Frogs and Flies (USA).txt",
    "content": "The object of the game is to make frogs catch flies. Points are won by manipulating a frog so that he jumps off a lily pad and scoops up flying insects with a flashing tongue. Jump him too late and you'll miss. Jump him too far and he'll land in the pond. you'll have to wait for him to swim back before trying again. Day & night action. Catch more flies than an opponent. Or beat your own top score!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Atari 2600/text/Frostbite (USA).txt",
    "content": "You're an Eskimo who wants to build an igloo to live in during the cold season. To do this, you must jump from ice-block to ice-block, while avoiding wildlife such as birds and crabs. Coming with contact with any of these will cause them to push you off the block and into the deadly water. Once you have built your igloo, you must enter it to proceed to the next level. Remember, you must build it before the temperature drops to 0. You have four lives.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Atari 2600/text/Gravitar (USA).txt",
    "content": "The evil being called Gravitar is out attempting to destroy the universe! With each galaxy he conquers he leaves behind extreme gravitational forces, a powerful, explosive reactor and deadly bunkers. Your job is to stop Gravitar by taking back the twelve solar systems located in four galaxies that are under his control! In each solar system there is a sun, an alien reactor base, and three to four planets. To free the solar system, you have two choices; either visit all of the planets and destroy all enemy bunkers, or activate the reactor at the core of the alien base and escape before it explodes. On each of the planets and the alien base, there will be strong gravitational forces to deal with; make sure you keep your ship in space, since a crash into the ragged landscape will be fatal! After a galaxy has been freed, you then automatically move on to the next galaxy which will be even more difficult to save. The game includes five different skill levels which vary in difficulty by supplying different amounts of ships to begin the game as well as different strengths of gravity.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Atari 2600/text/H.E.R.O. (USA).txt",
    "content": "There is trouble in the mines! Volcanic activity has trapped numerous miners, and it is your job to save them. As Roderick Hero, you need to make your way through the dangerous mineshaft avoiding the dangerous creatures and lava, and find out where the miners are located before you run out of energy. To help on your mission, Roderick Hero has several useful types of equipment. A prop pack will allow you to hover and fly around the mineshaft and (hopefully) avoid the many dangers within. Your helmet features a short range microlaser beam which can be used to destroy the bats, spiders, snakes, and other creatures you'll encounter in the mines. From time to time, your path through the mine may be blocked by stone or lava walls. You begin each mission with six sticks of dynamite which can be used to destroy these obstacles (be careful you don't blow yourself up, though!) If you run out of dynamite, your laser beam can also be used to destroy the walls, though this will take longer and use up more energy. As the levels progress, the mine shaft will become longer and more maze-like, creatures will more frequently block the path, and lava walls and pools will appear which are dangerous to the touch.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Atari 2600/text/Halloween (USA).txt",
    "content": "Protect the children and fight for your life \"the night HE came home!\"\n\nBabysitting a group of children in a large two-story house, players assume the role of Laurie Strode as psychopath Michael Myers has escaped from the mental institution and has come back for revenge.  Players must guide the children to safe rooms while avoiding Michael Myers and his knife.\n\nThe house is large and full of dangerous blackouts and dead-ends within its sixteen rooms.  However, Laurie is not completely defenseless.  There is a knife that can be found to protect herself once the familiar theme music begins to play and killer remains in pursuit.  \n\nPlayers will advance to the next level by either stabbing Michael Myers twice, or rescuing five of the children.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Atari 2600/text/Haunted House (USA).txt",
    "content": "Hidden throughout a haunted mansion are three pieces of a magical urn, and your goal is to enter the mansion and retrieve all three before you lose your nine lives! The game is played from an overhead point of view where you see only your eyeballs as you explore the  four floors of the maze-like mansion. To make your mission even more difficult, there are various creatures wandering throughout. Tarantulas, giant vampire bats, and one fast moving ghost will all cause you to lose a life if encountered too closely. As a defense against the creatures, a magical scepter can be found in the mansion which will make you immune to its inhabitants.\n\nThe mansion contains many doors, some of which may be locked; to explore all the rooms, you will first need to find the master key which is hidden somewhere. The mansion is very dark, and you will not be able to see any of the objects in it (and in more difficult game variations, you can't see the walls either). To reveal objects and the mansion walls, you need to light one of your unlimited supply of matches which will light up a small area around you. Don't be surprised if a swift wind or passing creature blow out your match, though!\n\nYou are only allowed to carry one object at a time so you will need to create a strategy for exploring the mansion; to unlock a door or move a piece of the urn, you will need to put down the scepter so be careful! You win the game when all three pieces of the urn are assembled and you make it out of the mansion. The game keeps track of how many matches you have used on your mission, and the fewer matches the better the score!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Atari 2600/text/Joust (USA).txt",
    "content": "In Joust, players take control of a knight with a lance who rides their flying ostrich (or stork, for Player 2) to do battle against computer-controlled evil knights who ride atop vultures.\n\nPlayers must flap their steed's wings to hit the enemy from a higher jousting point to destroy the vulture and its rider. Once the enemy has been hit, an egg falls to one of the platforms below. The heroic knights must destroy the eggs before they hatch and release new and increasingly more difficult knights. The three strengths of enemy knights are Bounder (red knight), Hunter (white knight), and Shadow Lord (blue knight). These enemy knights are not the only challenge to be found in the game. Players must also contend with crumbling platforms, lava trolls who attempt to pull knights into the fire, and the dreaded \"unbeatable\"(?) pterodactyl.\n\nThe game was novel for its time for being one of the few two-player simultaneous games in the arcade.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Atari 2600/text/Jungle Hunt (USA).txt",
    "content": "Jungle Hunt offers four unique adventure experiences, which repeat with greater difficulty once all four have been survived.  If you don't survive these adventures, you will not only lose your own life but that of the lovely Penelope, who has been captured by cannibals!\n\nThe first part challenges your Tarzan skills - can you swing on the vines without plummeting to your doom?  The second part pits you against a whole bunch of nasty crocodiles in a mighty river.  Fortunately, you have a knife to fight back with.  Don't forget to go up for air!  In the third part, you face a battle against oncoming boulders of varying sizes and physics.  Once you've cleared all these treacherous hazards, you still must confront the dreaded cannibal, who is armed with a wicked spear.  Can you get past him and save the lovely Penelope?\n\nGameplay involves much strategic jumping and knife play (in the river/crocodile phase).  The view is always a side view, much like Pitfall! and later platform games.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Atari 2600/text/Kaboom! (USA).txt",
    "content": "The mad bomber is on the loose! As he races back and forth at the top  of the screen, you need to catch the bombs he drops in buckets of water. One point is earned for each bomb caught, but miss one of the bombs, and Kaboom! As the levels progress, the mad bomber will move faster and faster and drop more and more bombs. You start the game with three buckets, and lose one each time a bomb is missed. The game ends when all of your water buckets are gone.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Atari 2600/text/Kangaroo (USA).txt",
    "content": "Baby Roo has been kidnapped by monkeys, and it's up to Mama Roo to come to the rescue! Your kangaroo starts out at the bottom of the screen. You need to guide the kangaroo up the various ladders and platforms to the top where Baby Roo is being held captive. The monkeys will be trying to stop you by throwing or dropping apples and knocking you off the platforms. Your kangaroo has boxing gloves, however, and can knock out the monkeys with a single punch! Along the way various types of fruit can be collected to earn bonus points.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Atari 2600/text/Keystone Kapers (USA).txt",
    "content": "The notorious thief Harry Hooligan is on the loose! You play the part of Officer Keystone Kelly, sent in to capture Harry. Harry is trapped in a four story mall, and is running as fast as he can to reach the exit at the top. Your job is to catch up to him and send him to prison. You will need to use either the escalators at the end of each floor, or the elevator in the middle to go from floor to floor. The escalators may be further away, but the elevator moves pretty slowly so you will need to decide which route will be faster in getting you closer to your goal. If Harry can make it to the top before you catch him, you will have to retry that level. Harry has no intention of letting you catch him easily, and is hurling everything he can find in an attempt to slow you down. Shopping carts, bouncing balls, biplanes, and more will all be flying past on the screen and will either slow you down or send you back to the beginning if you get hit. As the levels progress, Harry will run faster and faster, and more objects will be tossed your way to duck and jump over.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Atari 2600/text/Millipede (USA).txt",
    "content": "Millipedes, cousins of the Centipede, are all over the garden. This will ruin anything trying to grow there unless they are stopped. But there are other insects as well; spiders, bees, dragonflies and earwigs. Nature is dangerous. Luckily, there's a bug zapper that can shoot arrows at these insects and destroy them.\n\nMillipede is the sequel to Centipede, and features similar gameplay, but with a new swarm of insects! The goal is to destroy the multi-segmented millipede as it traverses its way through the mushroom forest towards the bottom of the screen. When all millipede segments have been destroyed, the player will progress to the next, more difficult level. Millipedes and other creatures are all worth a different amount of points. Occasionally dynamite will appear on the screen, which will explode if shot by the bug zapper. With a well timed shot, numerous millipede segments (and other insects as well) can be taken out as they pass by.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Atari 2600/text/Missile Command (USA).txt",
    "content": "Aliens from the planet of Krytol are attacking your cities!! As the commander of a missile base, it is your responsibility to defend them. A variety of enemy weapons and planes will be incoming trying to destroy the six cities at the bottom of the screen. You need to fire missiles to destroy the incoming weapons. If anything gets through, one of your cities could be destroyed. When all of the cities are gone, the game is over. On each level you have a limited amount of ammo, so make sure most (if not all) of your shots are accurate or you could run out of ammo and leave your cities at risk! As the levels progress, there are more and more enemy weapons to destroy which come in at an increasingly faster rate.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Atari 2600/text/Montezuma's Revenge - Featuring Panama Joe (USA).txt",
    "content": "You play as a treasure hunter named Panama Joe, whose goal is to find an ancient treasure hidden by Aztec warrior  deep inside catacombs. But beware, the catacombs are a large maze inhabited by monsters. Bouncing and rolling skulls, dancing spiders, disappearing and re-appearing chains and tons of fire await you. You'll have to find many keys and unlock doors in order to reach your goal. Panama Joe can jump and climb ladders, but doesn't have much to offer in terms of combat. That's why the monsters in the game should be avoided: a collision with an enemy leads to a premature death.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Atari 2600/text/Ms. Pac-Man (USA).txt",
    "content": "In 1982, a sequel to the  incredibly popular Pac-Man was introduced in the form of his girlfriend, Ms. Pac-Man.  This sequel continued on the \"eat the dots/avoid the ghosts\" gameplay of the original game, but added new features to keep the title fresh.\n\nLike her boyfriend, Ms. Pac-Man attempts to clear four various and challenging mazes filled with dots and ever-moving bouncing fruit  while avoiding Inky, Blinky, Pinky and Sue, each with their own personalities and tactics.  One touch from any of these ghosts means a loss of life for Ms. Pac-Man.\n\nMs. Pac-Man can turn the tables on her pursuers by eating one of the four Energizers located within the maze. During this time, the ghosts turn blue, and Ms. Pac-Man can eat them for bonus points (ranging from 200, 400, 800 and 1600, progressively). The Energizer power only lasts for a limited amount of time, as the ghost's eyes float back to their center box, and regenerate to chase after Ms. Pac-Man again.\n\nSurvive a few rounds of gameplay, and the player will be treated to humorous intermissions showing the growing romantic relationship between Pac-Man and Ms. Pac-Man, leading all the way up to the arrival of \"Junior\".\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Atari 2600/text/Phoenix (USA).txt",
    "content": "Phoenix is an arcade action game with gameplay similar to Space Invaders. You are the commander of the Phoenix, and your mission is to reach an alien spaceship which has been draining your planets resources. The ship is guarded by four levels of bird like creatures. After clearing all four stages, the fifth level will be against a large, heavily shielded mothership. If the mothership is destroyed, the game will then repeat, but with increased speed and difficulty. To defeat the numerous enemies, the Phoenix is equipped with a laser cannon and a force field.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Atari 2600/text/Pitfall II - Lost Caverns (USA).txt",
    "content": "You play Pitfall Harry searching for the Raj diamond, his niece Rhonda, and a variety of treasures somewhere in the Andes. Poisonous frogs, eels, scorpions, bats and other hazards get in the way. Pitfall II is the sequel to Pitfall, the original platform game. Gameplay has remained pretty much the same, with each screen presenting a side view of obstacles to get past, and potentially treasures to collect. The landscape is more maze like, with a variety of paths and dead ends to search. Along the way there are checkpoints the player will encounter. When the player dies, Pitfall Harry will be sent back to the most recently crossed checkpoint.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Atari 2600/text/Pitfall! - Pitfall Harry's Jungle Adventure (USA).txt",
    "content": "Pitfall! is a platform action game. You play Pitfall Harry who is on a quest to locate treasure deep in the jungle. With a little luck you'll be able to find money bags, silver bars, gold bars, and diamond rings. But many obstacles will get in the way, some of which merely deduct points from your score, while others are fatal. Rolling logs and falling down a hole will deduct points, and scorpions, alligators, snakes, bottomless pits, swamps, and fires will cause Pitfall Harry to lose a life. You have 20 minutes to try to collect all of the treasures on the numerous screens, if you can live that long!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Atari 2600/text/River Raid (USA).txt",
    "content": "River Raid is a vertically scrolling action game. You fly a jet up a river in an attempt to destroy bridges which are vital to the enemy. The river is heavily guarded, however, with balloons, ships, choppers, and enemy aircraft trying to stop you. Along the way you will need to fly over fuel stations to refuel your jet and keep flying.\n\nThe plane is armed with a cannon with unlimited ammo. It can be used to destroy the enemy vehicles and bridges, but a careless player can accidentally destroy a fuel station. Colliding with the riverbanks or with the enemy aircraft destroys your plane and makes you lose a life.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Atari 2600/text/Seaquest (USA).txt",
    "content": "Your divers are out in the ocean collecting treasure; now that they have found what they're looking for, you need to pilot a submarine and return them safely to the surface! You can carry up to six divers at a time, and when you safely return the six divers to the surface, you move on to the next, faster level. Your sub has a limited supply of oxygen; if your oxygen meter gets too low, you will need to surface to replenish the oxygen supply. If you surface with less than six divers, you lose one of the divers. If you surface with no divers at all, then your sub will explode. To make your task more challenging, numerous giant sharks and enemy submarines travel throughout the waters and can destroy your sub on contact. To help out with these enemies, you have an unlimited supply of torpedoes which can be fired to destroy both the sharks and subs. As the levels progress, the game gets faster and more enemies appear at a time.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Atari 2600/text/Sky Diver ~ Dare Diver (USA).txt",
    "content": "Sky Diver is an action game for two players. The goal is to score the most points by jumping from a plane, opening your parachute,  and guiding your sky diver safely to a landing pad. The longer you wait to open your parachute, the more points you earn for a successful landing, but don't wait too long or your chute won't open at all! For each jump, there will be varying wind conditions which blow your sky diver off course. A wind sock at the bottom of the screen will help you determine the wind speed and direction so you can compensate. There are nine jumps total, and the player with the most points at the end wins.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Atari 2600/text/Solaris (USA).txt",
    "content": "The Zylons are back, and are attempting another takeover of the galaxy! Your goal is to destroy all of the Zylon fighters you encounter, rescue cadets that are trapped on Zylon planets, and to find the planet Solaris to protect it from the Zylons. Your spaceship is equipped with a galactic map which can be used to warp to different sectors of the galaxy. The map shows the location of Zylon squadrons, Zylon planets, federation starbases, wormholes, clusters of stars, and Solaris when you find it. By warping to the correct sector, you can battle the numerous types of Zylon fighters to keep them from attacking federation bases and planets. Your spaceship has a limited amount of fuel; when you see the fuel gage get too low, you will need to warp to a federation starbase to refuel (make sure you leave enough fuel to warp). When flying over a Zylon controlled planet, you will see your cadets on the surface. If you rescue all of the cadets as you fly past, you will receive bonus points and an extra spaceship. The Zylon's have many different types of fighters which you will encounter, as well as some narrow corridors with blockades which you will need to clear in order to reach new locations in the galaxy.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Atari 2600/text/Space Invaders (USA).txt",
    "content": "Earth is under attack from rows of bomb dropping aliens, and you need to defend it! The rows of aliens begin at the top of the screen, and you control a laser cannon at the bottom of the screen. Your goal is to earn points by shooting the aliens before they can land. The aliens march back and forth, and each time the end of the screen is reached they will drop one row closer to the bottom. Shoot them all, and you move on to the next (tougher) level, but if even one of them lands the game is over. From time to time a flying saucer will pass by along the top of the screen; shoot this to earn extra points. Just above your laser canon are three shields; these can be used to hide from the alien's bombs, but will also block your own shots. You begin the game with a limited number of laser canons, and if all of them are bombed the game ends.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Atari 2600/text/Stampede (USA).txt",
    "content": "It's a stampede!! Your job is to round up as many of the calves as you can. The screen scrolls to the right as you chase the calves; if more than three calves get past you, the game is over. The calves all run at different speeds, and when you rope one you earn points based on how fast it was running. As the game progresses, more and more calves will be on the screen at one time, and other obstacles will begin appearing to trip your horse and slow you down.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Atari 2600/text/Star Wars - The Empire Strikes Back (USA).txt",
    "content": "Star Wars: The Empire Strikes Back recreates a scene from the movie of the same name. You are on the icy planet of Hoth, and Imperial Walkers are closing in on the rebel power generator. As the pilot of a snowspeeder, you need to take out as many of the walkers as you can. The walkers are heavily armoured, and it will take a lot of fire power to destroy one! The game is played on a large, scrolling screen with a radar screen at the bottom to help keep track of where the enemy is located. If a walker reaches the power generator, or you run out of snowspeeders the game is over. Good luck, and may the force be with you!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Atari 2600/text/Stargate (USA).txt",
    "content": "Save the humanoids from the impending aliens in the sequel to Defender. The task is still rescuing humanoids before Landers can turn them into Mutants, while avoiding and shooting other foes, however you must now carry humanoids to safety through the Stargate of the title. \n\nEntering this Stargate not only warps you to the nearest humanoid in jeopardy, but can also warp you ahead (while on the first 15 levels) if you enter it with 4 or more humanoids, and give you extra lives if you warp with 10 humanoids, so there is a trade-off between guaranteeing the safety of existing humanoids, and trying to advance your position\n\nThere are more enemies on screen than ever before. The Inviso button makes you invisible to enemies, but also to yourself, so you will have to follow your bullets to work out where on the screen you are.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Atari 2600/text/Super Breakout (USA).txt",
    "content": "Super Breakout features similar gameplay to the original, but with several new game variations. Your goal is to earn as many points as possible by destroying the bricks at the top of the playfield. To do this, you need to use the paddle at the bottom of the screen to keep a bouncing ball within the playfield. There are four different game variations included. The first is 'Breakout', and plays the same as the original game. \n\nThis leaves three new gameplay concepts. In 'Progressive' the brick walls will slowly drop towards the bottom of the screen and the ball moves progressively faster and faster. When there's room, a new layer of bricks will appear at the top. \n\nThe other two games add a second paddle. In 'Double Breakout' you have two balls to keep in play and score with. In 'Cavity' there is a single ball in play when you start, but two additional balls trapped within the bricks. These are freed when their surrounding bricks are destroyed.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Atari 2600/text/Tapper (USA).txt",
    "content": "Tapper is an action game where you're a beer tapper (barman) and have to serve beer to demanding customers. There are four customers, each has its own lane lengthier than the previous one, whom you have to keep at bay. If they reach the end of the lane without receiving their beer, you're a goner; if you miss one and accidentally spill beer needlessly you lose a life and should one of them throw you back the mug and you fail to catch it, you lose a life as well.\n\nOccasionally a bizarre icon will appear on one of the lines and, should you grab it, will invoke a \"cabarette\"-style show which will keep some of the customers occupied.\n\nThe Xbox 360 version includes bonus rounds, as well as co-op and versus multiplayer modes, also online, along with achievements.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Atari 2600/text/Vanguard (USA).txt",
    "content": "Vanguard is an arcade style shooter for one or two players. Your goal is to pilot your spaceship to the City of Mystery which is located at the end of a heavily guarded tunnel, and once there destroy the creature Gond. The tunnel is broken up into several different zones, called the mountain zone, rainbow zone, stick zone, stripe zone, bleak zone, and City of Mystery. Each zone features different types of enemy spaceships to deal with, and can scroll either horizontally or vertically. In the mountain zone or stripe zone, you may also come across an energy pod marked with an 'E'. If you fly through this, your ship temporarily becomes invincible to the deadly cave walls and numerous enemies which are trying to stop you. When not invincible, your space ship is equipped with lasers to help destroy enemies. You can fire in four different directions, however your speed is decreased when firing. You also need to keep an eye on your fuel gauge; your fuel will deplete at a rapid rate, and your ship will crash if it runs out. Fuel is gained each time you destroy an enemy, so make sure you destroy as many as you can! When you finally make it through all the various zones of the tunnel and defeat Gond, the game will repeat at a more difficult skill level.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Atari 2600/text/Video Pinball ~ Arcade Pinball (USA).txt",
    "content": "Video Pinball is a pinball simulation for one or two players. You begin the game with three balls and need to score as many points as possible by hitting the various bumpers, spinners, and rollovers on the pinball table. An extra ball can be earned by hitting the Atari logo rollover four times in a row!  There are two difficulty levels and four game variations included.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Atari 2600/text/Warlords (USA).txt",
    "content": "In Warlords, you need to defend yourself from three human and/or computer players. Each of the four players are in one of the corners of the screen guarded by a castle. You control a small shield which can be moved around the edge of the castle. To survive you need to use the shield to block a ball which bounces around the screen. If the ball hits your castle, it will take out some of the bricks. If a hole forms in the castle wall and the ball makes it though and hits your warlord, then you are out of the game. The last player left alive wins the battle, and the first player to win five battles wins the game! Several game options are included which allow you to either catch or ricochet the ball when the shield touches it, and control the speed of the game.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Atari 2600/text/Yars' Revenge (USA).txt",
    "content": "In Yars' Revenge, your goal is to destroy the Qotile laser-base which is located on the right side of the screen behind a shield. You control the fly-like Yar, which can destroy the shield piece by piece by either shooting it or running into it. Once the shield is down, you will need to use the Zorlon cannon to destroy the Qotile. The Zorlon cannon is located on the left side of the screen, and when fired can destroy the Qotile with a direct hit. The Qotile isn't completely unarmed against your attacks, however. Wandering around the screen is a destroyer missile, which will constantly be homing in on your Yar. This missile can not be destroyed, however you can temporarily hide from it in a shield which runs vertically in the center of the screen. The Yar will be unable to fire when hiding in the shield so you can't stay there indefinitely! The Qotiles second weapon is a swirl which it will randomly fire at you and should be dodged. When you finally destroy the Qotile you can move on to the next, faster round of gameplay. Several game variations are included which control the difficulty and speed of the game.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/NEC PC Engine/text/1943 Kai (Japan).txt",
    "content": "This is an enhanced version of 1943: The Battle of Midway, with most of the graphics and sounds reworked. There are also changes in the weapons and the inclusion of anachronical items such as laser-firing WWII planes and ships that run on ground. The player controls a biplane Boeing Stearman E75 N68828 instead of the P-38. \n \nThe PC Engine adaptation adds some original levels to those from the arcade version, as well as animated intermissions.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/NEC PC Engine/text/Aero Blasters (USA).txt",
    "content": "Air Buster is a fast side-scrolling shooter. The player controls a small craft through different levels with many enemies. Every level ends with a boss and some sections speed up the gameplay, offering fast obstacle courses both horizontally and vertically scrolling. Flying orange pods release many power-ups at once, enhancing the ships with new or more powerful lasers, wing men and shields. The player can also hold the fire key to charge a blast that removes all enemy bullets from the screen and deals damage to all enemies. With an unforgiving difficulty, every hit is fatal, but the game can be continued from any point as long as there are lives and credits left. The game can be played with two players cooperatively.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/NEC PC Engine/text/Ai Chou Aniki (Japan) (SADS).txt",
    "content": "The sequel to the first Cho Aniki (Super Big Brother) game, this is very Japanese in its bizarreness. It's a shoot ?em up, with the player taking the role of an almost nude muscle-man (Adon) or his brother (Samson) in a 2 player game. Their main weapon is a ball of energy that grows over a hole in their heads and shoots out towards any advancing enemies. Other, more powerful shots are achieved by a combination of back-forward-fire, down-up-fire etc on the pad. Through the levels you will encounter all manner of nasties out to get you, but you are aided by a woman in blue that flies around and drops power-ups conveniently for you. Also, levels vary from the standard left-to-right to vertically scrolling.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/NEC PC Engine/text/Air Zonk (USA).txt",
    "content": "A side-scrolling shooter set in a cyberpunkesque future. Air \"Zonk\" is a spin-off of the popular Bonk's Adventure series. The powered-up Zonk gathers his friends to form Team Cool, and they set out to stop King Drool's plan to conquer the world. Choose from 3 levels of difficulty and 3 types of Friend Modes. Shoot King Drool's cyber robots and avoid their attacks while collecting the Air Bones to unleash a variety of attacks. Enjoy unique moves such as combining with a friend to create an invincible hybrid form or blasting enemies with a charged attack.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/NEC PC Engine/text/Alien Crush (USA).txt",
    "content": "Alien Crush is an alien-themed video pinball game.  The graphics feature strong similarities to the art from the Alien movies, and everything has a dark and sinister look. \n \nThe main table has numerous moving targets and ball locks and is two screens high.  There are at least three bonus games that are accessible from the top screen.  Bonus games consist of knocking out moving targets on a separate single-screen bonus table.  \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/NEC PC Engine/text/Aoi Blink (Japan) (Translated).txt",
    "content": "Aoi Blink is a side-scrolling platformer based on the TV anime series of the same name. The five levels are similarly built as the ones in Super Mario Bros. 3: they are divided into various areas which are reached through a map screen with branching paths. Those areas need to be solved to be able to walk further on the map.  \n \nThe speciality of this game is that the player can switch between three characters with different abilities on the fly, e.g. one can jump high and another has a better gun. Those are important to be able to solve the challenges the levels bring, mostly consisting of traditional platforming and avoiding/shooting enemies.  However, the boss area at the end of the level map has to be opened with a master key. There is one hidden in every area. \n \nThe three characters are based on characters of the series and change depending on the level. The health pool is shared between all characters and losing all hearts results in losing a life. Hearts can be refilled by collecting money which is left behind by killed enemies.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/NEC PC Engine/text/Bakushou Yoshimoto Shinkigeki (Japan) (FABT).txt",
    "content": "The game is based on the comedy TV show Yoshimoto no Shinkigeki, which in its turn is based on a theatrical comedy show popular in Osaka and its surroundings. The game stars characters that either look like the actors from the TV show and/or resemble characters played by them.  \n \nThe show consists of short episodes which are depictions of comical situations, and are not related to each other story-wise. Same can be applied to the game: there is no real story, just a stretch of hilarious and intentionally impossible situations the protagonists find themselves in.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/NEC PC Engine/text/Batman (Japan).txt",
    "content": "The TurboGrafx-16 version of Batman: The Video Game is a top-down maze-like game, somewhat similar to Pac-Man or Bomberman. \n \nThe game consists of five stages based on the movie: the Streets of Gotham, Flugelheim Museum, AXIS Chemical Factory, the Parade and the Cathedral, where Batman finally faces the Joker. The first four stages are divided into 12 sub-stages or mazes. Each main level has its own objective, which basically consists of finding items in the mazes: collecting \"smilex\" components in the streets of Gotham, cleaning paintings at the museum, planting bombs at the factory and cutting off the ropes of Joker's balloons at the parade. Before each level, a cutscene with scenes from the movie is displayed. \n \nBatman can attack his enemies with his Batarang. Through the levels, he will collect items which will upgrade his speed and give his Batarang a longer range and multiple shots.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/NEC PC Engine/text/Battle Lode Runner (Japan).txt",
    "content": "Originally released only in Japan on the PC Engine (TurboGrafx-16), Battle Lode Runner is a sequel to Lode Runner and its major draw is a 5 player mode. Players move around several platforms collecting gold. Various enemies inhabit the levels, and the player, armed with a drill, attempts to drill holes to capture the enemies.  Unfortunately, this does not defeat the enemies, only disables them for a short time. After a few seconds, the enemies respawn and resume their chase of the player.\n\nThe five-player option was new to any incarnation of Lode Runner, and operates in a very similar manner to Bomberman, except with hole drilling instead of bombing.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/NEC PC Engine/text/Beyond Shadowgate (USA).txt",
    "content": "This is a sequel to the adventure game Shadowgate. You control Prince Eric, the descendant of the hero of the first game. You return to your home country, only to discover that your father was murdered. You should become the new king, but the minister of the late king has other plans, frames you for killing your own father, and throws you into jail, where your adventure begins.\n\nUnlike the first Shadowgate, this is a platform game - not an action game, but a classical point-and-click adventure viewed from a platform perspective. You can move your hero around, examine, manipulate, and take objects. You can also duck and have a \"punch\" command. Find the correct solutions to the game's puzzles, otherwise a gruesome death awaits you!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/NEC PC Engine/text/Blazing Lazers (USA).txt",
    "content": "Blazing Lazers is a top-down shooter featuring 9 levels of varied and fast-paced action.  The story here is the usual save-the-world variety. You must pilot your ship against 8 super-weapons and ultimately destroy the menace once and for all.\n\nThe power-up system in Blazing Lazers deserves special mention.  There are four main types of weapons, and each type of weapon can be upgraded several times to produce an incredible amount of firepower.  In addition, there are secondary weapons systems that provide you with shields, homing missiles, multi-fire units, or super weapon power.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/NEC PC Engine/text/Bloody Wolf (USA).txt",
    "content": "Snake and Eagle, two commandos of the Bloody Wolf special forces, receive instructions from their commander to destroy the enemy's heavily armed base to rescue the President and any allies who have been reported as MIA.\n\nBased off the 1988 arcade game, this single-player, top-down, run and gun shooter takes a nod to Contra-style gameplay, allowing one of the two mercenaries to blast their way through eight levels of enemy opposition armed with only a knife and a machine gun.  \n\nAlong the way, new weapons such as shotguns, bazookas, flash bombs and grenades grenades can be added to the arsenal, as well as health and defensive power-ups.  Players can even find a motorcycle to ride in some areas, or swim through certain parts of a level.\n\nThe President and your fellow soldiers need you!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/NEC PC Engine/text/Bomberman '93 (USA).txt",
    "content": "Bomberman '93 is the exciting, powered-up version that followed the original Bomberman! With 6 rounds, each containing 8 stages, the single-player Normal Mode provides all the fun you can handle in its 48 different stages! Blast all of your enemies and find the hidden exit within the time limit to progress to the next stage. The \"kick\" function appears for the first time in this version of Bomberman, and you can really start using cunning tactics in your game play! Make the most of the traps and the new items to beat the game with a perfect record!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/NEC PC Engine/text/Bomberman '94 (Japan).txt",
    "content": "Never one to leave a good thing to be forgotten, Hudson are back with the third installment of the ever present Bomber Man series, and with this one comes a few changes. Apart from our dumpy little hero having lost a little weight since '93, the gameplay has also been altered significantly. While still retaining the basic bombing action, completing a level now no longer requires you to destroy all enemies on screen. Instead, you have to find and destroy a set of pillars on each level and these will unlock a broken piece of amulet from its protected dome. Collect the piece and all remaining destructible blocks turn into coins and you have about 15 seconds to collect as many as possible. Another major addition is kangaroo-type animals that you can jump on and ride. These have special abilities, like jumping and such and also count as an extra hit in case you walk into an enemy or stupidly blow yourself up.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/NEC PC Engine/text/Bonk 3 - Bonk's Big Adventure (USA).txt",
    "content": "Bonk's Big Adventure is the third instalment in the side-scrolling platformer series. As in previous games, the player assumes the role of a caveman named Bonk who headbutts his way through various enemies in order to defeat King Drool. Familiar moves include swinging on trees, bouncing off walls, breaking blocks and climbing walls with his teeth. Compared to the previous games, he walks and moves a little faster.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/NEC PC Engine/text/Bonk's Adventure (USA).txt",
    "content": "An old-school side-scrolling action game. Gameplay is simple: just headbutt your enemies as you progress through each stage! You receive damage when you get hit by an enemy or when you touch something hazardous. Try to keep Bonk from losing any lives. Chow down on meat you find along the way to power up Bonk by 2 levels. Headbutt the ground after Bonk has transformed to unleash a powerful explosionthe earth will tremble and your enemies will be stunned! That's Bonk power! The power of his mighty, rock-hard head! The game is loaded with bonus games and hidden stages. And, just like any great action game, there are big boss battles. \n\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/NEC PC Engine/text/Bonk's Revenge (USA).txt",
    "content": "Bonk has his revenge on King Drool III in his second game for the TurboGrafx.  It's not exactly clear why Bonk is so vengeful, but it appears that King Drool is responsible.  Bonk uses his over-sized cranium as a lethal weapon in this sequel.\n\nThe gameplay in this adventure is very similar to the first game.  Bonk has  head-butting, head-stomping, and fire-breathing moves when he eats some spicy meat.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/NEC PC Engine/text/Cadash (USA).txt",
    "content": "Trouble is in the kingdom of Dilsarl: the young, beautiful princess Salasa was abducted by the evil arch-mage Balrog. The king seeks help from the four best warriors of the country. The task is clear, but not so simple: find Balrog, destroy his evil minions and other monsters roaming the land, and rescue the princess. \n \nCadash is a platform action role-playing game. The player chooses one of the four character classes in the beginning of the game: fighter, priestess, mage, or ninja (the Genesis version has only two characters: fighter and mage). The protagonist fights his or her way through dungeons, attacking physically or casting spells (as priestess or mage). Like in regular platform games, there are places where the player character is required to jump, duck, or climb. The protagonist gains experience for defeating monsters, and their level rises in a true RPG fashion.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/NEC PC Engine/text/Castlevania - Rondo of Blood (Japan) (Translated).txt",
    "content": "\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/NEC PC Engine/text/Chew-Man-Fu (USA).txt",
    "content": "Chew Man Fu has set a curse to rob the world of fried rice, egg rolls and all its other favourite foods. To stop him you must work through 550 rounds, clearing them by placing four different coloured balls into the appropriately-coloured hole.\n\nGameplay is something of a Pengo variant, as the single-screen levels are inhabited by enemies, who can be killed by firing one of the balls at them at speed. When it hits one it will continue moving in the same direction, rebounding off walls if neccessary, and pushing you backwards slightly if it comes back to you - but it can be instantaneously brought back under control. Blocks can also be moved at a more casual speed, including round corners. Once a block is placed onto its spot, it can be used again as a weapon. The levels are in a maze style, and parts of this can be opened up. The game also includes a small bonus Kick-Ball game for 2 players, which doubles as practice with the control system.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/NEC PC Engine/text/Chou Aniki (Japan) (FAAT, FACT).txt",
    "content": "The odd world in this shooter made for quite the conversation piece in its day. Players control either Idaten or Benten, celestial warriors out to bring an end to the tyrannical rule of the emperor of Planet Builder, who holds muscular prowess to be the supreme virtue of the universe. Aided by able-bodied muscle-head options Adon and Samson, they must battle to defeat the emperors army across five stages. Use the buttons to fire away and lay into the Builder forces! Power up your character and options with protein from defeated enemies to have them \"bulk up\" with a yell, and take their macho battle to the next level!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/NEC PC Engine/text/Circus Lido (Japan).txt",
    "content": "You play as a little chameleon who must clean up around forty levels. To move, you can't jump. You have to use your language to achieve your ends. The first button allows you to swallow monsters and spit them out, like in Bubble Bobble. Except this time you have to send them to carnivorous plants to eradicate them for good. \n \nIn Circus Lido impossible to jump, you have to use the other button to stick your tongue out once more in order to pull yourself up via ropes. It follows a rather original handling, but which does not manage to depart from the shadow of Taito's hit. It's a shame, because throughout the levels we take pleasure in finding solutions. Indeed, the game is more of a puzzle game than an action game. Better to think before playing, otherwise you get stuck.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/NEC PC Engine/text/Coryoon - Child of Dragon (Japan).txt",
    "content": "Horizontal shoot 'em up that casts you as a baby dragon out to free a princess from the clutches of an evil....well, you get the idea. Gameplay is traditional, with power-up weapons that include multi-way shot and 'miniature' mode and a sort of reverse R-Type beam where you don't shoot to power it up. Also contains 2 minute and 5 minute time attack modes.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/NEC PC Engine/text/Cratermaze (USA).txt",
    "content": "Cratermaze is an action puzzle game viewed from an overhead perspective. Each stage consists of a maze filled with various enemies and items. You must collect all of the keys on the stage to open the exit door while avoiding or eliminating enemies. Your primary method of dealing with enemies is to dig holes; if an enemy walks into a hole, they are momentarily trapped and you can then fill the hole to kill the enemy.\n\nYou can also obtain temporary weapon powerups such as rayguns and yo-yos, as well as extend your digging reach to dig multiple holes at once. There are also several bosses encountered throughout the game.\n\nThe Japanese release, Doraemon: Meikyu Daisakusen, features popular children's character Doraemon and his friends. The game is a conversion of the 1987 Nichibutsu coin-op Kid no Hore Hore Daisakusen, which also saw a modified Famicom version called Booby Kids.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/NEC PC Engine/text/Dead Moon (USA).txt",
    "content": "About 200 years in the future, a comet is detected at the edge of the solar system.  Astronomers determine that it will pass near the earth, and send probes to examine it.  When the probes near the comet, it abruptly changes directions and heads towards earth.  At the last moment, the people of earth are able to launch surface-to-comet missiles and deflect its impact into the moon. At the center of the impact crater, alien war machines are gathering! The U.N. sends a lone spaceship to the moon to destroy the alien threat. \n \nDead Moon is a side scrolling shooter with 6 levels that take place on earth, in space, and on the moon.  It features 4 different primary weapon types, and several secondary weapon types.  Each level features mini-bosses and end of level bosses.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/NEC PC Engine/text/Detana!! TwinBee (Japan).txt",
    "content": "Another top-down shooter in the TwinBee series of \"cute'em ups\".\n\nDetana!! Introduces for the first time the characters behind the TwinBee & WinBee fighters, Pastel and Light, and chronicles their journey to save Princess Melora from an evil force that threatens the world. Nevertheless its still all about shooting the heck out of surreal and cute enemies through 6 stages of vertically-scrolling action.\n\nPower-ups and upgrades can be gained by shooting the colored bells that some enemies leave behind until they stay the color you want them to, with many combinations possible. A new charge-shot feature has been added to your basic arsenal, and the game features single and 2-player cooperative gameplay.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/NEC PC Engine/text/Devil's Crush (USA).txt",
    "content": "Imagine an adventure game in the format of pinball, and you get Dragon's Fury. Your hero is a small silver ball, and your battlefield is a three-tiered pinball machine. Using your ball, you can defeat monsters, rack up points, and enter bonus stages. If you play with enough skill, you can trigger all sorts of point-accumulating bonuses. If you get one billion points, you get to fight the final boss and view the ending to the game.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/NEC PC Engine/text/Don Doko Don! (Japan).txt",
    "content": "Don Doko Don is a Japanese action platformer first developed and published for arcades by Taito in 1989. One or two players control bearded dwarves as they make their way through fifty platforming and puzzle-like levels in an attempt to save their kidnapped girlfriend.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/NEC PC Engine/text/Double Dungeons (USA).txt",
    "content": "Double Dungeons is a dungeon-crawler. The player chooses a dungeon and then moves around it, going up experience levels and eventually finding and defeating a boss. Each dungeon requires the same strategy: the player must find and defeat the weak monsters (all monsters, their power, and their placement in the dungeon is pre-determined), fight their way to the tougher ones as they grow more powerful and buy better equipment, find the right keys to get to the boss and then eliminate said boss to complete the dungeon. A handful of characters from a much larger password are given out at the end of each dungeon, and the idea is to finish them all for the full password which unlocks the final dungeon.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/NEC PC Engine/text/Download (Japan).txt",
    "content": "Download is a horizontal shoot 'em up set in a dystopian cyberpunk future in which the main character, Syd, is haunted by memories of his friend Ohala falling to a cybernetic menace. Meanwhile, he receives a call from his contact/partner Deva and must rush to her rescue when she is abducted by the Kabukicho police force. The game's story is depicted in a series of animated vignettes before each stage, similar to Ninja Gaiden. Beginning with the mean streets of Kabukicho, Syd will eventually jack into the internet and fights in a similar manner through cyberspace.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/NEC PC Engine/text/Dragon Saber (Japan).txt",
    "content": "Whereas Dragon Spirit was a multi-format conversion, only Turbo-Grafx / PC Engine users initially got to play the lesser-known sequel at home. Gameplay-wise, little has changed from the original, as both games are vertically-scrolling shoot 'em ups putting you in control of a dragon. You are flying over built-up land, complete with rivers and their banks. The enemies and waves can be shot or avoided - shooting them reveals extra points as well as the occasional power-up. Ground units are shooting at you but can't be shot back, so be careful which parts of the screen you occupy at which times.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/NEC PC Engine/text/Dragon's Curse (USA).txt",
    "content": "Poor Hu-Man! he just isn't his old self. Trying to escape from the evil dragon Mecha, he's transformed into the horrific Lizard Man! Get ready to kick some serious dragon tail, because 5 more are waiting to stop you. Each is more vicious than the last. And each turns Hu-Man into a different kind of total gross out! Slash 'em, burn 'em, and blow 'em away! Then capture the Salamander Cross to break the DRAGON'S CURSE.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/NEC PC Engine/text/Dungeon Explorer (USA).txt",
    "content": "The former king of Oddesia has entrusted you with an important, dangerous task. You must find the sacred ORA stone, which possesses the powers of life, light and happiness, and retrieve it before the king of the alien race, Natas, does. He has conquered this land and plunged it into an age of terror and despair, plagued with violence. It is up to you to stand against him and return your world to its former glory.\n\nDungeon Explorer plays like Gauntlet: you choose one of several different characters to play as (Fighter, Thief, Warlock,  Witch, Bard, Bishop, Elf and Knome) and set out on your adventure alone or with up to four other players. Battles are real-time and of the shooter variety, ie, rather than swing a sword, you fire knives (or spells depending on your class). Enemies respawn out of holes in the ground which must be eradicated to keep them from pouring forth in waves. There are a number of items to be found and used throughout the game including potions of white and black magic, healing drinks and the like, but unlike Gauntlet there is no food to worry about.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/NEC PC Engine/text/Dungeon Explorer II (USA).txt",
    "content": "This CD sequel to Dungeon Explorer plays exactly the same as the first game. You chose your character from a variety of fantasy stereotypes and set forth in a Gauntlet-esque adventure. The CD format allows a greater quantity and variety of levels to compliment the storyline, with new areas and characters becoming open to you as you progress.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/NEC PC Engine/text/Dungeon Master - Theron's Quest (USA).txt",
    "content": "Terrifyingly brutal beasts! Monstrous mazes! Treacherous pits of evil! The adventure of a lifetime is here....Theron's Quest!! \n \nThe Monastery at Ya-Brodin has fallen to the Cult of Deaths and the Brotherhood of Enlightenment, the true keepers of Magic, have been slaughtered. The Seven Great Treasures now lie in the hands of foul beings who will stop at nothing to hold onto their massive powers. But Theron, with a courage beyond belief, has decided to seek out the Cult of Deaths and win back the Treasures. If he succeeds, he will become a High Lord. If not, the land will see eternal darkness.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/NEC PC Engine/text/Dungeons & Dragons - Order of the Griffon (USA).txt",
    "content": "The people of Radlebb Keep are worried: Undead and werewolves have been seen in the nearby forests, and rumor has that a vampire has taken residence at Koriszegy Keep. Lord Korrigan hires a group of adventurers to dispel the rumors. They soon find out that not only the rumors are true, but that there are also other evil forces at work in the area. \n \nOrder of the Griffon is a role-playing game based on 1st Edition Dungeons & Dragons rules (many well-known monsters, magic items and spells are present) and set in the D&D world of Mystara. It uses gameplay conventions that are somewhat similar to those from Strategic Simulations, Inc's Gold Box titles: When the party is in towns and dungeons, a first-person view is used, while overland travel happens on a large map of the area. Combat with monsters is turn-based and takes place on a special tactical screen. \n \nA party consists of four characters, which cannot be created but must be selected from a list of 21 different predetermined characters.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/NEC PC Engine/text/Fairytale Dreams of Alice, The (Japan) (Translated).txt",
    "content": "Based on Lewis Carrol's Alice in Wonderland novels, Fushigi no Yume no Alice is a cute 2-D platformer which casts you as Alice, a blond-haired girl wearing a pink dress. Your job is to make your way through forests and caves, defeating enemies that you come across by either jumping on their heads or shouting 'IYA' at them. Some enemies will drop eggs which will explode. You can kick these eggs and use them to destroy the enemies themselves. There are three levels in each area, and each level ends with you defeating a boss.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/NEC PC Engine/text/Final Lap Twin (USA).txt",
    "content": "Final Lap Twin is an open-wheel F1-style racing game loosely based on Namco's Final Lap arcade game.  The game display is always in split screen mode, even if only one player is playing.  The other display shows your nearest rival if you are racing against the computer.\n\nThere are two basic modes: Grand Prix and Quest.  Grand Prix consists of a multi-race points championship.  There are two car types for this mode: F-3000 and F1.  Grand Prix mode can be played with one or two players.\n\nQuest mode has more depth and forms the core of Final Lap Twin.  This is essentially a racing RPG.  You take the role of a boy who desires to become the World Champion.  To do so, you must travel from town to town finding challenges and winning them to gain money and special items to improve your car.  As you move around the game world, which is presented in an overhead view, you will encounter random challenges, much like random battles in a traditional RPG.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/NEC PC Engine/text/Final Match Tennis (Japan) (Translated).txt",
    "content": "Final Match Tennis is a typical Tennis game for the PC Engine and was only released in Japan. It features 16 different (all male) players and all the normal strokes like smashes, stop balls, lobs, volleys and the like. Through the use of a multiplayer adapter up to 4 people can play the game in any combination in singles and doubles. A tournament and practice mode is also present.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/NEC PC Engine/text/Galaga '90 (USA).txt",
    "content": "Galaga '88 takes the basic gameplay of Galaga and adds higher-quality graphics, triple ship abilities, parsec progression, power-ups, asteroids, bosses and other enhancements. Periodically the player encounters Challenging Stages, which are set to music and feature \"dancing\" enemies.  The objective is to shoot all 40 enemies before they disappear, for a bonus of at least 10,000 points. There are a total of 29 stages. The player can begin with one ship with two in reserve or start right out with a dual ship (but only one in reserve).   \n \nSome enemies now have the ability to combine into a much larger single enemy that takes multiple shots to destroy. Others explode in a brilliant shower of fireworks when destroyed, and occasionally these enemies drop a small formation of much smaller enemies that \"wiggle\" their way down the screen.  Some enemies arrive in spherical \"eggs\" and emit a loud, high-pitched noise when hit. These creatures take multiple hits to destroy in flight (just one hit in formation), and their main attack pattern is to move about halfway down the screen, stop, fire multiple shots at once, and then fly straight down off the bottom of the screen.  Another type of enemy takes at least five hits to destroy, and it grows larger with each consecutive hit, making it both a larger target and allowing it to act as a shield to other enemies.  \n \nLater in the game some enemies are equipped with armor that renders them invincible while in formation. When one of these enemies starts its dive, it will flip over and expose its vulnerable side, then flip over again and become invincible while it moves back up the screen, then flip one more time and finish its dive. While vulnerable, this enemy can be destroyed in one hit, scoring bonus points. In addition, many different kinds of obstacles appear throughout the game, including blue crystals, boulders and green blobs.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/NEC PC Engine/text/Garou Densetsu Special (Japan) (FABT).txt",
    "content": "Fatal Fury Special is an improved version of SNK's 2D one-on-one fighter Fatal Fury 2. The objective is to win the tournament by defeating all other fighters including end boss Wolfgang Krauser. Fatal Fury Special features a fairly large selection of fighters that includes: \nThe eight regular fighters from Fatal Fury 2: Terry Bogard, Andy Bogard, Joe Higashi, Kim Kaphwan, Jubei Yamada, Cheng Sinzan, Mai Shiranui and Big Bear. \nThe four bosses from Fatal Fury 2: Billy Kane, Axel Hawk, Lawrence Blood and Wolfgang Krauser (this time they're all immediately playable). \nThree characters returning from the first Fatal Fury: Duck King, Tung Fu Rue and Geese Howard (the end boss from Fatal Fury).\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/NEC PC Engine/text/Gate of Thunder (Japan) (FACT, FADT).txt",
    "content": "A side-scrolling shoot-'em-up, Gate of Thunder asks players to take control of the space-craft \"Hunting Dog\". You fly left-to-right mostly, with occasional vertically-scrolling sections, and use several different weapon styles to defeat your many foes. Along with Esty in her ship the \"Wild Cat\", you must defeat the forces of General Don Jingi, who has plans of taking energy from the star of Aries.\n\nPlaying as the pilot Hawk, players must avoid collisions and weapon-fire from the General's \"Obellon\" army. Consisting of many different types of enemy, the army has a massive, sprawling force of guns, turret, ships, battle-stations and mech-type units. Their fire-power is immense and you are the single opposing force!\n\nGate of Thunder allows players to choose in real-time from three weapon-fire types. A blue-coloured electrical fire, a green-coloured wave-fire, and a red-coloured quake-type fire. Along with this, players obtain homing-missiles and the assistance of the \"Wild Cat\" which orbits the ship separately. Gate of Thunder also features a critically acclaimed soundtrack that remains a talking-point to this day.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/NEC PC Engine/text/Gekisha Boy (Japan) (Translated).txt",
    "content": "Novel game in which you have to earn points by taking photographs of the most newsworthy happenings as you walk down the street. These involve people falling over, planes crashing, UFOs and many other bizarre events. You have a limited amount of film and have to be careful to dodge obstacles such as bouncing balls and skateboards, as contact means you drop some and when you run out the level is over.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/NEC PC Engine/text/Ginga Fukei Densetsu Sapphire (Japan).txt",
    "content": "In the future, time travel became a regular commodity. Criminal organizations began using advanced science in order to escape into different time periods to avoid capture. To counter that, a special police unit called \"Burning Rabbits\" was formed, consisting of four young ladies who bravely pilot their fighter craft through time and space. \n \nGinga Fukei Densetsu: Sapphire is a vertically-scrolling shoot-em-up. The player can choose between four different female characters, each piloting a different ship: Sapphire has balanced strength is speed; Charlotte is the fastest, but also the weakest; Helen is the slowest and the strongest; Jasmine is the second-strongest and the second-slowest. The ships are also distinguished by their weapon properties. Each ship can collect red, green, or blue power-ups; collecting a power-up of the same color enhances the currently equipped weapon, while a differently-colored power-up changes weapon properties while retaining whatever enhancements the ship might have had with the previous weapon. The actual properties of each weapon is different for each ship, and include various combinations of lasers, beams, missiles, piercing and homing weapons. \n \nEach ship also has two pods on the sides that fire simultaneously. If the player releases the fire button for five seconds, the pods will charge up and damage enemies with electricity during the next shot. In additions, the ships can also drop bombs that heavily damage all the enemies on the screen; up to two bombs can be carried at the same time. The stages include various themes such as medieval, feudal China, ancient Egypt, etc., all with a strong sci-fi angle. The player can continue up to nine times from the same spot if the protagonist runs out of lives, and additional continues are granted when the player gathers a sufficient amount of points.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/NEC PC Engine/text/Godzilla (USA).txt",
    "content": "This interpretation of the famous giant monster from the Japanese cinematic industry takes form of a fighting game, only instead of the usual brave martial artists the players control horrifying monsters from the traditional  Toho lineage: the titular beast itself, Rodan, Anguirus, Ghidorah, and others. The game has two modes: Normal and Vs. The latter is essentially a two-player mode, which allows the players to engage in giant monster battles in a variety of scenarios. Most of the monsters, however, are locked in the Vs. mode before the player has completed the Normal mode.\n\nThe Normal mode puts the player in control of Godzilla, who has to go through five stages before reaching the final boss. Each stage has two battles against two different creatures in two different locations, from which the player has to complete only one in order to proceed to the next stage. Depending on the player's performance, points are awarded; in order to be able to compete against different final bosses, the player has to accumulate more points. If the player only has the minimum required points, only one final boss will be available.\n\nThe combat system is similar to other fighting games, with various combinations of buttons executing different moves. Naturally, the normal \"punch-kick\" scheme is modified to suit the monsters' shapes and biological peculiarities. For example, monsters with tails can use tail spin attacks; fire-breathing monsters have a range fire attack, etc. Most of the monsters (including Godzilla) have a move when they hold the opponent and suck its blood. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/NEC PC Engine/text/Gomola Speed (Japan).txt",
    "content": "Gomola Speed is an action game featuring a robot snake. You must find the pieces of your body strewn about each maze-like stage, which increase your size, and use your length to surround items, food, and enemies in order to eliminate them. You can also use bombs to stun more dangerous enemies.\n\nDifferent stages may have different goals -- for example, you may have to find a key, or use your surround ability on floor tiles to reveal items or enemies. Only your snake's head is vulnerable; if an enemy hits your body it will scatter all the pieces and you'll have to collect them again. After completing set conditions on each stage, a door will open that leads to the next stage, at which point you'll be just a head again, and will have to hunt for your body once more.\n\nThe game has the same unique UPL style that will be familiar to fans of games such as Atomic Robo-Kid and Mutant Night.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/NEC PC Engine/text/Hana Taaka Daka! (Japan).txt",
    "content": "Konta the little fox is in trouble - while on a walk with his girlfriend Inari, he \"accidentally\" broke the magical seal that held the evil tanuki raccoon Jikanda and his minions prisoner. They have abducted Inari and Konta is in great despair. He decides to seek assistance from the gods and ask them for help. A flying Tengu answers to his desperate plea.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/NEC PC Engine/text/Image Fight (Japan).txt",
    "content": "A mysterious alien life form is spreading across the galaxy, trying to conquer the world. It took control of the moon base and is threatening to descend on the Earth. The humans have sent the most advanced fighter jet to oppose the aliens: the OF-1. The OF-1  has the ability to change speed at any time and equip different weapons and pods. OF-1 is humanity's last hope! \n \nImageFight is a top-down vertically scrolling space shooter. On every level there will be enemy ships, turrets, robots, and other machines shooting projectiles or trying to ram you. But there are also power-ups scattered around in small green containers. You must destroy these containers before you can obtain the power-up. Those power-ups include pods that add extra attack power or speed, new kinds of weapons, the ability to fire in different directions, etc.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/NEC PC Engine/text/ImageFight II - Operation Deepstriker (Japan).txt",
    "content": "An enemy armada approaches Earth bent on the destruction of the human race. In this sequel to Image Fight, players take control of the most advanced spaceship in the fleet. Destroy \"POW\" cases for items and special weapons. Obtain Red and Blue Pods to equip your ship. Red Pods fire the opposite way your fighter is moving, and Blue Pods only fire forward. You can also change the speed of your ship, to adjust to different battle conditions. Defeat the alien invaders once and for all and bring peace back to the Galaxy.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/NEC PC Engine/text/Jackie Chan's Action Kung Fu (USA).txt",
    "content": "Jackie Chan and his twin sister Josephine were great kung fu fighters in China and trained under a great master. One day when Jackie and Josephine were out walking, the Master's great enemy, The Sorcerer, appeared. The Sorcerer had come to rule over China and knew the twins would stand in his way, so he cast a spell to make Josephine disappear. Now it's up to Jackie Chan to follow after the Sorcerer and battle his minions in order to rescue his sister and save China. \n \nJackie Chan's Action Kung Fu is a side-scrolling fighting game. Jackie's controls are one button to jump and another one to attack or be used in combination with a direction for a special attack. On his quest, Jackie must punch and kick his way past frogs, ninjas, birds and other enemies. Jackie can acquire special-moves such as the Tornado attack, the 180 degree spin kick, the 360 degree spin kick and the Sky Attack. Other power-ups include energy refills and bonus points. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/NEC PC Engine/text/Kaze Kiri - Ninja Action (Japan).txt",
    "content": "Princess Shizuhime has been kidnapped by a group of ninja under the command of Genbu, and brought to the castle of the malevolent Lord Hiei. The brave young ninja Kaze is summoned by Lord Yoshikage and sent on a dangerous mission: infiltrate Hiei's castle, defeat his minions, and rescue Shizuhime. \n \nKaze Kiri is essentially a beat-em-up with a few distinguishing characteristics. The game consists of traversing fully linear side-scrolling areas, defeating regular enemies and bosses on the way. Before being able to fight the stage boss, Kaze has to vanquish a pre-determined number of enemies, which is displayed as a shared enemy HP on top of the screen. \n \nKaze attacks with his sword when he is near the enemy, or throws shurikens at them from afar. Enemy projectiles can also be blocked by countering them with shurikens. Kaze can also disappear for a moment and re-appear at another location. He can jump, duck, perform somersaults, and grab and throw enemies. Kaze's health regenerates over time if he is not hit repeatedly. Completing the game unlocks another playable character, the female ninja Suzu.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/NEC PC Engine/text/Keith Courage in Alpha Zones (USA).txt",
    "content": "As a member of N.I.C.E. (Nations for International Citizens of Earth), Keith Courage takes up the fight against the aliens of B.A.D. (Bad Alien Dudes) through seven levels in this side-scrolling action platformer. \n \nAs Keith Courage makes his way through the various zones, he attacks various forms of enemies in order to gain coins.  The coins can be used in the shops for various power-ups, equipment, and other helpful items. \n \nWhen he makes it to a certain point in each level, Keith Courage is given access to the Nova Suit, an armored suit with a powerful sword that is used to dispatch the end bosses of each level in the Underworld.  Once Keith Courage defeats the boss, the returns to the Overworld sans armor to complete the next set of challenges.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/NEC PC Engine/text/Klax (USA).txt",
    "content": "An action/puzzle game, the object is to catch assorted color falling tiles and create rows, columns, or diagonals of a single color. Each level requires a different pattern to be made, and the tiles fall faster, more at a time, and in an increasing number of colors as the game progresses.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/NEC PC Engine/text/Legend of Hero Tonma (USA).txt",
    "content": "A little caped hero called Tommy must fight his way to the boss' castle through a cute world to rescue a princess, but stopping him from his rescue mission will be several enemies, which he has to deal with by launching little fireballs at them. Tommy may also jump on their heads to stun them for a moment. \n \nGetting power-ups will make the fireball soon increase to a bouncing fireball, which will deal more damage to enemies. Treasure chests can be busted open, allowing Tommy to collect coins. Tommy's journey will have him explore ruins, cliffs, statues, dungeons, and finally the castle. At the end of each level, there is a boss that must be defeated in order to proceed to the next stage.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/NEC PC Engine/text/Legendary Axe II (USA).txt",
    "content": "The Axe is back... with twice the force and twice the fury of 1989's \"Videogame of the Year\"! This time it's brother against brother locked in deadly combat. Your older brother has summoned unspeakable forces of evil to take control of the kingdom. Treachery rules! Your only hope is the legendary royal sword! But will its power be enough to overcome the Cliffs of Chaos? The Skull Dungeons? And the treacherous Crypts of Slime? Only your courage, your fighting skill, and the Legendary Axe can answer! \n \nThis game has you fighting monsters through seven stages with just a sword, but three other weapons can be picked up along the way, and include axes, chain spears, and smart bombs. These weapons can only be obtained by collecting the power-up that a defeated enemy leaves behind. Weapons can be switched along the way. At the end of each level, you must defeat a huge boss in order to go to the next stage.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/NEC PC Engine/text/Legendary Axe, The (USA).txt",
    "content": "You are the mighty warrior Gogan, whose village has been required  by the Jagu tribe to give a human sacrifice each year. Flare, your childhood friend, has been chosen as the sacrifice. Your task is to rescue Flare and destroy the Jagu and their leader. To help you complete your mission, you are given the Legendary Axe, which is said to possess tremendous power that is usable only to its wielder.  \n \nThere are six zones in the game and has Gogan exploring forests, caves, mountains, dungeons, and castles, while defeating enemies that get in his way with his axe. Idols can be broken to reveal power-ups that will increase the axe's power and speed up its swing. These power-ups can also award you extra lives, more points, and the ability to access secret areas. At the end of each zone, you have to defeat a boss in order to proceed. \n\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/NEC PC Engine/text/Lords of Thunder (USA).txt",
    "content": "Lords of Thunder is a side-scrolling shooter that has you take on the role of a legendary warrior, blasting enemies to heavy-metal tunes. Your enemies are plotting to revive Zaggart, \"The Dark One,\" who was sealed beneath the six continents of Mistral. It's up to Landis, descendant of the heroic Dyu, to stop them. Choose the order in which to attack the six stages. Before each stage, select one of four magic armors and use crystals you've collected during your battles to buy items. Then get ready to face awesome enemies like a fire-spewing sea serpent or a giant insect.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/NEC PC Engine/text/Mad Stalker - Full Metal Force (Japan).txt",
    "content": "Mad Stalker: Full Metal Force is a Japanese beat 'em up video game originally produced by Fill-in-Cafe and published and distributed by FamilySoft for the Sharp X68000. The music was composed by Keishi Yonao.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/NEC PC Engine/text/Magical Chase (USA).txt",
    "content": "Ripple is a student of magic, and her teacher is a terrifying witch. Ripple's particulary afraid of her teacher right now, because she's just broken a promise she made to the witch: Ripple took a peek inside the forbidden book Sleeping Demons! No sooner had she opened the cover than out jumped six demons, which raced away! Unless she can catch all six demons and get them back inside the book, the witch will turn Ripple into a frog for breaking her promise! Ripple sets off on her quest with her two Elf-Star friends, Topsy and Turvy. Good luck, Ripple!!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/NEC PC Engine/text/Makai Prince Dorabocchan (Japan).txt",
    "content": "Makai Prince Dorabocchan (\"Demon Prince Dorabo\") is a 2D platformer for the PC Engine. The player controls the titular character who is on a quest to rescue his master and defeat the evil demons that have invaded the kingdom. \n \nAs well as his own magical powers, he can be upgraded by finding suits of armor which boost his abilities as well as temporary power-ups that provide double-jumping, a syringe weapon that stuns enemies and cleats that allow him to jump on enemies to defeat them. If he finds a bat with a bell, he can summon his burly Moai guardians who use their stone bodies to create bridges that allow Dorabo to move forward or find secret areas.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/NEC PC Engine/text/Metal Stoker (Japan).txt",
    "content": "Metal Stoker is a 2D top-down, multi-directional shooter. The player controls a female pilot (presented only in several cut-scenes) controlling a prototype CS-05 tank. The tank can freely be moved around the screen in any direction and the game scrolls along until the edge of the area is reached. The tank needs to destroy enemies and locate the exit. There are several weapons such as lasers, homing missiles, mines, a force field etc. The tank's turret can be locked into one position to shoot, so it is possible to strafe. Sometimes the player must destroy all the enemies or a boss to progress. The game has seven levels in totals and many parts of the levels are mazes.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/NEC PC Engine/text/Military Madness (USA).txt",
    "content": "Military Madness is a futuristic turn-based strategy war game.  The year is 2089 and the setting is Earth?s moon, which yields many important resources.  While the governments of Earth bicker over their staked claims on the moon, the evil Axis Empire launches a lunar military campaign and takes over the moon, using its factories to produce advanced weaponry, the most devastating of which is the SAM (Supreme Atomic Missile).  As commander of the Allied forces, it is the player?s responsibility to lead what?s left of the Allied armies in a desperate offensive against the Axis Empire on the lunar surface before they can use the SAM to destroy Earth. \n \nThere are 32 maps (2 different campaigns with 16 maps each) to play through.  In each map, the player must strategically defeat the outnumbering Axis forces either by destroying all enemy units or capturing the enemy base camp.  There are many different units that both sides utilize - infantry, tanks, aircraft, artillery, and a few others that have specialized functions.  Gameplay consists of moving units into positions that will gain the best advantage to attack the enemy, capitalizing on many factors, which include battle experience, terrain, support tactics, and - sometimes - pure luck.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/NEC PC Engine/text/Mizubaku Daibouken (Japan).txt",
    "content": "In Mizubaku Daibouken, you play Hipopo the Hippopotamus who must venture through a large number of enemy-packed levels in search for his missing girlfriend, as well as rescuing other hippo-like creatures along the way. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/NEC PC Engine/text/Momotarou Katsugeki (Japan).txt",
    "content": "Momotaro Katsugeki (\"Momotaro Action Movie\") is a side-scrolling action-platformer from Hudson that uses their Momotaro character who is better known as the star of the Momotaro Dentetsu and Momotaro Densetsu series. It is a PC Engine exclusive and never saw international releases. \n \nMomotaro Katsugeki seems influenced by and plays similarly to Westone's Wonder Boy in Monster Land and the sequels that followed: the goal is to move across a set of 2D stages, and the player can talk to NPCs for hints and to purchase better equipment with the money they find. There is also a world map that links the various stages together.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/NEC PC Engine/text/Moto Roader (USA).txt",
    "content": "The action in this racing game is viewed from above and features rotational controls. There are 6 racetracks featured including real-world ones such as Laguna Seca. Before each race you can buy a full compliment of upgrades and weapons, with each area (engine, handling, turbo and so on) having several variably-priced options. The unusual thing about the racing system is that the action always follows the leader. If you slip too far behind, your car is blown up and placed back onto the track further on in order to keep up (similarly to Micro Machines). This can only happen a limited number of times before the game is over.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/NEC PC Engine/text/Moto Roader II (Japan).txt",
    "content": "Moto Roader II is a racing game shown in a top-down perspective. Five vehicles compete on a course with the goal to finish first. However, the screen always follows the leading vehicle and if a vehicle is left behind, it gets replaced on the current screen. Every vehicle has a fuel counter which gets a penalty if the vehicle is hit or needs to be replaced. Reaching zero ends the race. Players can choose between three vehicles which drive differently (car, tank or hovercraft) and, if they have gathered enough prize money, can upgrade it between races (including weapons). In contrast to the predecessor, the game has a futuristic look.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/NEC PC Engine/text/NEXZR (Japan).txt",
    "content": "In the year 2012 an alien armada attacked the Earth. Two young pilots were in the midst of a battle, and one of them, a lovely young woman, was killed. Three years later, the surviving pilot finally got a chance to avenge her death. Navigating a powerful new fighter ship named \"Slasher\", the pilot ventured into space, ready to bring destruction to those who took so much away from him.\n\nNexzr is a vertically scrolling shoot-em-up similar to Super Star Soldier. The player-controlled spaceship starts with a simple vulcan gun that can only shoot straight. Various power-ups can either enhance the strength of this gun, replace it with a laser weapon, or add a secondary weapon (homing fire, thin spreading laser attacks, etc.), which is activated automatically. Mid- and end-level bosses are encountered on nearly every stage. Additional lives can be collected, but the player always restarts from the beginning of the stage when his fighter craft is destroyed.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/NEC PC Engine/text/Nekketsu Koukou Dodgeball-bu - PC Bangai Hen (Japan).txt",
    "content": "Team USA is on its way to a Cinderella success story in the Super Dodgy Ball World Cup Championships. From out of nowhere, this scrappy bunch of rookies is advancing to the final round of competition. Seven powerful teams still stand between Team USA and their ultimate challenge; the long awaited grudge match with the undefeated, defending world champions, Team USSR. Only you can lead the U.S. to victory over the highly-favored competition, and give them the chance to crush the mighty Soviets. \n \n-1 or 2 players \n-Multi-dimensional, high-resolution graphics \n-3 increasing levels of challenge \n \nThrash, Bash, and Smash the Competition\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/NEC PC Engine/text/Nekketsu Koukou Dodgeball-bu - PC Soccer Hen (Japan).txt",
    "content": "While Kunio and Shinichi were practicing dodge ball, soccer manager Misako approached the two on the court. \"Please! Instead of dodgeball, join me and play soccer in the national convention!\" \n \nNekketsu High Soccer Club has come down with food poisoning, and Kunio must lead his dodgeball team into the soccer competition and go for the goal! Only through winning the championship can Kunio convince his whole team to join him. \n \nThe classic soccer game is now presented with high resolution graphics and enchanting sounds!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/NEC PC Engine/text/Neutopia (USA).txt",
    "content": "The princess Aurora was kidnapped by the evil Dirth, and the king send a warrior named Jazeta on a mission to rescue her. It appears that once Dirth way sealed by eight wise men who used the power of eight sacred medallions. Princess Aurora is the only one who knows how to use those medallions, and that is why Dirth abducted her. The hero must explore the land, descend to the dangerous labyrinths, retrieve the eight medallions, rescue the princess, and defeat Dirth. \n \nVery similar to  Zelda games, Neutopia allows the player to freely roam the vast land, fighting many different monsters in wilderness areas as well as in dungeons. Dungeons also require some puzzle-solving (pushing stones, blowing walls with bombs, etc.). The game has a slight RPG flavor, allowing the player to power-up by collecting various items, and equip different weapons and armor.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/NEC PC Engine/text/Neutopia II (USA).txt",
    "content": "Some years have passed since the brave hero Jazeta destroyed Dirth, the Emperor of Darkness. Peace has returned to the land of Neutopia. But there are still monsters roaming the countryside, and some of them were spotted near Yurius Shrine. Jazeta went there to find out what exactly had happened. But he didn't return... You are Jazeta's son, and you must first of all find your missing father! Can it be that the shadow of Emperor of Darkness threatens the peaceful land again?..\n\nThe sequel to \"Neutopia\" is similar to the predecessor in every way. Navigating your hero from a top-down view, you explore the vast countryside, fighting monsters in real time combat. The game is not a true RPG, but an action adventure: you don't gain any experience points from combat, only collect money to buy supplies. In dungeons, you must use bombs on walls to reveal secret passages, push stones, and fight many regular enemies and bosses.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/NEC PC Engine/text/New Adventure Island (USA).txt",
    "content": "On peaceful Adventure Island, the islanders are celebrating the wedding of Master Higgins and Tina, the \"Miss Island Queen.\" Suddenly, the celebration is interrupted by the appearance of Baron Bronsky and his henchmen, who kidnap Tina and the island children! Master Higgins must set out to rescue the children and his beloved Tina in this side-scrolling action game! Throw hatchets and boomerangs, hop on skateboards, and guide Master Higgins safely to the goal in each area! New Adventure Island consists of 7 exciting stages! Each stage is split into 4 areas, with a boss waiting at the end of the final area. Defeat all the bosses and release the kidnapped children! And waiting in the castle of the final stagethe wicked Baron Bronsky! Help Master Higgins defeat him and reclaim his bride!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/NEC PC Engine/text/Ninja Spirit (USA).txt",
    "content": "A ninja-based action game that has the player leading Moonlight through numerous enemy-riddled levels on a quest to exact revenge against his father's murderer. To accomplish this task Moonlight is armed with a katana, shurikens, bombs, and a sickle and chain weapon. Each weapon offers its own advantages and must be used at certain times to overcome specific obstacles or opponents.  \n \nThe game's coin-op origins are evident in the fact that that the home versions do not have passwords or saves. To compensate for this, however, adjustable difficulty settings were added.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/NEC PC Engine/text/Override (Japan).txt",
    "content": "Override is a vertically-scrolling shooter in which the player controls a fighter craft on a mission to stop an alien invasion of the Earth. Much of the action takes place on planet surfaces, and enemies include spaceships of various kinds as well as ground enemies, mobile (tanks) or stationary (turrets). The player-controlled craft begins with two lives with three hit points each; restoring power-ups can repair the plane or increase its number of lives. \n\nOther power-ups come in two varieties: strength-increasing or secondary weapons. Depending on the color, the latter grants the plane wingmen with laser attacks, spreading fire, side lasers, rotating energy balls, etc. The strength of secondary weapons can be increase by flying over strength-increasing power-ups as well. Special weapon that hurts all enemies on screen must be activated by charging, which is achieved by not pressing the fire button for a certain amount of time.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/NEC PC Engine/text/Pac-Land (USA).txt",
    "content": "Pac-Land is a side-scrolling 1-2 player game with a cartoony feel to it. Now equipped with arms, face, and legs, Pac must guide a fairy back to her home in Fairy Land, but this task will not be easy because Inky, Blinky, Pinky, Clyde, and Sue will pursue Pac-Man as he travels through Pac-Land. When he finally transports the fairy back to her home, Pac is given some magic shoes, which will help him get to his own home, where he will be greeted by his family: Ms. Pac-Man, Baby Pac-Man, Chomp Chomp, and Sourpuss.  \n \nThere are sixteen rounds to complete, with four trips each. During each round, he can grab a power pellet, which cause ghosts to turn blue, allowing Pac-Man to eat them for points. Points are also awarded by collecting fruit that appear, like cherries and strawberries. In some rounds, Pac must use a springboard to jump over a lake. He must also make it to the end of each round before time runs out, otherwise a ghost will chase him.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/NEC PC Engine/text/Parasol Stars - The Story of Bubble Bobble III (USA).txt",
    "content": "This sequel to Rainbow Islands sees a return to the gameplay of Bubble Bobble, but with Bub and Bob in their now-human forms. \n \nThe boys must clear a series of screens of bad guys - who take slightly more esoteric forms than the angry caterpillars from Rainbow Islands - and again pick up a whole bunch of power-ups. \n \nBut this time they're armed with umbrellas! Oh, okay then, parasols...\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/NEC PC Engine/text/Parodius Da! - Shinwa kara Owarai e (Japan).txt",
    "content": "One day, our octopus friend gets into a fight to the death with his old rival, the bug. Our octopus wins and people start to call him Mr. Parodius. On his paid vacation he goes to the countryside to enjoy a little farming. Returning to our ready-made octopus pot, he reads the \"People of the Universe\" newspaper and nearly falls off his chopping board in surprise. There now is a picture of the mysterious Great Octopus with the Earth in his arms. \"F... father?,\" he stutters. It was his father, who had disappeared just two years before, never to return home. So Octopus sets out on a search for the truth and with his companions begins to travel the world!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/NEC PC Engine/text/Populous (Japan).txt",
    "content": "You play a god, gaming against other gods in a celestial game of conquest.  To win, you must help your chosen people take over the world and wipe out the vermin who worship that other god.\n\nEach god starts out with a single human, dumped into the middle of the wilderness.  Sometimes there is inhabitable land in sight, sometimes not.  To get win, you must change the landscape, creating flat land for your followers to build on.  The more followers you have you have, the more powerful you will be, so take care of them. Build as fast as you can, because the other god is doing the same.\n\nWhen you have enough followers, you can make the leader of your people into a hero.  He will then go around the land you have built, literally taking strength from the people into himself, and working his way toward the enemy.  When he gets there, he will engage in holy warfare upon your enemy's people.  He will burn; he will kill.  And he won't stop until they're all dead... or he is.\n\nBut you don't have to let your people have all the fun; the god's have other tools as well.  You can drown your enemies one at a time with your land lowering powers.  Submerge their towns in swamps. Raise a volcano in the middle of their best farmland.  Even better, you can flood the land and drain all the people who didn't build on high-ground. \n\nAnd when you win, you'll have 500 more worlds to conquer.  A god's play is just never done.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/NEC PC Engine/text/Psychosis (USA).txt",
    "content": "There is something wrong with your brain. It is being taken over by the Devil Ugar himself! Your only recourse is to fight back against this hostile invasion. Thankfully your mind has created the ultimate weapon: a ship with which you can navigate the five causes (stages) and blast back the Devil's evil minions. It is your only hope, your one last chance to free your mind from this evil influence.\n\nPsychosis is a side-scrolling shooter where each level is meant to represent a different location within your mind. One looks like the sky, another filled with aquatic plants, one with what resemble tetris blocks. It is within these stages that you must blast everything in sight while collecting power ups to upgrade your weapon and shield. You can gain two floating balls that resemble mechanical eyes and can be directed 360 degrees around your ship to either act as a shield or to direct your weapon. Battle your way through each stage and defeat the boss at the end and eventually you'll do battle against the very DEVIL himself.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/NEC PC Engine/text/Puyo Puyo CD Tsuu (Japan).txt",
    "content": "The follow-up to Puyo Puyo is, like its predecessor, a falling block game in which the goal is to combine four or more blocks (Puyos) of the same color, which then disappear. The remaining Puyos will then fall down and can produce combos which can cause special blocks (Nuisance Puyos, that can only be destroyed by eliminating adjacent Puyos) to appear on the enemy's field.\n\nThis game includes a story mode, in which Arle (the main character) fights against computer enemies, a vs player mode, a four player mode (SNES only), and an endless mode (SNES only).\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/NEC PC Engine/text/Puzzle Boy (Japan) (Translated).txt",
    "content": "Puzzle Boy is a port of the Game Boy title Kwirk, but features more and different levels along with changed graphics. In contrast to the original version, the perspective is straight top-down and there is no undo-function. \n \nHowever, regarding gameplay this is still a Soko-Ban variant. The player finds himself in a maze and needs to find the way to the exit. The obstacles on the way are boxes which can be pushed but not pulled, holes and revolving doors. The game features three playing modes, most notably the level mode with 100 levels. They are divided over four sets of 20 each. Those sets have a difficulty level associated with them and each rewards the same ending when solved. The other two modes are the challenge mode (solving ten levels in a limited amount of time) and a split-screen multiplayer mode.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/NEC PC Engine/text/Puzznic (Japan).txt",
    "content": "The challenge in each level of Puzznic is to maneuvre a selection of blocks into place so as to clear them all, by making them make contact with blocks of the same design. You control a cross-hair, which can move a block left or right, which can cause it to fall if there is no block under the space it would occupy. \n \nThere are many complications in terms of solving the levels. Moving platforms meaning that you need to move a block at a particular time, or in particular order, to prevent them being blockaded. In some situations there are an odd number of a certain type of block - solving these requires positioning two of the blocks one space apart, such that a move will result in a piece making contact with 2 others, and immediately removing all 3. You will also encounter blocks positioned on platforms suspended in space and gaps in level arrangements meaning that a certain number of blocks must be in place to make a certain move possible (by forming a stack, for example)\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/NEC PC Engine/text/R-Type (USA).txt",
    "content": "Power-up your spaceship and prepare for battle! This is a completely faithful portright down to the character detailsof the famous shooting-game masterpiece, R-TYPE. Destroy the POW armor and 1 of 6 different units will appear, which you can then use to power up your R-9. Equip Bits and obtain Laser Units to make the Force appear and to power it up. The Force can then be integrated into or separated from your R-9. Make the most of your weapons, including the Reflecting Laser Beams, Air-to-Surface, and Antiaircraft Lasers. Keep pressing the fire button to fire blasts from the Beam Cannon. Press and hold the fire button to charge the Beam Gauge, then release it to fire a devastating Wave Cannon blast! The longer you hold it, the stronger the blast! The ultimate highlights are the N32bosses that await you at the end of each stage, including a stage that pits you against a giant warship.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/NEC PC Engine/text/R-Type Complete CD (Japan).txt",
    "content": "R-Type Complete CD combines part I and part II of the japanese PC Engine HuCard releases. It also adds remixed music, fully voiced cut scenes, an extra boss fight, and some other minor changes. \nAn alien race called the Bydo attacks humanity without mercy. The prototype space fighter R-9 must stop the Bydo and save the human race.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/NEC PC Engine/text/Raiden (USA).txt",
    "content": "In the year 2090, Earth is invaded by extra-terrestrials. The World Alliance of Nations has developed a supersonic attack fighter, Raiden, to defend the Earth. A pilot must take control of the experimental fighter to destroy the alien warships that just happen to look like odd variations of typical military tanks and planes with gadgets attached to them.  \n \nRaiden (called Raiden Trad on the Genesis and SNES) is an over-head vertical-scrolling shooter, based on an arcade game of the same title. It features two forms of weapon upgrades and two types of missiles (normal or homing). You start the game with several bombs which you can use to destroy most enemies on the screen to get yourself out of a jam. Each level ends with a large boss or bosses.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/NEC PC Engine/text/Salamander (Japan).txt",
    "content": "Salamander (or LifeForce on other media) is a shoot'em up on PC Engine. Aboard your severely armed ship, you must progress through the levels by shooting everything that moves up to the final boss. A multiplayer option allows you to play two at the same time.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/NEC PC Engine/text/Seirei Senshi Spriggan (Japan).txt",
    "content": "Another top-down shooter from Compile staged in a fantasy world that mingles traditional sci-fi elements with a feudal Japan setting.\n\nAs the game starts a struggle for total control over elemental powers is about to begin between two warring nations. As the best mecha pilot in the good guy's army it's your task to repel the invasion and win the war by dealing with the enemy armada in standard shooter fashion. But surprise surprise! You won't be alone this time, as other AI-controlled mecha pilots will join you in the fray at key moments. Only you can command the magical powers that can be added to your mecha by collecting several color-coded orbs though, so most of the fight is still going to be up to you.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/NEC PC Engine/text/Skweek (Japan).txt",
    "content": "The Skweeks lived in harmony for centuries, being a naturally peaceful peoples, until Pitark arrived. He ruined their bright pink land by removing the colour, and it was only after he died that they had the opportunity to clean the land up. Your job is to travel through the 99 continents and clean each one in sequence. \n \nSkweek can move in each of the four compass directions, and is armed with a simple weapon, whose shots rebound around before they hit one of Pitark's minions, the Schnoreuls - contact with which is instantly fatal. Some squares contain arrows which force you in a particular direction, while there are also blockades to avoid. Bomb squares blow up surrounding squares but give you time to move away from them as they do this, while Shortcut squares allow you to move to another teleport-type square by pushing the joystick in its direction.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/NEC PC Engine/text/Soldier Blade (USA).txt",
    "content": "A top down sci-fi shooter in which you take to the skies of several planets in an advanced starfighter in order to eradicate an alien invasion. \n \nSoldier Blade puts you in direct control of a starfighter as you make your way through each enemy-infested stage. You are not alone in the fight this time however, as a small mecha follows your fighter at all times, and provides cover and supporting firepower at regular intervals. \n \nThe game also features a unique weapon system with three customizable gun pods, in which you can mount any of the several types of weapons available. Additionally you can sacrifice each of your pods to incorporate \"option\" satellites, bombs and other super moves depending on the pod/weapon combination you have equipped.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/NEC PC Engine/text/Somer Assault (USA).txt",
    "content": "Somer Assault is a difficult to describe game.  In it you control a pink slinky character with guns attached to it.  You move around mazes, climbing on walls, on the ceiling, through shortcuts, and attempt to find you way to the end.  Along the way, you have to shoot out many, many enemies.  And at the end, you will find a nasty boss surprise.\n\nThe story is bizarre, which fits the concept of the game.  A sorceress has plans to rule the world.  To do so, she has summoned 12 beasts, each based on a sign of the zodiac.  It up to you, pink slinky, to defeat the 12 astrological signs.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/NEC PC Engine/text/Son Son II (Japan) (Translated).txt",
    "content": "In this platformer, loosely based on the classic Chinese novel Xi You Ji, players take control of Son Goku who has to rescue his friends from a mysterious villain. In seven levels, Son Goku has to survive various jumping puzzles, fight off enemies with his staff and collect money in form of fruit. Along the way, he can pick up various helpful items that can either be bought in stores or found hidden within the levels. They include: Medicine that refills Son Goku's health, a magic lamp that allows him to continue after losing a life, keys that open doors, a glove that breaks certain walls and a cloud that Son Goku can use to fly during boss-battles. Additionally, Son Goku can buy longer and more powerful staffs if he finds somebody who sells them.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/NEC PC Engine/text/Spin Pair (Japan).txt",
    "content": "This might look like a typical drop-the-block puzzle game, but there?s a twist (or spin) to it. Instead of just matching block colours, you also have to fill in the blocks by rotating their 'full' half so it matches the 'empty' half of the shape below. As levels progress, blocks represent different things like plants, animals etc to give some variety. There are several modes of play, including a story mode and link-up.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/NEC PC Engine/text/Splatterhouse (USA).txt",
    "content": "Splatterhouse is the first game in the series, but only the second game to appear on a home console (after Splatterhouse: Wanpaku Graffiti on the NES), which was later continued on the SEGA Genesis. \n \nRick and his girlfriend Jennifer enter West Mansion (known as Splatterhouse) to study Dr. West's parapsychology teachings for a school project.  After a flash of lightning and a scream, Jennifer is gone, and Rick is left wearing the Terror Mask, which gives the wearer great strength. \n \nRick must survive seven blood-soaked levels full of corpses, demons, and other disturbing creatures in this arcade side-scrolling beat-em-up. Several weapons are at Rick's disposal throughout the house, such as a meat cleaver, a two by four, and a shotgun. If Rick wants to find Jennifer alive, he must move quickly through the floors of the mansion.... as a happy reunion is not always guaranteed.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/NEC PC Engine/text/Spriggan Mark 2 - Re Terraform Project (Japan).txt",
    "content": "Once again get to pilot a mecha in a war between two opposing armies, in Spriggan mark 2: Re-Terraform Project, this time to decide the fate of a distant colony in outer space. As in the first game, other AI-controlled mechas join in the fight and even talk to the protagonist with full voice-overs to advance the plot. The color-coding weapon system of the original is gone, replaced with a standard collectible power-up system. No options are available to watch the player character's back, but it is possible to change the direction the player-controlled mecha faces, allowing the player to deal with threats from behind.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/NEC PC Engine/text/Star Parodier (Japan).txt",
    "content": "Move fast and blast! It's a nonstop explosion of fire power and you're streaking through space, right in the middle of it! The Brains Cult you once defeated is back, badder than ever. But your finger's on the trigger of an incredible new techno-attack! Scorch the Scorpion with a nuclear a sting. Fire your heat-seeking sidewinders. Then power-up to launch your doomsday Super Bomb! Blow those Brains out and save the galaxy. Then challenge your friends with a special competition time mode to prove who the Super Star really is!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/NEC PC Engine/text/Summer Carnival '93 - NEXZR Special (Japan).txt",
    "content": "Released specifically for Naxat Soft's Summer Carnival of 1993, Nexzr Special is a collection of short stages and modes that share their basic gameplay system and visuals with Nexzr. The regular mode introduces familiar regular enemies and a few new bosses. The \"Carnival Mode\" contains Score Attack and Time Attack modes, both requiring the player to focus on attaining the high score rather than just surviving. For that reason the difficulty in these modes is more forgiving; they allow more continues and have more generously placed power-ups. These modes also offer more destructible objects on the screen, as these specifically serve to increase the score.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/NEC PC Engine/text/Super Star Soldier (USA).txt",
    "content": "Super Star Soldier takes place in the far future, where you are the last hope for planet Earth, which is being attacked by an alien race. \n \nThe game features top-down view with vertical scrolling levels, similar to its predecessor Star Soldier.  \nThe game features the following game play modes: normal play, score play, 2 minutes play and 5 minutes play. \nEach level has its own tough boss at the end.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/NEC PC Engine/text/Tatsujin (Japan).txt",
    "content": "Power on! All systems go! Takeoff! Meet the alien attack head-on in your Super Fighter! Before the Gidans overrun your planet, destroy them in an explosive scramble in space. You are the one pilot alive with the guts to do it! The Gidans have blown up your planet's cargo barge and are on their way to Borogo with a swarm of flying fortresses - asteroids loaded with tanks, guns, and explosives for an all-points takeover! Attack them face-to-face in your Super Fighter, the most powerful assault ship in the universe. Blast them to kingdom come with Power Shots. Fire the incredible Truxton Beam to disintegrate their speeding onslaught. And when there's no escape through their force fields, surprise them with the devastating Rainbow Circle Shot! You CAN save the planet!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/NEC PC Engine/text/Time Cruise (USA).txt",
    "content": "Time Cruise is a pinball game with a story.  The story has a scientist by the name of Eric who one day hears a voice claiming to be an extraterrestrial and through this voice learns the secret to time travel.  After several years of building his creation, he is finally finished and crawls in to his round metal time machine and is off on a quest to travel through time and meet his extraterrestrial friend.\n\nThe goal of the game, much like many others in the genre, is to reach and certain amount of points in one of several different pinball tables that range in different time periods including prehistoric times and up to the future.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/NEC PC Engine/text/Valkyrie no Densetsu (Japan) (Translated).txt",
    "content": "Legend of Valkyrie puts you in the shoes of a young Valkyrie of Norse mythology as she sets out to reclaim the fabled golden seed, which has been stolen by an evil god.\n\nThe game plays as a top-down action/adventure title with some RPG and platformer elements. You must navigate the many levels that compose Valhalla and defeat all the enemies in your path while sorting out chasms and other platformer-styled obstacles.\n\nYou can also find several NPCs in each stage, who offer gameplay hints, clues and items to buy with the gold stolen from fallen enemies. You can buy health power-ups, improved weapons and even magic spells for added fire-power.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/NEC PC Engine/text/World Court Tennis (USA).txt",
    "content": "World Court Tennis is a tennis game with a twist. The action itself features no big surprises: the players control their characters over the scrolling tennis field and try to counter balls from their opponents. It is possible to perform typical tennis actions like cross, smash or lob and the hit performance depends on the timing.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/NEC PC Engine/text/Ys Book I & II (USA).txt",
    "content": "Ys: Book I & II contains enhanced remakes of two games: Ys: The Vanished Omens and its sequel, Ys II: Ancient Ys Vanished - The Final Chapter. The enhanced versions were not released separately.\n\nThe players controls a young red-haired hero named Adol Christin, whose task is to find the six books of Ys, an ancient paradise-like land that mysteriously disappeared long time ago. It is said that whoever possesses the six books can gain access into Ys. In the first game, Adol is on the quest to find the books and to enter Ys. The second game takes place in Ys itself, and Adol must defeat an even greater evil and liberate the land.\n\nThis release features enhanced CD-quality sound, higher-quality graphics, and new anime-style cutscenes.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/NEC PC Engine/text/Ys III - Wanderers from Ys (USA).txt",
    "content": "Adol Christin's long-time friend, Dogi, wishes to return to his home town of Redmont after hearing about strange disturbances that are happening there.  Always looking for an adventure, Adol joins him and soon finds out the cause of this new evil.\n\nYs III: Wanderers from Ys breaks away from the \"bumping into enemies\" battle system of the first two games, allowing Adol to control his sword in a variety of directions. Beside changing the battle system, the game's perspective switches to a side-scrolling view, as opposed to the top-down one of the previous games. Adol also has the ability to jump now.  New to the series is the use of magical rings, which give Adol different powering-up abilities such as healing and shielding. The game also uses various key items found along the way to solve minor puzzles and progress the story.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/NEC PC Engine/text/Ys IV - The Dawn of Ys (Japan) (Translated).txt",
    "content": "The Dawn of Ys is one of two games released under the title of Ys IV, the other being Tonkin House's Ys IV: Mask of the Sun. The two games share the same basic story, but have many differences regarding concrete events, locations, gameplay details, etc. The events of the game take place a short while after those described in Ys II, and before the events of Ys III: Wanderers from Ys.\n\nAs the game begins, Adol and his friend return to the town of Minea, where the first game began. The evil Lord Darm has been defeated, and it's time to relax and spend some time with friends - but not for long. A new evil is rising, and Adol decides to set sail for the overseas land of Celceta to investigate these occurrences.\n\nYs IV returns to the style of play used in the first and second games. The gameplay area is viewed from a top-down perspective, and the player attacks enemies by running into them to cause damage. Combat is slightly more sophisticated than in the first two games, since Adol can now move in eight directions, and attacking enemies diagonally or from the sides is more efficient than bumping into them headstrong. Adol gains experience from defeating enemies, which serves to raise his attack and defense power, like in the previous games. He can equip various swords, armor, shields, and rings to enhance his attributes. The magic system introduced in Ys II is also brought back for this game.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/NEC PC Engine/text/Zipang (Japan).txt",
    "content": "Zipang is a puzzle game released exclusively for the PC Engine in 1990. It is based on the movie of the same name (which in turn is an antiquated word for the nation of Japan): a comedy action movie from director Kaizo Hayashi that was loosely based on Japanese mythology and was also released in 1990. The same movie would also be the inspiration for the NES game Kabuki Quantum Fighter, which in Japan was named Jigoku Gokurakumaru: the name of the movie's protagonist. \n \nZipang plays similarly to Solomon's Key/Solomon no Kagi by Tecmo. The player character can destroy and place blocks, using them as platforms to get higher up in the stage. The player needs to remove enemies in their way and collect necessary items along the way to the exit. After each stage, a prefecture of Japan is placed on a map of Japan: upon completing them all, the game is over.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Adventures of Star Saver, The (USA, Europe).txt",
    "content": "On a routine check through the city, police officer Tony and his sister find themselves sucked up by a UFO and transported to a distant land. Separated from his sister, Tony is left stranded in the middle of nowhere, but luckily for him the aliens left something for him, having stolen a mech from elsewhere in the galaxy. Powerful and deadly, the mech seems to have a mind of its own, and agrees to join Tony on the quest to find his sister.\n\nThe side-scrolling shooter pits you against a host of different alien creatures across the galaxy. You'll start inside the mech itself, collecting weapon upgrades along the way to increase your chances of defeating the alien scum. But be careful, if you're hit by them, you'll lose the safety of the mech and be all by yourself.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Aerostar (USA, Europe).txt",
    "content": "Aerostar is a top-down, vertically-scrolling shooter. The player controls an aircraft, but instead of going all across the screen, it can only stay on or fly over a preset road. However, it can ascend at the cost of disabling your weapons before descending back onto either another road or the one it was on before. Like most top-down shooters, there are power-up pods which provide an array of missiles, lasers, and guardian pods. In the end of each level there are extremely tough bosses. No storyline is provided.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Amazing Penguin (USA, Europe).txt",
    "content": "Amazin Penguin is a basic action game with a penguin protagonist. Each of the 40 levels consists of a number of lines which divide the playfield into squares. On those lines are switches (represented by a minus) and dots which need to be activated respectively kicked. If all lines around a square are cleared, it gets filled out and all enemies which happen to stand on one of the lines are killed (but respawn shortly after). The goal of the level is to fill all squares out. A life is lost by touching an enemy or running out of time.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Astro Rabby (Japan).txt",
    "content": "Astro Rabby is a top-down platformer in which the player takes control over a rabbit which has to travel through a number of levels with forced scrolling. Unfortunately there are only so much usable platforms available, in the space levels even less, which have to hit by performing controlled jumps. The platforms come in three heights which are indicated by their size - the bigger, the higher. Landing on a platform creates a lot of force and either causes the block to crack and, if it has a question mark on it, gives a power up (extra time or points). \n\nThe levels loop until the player finds a heart hidden in the question mark blocks - but landing on a cracked platform causes it to give way. Of course there are also enemies which have to be avoided or shot with the gun. Those leave behind power ups which give additional ammo or improve the jumping height respectively speed.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Atomic Punk (USA).txt",
    "content": "Atomic Punk, which was released as Dynablaster in Europe and Bomber Boy in Japan, is a game from Hudson Soft's Bomberman series. \n\nThe game offers two single player and two multiplayer modes. The single player mode called \"Game B\" has the classical Bomberman gameplay, while the mode \"Game A\" introduces several variations. The levels in Game A are divided in nine areas, which can be accessed in any order from a world map. Depending on the time taken to finish a level and the number of blocks destroyed, the player gets a certain amount of gold, which can be used to buy power-ups (called \"panels\" in the game) in shop, which in term is accessed from the map. Power-ups allow, for example, to revive Bomberman when he dies in a stage or to increase the length of an explosion. Before entering a new area, the player chooses which panels to use in order to complete the area.\n\nThe multiplayer mode are both player vs. player modes. In \"Panel mode\", each player can place only one bomb at a time and the bombs' radius starts at one, but panels appear in the field to improve this. In \"Powerful mode\", no panels appear, but each player can place up to four bombs at a time and the radius is four.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Avenging Spirit (USA, Europe).txt",
    "content": "In Avenging Spirit the protagonist is a spirit out for revenge. He has been murdered by a group of gangsters and his girlfriend has taken hostage by them. Her father uses his brand new machine to call the man's spirit back from the dead, telling him that they are holding his daughter ransom unless he turns over his research of ghost energy.\n\nIn side-scrolling fashion, the game features six different stages - the city, the rooftops, a factory, the city sewers and two levels dealing with the mobsters base of operation. The player is able to possess enemies, 20 in all, and use any skills or weapons they have, to complete the level. The player's health is represented by ghost energy and it is drained when he is not inside a host. The story leads to two different endings.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Balloon Kid (USA, Europe).txt",
    "content": "Balloon Kid is a unique side-scrolling platform game. You control a little girl who's brother has floated away on a big bunch of balloons. It's up to you to chase after him through 8 treacherous levels.  Instead of the usual jumping from platform to platform, you have a pair of balloons that allow you to float through the level. You must control your height carefully by tapping the 'A' button. Meanwhile, the screen is always scrolling to the left, and you have to keep up.\n\nIn addition to the single player adventure, there is a 2-player mode that allows you to compete against a friend via the Game Boy link cable.  In this mode you try to get your opponent to maneuver their balloon kid into the various level hazards.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Batman - Return of the Joker (USA, Europe).txt",
    "content": "The seedy underworld is crawling with criminals. Even worse - the JOKER is back on top of 'em all! Law and order means nothing... until now! Because BATMAN is here - and the action is hotter than ever! Ear-crunching sound effects. Pulse-quickening music. Graphics that are as hot as 16-bit. And this time, BATMAN hits fast and hard. Flying, leaping, and sliding to attack! And striking at the heart of the JOKER. The CAPED CRUSADER has a totally new arsenal at his command: Batarang, Crossbow, Sonic Neutralizer. He's even got a superfueled jetpack. And even more powerful weapons at the touch of a button. BATMAN has got to use all of his power. Because this world is a very dark place, and you never know where the JOKER is hiding!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Batman - The Video Game (World).txt",
    "content": "He's totally new. Totally tough. And he'll stop at nothing to make sure justice prevails! \nFrom the dark streets of GOTHAM CITY to the deepest corners of the criminal underground comes the CAPED CRUSADER as you've never seen him before. \n \nIncredibly strong. Armed to the teeth. And ready to put his life on the line for the sake of all, on a search-and-destroy mission to end THE JOKER'S reign of terror. He leaps, he flies, he dodges enemy fire and delivers it right back ... with a vengeance. \n \nThis is no kid stuff. This is as real as video gaming gets. If you liked what you saw in the movie, you're gonna love what you see here. Because this time around, BATMAN is all business, and he won't let anything ... anything ... stand in his way.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Battle Arena Toshinden (USA) (SGB Enhanced).txt",
    "content": "In Battle Arena Toshinden eight world renown weapon fighters have been invited to a mysterious tournament. It is one of the first one-on-one beat-em-ups to feature the ability to sidestep a full 360 degrees around the opponent allowing one to strike from any angle. Aside from the 3D movement, Toshinden's game play can be considered similar to Street Fighter, but in 3d and with a little less depth to the moves.\n\nTwo versions of Toshinden were released; for the Sony PlayStation and later a lesser known version for DOS PC's. However the PC version is not a straight port of the PlayStation version and plays and looks notably different despite sharing the same characters, attacks and controls.\n\nThe U.S and E.U PlayStation versions of Toshinden feature redone voices in English and redone music using different instruments. \n\nThe lyrics on Sofia's stage music in the Japanese version, which were actually in English, were removed in the process, likely due to their suggestive nature. \n\nSofia's and Ellis' voices in the English translation are also notably adjusted, for presumably the same reason; while the other characters English voices generally match the tones of the original Japanese voice actors, Sofia is far less suggestive sounding, while Ellis sounds notably older.\n\nThe later DOS version of Toshinden however, uses the same audio as the Japanese PlayStation version in all regions, albeit recorded at a considerably lower quality than they were on PlayStation.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Battle Unit Zeoth (USA, Europe).txt",
    "content": "Battle Unit Zeoth is a 2D futuristic side-scrolling shooter. Humanity is in danger -  a race of alien robots known as the \"Grein\" invaded the Solar System. They lost and fled, but left behind an underground base with self-replicating Grein machines. Two years after the invasion aliens attack again. However, the humans have made a special mech, Zeoth, designed for combat.\n\nPlayer controls Zeoth who can move to the right and shoot enemies. The odd-numbered stages are horizontal scrolling stages and the even-numbered stages are a simple \"platform\" stages. Each stage ends in a boss fight. Zeoth can fly with a jetpack (but the player must tap a button to resist gravity) and can fire in four directions (right, left, down and up). The basic weapons can be improved. The mech can take some damage before being destroyed and has just one life, however, there are unlimited continues.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Bionic Commando (USA).txt",
    "content": "You play a soldier with a bionic arm that extends and contracts.  Your arm allows you to grab on to fixed objects to swing around and climb up levels -- no jumping allowed! The arm also grabs opponents and pull them towards you.\n\nYour mission is to infiltrate the enemy fortress, find your missing comrade, \"Super Joe\", and take out the evil leader, \"Generalissimo Kilt\", of the invading force that has been attacking your people for the last 2 years.\n\nAfter most levels the Bionic Commando will recieve items. Often these items are required to successfully complete other levels. Additionally, each level will require a different colored communicator in order to make sense of message traffic\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Blaster Master Boy (USA).txt",
    "content": "Radioactive energy is destroying every living thing on Earth. Only Jason can stop it. And this time, he can't use his super-equipped car. He's gotta do it alone. Armed with blistering lanterns, mega-power hyper-bombs and skull-rattling super-bombs, Jason must blaze a dizzying path deep down beneath the surface of the planet to seek out the Mutant Bosses - then destroy them! Can you help Jason fight his way to the center of the Earth? He's running out of light. He's running out of time. And only you can make sure Jason blasts his enemies - before they blast him.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Booby Boys (Japan) (Translated).txt",
    "content": "Gameplay in Booby Boys is very simple. The goal of the level is to collect all of the sparkling chests. In doing so, a key will appear, which you can bring to a door in the level to go to the next one. There are ten levels in each world, and you freely choose to do each world in any order you want. \n \nThe main impediment to this process -- other than the clock, which kills you if time runs out -- are the enemies. You can press the B Button to dig a hole and trap enemies within when they walk in. (Holes can also kill you on higher difficulties.) If you want to close a hole, press B while facing it; if an enemy is within, they'll die and you'll gain points. (They will be replaced with a tombstone, which cannot have a hole dug on it anymore.) You'll also possibly gain some items.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Boxxle (USA, Europe) (Rev 1).txt",
    "content": "Just like in Soko-Ban, it is your goal to push a number of crates onto certain spots in order to finish a level.  \n \nFinding the right way to move all the crates on the right spots becomes increasingly difficult and you have to plan numerous steps in advance in order not to block your own way.  \n \nThe game features over 25 levels with 10 sub-levels each one. You can always choose the order in which you want to complete the sub-levels, but you have to complete all sub-levels in order to advance to the next main-level.  \n \nIf you have finished the game or become hopelessly stuck, there is also an option to create your own levels.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Boxxle II (USA, Europe).txt",
    "content": "A Challenging Follow-Up to the Original BOXXLE Game \n \nBOXXLE II is a challenging, brain-teasing puzzle game based on moving creates around a warehouse. Time has passed since Willy met Wanda in the original BOXXLE storyline. Willy is hard at work in the warehouse when an alien abducts Wanda! How can he save her? He must build his own spaceship! Each time you help Willy move boxes into their proper spaces and clean up one level, he is able to buy parts for his rocket. But manual labor won't save the day. You'll need brain power, too, to beat BOXXLE II! There are over 120 different maze-like screens to keep you concentrating. BOXXLE II will \"boxxle\" your mind all over again. \n \n- Enlarge or reduce any screen for a better look \n- Three choices of theme music \n- Build your own puzzles with three edit screens \n- Special instant reply mode lets you retrace your mistakes \n- Save wth password memory features \n- Over 120 different maze-like screens\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Bubble Ghost (USA, Europe).txt",
    "content": "Bubble Ghost needs to blow a bubble out of his creator's castle. Your task is to guide him so as to direct the bubble through the gaps in each room. The bubble's direction is affected by which part of the ghost hits it.\n\nCandles, fans, and other obstacles serve to make little Bubble Ghost's task harder. Bubble Ghost is invincible, but the bubble is prone to bursting if it hits anything at pace. You have five bubbles before the game is over.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Bugs Bunny Crazy Castle 2, The (USA).txt",
    "content": "Honey Bunny has been kidnapped by an evil witch, who has placed her inside a huge castle. Bugs must find a way through the castle to save Honey in his second Game Boy adventure. This time around Bugs must collect 8 keys in each of the 28 levels to advance. Along the way, Foghorn Leghorn, Wile E. Coyote, Yosemite Sam, and others will attempt to impede your progress.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Bugs Bunny Crazy Castle, The (USA, Europe).txt",
    "content": "This game is the first in the Crazy Castle series of Bugs Bunny games for the Game Boy. The object of this game is to move Bugs around the 80 levels of a castle and collect all of the carrots. Preventing Bugs' progress are the usual Warner Bros. characters, such as Daffy Duck, Yosemite Sam, and Sylvester. Bugs himself does not have any attack moves, but you can find various objects like anvils and boxing gloves to thwart your enemies.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Castlevania - The Adventure (USA).txt",
    "content": "A challenge you can't walk away from! \n \nAfter getting his wings clipped in Castlevania and Simon's Quest, the death defying Count has risen again. \n \nDesiring revenge even more than blood, he'll descend upon your Game Boy, with fangs glistening by the light of the silvery full moon. \n \nTo survive his maze of torture chambers and vampire crypts, you must unlock the castle's secrets by locating hearts, crystals and crosses. You must also possess the strength to master the Mystic Whip, which wards off unearthly evils like the She Worm. \n \nSo risk your neck and accept Drac's challenge. Because if you fail to destroy him now, he will rule the night forever.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Castlevania II - Belmont's Revenge (USA, Europe).txt",
    "content": "The curse of the Belmont family has struck again in the second Castlevania adventure for the Game Boy.  This game takes place 15 years after the first monochrome adventure.  Christopher's son has disappeared, and 4 mysterious castles have risen out of the fog.  He must travel to each castle and conquer the demons he finds there in order to rescue his son. Perhaps Dracula is not as dead as we thought. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Castlevania Legends (USA, Europe) (SGB Enhanced).txt",
    "content": "Take a journey to the very beginning, when Dracula first rose up to terrorize the good people of Transylvania. None dared challenge him, and the people of the country lived in fear and terror - until a young girl rose up and decided to take matters into her own hands. That young girl was Sonia Belmont, the first in the line of the legendary Belmont clan. \n \nWhile Castlevania Legends plays similar to the earlier Castlevania titles (the protagonist is only armed with a whip and needs to fight her way through five stages plus a hidden stage), there are also some unique features. While it is impossible to roam the stages freely, quite often the player can choose to go one way or another and in doing so skip some areas or find valuable items, collecting all of which will unlock the best ending. Sonia also possesses special power called Burning mode: once in a level (and once per life) she can boost her speed and attack power and become invincible for a short period of time.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Catrap (USA).txt",
    "content": "Banished to a mysterious underground labyrinth of complex mazes, two explorers are faced with one chance to reverse the curse: solve all 100 puzzles set out in mazes before them.  \n \nBut watch it! Every maze has monsters patrolling the depths of the labyrinth. Help Catgirl and Catboy push around huge blocks to bridge a path to yet another maze, or topple a block a few stories over the pursuing monsters. If you make a mistake, simply use the rewind function and travel back in time to correct it. With 100 mazes in this labyrinth, it will be quite a challenge to get out of the curse's reach! \n \nCatrap is more than just a game of mindbending intrigue and action. Be the architect of the underground labyrinth and make your own games of intricate puzzles. \n \nWhether you choose to be a maze builder or a maze solver, we know you can help Catboy and Catgirl land on their feet. \n \nCatrap (known as Pitman in Japan) is a puzzle game in which the player maneuvers the player, an anthropomorphic cat, to navigate a room while clearing obstacles and kicking monsters and ghosts off the screen. Once the player has knocked all of the enemies off the screen, he advances to the next level. Advancement can prove difficult for the player as increasingly intricate obstacles are presented to overcome all of the monsters and ghosts. Arguably, the easiest route to solve the problem is through trial and error. A player may try one combination of maneuvers by moving the obstacle in one direction, then he may find himself trapped. The player can hit the 'A'-button to reverse his movements and try again in a different way until he finds the solution that enables him to access all of the baddies to knock them off the screen. Trial and error seems to make up a large portion of the game. Players can also create their own mazes. The game is credited with having originated the time-rewind mechanic.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Cave Noire (Japan) (Translated).txt",
    "content": "Cave Noire is a roguelike. The game evolves around four quests (killing monsters, freeing fairies or collecting gold/orbs) with ten difficulties each. The difficulty determines how big the target number is, the stats the player starts with and what monsters are encountered. Starting a quest creates a randomly generated dungeon where the player has one chance to reach the goal - death means a new dungeon has to be created. Beating a difficultly level unlocks the next; this is also the one thing the game saves.\n\nThe dungeons itself are shown from a top-down perspective and feature the hero, walls, floor tiles, monsters and items to collect. Movement is turn-based and each turn is divided into four phases (player movement, player attack, monster attack and finally monster movement). Attacks are only possible when the two participants stand besides each other and the computer simply calculates the result from the statistics (attack, defense, luck and a a random component) which then lowers the health points of the attacked hero/monster. Of course reaching a health of zero means defeat. The mentioned statistics can be improved by finding and using certain items like weapons or armor. Potions, spells and rings which have additional effects when used/equipped, e.g. health refreshments, healing poison, dealing much damage or invisibility.\n\nImportant to note is that the environment also plays an important part in the quest. The walls and tiles may have special effects when touched, examples are pits (the player/monster falls to the next level of the dungeon and takes damage), breakable walls, lava or teleporters. Some rooms may be covered in fog which obscure the floor tiles until the hero walks onto it (monsters still can be made out). There is a specific kind of monster which clears the whole room when killed - but at the same time another one has the exact opposite effect.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Chalvo 55 - Super Puzzle Action (Japan) (Translated).txt",
    "content": "Jump and bounce through devilishly designed levels to collect the crystals needed to defeat the bosses in this sequel to the unreleased Virtual Boy game Bound High\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Contra - The Alien Wars (USA) (SGB Enhanced).txt",
    "content": "Welcome to 2636 the year the notorious Red Falcon gets even-with an unprecedented alien onslaught orchestrated to push the Contra forces to their ultimate reaches. \n \nPlunge through a molten massacre on a high speed voyage to the guts of the archenemy alien. Check out the side and top perspectives that engulf you in a 3-D sensation. Pick off solar slimedogs while you scale over walls swing from girders and ropes whatever it takes to defeat Red Falcon's allies. Sweat through five gut-splitting stages including the Streets of the Neo City and the Mucho Grande Badlands. \n \nThe intensity is so real that the explosions will nearly knock you off your feet. And the Boss Enemies are so gigantic, your screen can hardly hold them. You'll need to wrap both hands around artillery powerful enough to make today's weapons look like squirt guns. Tbe Contra legacy is alive and dangerous.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Cosmo Tank (USA).txt",
    "content": "CosmoTank is a space tank battle game. You're the commander of the tank 'Tiger a-1' and your mission is to fight on land and in space against the Master Insect and his minions. The game features both top-down levels and first person levels in which you can freely move around in all directions. Settings feature both open outdoor environments, caves and space.  Slowly upgrade your cannon and armor as you progress for more firepower and the ability to sustain more hits.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Darkwing Duck (USA).txt",
    "content": "Darkwing Duck is a 2D 3rd person platform game featuring this Disney super-hero, friend of Lauchpad McQuack (the Duck Tales character who worked as a pilot for Scrooge McDuck).\n\nAs a decent super-hero, his role is to save the city from his enemies.\n\nGraphics are cartoonish, like other Disney licenses developed by Capcom, but darker.\n\nGameplay is similar to Mega Man and Duck Tales, in the same jump and run style. Controls are easy to handle.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Dead Heat Scramble (USA).txt",
    "content": "Dead Heat Scramble is a relatively simple racing game. The player chooses between three cars (dune buggy, sand rail or off-road truck) and races against the clock while dodging obstacles like other cars or blockades. The ten courses, which have to be unlocked in a linear order, take place in a tube and are shown in a cross-sectional view from above. The cars can move left and right on the bend. Other than that there are also a few power-ups to collect on the way which bring advantages like a nitro boost.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Dexterity (USA, Europe).txt",
    "content": "Dexterity is a puzzle game with a 7x8 grid, each one filled with a tile or another item. The goal is to flip over all tiles within a time limit. This has to be triggered manually by pressing a button, but if there is another flipped tile on the field, all other tiles between the player's position and the other tile will flip, too. Some grids are filled with stationary blocks, moveable blocks (either pushing them normally or send them flying with a strong kick) and holes. \n \nThere are also monsters which need to be avoided. All five of them have different behaviour patterns and have the ability to reverse already flipped tiles; some of them can even push blocks or destroy tiles. The monsters can be killed by using blocks against them: pushing them over the borders of the playfield or a hole will kill them. Alternatively they also can be trapped. Killed monsters slowly respawn at pre-defined spawn points; this takes place over several phases. In the \"egg\" phase, it can be picked up to kill another enemy with it. Another possible weapon are stunned enemies which stood on a multi-flipped row. \n \nWhen pushing blocks into a corner, they will disappear and transform into power ups, e.g. bonus points, extra time or a temporary stun of all enemies. A life is lost when an enemy is touched or the time runs out. When that happens, all flipped tiles stay flipped.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Donkey Kong (Japan, USA) (SGB Enhanced).txt",
    "content": "Donkey Kong's adventures continue with new tricks and traps for Mario! \n \nDonkey Kong returns to Game Boy! This famous ape has kidnapped Pauline and climbed to the top of a perilous skyscraper. Challenged by many perils and unending puzzles, Mario must reach his arch rival. As he makes his way Mario will need to gather disappearing keys to unlock doors of hidden rooms. Donkey Kong devises evil tricks to confuse and trap him. Our heroic plumber has his hands full this time! \n \n- Classic arcade fun with 10 stages and 100 advanced puzzles \n- Thrilling new adventure elements for added excitement \n- 4 megabyte game contains a battery back-up\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Donkey Kong Land (USA, Europe) (SGB Enhanced).txt",
    "content": "In a modifiication of Donkey Kong Country, Donkey Kong teams up with his buddy Diddy for new adventures and gorilla antics. Facing high-flying pigs, killer bees, and reptilian Kremlings, the simian duo swings back into action on the Game Boy.  \n \nThe two Kongs each have similar abilities when compared to the SNES game. \n  \nThis game isn't exactly a remake of DKC; for instance, there are new levels and enemies, and Candy Kong does not save your game: instead you must collect all four Kong letters.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Donkey Kong Land 2 (USA, Europe) (SGB Enhanced).txt",
    "content": "In Donkey Kong Land 2, Donkey Kong has been captured by the evil Kaptain K. Rool, leaving it up to Diddy and Dixie Kong to save the day in this side-scrolling adventure. Fortunately, they will have plenty of help along the way from their friends.\n\nLike the original Donkey Kong Land, all the graphics in this game are pre-rendered three dimensional models. The gameplay is also similar, with platform jumping and banana collecting remaining a core part of the game experience.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Donkey Kong Land III (USA, Europe) (Rev 1) (SGB Enhanced).txt",
    "content": "DK and Diddy Kong have left in search of The Lost World after hearing of a contest to find it on the radio.  This leaves Dixie stuck with minding her baby cousin Kiddy Kong.  Frustrated at this, she decides to take Kiddy with her and find The Lost World before everyone else!\n\nAs with Donkey Kong Country 3: Dixie Kong's Double Trouble!, Dixie Kong takes the lead in the third chapter of the Donkey Kong Land series. Dixie can glide using her hair, and carries barrels over her head.  Her partner is the heavy Kiddy, who carries barrels in front of him, and can jump a bit further by somersaulting over platform edges first.\n\nThere are also special animal friends that can help the two primates out.  Ellie the Elephant can shoot water at enemies, while Enguarde the Swordfish can glide through water with ease. Squawks the Parrot can fly and spit eggs, and Squitter the Spider can shoot webbing as well as use it to create new platforms.\n\nEach level has Bonus Coins and DK Coins tucked well away in the levels.  While it's possible to gain an ending without these, to complete the game properly, players must seek them all out and unlock levels of the fabled 'Lost World'.  A new feature to the game series is a Time Attack mode - once players finish the game, they can attempt to beat the best time for certain levels.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Dr. Franken (USA).txt",
    "content": "Franky, one of the many creations of Dr Von Frankenbone, has awoken to find his love, Bitsy, has vanished. Discovering the other evil creations of the castle has taken Bitsy and left pieces of her around the castle, Franky must find his way through the many levels and put Bitsy back together. \n \nFranky can shoot his way past many of the evil creatures, but you must also dodge falling objects and jump over trapdoors to stay alive. Power outlets can re-charge Franky to full health, while lamps must be used to see through the dark dungeons.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Dr. Franken II (USA, Europe) (En,Fr,De,Es,It,Nl,Sv).txt",
    "content": "It is several years after the death of Dr. Von Frankenbone, and things around the castle are starting to fall apart. The electricity bill hasn't been paid in some time, and now Franky need to find the cash to pay it off. The locals have trapped Franky inside the late doctor's private manor, and you (as Franky) must escape and piece together the golden tablet depicting your beautiful girlfriend Bitsy to pay the bills.\n\nDr. Franken II is a side-scrolling platformer what places you in control of a Frankenstein-like character named Franky. The goal is collect different objects within different levels to put something back together. In order for Franky to recharge his health, you need to find the parts to fix the electricity machine that does it. You will also be taken to exotic locales such as Egypt and the bottom of the ocean to find pieces of Bitsy's golden tablet.\n\nLike its predecessor, there are many trap doors, monsters, and other obstacles that need to be overcome. Keys are needed to unlock new areas of the game, which can be found in the far reaches of the level.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Dr. Mario (World) (Rev 1).txt",
    "content": "In this Tetris-style game, you play as Dr. Mario, who must drop differently coloured pills onto viruses to remove them from the bottle. Each pill is split into two, with each side being of one of three different colours, red, blue or yellow. Align three pills of the same colour to a virus of the corresponding colour (or any combination of pills and viruses totaling four or more) and it will be removed from the bottle, along with the aligned pills. The level is cleared when there are no viruses left, and the game is over when the pills reach the top and Dr. Mario can't drop any more pills.\n\nIncluded in the game is the normal mode, a time trial, and a two player battle mode to see who can remove the most viruses.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/DragonHeart (USA, Europe).txt",
    "content": "Dragonheart is based on the 1996 fantasy film of the same name. The player controls Bowen the dragon slayer, through eight levels fighting many dragons and encountering characters from the film, such as Gilbert, Kara and King Einon. The exploration is presented in a 1st-person-view and the battles are presented in a side-scrolling view. The player can get information about the current quest from peasants that are found in the many villages and houses throughout the game. The battles resort only to two buttons, one to attack and other to defend.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Dropzone (Europe).txt",
    "content": "Dropzone is basically a Defender variant, closely recreating the gameplay of the original Defender with its speedy scrolling and frantic gameplay.\n\nThe player controls a spaceman with a jet-pack, flying across a barren landscape whose skies are inhabited by a number of different aliens, from the simple Planter to the slowly advancing Blunder Storm or the quick, aggressive Nemesite. \n\nPlanters and Nemesites will try to pickup the small men walking on the surface, who must then be rescued. The player has to shoot down the alien, while avoiding to hit the man. Sometimes, the aliens will carry an android, which is similar to the human but deadly. Care must be taken so as to not pick up the androids. All men must be transported to a surface base, where they are put in safety - this is the Dropzone.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/DuckTales (USA).txt",
    "content": "While in the basement of Uncle Scrooge's mansion, Huey, Dewey and Louie discover an old piece of paper. When they show it to Uncle Scrooge, he recognizes it as part of his great, great Uncle Fergus McDuck's legendary treasure map! With the remaining parts of the map hidden around the world, it's up to Uncle Scrooge to find them and discover Fergus McDuck's secret treasure!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/DuckTales 2 (USA).txt",
    "content": "While in the basement of Uncle Scrooge's mansion, Huey, Dewey and Louie discover an old piece of paper.  When they show it to Uncle Scrooge, he recognizes it as part of his great, great Uncle Fergus McDuck's legendary treasure map!  With the remaining parts of the map hidden around the world, it's up to Uncle Scrooge to find them and discover Fergus McDuck's secret treasure!\n\nDuck Tales 2 is the sequel to the NES and Game Boy game, Duck Tales.  Based on the Disney cartoon of the same name, players control Uncle Scrooge as he searches the globe for massive amounts of wealth while trying to discover hidden pieces of the map.\n\nScrooge's main method of attack is his cane - by jumping in the air and holding the B Button, the cane turns into a pogo stick, allowing players to jump onto most enemies' heads and cross dangerous terrain like spikes with ease.  By pushing up against a wall or an object, Scrooge will whack his cane like a golf club, either sending the object flying or occasionally revealing secret items.  New to Duck Tales 2 is the ability to push and pull certain objects with the cane after hitting them.\n\nFamiliar faces such as Huey, Dewey and Louie, Webby, Mrs. Beakley, and Launchpad McQuack all turn up to lend a hand.  Scrooge will even bump into the crazy inventor, Gyro Gearloose, who will improve Scrooge's cane so that he can access even more secret areas.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/F-1 Race (World) (Rev 1).txt",
    "content": "F-1 Race is an arcade style racing game featuring tracks in locations all around the world.  You will find tracks from Australia, Canada, Portugal, India, Russia, and even Egypt.  Gameplay is viewed from a behind-the-car perspective using scaled bitmaps.\n\nThere are three modes of play.  First is a championship mode, where you compete in a series of races, and must place first in each to advance to the next. Second is a time trial mode, in which you try to achieve your shortest lap time around the track of your choice.  Finally, there is the multi-player mode for up to four drivers.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Faceball 2000 (USA).txt",
    "content": "Faceball 2000 is a first-person shooter.  You control a H.A.P.P.Y.F.A.C.E., or Holographically Assisted Physical Pattern Yielded For Active Computerized Embarkation. The graphics consist of flat shaded corridors. Enemies are all simple geometric shapes with smiley faces on them. Although the graphics are simple, they allow for full freedom of movement, not unlike Wolfenstein 3-D.\n\nThere are two modes of play. First there is a single player mode in which your goal is to find the exit to each level.  There are 70 mazes in this mode. The second mode is the multiplayer arena. For the Game Boy: up to 4 Game Boys can be linked together in this mode.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Fastest Lap (USA).txt",
    "content": "In this game you play the role of a F1 race car driver who wants to make it to the top. The gameplay involves you doing qualifying laps and  then racing opponents in the main races. The game is played from a top down perspective. You can also tweak your cars engine and tires to suit the circuit you are on. There are four main teams you can race for.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Fighting Simulator 2 in 1 - Flying Warriors (USA, Europe).txt",
    "content": "AVAILABLE FOR THE 1ST.TIME ON THE GAME BOY! 2 GAMES IN 1, THIS IS ONE OF THE MOST POWERFUL VS TOURNAMENT GAME EVER MADE! I FIGHTING SIMULATOR MODE\n\nThere are 7 different contact sport to choose from in this game pack,including Kung-fu wrestling,and boxing. Choose your favorite sport and play for the World Championship! By using the GameLink feature,you can enjoy a vs tournament with your friends. Fierce fights for the title of the strongest in the world begin now!\n\nII FLYING WARRIORS ACTION GAME MODE\n\nBesides a fighting simulator mode,there is a scroll action game too. Our superhero Rick,fights against a mysterious enemy, the Dark Dragon. Fight through the numerous formidable enemies and traps and get tne legendary treasure back from evil's hand.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Final Fantasy Adventure (USA).txt",
    "content": "In the Empire of Glaive, a gladiator-slave is forced to fight evil monsters controlled by the Dark Lord. But when his best friend is mortally wounded, he learns of a secret pendant which will give him great power. As the hero, you must battle your way out of the Dark Knight's castle and search through a dangerous world for the girl who has the pendant. But you discover she has been captured by the Dark Knight's men. To free her, you must find the legendary sword and fight off the Dark Knight's beasts and overlords through deserts, snowfields, lakes, forests, and caves. Are you ready for the adventure of your life?\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Final Fantasy Legend II (USA).txt",
    "content": "The second in the Final Fantasy Legend series increases the amount of detail over the original in gameplay and graphics.\n\nThe major changes are in the character classes and party members. Similar to FFL, starting a game of Legends II allows you to choose your main character from Humans, Monsters, Mutants and a new class: Robots. From here, you build your party of 4 from the same character classes. During gameplay special side-characters will join you in battle to help defeat certain enemies. \n\nThe other improvement is in strategy. In FFL you gain experience points after each battle, increasing strength, etc. In FFLII, you gain different points and abilities depending on how you defeated the enemy. If you win by using a sword, your strength increases. If you use magic, your mana increases. This adds a more strategic approach to defeating enemies.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Final Fantasy Legend III (USA).txt",
    "content": "The final (no joke) Final Fantasy Legend title to grace the Game Boy, FFLIII tells the story of a great flood which destroys cities in the past, present and future. \nAs you control a party of 4, with a choice of human and mutant classes, and travel back and forth through time collecting pieces of the great ship Talon so as to defeat the enemy that has flooded the lands.\n\nThe inclusion of a time travel storyline means that whatever you do in one time frame can have an affect on what happens in another time. Other major changes compared to the original 2 in the series are the ability to mutate your characters further and a change to the upgrade system.\nItems picked up after battle can be attached to your mutants or humans to turn them into monsters or robots, increasing your parties power and abilities.\nAnd although the original system of obtaning experience points after every battle has been removed, its replacement allows you to choose which magic stone each character can use, so they learn that specific magic type and never lose it.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Final Fantasy Legend, The (USA).txt",
    "content": "The first 'Final Fantasy' title on the Game Boy, Legend allows you to choose from 8 different characters, from the usual human male or female to zombie, wererat, redbull (not the drink), clipper or mutant male or female. No matter which you choose, the goal stays the same: Increase your experience points and abilities by defeating many varied enemies through-out the land.\n\nMuch like the FF series of old (and new), you can choose members to join your party and the quest that lies ahead (either warriors, mutants or creatures). Every character has a limit to the amount of moves available during every battle and experience points are gained after each fight, increasing stamina, power, etc.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Fortified Zone (USA, Europe).txt",
    "content": "A male and a female commando named Masato & Mizuki are sent to the jungle on a mission to destroy an enemy base and everyone in it. Stealth is required, since brute force will only lead into their capture.\n\nYou are able to switch between the two characters at any time, something rarely seen in video games even today, twelve years after its release.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Frog For Whom the Bell Tolls, The (Japan) (Translated).txt",
    "content": "Prince Richard and Prince Sabl have been rivals since they were young.  When news arrives of a princess in a far-off kingdom who requires rescuing, Richard dashes off in the hopes of saving her before Sabl manages to.  Left to catch up, Sabl explores the land, and soon becomes cursed, turning into a frog whenever a strange bell is heard.  Sabl must remove the curse and rescue the princess.\n\nKaeru No Tame Ni Kane Wa Naru is an action-adventure game.  The game plays in two modes: a top-down view (where most exploration and battle is done), and a side-scrolling view (where more puzzle solving is done than battles).  Battling is not actually performed by the player, instead it is all automatic.  If you bump into an enemy, you will see a dust cloud appear, and the pair will scuffle, with each character's health draining.  Whoever loses all their health first loses the battle.  Sabl can increase his battle advantage by collecting heart containers (to increase his life bar), and power ups that increase statistics like power and defense.\n\nAnother feature of Kaeru No Tame Ni Kane Wa Naru is Sabl's ability to transform into a frog at certain points in the game.  This allows him to access areas that he previously could not.  The main goal of the game is to conquer a huge castle, however, sections are sealed off until you complete parts of the story, allowing you to explore it in small parts at a time.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Game & Watch Gallery (USA) (Rev 1) (SGB Enhanced).txt",
    "content": "The Game & Watch Gallery is Nintendo's first portable compilation featuring their popular line of original 1980's handheld games, featuring the popular \"Mr. Game & Watch\" himself, as well as Mario and friends.\n\nThe compilation consists of four popular titles from the Game & Watch Series, each with a \"Classic\" and \"Modern\" version of each game:\n\n1. Octopus: Collects as much treasure as your bag can hold, while avoiding the octopus tentacles that continually swing around you.  In the \"Modern\" version, Mario becomes the diver, and as he collects more treasure, his bag becomes heavier, making it harder to return to the surface.  Mario can also delay the octopus tentacles by throwing treasure at them.\n\nFire: Position your net to catch the falling people jumping from the burning building.  The \"Modern\" version has Mario and Luigi rescuing Toad, Yoshi and Donkey Kong Jr. from Princess Peach's Castle.  Each falling character has different weights and falling patterns.\n\nManhole: The player must cover the holes to keep the continually walking people from falling through the manholes and into the sewers.  In the \"Modern\" version, Yoshi must use his tongue to keep Mario, Toad and Donkey Kong Jr. from falling thought the hole, each character having different speeds and patterns.\n\nOil Panic: The player must collect the dripping blobs of oil before they slip past and ruin everything.  The \"Modern\" version has Bowser dropping oil blobs at Mario, who has to catch the oil and dump it over to Yoshi before the Koopa King gets the best of Mario.\n\nEach mode (Classic and Modern) has two difficulties: Easy and Hard.  The higher score a player gets in each version, new unlockable bonuses will become available via the \"Gallery Corner\".  These bonuses include release dates, pictures and animations which tell in greater detail the history behind Gunpei Yokoi's portable creations.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Gargoyle's Quest (USA, Europe).txt",
    "content": "The friendly Ghoul Realm was invaded by aliens know as the Destroyers ages ago.  The Destroyers almost captured the Ghoul Realm except a powerful fire came from the sky and destroyed them.  The Realm is threatened again and the secret of the fire must be recovered.\n\nYou play Firebrand, a gargoyle who has powerful claws that allow him to cling to walls and other surfaces on a verticle plane.  Firebrand can also hover and fly for awhile with his wings.  Destroy the enemy characters with your firery breath.  The game also contains an adventure type story that is unfolded by interacting with characters from an over-head perspective. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Gargoyle's Quest II - The Demon Darkness (Japan) (Translated).txt",
    "content": "Firebrand is a young warrior-in-training from the town of Etruria. One day, while Firebrand is training in a small, alternate dimension, the Black Light suddenly appears and destroys his home. When he returns successfully from his training, he is told to hurry to the King by another ghoul just before it dies. Upon defeating Nagus, Firebrand is able to meet with King Morock, who informs Firebrand he is on the brink of death. Before dying, he gives Firebrand the Spectre's Fingernail and Firebrand sets off on a journey to unravel the mystery of the Black Light.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Ghostbusters II (USA, Europe).txt",
    "content": "Loosely based on the movie of the same name, Ghostbusters II sees Virgo the Carpathian appear in New York city. He captures Diana's baby and it is up to the Ghostbusters to get him back. In order to accomplish this, the Ghostbusters: Igon, Ray, Peter and Winston, must chase Virgo through the courtrooms, the sewers, the apartments, the underground and the art museum.\n\nGhostbusters II is a top-view action game based off of New Ghostbusters II (the second Ghostbusters II license on NES) but with enough differences to be unique. Players begin by choosing two of the four ghostbusters, who all play the exact same. The first one selected is controlled by the player directly and carries a proton pack, the second ghostbuster is follows the first and carries the ghost trap. The objective of each level is to capture a predefined number of ghosts before the timer expires. The player moves up, down, left and right. One button will fire the proton gun directly in front of the first ghostbuster, stunning any ghosts. The second button will toss the trap directly in front of the second ghostbuster, trapping any stunned ghosts. While exploring the levels, any of the 2 remaining ghostbusters (as well as the ghostbusters' accountant Louis) not currently being used will occasionally show up. Touching them will provide power-ups (and often swap with a selected Ghostbuster) including vacuum guns, instant traps and invulnerability.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Golf (World).txt",
    "content": "Golf features two challenging 18 hole courses where players are able to play a round of golf, and allows players to choose a club, adjust stance and control the swing. The game features three alternating views; an overhead long-range view of the entire hole, an overhead medium-range view from the ball's current location, and an overhead close-range view of the green. Gameplay modes include 1 player, or 2 player play with a link cable.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Great Greed (USA).txt",
    "content": "As Great Greed begins, you are accidentally warped to another dimension by a wizard by the name of 'Microwave'?. With no immediate way back, you help the people fight off the scourge named 'Bio-Haz' who is consuming this dimension with evil and destruction. \n \nThis new dimension you find yourself in is not terribly unlike the one you came from, with the exception that everyone is named after foods or food-related items and most of the monsters appear to be mutated vegetables and the like. \n \nThis RPG breaks from the normal formula in a few respects. The battle system does not use any menus, switching all commands to simple button pushes. A being attack, B for dodge, Start will run and the D-Pad is shortcuts to certain spells. The combat is also live, in the sense that if you take too long to complete your turn, your opponent will attack again. \n \nUsing a battery-backed save system, the game will automatically auto-save after every successful battle.  \n\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Gremlins 2 - The New Batch (World).txt",
    "content": "Gizmo is trapped inside Clamp Centre by the evil Gremlins. Your mission? Help him battle his way to the control center and rid the city forever of the Gremlin menace! It's not going to be easy. You'll have to use cunning and wits to survive with only the weapons you find inside Clamp Centre... matches, a flashlight, tomatoes, and a homemade bow and arrow. But, if you're lucky, the door to Mr. Wing's Magic Shop may mystically appear... and let you buy some very special - and powerful - items to help you. This game has all the traps, mazes, and lightning quick moves to push your skill to the limits. And it has graphics that seem to come alive on the screen. Gremlins. Stopping them is not going to be easy. Don't say we didn't warn you!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Hammerin' Harry (Europe).txt",
    "content": "Hammerin' Harry: Ghost Building Company is the sequel to Hammerin' Harry.\n\nThis episode has Harry fighting more than just workers. He has to defeat an army of ghosts in a series of environments, including construction site, sewer, airship, jungle, and finally, the headquarters where he meets the evil ghost building machine. Rather than using his mallet, Harry can obtain a spiked ball which does more damage than the mallet. There are five stages, and each one ends with Harry fighting a boss. Upon completion of a stage, the gameplay switches from a beat-em-up to a horizontal shooter where Harry flies through the air, defeating airborne enemies and avoiding dangerous objects. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Harvest Moon GB (USA) (SGB Enhanced).txt",
    "content": "Harvest Moon is a farming simulation where you must build and maintain a farm during the course of a year, while taking care of your budget and yourself. \n\nYou have the ability to buy, sell and take care of farm animals, crops and any other supplies that you may have. You can trade with many of the town's people, and fellow farmers. If you link up a friend's Game Boy, you can trade items between players as well.\n\nThe local stores supply plenty of items to help you in your quest, at a cost, of course. And if you have the time, you can go about the town in search of a little fun away from work.\n\nFrom an overhead perspective, you can explore your farming area, the local town and the Harvest Sprite tunnels, full of strange and wonderful creatures that can help or destroy your quest. There are four seasons (Summer, Autumn, Winter, Spring) and each brings with it new challenges such as keeping arm animals warm during the colder seasons, and supplying water to the crops during the warmer periods.\n\nThe GBC version includes all new characters and background sprites in full color, but is also backwards compatible with the original Game Boy version. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Heiankyo Alien (USA).txt",
    "content": "1000 years ago the city of Kyo was suddenly invaded by aliens.  A Kebiishi (knight of the past) was entrusted to defend the city. \n \nThe game starts with a maze where the kebiishi and some aliens appear.  The aliens start moving through the maze wherever they please.  While trying to keep from getting eaten, the kebiishi digs holes where the aliens will likely travel.  If an alien comes to a finished hole, it will fall in an be trapped for a while.  While the alien is trapped in the hole, you can fill the hole to bury it.  If all aliens are buried, the round ends and you can proceed to the next round.   \n \nThe Game Boy version includes both the original arcade version as well as an enhanced version with new graphics and original features such as a super alien that has special powers, moves to avoid holes and chases the keibiishi. Two players can play via the video link cable.  \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/James Bond 007 (USA, Europe) (SGB Enhanced).txt",
    "content": "Bond is once again in the thick of things, this time travelling the eastern hemisphere in order to stop an elite weapons smuggling ring. In order to do so, Bond must use all of the weapons and gadgets on hand, including the trusty laser watch, pistols, Ak-47's and more.\n\nBond will also have the chance to visit the casino, where you can spend some cash on blackjack and the like, while some of the most famous Bond villains make appearances in the hopes that they will stop the secret agent from completing his task.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Kid Dracula (USA, Europe).txt",
    "content": "Kid Dracula is a side-scroller and a parody of the Castlevania series. The difference is you play as a young vampire rather than a vampire killer.\n\nGameplay consists of very standard jump and shoot platform action.  As you progress through the 8 levels, you gain the ability to perform spells, like turning into a bat. You will also receive guidance from your pal, the Grim Reaper. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Kid Icarus - Of Myths and Monsters (USA, Europe).txt",
    "content": "An evil force is threatening to invade the Angel Land.  Palutena, the ruler-goddess, sends a warrior named Pit on a quest to prepare for the upcoming attack. Pit must find three ancient treasures and face down the evil force.\n\nKid Icarus: Of Mythis and Monsters is the Game Boy version of one of Nintendo's classic side scrolling platform/adventure games. Throughout the levels Pit will collect hearts, upgrade his strength, collect treasures, and learn to fly.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Kingdom Crusade (USA).txt",
    "content": "Different from the NES game of the same name. In the game the player takes on the role of the legendary Prince Valiant licensed from the cartoon series of the same name which is in turn based on the comic series Prince Valiant. Prince Valiant must lead Arthur's armies against the Tyrant Cynan. The goal is to capture all his castles or defeat all his armies.\n\nA giant over-map shows the world and is divided in tiles. Each tiles has different terrain and shows whether units or castles are present in a tile. Tiles are either white or gray depending on whether Arthur or Cynan controls it.\n\nCharacters on the map can be directly controlled after being selected. This happens in a top-down view similar to The Legend of Zelda. Characters can attack and jump. Each character has different attacks. Items can be collected and the player can move freely between tiles. Moving through tiles that are occupied by the enemy conquers those territories, but the enemy can take them back at any time by moving through them again. If two enemy units meet on the same tile, combat ensues. In real time the player must try to defeat the AI opponent. This is done through dodging his attack and trying to land a blow. To conquer a castle all enemies including those in adjacent tiles must be defeated. \n\nIt is also possible to find and collect items in the direct control mode. Items serve as power-ups that for example make the player faster or restore health points.The player can return to a castle at any time to heal completely.\n\nThe player can select the size of the world to increase or decrease the game's length. Additionally he or she and change the difficulty of the AI player (Cynan) and select a handicap for himself. It is also possible to play against another player.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Kirby's Block Ball (USA, Europe) (SGB Enhanced).txt",
    "content": "Kirby takes on a new challenge, blockball. The playing field contains a variety of blocks, and using Kirby's rolling technique, you must set him into motion (with paddles situated around the field of play, similar to pinball) to clear the blocks from the field. Each level contains more and more blocks to clear, and after a few rounds you take on boss characters in a one-on-one round to see if you can clear more blocks.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Kirby's Dream Land (USA, Europe).txt",
    "content": "Dedede, King of Dream Land, is a penguin-like creature who is too gluttonous for his own good. Gathering food for his midnight feast, he got carried away and ended up taking all the food from the inhabitants of his country. One of them, a pink little guy named Kirby, decides to travel all the way to King Dedede's palace and retrieve the lost food by any means. \n \nKirby's Dream Land is a side-scrolling platform action game, and the first in the Kirby series. Although the protagonist appears to be a weak little marshmallow, he is actually quite powerful: he has the ability to suck up his enemies like a vacuum, and then shoot them out at other enemies.  Kirby can also swallow air and inflate himself, which allows him to fly. There are four levels in the game; no save feature is available.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Kirby's Dream Land 2 (USA, Europe) (SGB Enhanced).txt",
    "content": "The lovable Kirby returns to the Game Boy! This time the bridges connecting the rainbow bridges have disappeared and King Dedede is to blame as always...or is he? The evil Dark Matter has him under his control and plans to turn Dream Land into a dark world. Kirby's goal is get the fabled rainbow sword and defeat him! \n \nGameplay consists of a platform game. Kirby is like no other platform character of its time because he can fly with no power-ups, and he can swallow enemies and get their powers. In addition to that, Kirby can now team up with his friends: Rick the hamster, Kine the fish, and Coo the owl. Each team-up has it's advantages and disadvantages, but Kirby can still swallow enemies, making more different powers available depending on the power/friend combination.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Kirby's Pinball Land (USA, Europe).txt",
    "content": "Kirby's Pinball Land is a game of pinball based on the Kirby series of games, with Kirby as the ball.  In the game you have to help Kirby defeat King Dedede and the three bosses who each guard one of the Pinball Lands.  \n\nThe game is divided into three tables or Pinball Lands, each consisting of four screens, three ordinary screens, and a boss screen  If you fall off the bottom of the lowest one, you lose a life, unless you press A at the right moment to activate the springboard, which becomes harder each time.  Each screen has a variety of things to do.  The middle screen will give access to some sort of bonus game, where you must try to get as many points as you can, and can add to your bonus and bonus multiplier.  The bonus is added to your score when you lose a life, as in ordinary pinball.\n\nThe aim is to defeat each boss.  To get to the boss you must perform a task on the top ordinary screen.  The bosses themselves must be defeated by firing Kirby at them, but they will try to stop you, sometimes by temporarily de-activating one or both of the flippers.  If you defeat the boss on each table, you face Kind Dedede himself.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Kirby's Star Stacker (USA, Europe) (SGB Enhanced).txt",
    "content": "Kirby's Star Stacker is a Tetris-like puzzle game.  There are varying modes of play, such as Time Trial, Challenge and Story Mode, but the basic idea of play is the same: you must sandwich Star Blocks between two like Friend Blocks, either horizontally or vertically.  The Friend Blocks and any Star Blocks in-between are then removed from play.  Similar to Tetris, sets of blocks fall into the bin that contain any two of the following types: \n \nStar Blocks: The most important block, as all of the game types rely on it. Sandwich these blocks between two Friend Blocks either horizontally or vertically, and they will be cleared.  The more stars you clear, the higher the score. \n \nFriend Blocks: These blocks have pictures of Kirby's friends - Rick the Hamster, Kine the Fish, and Coo the Owl (all from Kirby's Dream Land 2) - on them. Match two of each to clear them from the screen.  Any Star Blocks between the two character blocks will also be cleared.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Kung-Fu Master (USA, Europe).txt",
    "content": "Loosely based on a movie, Kung-Fu Master is a side scrolling action game for one or two players, who alternate turns.\n\nMr. X has captured the pickpocket Sylvia and it is up to Thomas, a kung-fu master who owns a restaurant, to get her back. She is located on the top floor of Mr. X's castle and Thomas will need to fight his way to the top. Of course, this won't be easy as each floor has many opponents to get past and a floor boss at the end of each level. \n\nThomas is able to move left and right, jump, duck, and punch and kick. Enemy projectiles such as knives can be kicked in the air to rebound them towards the enemy. On the top floor resides Mr. X himself. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Kwirk - He's A-maze-ing! (USA, Europe).txt",
    "content": "Kwirk is a puzzle-game, in which you have to help a tomato reach the exit of numerous levels. The path to the exit is blocked by boxes, holes and spinning doors. Boxes can be pushed aside or into holes to make them traversable and there are different types of spinning doors. In some levels, it is also possible (and necessary) to control several different characters to help the main character get to the exit. As the game progresses, levels get larger and more complicated.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Legend of Zelda, The - Link's Awakening (USA, Europe) (Rev 2).txt",
    "content": "The fourth game in the Zelda series although it does not take place in Hyrule. After being attacked at sea, Link's ship sinks, and he finds himself stranded on Koholint Island. He awakens to see a beautiful woman looking down at him. He soon learns the island has a giant egg on top of a mountain that the Wind Fish inhabits deep inside. Link is told to \"awaken the wind fish and all will be answered,\" so Link sets out on another quest.\n\nPlay is similar to the SNES game with a top down perspective. Link must go onto each of the 7 temples to retrieve a musical instrument that will help awaken the Wind Fish. Along the way, Link must search the land and uncover hidden treasures and items that will allow him to progress on his journey. With new items, he can open up new passages that will take him even farther on his quest and allow him to enter new areas that were inaccessible before. Link can attack his enemies with his sword or use items he finds during his quest to help him. Guarding every instrument is a temple boss, which must be defeated if Link is to awaken the Wind Fish. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Legend of the River King GB (USA) (SGB Enhanced).txt",
    "content": "This unique RPG provides a world of fishing as the prime objective.\n\nThere are two modes of play, The Fish and Raise.\n\nThe Fish: As a young boy, you must search out the fish called Guardian, the only fish in the river that can cure a disease caught by your sister, Teruyo. This mode combines RPG elements such as buying items, talking to the town's folk and searching the local river for the Guardian fish. The fishing element comes into play when you bait or lure fish at the river, in hopes to find a fish.\n\nRaise mode allows you to purchase a fish tank and the extras, and raise a small fish. Much like the many Pokmon type games, you can feed it, keep the tank clean and raise the fish.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Lock 'n' Chase (World).txt",
    "content": "There's money to be had, and it's waiting to be nabbed. Be an ace in Lock'N Chase. \n \nThis classic arcade game invites you to play as a thief who's trying to score big by collecting his weight in gold. Duck in and out of alleys while scooping up coins along the way. Maybe you'll get lucky and find some extra treasure. But being on the wrong side of the law is never easy, as the police are hot on your tail. If you think they're coming too close, try using a sliding door or power-up items to block their chase. \n \nThink you can make a clean getaway? Test your skills in Lock'N Chase.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Magic Knight Rayearth (Japan) (SGB Enhanced) (Translated).txt",
    "content": "It is an action role-playing video game based on the anime series of the same title.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Mario's Picross (USA, Europe) (SGB Enhanced).txt",
    "content": "Nonograms are number puzzles where logic is used to find the solution. Clues are provided along the sides of the playfield grid, telling the player how many squares to fill in each row and column. With logic the player can figure out exactly which squares of the grid to fill. The thinking process is similar to solving Sudoku puzzles.\n\nMario's Picross (from PICture CROSSword) is Nintendo's take on Nonograms. In this game, Mario takes on the role of an archaeologist who chisels away the squares in each playfield. The result is a small picture. There are 256 different puzzles to solve, divided into four courses with increasing difficulty level.\n\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Maru's Mission (USA).txt",
    "content": "One day while Maru and Cori are taking a walk in Central Park, a strange thing happens. Out of nowhere this weird looking guy shows up and waylays the unsuspecting couple. Before Maru can respond, the weird looking guy and Cori vanish without a trace, leaving Maru behind wondering what in the world just happened.\n\nMaru's Mission is a side scrolling action game. Traveling throughout the world from such locations as the USA and Romania, you fight mythological monsters such as Isis and Dracula. \n\nMaru can shoot sparks in rapid succession and can also get access to a variety of powerful different weapons. Maru can collect hearts to replenish his health and jump to avoid obstacles or dodge enemies. Levels are usually finished by defeating a level boss which sometimes earns a new weapon.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Mega Man - Dr. Wily's Revenge (USA).txt",
    "content": "Mega Man is the robot creation of Dr. Light, whose sworn archenemy Dr. Wily spends innumerable games trying to cause trouble with his own odd robots. As Mega Man, you run and jump through futuristic levels, shooting baddies with your blaster, and defeat each of Dr. Wily's Robot Masters. When you defeat them, you can take their ability as your own, which can provide an advantage against other types of evil robots.\n\nIn this Game Boy version, Mega Man must fight against Ice Man, Electric Man, Cut Man, and Fire Man. After he defeats those four he battles Quick Man, Heat Man, Bubble Man, and Flash Man. And after that, there's Dr. Wily's Space Node. That sounds like a lot, but passwords will save your progress, if you make it past certain milestones. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Mega Man II (USA).txt",
    "content": "After defeating Dr. Light's six robots that were reprogrammed by the villainous Dr. Wily in Mega Man, it seemed like the world was safe.  But it was not to be.  Dr. Wily has escaped from prison and is madder than ever, this time creating eight new Robot Masters of his own to take over the world and crush Mega Man!  Is the world doomed?\n\nMega Man 2 is the sequel to the NES game Mega Man. In this game, Metal Man, Air Man, Bubble Man, Quick Man, Crash Man, Flash Man, Heat Man and Wood Man are Dr. Wily's eight prize creations that have been sent to take over the world.  As Mega Man defeats these bosses, he can steal their powers and use them for himself.  Each Robot Master is weak against another's weapon, and through experimentation, Mega Man can gain the upper hand by using the weapon they're vulnerable against.\n\nOther additions to the game include the 'E-Tank' - an item that can be used at any time to completely refill Mega Man's energy, and a Password System, which allows players to continue their game by recording which Robot Masters have been defeated and how many E-Tanks they have.  Mega Man 2 also removes the scoring system from the original game.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Mega Man III (USA).txt",
    "content": "Mega Man 3 is a traditional side-scrolling platformer: you jump from brick to brick while avoiding pits and shooting robots. It's quite similar, in all respects, to other Mega Man games; however, this is the first time that you get a sidekick. It's also the first time you're allowed to slide instead of merely walking. \n\nRush is your dog who helps out by offering other modes of transportation when you need it. He starts out with the 'Rush Coil' ability to launch you to the top of the screen like a springboard; later he acquires the 'Rush Jet' ability to turn into a guided, floating platform to carry you wherever you need to go; and he also gets the 'Rush Marine' ability which is a submarine that works just like the jet except underwater and with the added ability to hop around out of the water (you can actually jump while on the jet but the jet continues to hover beneath you whereas you stay inside the submarine). All of these abilities function just like boss weapons.\n\nWhen you defeat the boss at the end of a level you gain his power - or at least a similar power. You may pause the game at any time and switch to any single power you have. It supplants your regular Arm Cannon with a limited - but superior - ability. The weapon ammo is displayed next to your energy meter. There are eight of these, corresponding to the eight main levels, even though there are twenty-one levels in the entire game. \n\nEnemies will often supply you with both energy and ammo refills. You can also collect Energy Tanks which can only be used once but will entirely restore your health. You start the game with three lives. Other features include Surprise Boxes lying around for you to find. There are infinite continues and a password feature to resume play at the beginning of any level.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Mega Man IV (USA).txt",
    "content": "In the year 20XX...\n\nDr. Wily has broken into the local Robot Museum and has stolen the bodies of his previously destroyed Robot Masters, and now has brought them back for revenge against Mega Man! What's worse, Wily plans on using a massive laser cannon from outer space to blast Earth to dust!\n\nMega Man must team up with his friends to stop Dr. Wily before Earth is destroyed!\n\nMega Man IV contains elements of Mega Man 4 and 5 (NES) and is a Game Boy exclusive.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Mega Man V (USA) (SGB Enhanced).txt",
    "content": "Dr. Cossack, humbled by his defeat and his allowing of Dr. Wily to influence his ways, decides to help Dr. Light by providing him and Rockman with tools and weapons to help foil Dr. Wily for good. All seems calm and peaceful, until...\n\nA sudden rampage breaks out, and the cause is found to be a group of robots, led by a mysterious figure. As Dr. Light begins to investigate this rampage and attempts to find a way to stop it, he is kidnapped by the leader of the robots. Rockman hurries to save Dr. Light, but is too late...the only thing he can find at the scene is a yellow scarf...one that almost seems to belong to...Blues!?\n\nCould Rockman's supposed brother, the strange but good-hearted Blues, be the one who kidnapped Dr. Light? Is Blues the one responsible for the rampages? With these questions racing through his mind, Rockman sets off to find Blues and get the answers he wants.\n\nLike the other early Rockman / Mega Man games, the Playstation version was only released in Japan, as part of the Complete Works series.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Mercenary Force (USA, Europe).txt",
    "content": "Mercenary Force is an unconventional shoot'em up set in Japan's Edo period and inspired by Japanese history and mythology. When Japan is invaded by the minions of a dark lord, the shogun sets out to hire the best warriors in the land to combat the enemy. \n\nPlayers start with 5000 yen and must begin by hiring their mercenaries. The team has four slots and can be recruited from five different character types (servant, ninja, monk, samurai and mystic) in any combination (including more than one of any character). The characters differ in hiring price, starting health, weapons (amount of projectiles, speed and direction), and their special attack.\n\nThe game consists of six levels, seen from an angled top-down/side-view perspective, with the screen scrolling automatically to the right. The mercenaries must shoot hordes of enemies to get to the next level, including several bosses. The mercenaries can change their formation between four different options: a vertical line, a diamond shape, a square shape and a horizontal arrowhead formation. It is also possible to switch the character in the lead position, leading to a large variety of tactical options. The hit points of each team member are counted individually, so if one is killed the remaining ones can fight on. Besides their standard weapon, each character also has a special suicide attack, triggered by pressing both buttons at the same time. These are usually highly devastating attacks, but the monk's power actually allows the group to skip ahead through a large part of the level.\n\nKilled enemies drop coins of 10 yen in value that disappear after a short while if not picked up. The money reserve is used in a matter of ways: between stages, new recruits can be hired to replace fallen fighters. There are also various buildings in the levels that allow the spending of money. Cafes offer various items that restore or increase health and, in some levels, can change the character class of the team leader. There is a fortune-reading at a temple which makes it possible to recruit a hidden character, and the possibility to resurrect fallen comrades at a daibutsu. Only temples don't cost money and offer healing for free.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Metal Masters (USA).txt",
    "content": "Metal Masters is a one versus one fighting game with robots. Each robot has two basic attacks: ranged and melee; which one is used depends on how close the opponent is. In each scenario, the player can control the attacks of the robot: when in ranged mode the used weapon system is chosen (each of the four body parts has its own) and during melee combat, the direction of the punches is controlled. \n\nEach successful hit gives points which decide the winner if no fighter goes down within the time limit. A knockdown is achieved by emptying the opponent's life bar. Additionally each hit (with a big bonus for winning) gives prize money which in turn is invested in upgrading the robot. The player can buy new parts for the four components (main body, legs and the individual arms) - but an upgraded robot also influences the difficulty of the next enemy. While being inside a fight, the AI can be set to take over the own robot.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Metroid II - Return of Samus (World).txt",
    "content": "This is the sequel to the very popular Metroid for the NES.  In Metroid 2, you control Samus Aran in her quest to rid the planet SR388 of the Metroid parasites.  After killing the space pirate Mother Brain in the original Metroid, Samus must take on this adventure to prevent the Metroids from multiplying throughout the galaxy.  Samus soon finds out that the Metroids have mutated, making them much more difficult to defeat. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Mickey Mouse - Magic Wands! (USA, Europe) (SGB Enhanced).txt",
    "content": "One day, Mickey and his friends went for a walk in a forest. They became so distracted by all the natural beauty surrounding them, they got lost. Pretty soon, they discovered a haunted castle. \"That's the witch Yashja's castle,\" they told each other. \"Once you enter, you can never escape! The castle is full of tricks and traps and even magic wands to create ice and fire. Let's not get any closer!\" \n \nAll this chatter aroused Yashja from her slumber. \"So! Who dares disturb my sleep?\" she yelled. \"You all shall pay!\" Suddenly, a gaping hole opened up under Mickey's friends and they all fell in. Now Mickey has to save his friends, who are now being held captive by the witch! \n \nTo save his friends, Mickey has to collect puzzle pieces that completes images of his Disney friends, including Minnie Mouse, Donald Duck, Goofy and even obscure characters like Grandma Duck from the comic book series. To do this, Mickey has to wave his wand over crystals which conceal not only pieces of the image, but also items and even an occasional enemy. Each big level has ten small stages, each with at least one image to complete. Each tenth stage has an end boss to defeat. Also, the image to complete in the tenth stage of each level reveals the Disney character being held captive by the end boss of that level.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Mickey's Dangerous Chase (USA).txt",
    "content": "In Mickey's Dangerous Chase the player takes control of either Mickey or Minnie Mouse.  While on his way to deliver a very special gift to his girlfriend Minnie, Mickey is jumped by Pete who steals the present and takes off and it is up to the mouse duo to stop Pete and get back the present.\n\nThe gameplay is a side-scroller, where players pick up boxes to throw at enemies as well as discover power-ups that include short bursts of invincibility, extra lives and energy boosts that will help the player in their quest.  There are five different levels to play in including a lake, a mountain top, a forest and a shopping center and numerous enemies to avoid such as spiders, flying squirrels and even snowballs.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Mole Mania (USA, Europe) (SGB Enhanced).txt",
    "content": "Muddy Mole's wife and seven kids have been kidnapped by the evil farmer, Jinbei!  It's up to you to help Muddy solve the many puzzles of Jinbei Land.  Snatch all of Jinbei's cabbages in every level, and if you get stuck, dig underground and create your own secret underground paths.  A word of warning, however - Jinbei has got his best goons guarding your family, so you'd better watch out!\n\nMole Mania plays from an overhead perspective.  Although in each room you have to destroy all the foes to progress, the game is much more puzzle-oriented than it is towards action.  It is quite common in later levels to get yourself 'stuck', which can be fixed by leaving and returning to the screen to reset the puzzle.  One of the game's clever 'hooks' is that players can dig underground in each stage to find a completely different map than they do above ground, which can be used to get through otherwise impassable terrain.\n\nThe game also features a two player mode, where one player is Muddy, and the other is Jinbei.  Muddy must swipe as many cabbages as possible, and Jinbei must stop him.  At the end of the round, players swap roles, and then the player who got the most cabbages wins.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Monster Max (Europe) (En,Fr,De,Es,It,Nl).txt",
    "content": "A powerful human called Krond conquers the Monster Planet, bans all music and declares himself king. Max, a monster rock musician decides to fight back. In order to defeat the evil monarch, he enlists in the training course at the Mega Hero Academy.\n\nMonster Max is a surreal isometric adventure by the same duo that created the 8-bit classic Head Over Heels. Not surprisingly it is very similar to that game in terms of control and general design, and almost identical graphically. The character moves on a bizarre landscape, where he has to collect and use objects (with either the A or B button) to accomplish mission objectives. The game starts on a training academy that serves as the mission hub. Each mission has as an entrance with a terminal and a door. By touching the terminal with the character, the mission objective and reward is displayed on the screen. The missions available can be played in any order, but Max has to pay a fee to access other levels with more advanced missions. On the top left of the screen there is a counter for the lucky stars collected. Lucky stars allow the character to touch dangerous objects once without suffering damage. Besides that are several hearts representing the number of lives. On the top right is the inventory display, showing the two objects assigned to the buttons. Hitting START while on a mission brings up a map, while pressing SELECT displays a menu with options and the password at the bottom of the screen.\n\n\nThe game is far larger than previous isometric adventures like Knight Lore, with over 600 more detailed locations (the double of Head Over Heels). There is a password system to save progress.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Montezuma's Return! (Europe) (En,Fr,De,Es,It).txt",
    "content": "Max Montezuma is a soldier who also happens to be a descendant of a legendary Aztec emperor. One day Max's plane crashes on an uncharted, deserted island. Max discovers ancient ruins there and ventures to explore them, attempting to connect the mystery of the past with the events of the present.\n\nMontezuma's Return is a sequel to Montezuma's Revenge, and also focuses on platforming gameplay which includes puzzle-solving, avoiding obstacles, and fighting enemies. Unlike its predecessor, it is a first-person 3D game. The player is able to see the protagonist's feet when moving the camera, to facilitate precise platform jumping.\n\nEvery level ends with a boss battle, and each boss must be defeated in a specific way. Max can punch and kick enemies, and also use environmental hazards to damage them; pushing enemies into water or luring them into traps will kill them. Some areas require Max to jump on moving platforms, climb ropes, swim, avoid falling into lava or deadly spikes, etc. Max can collect treasure on each level, bananas or watermelon slices to heal himself, and special items to unlock barriers.\n\nThe full version of Montezuma's Revenge is included on the CD.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Motocross Maniacs (USA).txt",
    "content": "Motocross Maniacs is a side-scrolling racing game with extremely perilous courses. You maneuver your rider through many jumps, loops, and mud hazards to achieve a record time. To assist you there are several power ups that give you more time to race, more nitro boosts, and more top speed.\n\nThe main game is a solo affair. You attempt to complete the course before time runs out. You can also race one-on-one against the computer or against a friend via the link cable.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Mystical Ninja Starring Goemon (USA) (SGB Enhanced).txt",
    "content": "Oh no!  The evil Skull King and his army of evil pirates are plotting to take over Ancient Japan!  Only Goemon, Ebisumaru, Sasuke and Yae stand in their way.  Fight your way through Gadget Castle, The Black Ship Skull, The Demon Cave and Skeleton Island as you make your way to face off against the Skull King himself.\n\nMystical Ninja Starring Goemon is an overhead action game with light RPG elements, similar to Link's Awakening.  Players explore towns, dungeons, castles and more, searching for treasure chests and attacking enemies.  There are also shops and inns where you can purchase items or rest to recover your strength.\n\nAt the end of each level, there is a boss waiting for you.  However, to defeat them, you must compete in a mini-game called 'The Surprise Match'.  These mini-games usually feature button-mashing of some kind or a variation on a memory match game. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Nemesis (USA).txt",
    "content": "Nemesis is the first entry in the long-running Gradius series on the Game Boy. Its side-scrolling shoot'em up gameplay follows the series template closely. Players control the Vic Viper through five levels, most based on levels in earlier entries, for a kind of 'greatest hits' of the series. There is a cave level (as in level 1 of the original Gradius), the mandatory Moai stage, a Gigeresque organic level, a graveyard (similar to bonus stages in the MSX and PC Engine version of the original Gradius) and a high-tech base. Besides the classic core ship in the first level, all boss enemies are entirely new.\n\nThe cycling Gradius power-up system is reused here: collected power ups advance the power meter which can be activated at any time to gain the highlighted item. The line-up includes the classic selection of speedups, missiles, dual shots, lasers, option satellites and forcefields.\n\nThe game allows players to start in any of the five levels and even to set the number of lives to a maximum of 99.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Nemesis II - The Return of the Hero (Europe).txt",
    "content": "In the year 6664 Dr. Venom, the director of the Space Science Agency, was exiled to the planet Sard for his involvement in a failed rebellion and illegal scientific activities. One year later, he joined forces with the Bacterion invaders, escaped Sard, and took control of the space surrounding the planet Gradius. In 6666, the local government sends Colonel James Burton on the newest hyperspace fighter known as Metalion. The goal is clear: stop Dr. Venom and the Bacterion army before they conquer the planet. \n \nNemesis 2 (Gradius 2 in Japan) is a side-scrolling shoot-em-up. The gameplay is for the most part similar to that of Gradius. The player-controlled ship can alternate between three main weapons: Missile, Double, and Laser. Extra weapons such as various types of lasers, napalm missiles, reflex ring, and back beam can be collected as power-ups and equipped. In addition, special power-ups can be acquired, their effects ranging from slowing down enemies to turning the Metalion into an invincible drill-like machine for a brief amount of time. Boss battles are followed by optional mini-stages, which grant the player new weapons if completed successfully.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Ninja Boy (USA, Europe).txt",
    "content": "Ninja Boy is based off Super Chinese.  \n \nAs such, players control a young Kung-Fu hero from a bird's-eye perspective and are able to move and attack up, down, left, right. Players use the hero's punch and kick abilities to defeat enemies.  \n \nPlayers can also find weapons and other items scattered across the game to use against the enemy hordes. After defeating a set number of enemies the players is allowed to run into an exit and proceed to the next level.   \n \nAs the levels progress, difficult enemies become more numerous.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Ninja Boy 2 (USA, Europe).txt",
    "content": "Ninja Boy 2 is an Action game, developed and published by Culture Brain, which was released in Japan in 1991 as Super Chinese Land 2.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Ninja Gaiden Shadow (USA).txt",
    "content": "Ninja Gaiden Shadow is a prequel to Ninja Gaiden. It is 1985, 3 years before the events of the NES game, and Jaquio has not yet been awakened. However, Emperor Garuda, an evil dictator, threatens New York city and it is up to the Ryu Hayabusa to fight him.\n\nThis game is an action side-scroller. Ryu can run, jump and beat his enemies using a sword. He also has a grappling-hook device, which can be used to reach higher platforms, which can then be hand-climbed across. By collecting power ups Ryu can use a magical technique called \"the art of the fire wheel\", an ascending and spinning wheel of fire which will take more damage than his usual sword. He has up to 5 charges of this technique. Ryu has a life meter with six units, which can be replenished by finding proper power ups inside containers.\n\nThe game is divided in 5 stages. Each stages has sub-screens, and the main objective is to go from left to right till the end of the screen, destroying the enemies in the way. Among the enemies Ryu will find humans, cyborgs and machines. At the end of each stage a boss fight awaits Ryu.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Ninja Taro (USA).txt",
    "content": "High Adventure in the Far East! \nIt's the era of feudal war in Japan. One Shogun struggles to unite the provinces, but he needs help. \nHis villainous arch-rival is rumored to be dead, but a merciless legion of anarchy continues to plague the countryside. If he is dead, then who could be leading the evil forces which prevent Japan from attaining peace and order? \n \nThis chaos must be stopped! \nFrom the ranks of the Phantom sect to the Shogun's aid comes Ninja Taro. With the cunning of a thief, the skill of a master, and a legendary sword, he must venture forth to tame the minions of evil, and unravel the riddle that will unite the empire!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Noobow (Japan) (Translated).txt",
    "content": "Noobow is a puzzle platformer featuring a Japanese chocolate mascot. The aim of the game is to pick up objects and use them wherever they're needed in order to stop the sun and rain from fighting each other. After using the objects in the right places they disappear to confirm that players have made the right choice. \n \nThere are 7 levels in the game and Noobow will always refuse to put his life in danger. Completing each level is done by reaching the goal and assisting the characters that are waiting there.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Operation C (USA).txt",
    "content": "Operation C is a Game Boy sequel to the popular NES titles Contra and Super C and is, essentially, a side-scrolling shooter. You play a Rambo-esque character that goes around shooting everything in sight, collecting weapon upgrades and bonuses.\n\nThe game introduces the character of Black Viper to the series' oft-jumbled continuity.  Black Viper would later return in the Nintendo DS title, Contra 4, as the primary villain.  \n\nThe game features only five levels, two of which are played from an overhead perspective similar to Super C.  Operation C is also notable in featuring the upgradable Spread Gun (from three to five shots) and introducing the Hunter Gun.  \n\nThere is also the occasional platform element such as jumping puzzles, moving platforms etc., and the mandatory end-level boss.\n\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Out of Gas (USA).txt",
    "content": "You are cruising around in outer space when suddenly you are out of gas. The game is played from an top-down view. The gameplay is not very far from Asteroids, where you are the pilot of a ship and must complete level after level. For each level your objective is to get gas by shoot a the G-signs scattered around the levels. In some levels you have to shooting the signs in a special order. The levels must be completed in time, and you also have to watch out for enemy fire.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Painter Momopie (Japan) (Translated).txt",
    "content": "In Painter Momopie the player has the important task to wipe all the castle floors. The castle is divided into several rooms which have to be finished within a time limit one after another. Those rooms have varying layouts with more open spaces, tight gangways or dead ends - but every field is dirty. \n \n Cleaning is the simple matter of walking over a tile and if everything is clean, the level is done. However, there are also ghosts walking around the rooms which kill the player at touch. \n \n The protagonist has access to a few magic spells which grant advantages when used, e.g. a time stop, killing a near enemy or speed up. Each spell costs a certain amount of magic points.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Parodius (Europe).txt",
    "content": "This is mostly the parody of Gradius (Nemesis on some systems), with some flavor from other shoot-em-ups, like Twinbee. The series is available on numerous platforms.\n\nThe game is a right-to-left scrolling shoot-em-up. You can choose from 4 different flying creatures, with different weapons. You must finish 7 stages, each having a boss at the end. You may start at either one, but must complete every level to advance to the final stage.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Penguin Wars (USA).txt",
    "content": "Are you ready to indulge in some animal antics? To compete with some fun-loving characters? Then PENGUIN WARS is the game for you! The action never stops as you try to roll ten balls across the playing court while your wacky opponent attempts to do the same. Pitch 'em! Dodge 'em! You won't have a second to rest once this game gets rolling!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Picross 2 (Japan) (SGB Enhanced) (Translated).txt",
    "content": "Picross 2 is the Japanese only sequel to the Game Boy puzzle game, Mario's Picross.  Your goal is to reveal the hidden picture inside each grid by chipping away the correct squares.  Clues along the grid's edges help you figure out which squares should be chipped away, and which should be left alone.  The puzzles are much more advanced than those in Mario's Picross - easy puzzles are in a 15x15 grid, while standard Picross puzzles are four 15x15 grids connected together, solved one section at a time.\n\nPicross 2 has two modes of play: the first, Mario's Picross, has you solving Picross puzzles with Mario.  In this mode, the timer ticks down from 30 minutes, and you must solve the puzzle before the timer reaches zero.  If you chip away an incorrect square, you are penalized time (first two minutes, then four, then eight).\n\nAfter solving a certain amount of puzzles in Mario's Picross mode, you can play Wario's Picross.  In this mode, the timer starts from zero and counts upwards.  You are not penalized time for any mistakes, however, this means that you do not know which squares are correct and which ones are incorrect until the puzzle is complete.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Pinball - Revenge of the 'Gator (USA, Europe).txt",
    "content": "It's pinball....with gators!  This arcade-style title brings pinball on the go with the Game Boy!  Score as many points as possible, but don't let your ball be eaten by the 'Gator!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Pocket Bomberman (Europe) (SGB Enhanced).txt",
    "content": "In contrast to the overhead view of other Bomberman titles, Pocket Bomberman features sidescrolling platformer gameplay. Like other Bomberman games, Bomberman must defeat all enemies in each stage to advance. The game features a total of 5 worlds spanning 25 levels. Each world follows a different theme, including forest, underwater, cloudtops and a dark underworld. At the end of each world is a boss fight. There is one mini game called Jump Mode in which players must guide Bomberman through an Easy, Medium, or Hard course. Bomberman will constantly jump and the player can only place bombs in this mode.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Pokemon - Blue Version (USA, Europe) (SGB Enhanced).txt",
    "content": "After venturing alone into tall grass, a voice warns the player to stop, which is revealed to be Professor Oak, a famous Pokmon researcher. Professor Oak explains to the player that wild Pokmon may be living there, and encountering them alone can be very dangerous. He takes the player to his laboratory where the player meets Oak's grandson, a rival aspiring Pokmon Trainer. The player and the rival are both instructed to select a starter Pokmon for their travels out of Bulbasaur, Squirtle, and Charmander. Oak's Grandson will always choose the Pokmon which is stronger against the player's starting Pokmon. He will then challenge the player to a Pokmon battle with their newly obtained Pokmon, and will continue to battle the player at certain points throughout the games.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Pokemon - Red Version (USA, Europe) (SGB Enhanced).txt",
    "content": "You've finally been granted your Pokmon trainer's license. Now, it's time to head out to become the world's greatest Pokmon trainer. It's going to take all you've got to collect 150 Pokmon in this enormous world. Catch and train monsters like the shockingly-cute Pikachu. Face off against Blastoise's torrential water cannons. Stand strong when facing Pidgeot's stormy Gust. Trade with friends and watch your Pokmon evolve. Important - no single Pokmon can win it all. Can you develop the ultimate Pokmon strategy to defeat the eight GYM Leaders and become the greatest Pokmon Master of all time? \n \n* Collect up to 139 different Pokmon playing the Red version. Using the Game Link cable, trade with a friend who has the Blue version to capture all 150. \n* You'll need to use both versions (Red and Blue) to collect all of the Pokmon. \n* Test your training skills by battling against a friend using the Game Link cable. \n* Save your Pokmon and game progress on the Game Pak memory. \n \n\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Pokemon - Yellow Version - Special Pikachu Edition (USA, Europe) (CGB+SGB Enhanced).txt",
    "content": "You've finally been granted your Pokemon trainer's license, and now you're on your way to becoming the world's greatest Pokemon trainer! The shockingly cute Pikachu tags along behind you as you search the enormous world for monsters to train and evolve. Face off against Blastoise's torrential water gun. Stand strong when facing Pidgeot's stormy gust. Develop the ultimate Pokemon strategy to defeat the eight GYM leaders and become the greatest Pokemon master of all time!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Pop'n TwinBee (Europe).txt",
    "content": "Another top-down shooter in the Twinbee \"cute'em up\" franchise.\n\nHeroes Light and Pastel decide to go out and help a young maiden bring sense back to her scientist father, who apparently has bumped his head and transformed into a evil mastermind that seeks world domination.\n\nAs the other games in the series Pop'n Twinbee is a vertically-scrolling arcade shooter in which you and a friend get behind the controls of Twinbee and Winbee, the cutest starfighters ever created, and try to clear stage after stage of enemies with your  weapons. Being a console original instead of a port, Pop'n features a number of additions to the gameplay mechanics, including an energy bar, eight difficulty levels and a handicap feature when playing with a friend (which makes most enemies target one fighter instead of the other).\n\nThe upgrade system remains consistent with the series's: you shoot colored bells which give different power-ups when collected, including multiple shots, \"options\" and shield energy. Also when correctly powered-up both fighters can join and perform powerful team-up moves.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Q Billion (USA).txt",
    "content": "In Q Billion, you play a mouse which must level out a playfield filled with stacks of tiles. To do this, the mouse must climb onto one stack and push a taller, neighbouring stack so that tiles fall off, until there are no tiles stacked on top of each other. Oftentimes, there stacks are not adjacent to each other, which forces the mouse to push a tile next to the stack in order to have something to stand on. Since the mouse is so weak, it can only move a single tile. This calls for a lot of juggling, since in order to move a stack of three tiles (represented by a 3 in a square), it must move a single tile next to a stack of two tiles, then move another tile to the other side of the small stack and push the uppermost tile of the stack onto the single tile in order to create a stack of two next to the stack of three. If there is a distance greater than one or two squares between the stacks, it makes the task daunting and requires a lot of planning, which puts this game straight into the old style of Japanese puzzles pioneered by Sokoban.\n\nLater stages introduce tiles of different kinds, symbolised by hearts, squares or stars. These tiles will, when moved together in groups of four, be eliminated; or at least the uppermost layer will. This calls for three-dimensional ? or even four-dimensional ? thinking on behalf of the player. None of the special tiles must be left on the screen for the stage to be cleared.\n\nA second gaming mode contains ready-made puzzles which must be solved in a limited amount of time. An editing mode will also allow the player to create levels of his own.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Quarth (USA, Europe).txt",
    "content": "Quarth is a typical puzzle/arcade game. Quarth can be moved from right to left while the screen scrolls down. The playing field is filled with different blocks and your aim is to fill them in so they form complete rectangles or squares. Only when you succeed in this mission, the concerned blocks will disappear. New 'unformed' blocks appear while the playing field scrolls down making you play into full action at all times. As soon as a line of blocks reaches the bottom line, it is Game Over. Then you'll be granted 10 seconds to decide if you want continue the level. Each Level consists of 9 Areas and you progress to the next level once you've cleared the last area. The Battle mode is a dual player mode.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/R-Type (USA, Europe).txt",
    "content": "R-Type is a side scrolling shoot 'em up best known for its extremely tough and strategic gameplay.  You control the R-9 spaceship as it launches a last-ditch effort to repel the evil Bydo empire.\n\nThe R-9 comes equipped as standard with a small gun which can only take down the smallest of enemies without firing several shots. By holding down the fire button, it can be loaded up so as to release a large burst of energy, eliminating all but the strongest enemies in its path. From time to time, pods will come flying in your direction. Upon being shot, they release an upgrade. The first one will invariably be the one called \"The Force\", which is a weapons pod that clings either to the front or the back of your ship, absorbing any enemy bullets or acting as a bumper with which you can fly head-on into them. You can also use it as an offensive weapon by firing it and pulling it back in. Mastering the Force is vital to surviving in R-Type, since it must be used both as protection against bullet clusters, as a remote controlled cannon, and in order to clear the screen from obstacles. Other upgrades give you target-seeking missiles or a bigger main gun. Different gun types, differentiated by their colour, serve different purposes. The blue one sends laser beams bouncing across the screen (good for tunnels), the red one fires straight ahead, and the yellow one follows any walls it may encounter (good for artillery emplacements).\n\nThe stages of R-Type are made in an organic style, certainly inspired by H. R. Giger's artwork for the Alien movies. When it came out, it was considered trend-setting since it broke off from the stereotypical sci-fi mould of other shoot'em'ups. In part, the levels themselves are your enemy, which is exemplified by the fourth, where spider-like creatures weave webs that cover the screen and block your path, or levels with intricate tunnel systems. Still, the levels are best handled with a combination of strategy and reflexes, without the memorisation that is required of R-Type's contemporary rival, Gradius.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/R-Type II (Europe).txt",
    "content": "The second R-Type brings more of the same shoot-em up action.\nGameplay is identical to the previous R-Type, except you now have two new weapons.\n\nThere are six levels, with themes similar to the previous game.  Notable parts include an underwater battle in level 2, and a giant Bydo fleet in level 3.\n\nThe Game Boy version of R-Type 2 is missing 1 level and both of the new weapons from the original arcade game.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Rolan's Curse (USA).txt",
    "content": "Once the people of Rolan was terrorized by the evil ruler King Barius before he was imprisoned in a castle deep within the forest. When the king many years later was released he immediately unleashed legions of regenerating monsters on the citizens of the land. Now a hero (or two if you play it in multiplayer) is needed to defeat him and his minions.\n\nThe game is an action based RPG played with an isometric perspective. As you battle your way through enemy territory you have two weapons, the sword that you start the game with and a Fire Wand that throws fireballs. You will also find some items to use, i.e. a magic axe that can be used to clear blocked passages, chamelon's ring that makes you part of the terrain and shield to help in defense.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Rolan's Curse II (USA).txt",
    "content": "King Barius is back for revenge! From the flaming depths of evil, he returns, bringing forth legions of monsters more vicious than anything the world has ever known! \n \nGather your wits and grab your sword! Team up with a band of worthy companions to search for treasure and magic. Then prepare yourself for a savage battle against the dreaded monarch of evil! \n- Control up to 4 characters. \n- Battery back-up feature lets you save your game anytime. \n- Amazing Auto-Map feature will keep you from getting lost. \n- Collect the fabled Fairy Wings and teleport anywhere in the game!!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Skate or Die - Bad 'N Rad (USA).txt",
    "content": "Skate Or Die: Bad'N Rad is a Jump'N Run that consists of 7 levels, three of which are viewed from a top-down perspective. The side-scrolling levels play similar to other Jump'N Runs, as you have to avoid obstacles and kill enemies by jumping on them. However, since you are on a skateboard, speed plays an important role, meaning that you cannot immediately stop and sometimes need to drive at full speed to manage wider jumps. The top-down levels play more similar to other Skate Or Die games as gradients influence your driving while you are trying to avoid obstacles, enemies and deadly spikes. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/SolarStriker (World).txt",
    "content": "You are in control of the ultra high-performance fighter ship, the SolarStriker.  It is your mission to attack and destroy the main Reticulon base.  There are six vertical scrolling stages that you must progress through in order to destroy Reticulon.  Each stage is under control of a boss which must be destroyed to clear the area.  One of the first shooters for GameBoy.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Solomon's Club (USA).txt",
    "content": "Solomon's Club is a sequel to Solomon's Key, which has similar gameplay combining platform gaming with puzzle elements. There are five levels, each with ten rooms. In each room you must retrieve the key and go to the exit.\n\nYou can create or remove blocks to your left and right, or while crouching lower-left and lower right. You can use these blocks as platform to climb onto, or use them to block enemies or fire balls. You can also break blocks by jumping from below them, like doing a headbutt. There are several enemies, such as fire breathing dragons, shooting gargoyles and ghosts.\n\nCollect bells to release fairies from the exit as bonus points, and collect coins for money to spend in shops. Some rooms have a shop where you can buy items, such as fire balls or hammers.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Spanky's Quest (USA).txt",
    "content": "Spanky's Quest is a game about a monkey who decides to go on a picnic.  While on his way through the forest he see's a witch in the sky and out of nowhere bricks begin to make a tower around the area Spanky is in.  The witch challenges Spanky to come to the final tower and she will free him but before she flies away she turns the fruits in his knapsack into living fruit monsters.  Unknowingly, she drops a magic ball which agrees to help Spanky out on his quest.\n\nThe object of the game is to get through all six of the towers which consist of 10 levels as well as a boss battle.  In order to proceed to the next level, you must acquire the amount of keys the locked door requires.  Keys are found lying around until a monster picks them up in which case you must use your ball on them to get it.  The ball has for different attacks: baseball, soccer ball, volleyball and basketball.  In order to attain a stronger ball, the ball must be bounced on Spankey's head.  Spanky also gets different hats which give him a specific power until he loses it or the level ends.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Spud's Adventure (USA).txt",
    "content": "In Spud's Adventure the player takes the role of a potato who is tasked with rescuing the king's kidnapped daughter. To do so, he has to climb a tower consisting of many floors. There are two types of gameplay  encountered during the game: Finding the exit in a maze-like stage while shooting enemies (touching them takes away life energy and eventually leads to death) or a Soko-Ban variant. Here the player has to push blocks into certain marked positions, but they cant be pulled. In those stages the level can be reset without penalty. \nShooting enemies awards experience points which eventually leads to a health upgrade.\nThe protagonist also encounters various friendly sprites who can be talked to and give hints.  \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Super Mario Land (World) (Rev 1).txt",
    "content": "Once upon a time, there was a peaceful world called Sarasaland. In this world there were 4 kingdoms named Birabuto, Muda, Easton and Chai. One day, the skies of Sarasaland were suddenly covered by a huge black cloud. From a crack in this cloud, the unknown space monster Tatanga emerged to try to conquer Sarasaland. Tatanga hypnotized the people of all the kingdoms so that he could control them in any way he liked. In this way he took over Sarasaland. Now, he wants to marry Princess Daisy of Sarasaland and make her his queen. Mario came to know of these events, and he has started on a journey to the Chai Kingdom where Princess Daisy is held captive, in order to restore peace to Sarasaland. Can Mario defeat Tatanga, release people from his interstellar hypnosis, and rescue Princess Daisy? It's all up to you and Mario's skill. Go for it Mario!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Super Mario Land 2 - 6 Golden Coins (USA, Europe) (Rev 2).txt",
    "content": "Second in the Game Boy's line of Mario games, this one takes the evolutionary steps that Super Mario 3 for the NES took with it's predecessors. New graphics, power-ups, challenges, and a completely original storyline. A bad version of Mario, Wario, takes over Mario's castle and locks him out using 6 golden coins. Mario must search for said coins all over Mario Land to take back his castle and go one-on-one with Wario himself. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Super R.C. Pro-Am (USA, Europe).txt",
    "content": "Super R.C. Pro-Am is the Game Boy update to Rare's classic radio controlled car game.  4 computer or human racers attempt to get around the track as fast as possible while avoiding hazards like oil slicks and traffic cones.  There are also weapons that you can use to disable the other cars temporarily.\n\nThe goal of the game is to collect the letter icons found on the tracks that spell \"NINTENDO.\"  Collecting the letters allows you to move up to faster cars and eventually win the championship.  \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Sword of Hope II, The (USA).txt",
    "content": "500 years ago King Winder had sealed the evil Demon Zakdos within a casket, thus ending the dark war. The great wizard Colin pledged that he and his descendants would build and protect a temple around Zakdos' prison. However, as a thief enters the temple and breaks the casket, Zakdos is set free and murders all that are left of the clan of Colin except for a young boy named Mute. To make things worse, the Sword of Hope, that has sealed away an evil dragon, is also stolen. The player takes control of Prince Theo who, with the help of Mute and other characters, must stop Zakdos and retrieve the Sword of Hope before the dragon awakens.\n\nThe main difference between The Sword of Hope II and its predecessor\n is the fact that you have control over a party of up to three characters rather than controlling only prince Theo. Apart from that, both games play very similar. The world is seen from a first person perspective and your party can be moved by selecting an arrow that points in the desired direction. Commands such as \"look\", \"open\", \"hit\" etc. can be chosen from a menu to explore and manipulate the game-world, talk to NPCs or solve puzzles. When encountering enemies, you enter a turn-based battle mode in which you can attack, use items and magic or try to escape.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Sword of Hope, The (USA).txt",
    "content": "A dragon has gained control over the king of Riccar, manipulating him into removing the Sword of Hope from a painting, releasing its curse. Summoning the dark power mammon the dragon turned the people of Riccar into trees. When Prince Theo is born, the king tries to murder him, but Theo is saved by the brave knight Pascal who flees with him  into a forest where three magicians live who conceal the king's castle underground to prevent the evil from spreading. After living in the forest for 15 years, Prince Theo is finally strong enough to try and stop the dragon, using the Sword of Hope one of the magicians had retrieved.\n\nSword of Hope combines Adventure and RPG elements. The prince can select commands such as \"look\", \"open\", \"magic\", \"use\" etc. to interact with  the game world, talk to NPCs or solve puzzles. When he encounters an enemy, the game switches to a turn based battle mode in which enemies have to be fought in typical console style RPG battles.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Tail 'Gator (USA, Europe).txt",
    "content": "Tail Gator on Gameboy is a platform game in which you play as a crocodile moving through environments full of monsters. You'll only be able to jump and tail swipe your enemies, however if you collect enough \"P\" symbols you will be able to hit from a distance. Many chests are scattered around, it's up to you to open them to increase your score!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Teenage Mutant Ninja Turtles - Fall of the Foot Clan (USA).txt",
    "content": "The Turtles' first Game Boy game is a fairly simple platforming-style game, where Leonardo, Michaelangelo, Raphael, and Donatello must battle against Krang and Shredder and save their friend April O'Neil in the process.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Teenage Mutant Ninja Turtles II - Back from the Sewers (USA).txt",
    "content": "Teenage Mutant Ninja Turtles II: Back from the Sewers is the second Teenage Mutant Ninja Turtles for the Game Boy. It is a sequel to Fall of the Foot Clan. \n \nThis time, Splinter was captured by Krang. Leonardo, Michelangelo, Raphael and Donatello go in search of their master until arriving at Krang and Shredder.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Teenage Mutant Ninja Turtles III - Radical Rescue (USA).txt",
    "content": "The player begins the game by taking control of Michaelangelo, who must rescue the other turtles, along with Splinter and April O'Neil, who have been kidnapped by Shredder.[2] Unlike other games based on the franchise, this is a scrolling action-adventure game reminiscent of the Metroid and the later Castlevania: Symphony of the Night. Each turtle has a different ability which is necessary to finish the game. Michaelangelo can hover using his nunchakus as a helicopter, Leonardo can drill the floor by spinning with his katana, Raphael can hide himself inside his shell to enter passages that are otherwise too small to enter, and Donatello can stick to and climb walls. \n \nThe bosses are Scratch, Dirtbag, a Triceraton, Scale Tale, and Shredder (in this game known as Cyber-Shredder).\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Tennis (World).txt",
    "content": "Tennis is, as the name implies, Nintendo's version of the sport. One player vs computer or two players will compete in tennis in a more or less standard suite of rules (scoring, sets etc.).\n\nPlayers are controlled by the movement buttons, but while button A indicates a low hit, button B indicates a high one. You have the choice of four levels of computer AI, or two player via Game Boy link cable. The usual assortment of shots are available, including forehand and backhand, lobs and volleys when up close to the net.\n\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Tetris (World) (Rev 1).txt",
    "content": "This version of Tetris is one of many conversions of the famous block-stacking game, and was included with the Game Boy upon its release in several territories. The goal is to place pieces made up of four tiles in a ten-by-twenty well, organizing them into complete rows, which then disappear. As rows are cleared, the pace of the game increases and the background changes, and the game ends if the stack reaches the top of the well.\n\nThe game is very similar to Nintendo's own NES version of the game, featuring the same \"Type A\" endless and \"Type B\" set-clear modes. The game also features a 2-player versus mode that can be played with two Game Boys, two copies of Tetris, and a Game Boy link cable. Clearing lines in this mode will cause the other player's stack to rise, with the goal being to make the other player lose.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Tetris 2 (USA, Europe) (Rev 1) (SGB Enhanced).txt",
    "content": "Unlike the original Tetris, Tetris 2 has you clearing the field of blocks in a different way. Each play field starts with different colored dots (in this case black, gray and white), with one of each color flashing.  \n \nThe blocks are made up of the same three colors, and by matching blocks of the same color over the top or to the side of the dot will clear the dot and those blocks from the screen. If you clear a flashing dot, all the corresponding dots of the same color will be cleared. \n \nTo complete the round just clear the dots, not the blocks themselves.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Tetris Attack (USA, Europe) (Rev 1) (SGB Enhanced).txt",
    "content": "All is not well on Yoshi's Island! The devious king Bowser has cast a spell on the island's inhabitants, turning them into his mindless slaves. Only Yoshi has escaped its effects, and so he must set off to free his friends, and to defeat Bowser and break the spell.\n\nTetris Attack is a fact-paced action puzzler featuring the colorful cast of characters from Yoshi's Island. A stack of blocks continually rises from the bottom of the screen, and the player controls a cursor which can swap any two blocks horizontally. Make a row or column of three or more and they'll clear, potentially creating combos from new blocks falling to take their place. Combos will send large garbage blocks to your opponent, which must be eliminated by clearing a piece that is touching it, turning it into normal blocks.\n\nThe game offers a story mode against the computer, as well as a 2-player versus mode, an endless mode, a timed mode where a certain number of blocks must be cleared, and a puzzle mode where a set arrangement of blocks must be cleared in a specific number of moves. The game is based on the Japan-only title Panel de Pon.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Tetris Blast (USA, Europe) (SGB Enhanced).txt",
    "content": "In this version of Tetris, the basic 'clear the line of puzzle blocks' element is still here, but with an added twist: inside the many block shapes are bombs. By linking the bombs while clearing the play field as usual (creating a line of blocks), more of the field is cleared as the bombs explode. \n\nThe usual gameplay modes are included, i.e. challenge, clear as many lines as possible, time trial, clear as many lines as possible before time runs out and 2 player battle.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Tiny Toon Adventures - Babs' Big Break (USA, Europe).txt",
    "content": "Tiny Toon Adventures is based on an animated series of the same name. The Tiny Toons are kid versions of Warner Bros. famous cartoon characters.\n\nBabs is an aspiring actress. She sets off one day to perfect her craft and make her way to the theater. Buster Bunny, and his friends Plucky and Hampton, notice that Babs is leaving and decide to follow her to the theater. Thus, the game starts, as you control Buster, Plucky, or Hampton as they follow Babs through 4 side-scrolling levels. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Tiny Toon Adventures 2 - Montana's Movie Madness (USA, Europe).txt",
    "content": "A brand new movie theater has just opened up in Acme Acres! But, it's unfortunately owned by none other than resident spoiled rich brat of Acme Acres, Montana Max, and he's decided to run movies in which he's the hero, and Buster Bunny is his arch-nemesis! Of course, Buster can't sit too still on that, so he's going to try and enter the movies and change the plots so Montana can't win at his dirty scheme of ruining Buster's reputation!\n\nIt's all up to Buster! If he manages to change all four flicks Monty has cooked up, he can try to face Montana rabbit-to...well, spoiled kid, in a final showdown! Time to get rolling! \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Trax (USA, Europe).txt",
    "content": "Trax is a side scrolling shoot'em up game that put you in command of a tiny tank in some classic action levels. Pitting your tankmanship against a villainous tank master who is creating machine of destruction that has taken over the land.\n\nYou can fire from multiple angles but due to the control limitations of the Game Boy, your vehicle can only turn his turret clockwise.\n\nThere are a few power ups which increase your weapons like explosive cannonballs, multi-direction shots or anti-armor shells. \n\nThe game also features some boss fights as you progress through the game's several different environments, forest, desert, cave, city, and tank factory.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Trip World (Europe).txt",
    "content": "Thanks to the Maita Flower, Trip World is at peace. It is being protected by an old Shabubu, a member of a race of bunny-like beings. The flower grows on the holy mountain known as Mount Dubious. However, one day the old Shabubu is attacked and the Maita Flower is stolen. Trip World becomes disarranged and its inhabitants don't stop quarreling with each other. But there is one hope in the form of the old Shabubu's grandson, Yacopu (also spelled Yakopoo).\n\nThe player controls Yacopu through five stages in this side-scrolling platformer. The young Shabubu's trademark ability is to shapeshift into different forms. In his normal form, he is able to walk and jump as well as to kick enemies, Yacopu's primary way of attacking. Unlike in many other platformers, many of the enemies don't harm you on contact and push your character around instead. However, certain foes might attack you after you damaged them, while others do so from the beginning.\n\nAt almost any time, the player can change to the flying or fish form. Flying Yacopu is able to reach places he wouldn't otherwise be able to, while the fishy hero is best suited for underwater areas. You also come across power-ups that temporarily give your character new powers, such as stunning enemies with seeds, bouncing around as a ball, or attacking with an extended tail. Beneath the mountain, settings in the game include a jungle, the ocean, and a castle. In each stages, you have to defeat a boss at the end. Eventually, you will encounter the one who stole the Maita Flower. The flower must be retrieved in order to save peace in Trip World.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Vattle Giuce (Japan).txt",
    "content": "A vertical shoot-'em-up released for the Game Boy in Japan in 1991.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Wario Blast Featuring Bomberman! (USA, Europe) (SGB Enhanced).txt",
    "content": "OH, NO! Wario has stumbled upon the secret gateway into Bomberland! Now the greedy warmonger wants to claim the land, its inhabitants, and treasures as his own. Entering the underground labyrinth, he meets the resistance of the Madbombers - explosives experts who have some TNT tricks and surprises to toss at Wario. The battle heats up as Wario and Bomberman each try to outwit the other, level by level in a dynamite duel!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Wario Land - Super Mario Land 3 (World).txt",
    "content": "Wario, Mario's greedy rival from Super Mario Land 2: 6 Golden Coins, is more determined than ever to get a castle after being booted out of Mario's.  He has heard that the pirates of Kitchen Island have a golden Statue of Princess Toadstool that's worth a king's ransom!  Wario figures that if he swipes the Princess' statue for himself, as well as all the other loot the pirates have hoarded, he'll have more than enough cash for a castle that's even bigger and better than Mario's!\n\nWario Land: Super Mario Land 3 is different from previous games in the series in that you control the brutish and greedy Wario.  Even when small, Wario can break most bricks with a punch, and some enemies are so weak to him that they'll just be pushed aside!  Wario has a body slam attack that he can use to destroy enemies, and he can also pick them up and throw them at his foes.  If that wasn't enough, there are three different power ups that Wario can find. The Bull Hat lets him plough through bricks in a single hit, ram his horns into the ceiling to hold onto it, and butt stomp to stun all enemies.  The Jet Hat allows him to fly horizontally for a short period of time, and increases his jump height and speed.  Finally, the Dragon Hat allows him to breathe a long stream of fire for a short period of time.\n\nTo suit Wario's greedy nature, the game revolves around money.  Throughout the stages, you can earn coins by grabbing them floating in the air, punching them out of bricks, or by body slamming into foes and then collecting the coins they drop.  You can also find hidden treasures buried deep within some levels by finding a key and then throwing it at the skull door to unlock it.  Once Wario reaches the end of a level, he usually needs to pay a toll to get the end-of-level door to open.  Pressing Up on the Control Pad and B pulls out a coin worth 10 coins, which you must throw at the door.  Once the door opens, you can exit and the level is complete.  Before you finish each level, you can choose to play a mini-game that doubles or halves the amount of coins you have, with a 50/50 chance.  You get three tries, and can choose to leave whenever you wish...so don't get too greedy! \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Wario Land II (USA, Europe) (SGB Enhanced).txt",
    "content": "Seeking revenge on Wario after he stole their treasure in Wario Land: Super Mario Land 3, special agents from the Black Sugar Gang of Kitchen Island sneak into Wario's newly built castle, steal back the treasure, and leave the castle and the surrounding area a mess. As Wario, you must clean the place up and take back what you now call your own.\n\nIn a change from the original Wario Land, Wario is now immortal, to a certain point. Instead of dying when hit by an enemy, Wario loses the coins he collected along his travels in each level. And he can also turn into other Warios. For example, if he is hit by a bee, Wario puffs up into a giant ball of air, and floats up to the top of the level. Only when hit by a sharp object will he return to normal. There are other types, like Fire Wario and Zombie Wario, and each can have its advantages, like getting to other areas otherwise unreachable, or they can halt your progress.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Wave Race (USA, Europe).txt",
    "content": "Wave Race for the Game Boy is an aquatic racing game. You control a personal water craft around courses that are marked out by buoys in the circuit mode. In the slalom mode, you must maneuver through several sets of gates floating on the water.\n\nGameplay is viewed from an overhead perspective. There are four racers in each race. They can be controlled either by human players or by very tough AI controlled players.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/World Heroes 2 Jet (USA, Europe) (SGB Enhanced).txt",
    "content": "World Heroes 2 JET is the third game in the World Heroes series. A third tournament featuring warriors from all over the world (and different periods in time) has begun, and it's up to you to fight to the finish to find out who is organizing it.\n\nThe game is an upgrade / fine-tuning of World Heroes 2, and contains many new features:Two new fighters, Jack and Ryofu, have been added to the game\nTwo all-new fighting modes have been added: \"Entry to the Tournament\" (story mode), and \"The Forging of Warriors\"\nYou can now dash towards or away from your opponent\nIf you and your enemy hit each other with an attack that has the same power, you'll freeze for a moment and push each other awayAll new stages and music have also been included.\"Entry to the Tournament\" features you fighting several elimination rounds against three different opponents; you have to win two out of three one-round matches to move on. \"The Forging of Warriors\" is a training mode where you can fight against four different enemies in order to hone your skills.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/X (Japan) (Translated).txt",
    "content": "In X the player pilots a space tank sent to another planet to defend the earth from an alien invasion. There are ten missions with different objective ranging from restoring power to a power plant, to 'seek and destroy' missions. The player can guide the tank freely across the over world, but there are enemy patrols that will open fire. The alternative is going though underground tunnels, where there are spots to replenish the tank and its weapons. The player only has a limited amount of time for each mission, and shielding for the tank. If either runs out, the game is over.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Yoshi (USA).txt",
    "content": "You have to help Mario cope with falling Goombas, Bloopers, Boo Buddies, and Piranha Plants. \n \n As they fall, catch them on trays. Switch and shuffle them to save the day. Stack two of a kind and they both disappear. Or capture a whole bunch between two eggshell halves. A different kind of Yoshi will appear depending on how many enemies are between the eggshell halves. \n \n There is a password feature to save your progress.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy/text/Yoshi's Cookie (USA, Europe).txt",
    "content": "Yoshi's Cookie is a fast-paced puzzle game. The player moves randomly placed cookies into rows and columns of cookies with similar patterns. When a row or column of the same cookies is successfully assembled, the line will disappear, and the player can begin to work on a new row or column. The \"Yoshi\" cookie is very special in both the 1-player and the 2-player game. Since this cookie is the key to both games, it should be used wisely.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Advance Wars (USA) (Rev 1).txt",
    "content": "The battle lines have been drawn, and an elite group of sly strategists is massing troops at your borders. You'll have to command ground, air and naval forces if you hope to survive the coming wars, and it won't be easy. With 114 maps to battle on and both the Single-Pak and Multi-Pak link modes, Advance Wars brings turn-based strategy to a depth never before seen on a handheld!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Advance Wars 2 - Black Hole Rising (USA).txt",
    "content": "Just when you thought you'd seen the last of them, the Black Hole Army is storming back in this sequel to the award-winning Game Boy Advance strategy game. With new COs under his command, Sturm is leading a new invasion force, and it'll take advance strategy to stop him!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Alien Hominid (Europe) (En,Fr,De,Es,It).txt",
    "content": "Alien Hominid is a 2D side-scrolling shooter with heavy references to the Metal Slug series of games - from the hand-drawn graphics, huge explosions, right down to the ability to eviscerate FBI Agents when you get up close to them. The graphics are by featured artist Dan Paladin. Your goal, is quite simply, to get to the end of the stage, and die as little as possible. Which is made difficult due to the fact that any bullet is an instant kill. \n \nTo help you out, you can grab a range of power-ups, such as lasers, spread shots, shotguns and more, as well as hijacking vehicles and using them for protection. Grenades can be lobbed, and you can jump on enemy shoulders and choose to bite their heads off if you like, or pick them up and throw them at other enemies. You can also dive underground for a short period of time to avoid enemies - while underground, you can drag agents into the ground to kill them.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Astro Boy - Omega Factor (USA) (En,Ja,Fr,De,Es,It).txt",
    "content": "Join Astro, the robotic superhero with a human mind, in a quest to reunite the robotic race with humans. Astro uses his seven super abilities to face off against the likes of Atlas, Blue Knight, and more than 40 other characters. The game brings classic 2D gaming to the Game Boy Advance along with an original seven-episode story. Playing as Astro Boy, you'll learn about justice, compassion, evil, courage, and the history of Astro Boy--all while building Astro's Omega Factor and strengthening his character and superhuman abilities.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Banjo-Kazooie - Grunty's Revenge (USA, Europe).txt",
    "content": "Gruntilda is back, and it's up to Banjo and Kazooie to stop her master plan. In Banjo-Kazooie: Grunty's Revenge, you'll play as Banjo and follow him through six worlds rife with trials and contests. Some of the challenges you must overcome include solving puzzles, avoiding obstacles, and battling different enemies. Defeat your foes by using Banjo's array of combat moves. You can also seek help from witch doctors, who can transform Banjo into a mouse, a tank, and other creatures.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Boktai - The Sun Is in Your Hand (USA).txt",
    "content": "Boktai: The Sun Is in Your Hand is the first Game Boy Advance game that uses sunlight to influence gameplay. In the game, you'll follow the adventures of Django, a young vampire hunter on a quest to rid the world of evil. As Django, you must overcome traps, defeat enemies, and fight through the deepest parts of dungeons. Watch out for the amount of sunlight--Django is stronger by day, while the vampires are stronger by night. The game features a solar sensor on the cartridge and a real-time clock system.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Boktai 2 - Solar Boy Django (USA).txt",
    "content": "Boktai 2 continues the adventures of Django the Solar Boy as he sets out to rid the world of evil vampires and demons. The second installment in the franchise brings back the solar sensor technology, which incorporates natural sunlight into gameplay. Take advantage of natural sunlight through the built-in solar sensor on the Game Boy Advance cartridge to power up and fuse more than 60 weapons and items. Now you can head outdoors and battle enemies with more weapons, new characters, and a larger game environment.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Broken Sword - The Shadow of the Templars (USA) (En,Fr,De,Es,It).txt",
    "content": "A quiet drink in a Cafe in Paris is the start of a mysterious adventure for young American George Stobbart. Unwittingly he is drawn into a web of archaic and sinister plots, with origins that extend back to the earty 14th Century and the deadly order of the Knights Templar. Dive into an adventure of global exploration: cryptic puzzle solving; and fight for survival. Feast on over 60 beautifully animated characters in over 70 breathtaking, hand drawn locations. Answer the call to action and challenge yourself to the limit with compelling game play for the would-be adventure.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Bruce Lee - Return of the Legend (USA).txt",
    "content": "The legendary Bruce Lee is back as Hai Feng! Master Bruce's fists of fury, nunchaku and dozens of awesome moves as you travel across the globe to locations of mystery and intrigue in this epic martial arts adventure! Use the environment to your advantage, evade your enemies by scaling walls, fight like the Masterwith multiple combo and power-up attacks.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Car Battler Joe (USA).txt",
    "content": "Rampaging rogues roam the highways and byways that surround your village. If your believed the rumors, you would blame your missing father for the surge in vehicular violence. That's why you've decided to lead the life of a car battler, transporting cargo between towns and running down every lethal lead foot foolish enough to cross your path. This gritty work isn't easy. Other car battlers fight for money or fame, but you have a higher calling: You're determined to restore your family's lost honor and bring your father home.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Castlevania - Aria of Sorrow (USA).txt",
    "content": "The year is 2035 and Soma Cruz is about to witness the first solar eclipse of the 21st century when he suddenly blacks out -- only to awaken inside a mysterious castle. As Soma, you must navigate the castle's labyrinths while confronting perilous monsters at every turn. But beware, you must escape before the evil consumes you!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Castlevania - Circle of the Moon (USA).txt",
    "content": "The year is 1830. At an old Austrian castle, the worshipers of Chaos attempted to revive the Lord of Darkness, Count Dracula. Vampire Hunter Morris Baldwin and his apprentices, Nathan Graves and Hugh Baldwin, heard of this and headed to Castlevania to stop Count Dracula's resurrection and restoration of power. However, they arrived a few seconds too late and Camilla, a minion of Count Dracula, started the rite to revive her master. \nNow it is up to you to fight your way through various monsters, and Dracula's minions, in order to defeat the Lord of Darkness!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Castlevania - Harmony of Dissonance (USA).txt",
    "content": "Nearly fifty years has past since Simon Belmont rescued the land from the curse of Dracula. Now, Simon's descendant Juste Belmont, must acquire the relics of Dracula to unravel the disappearance of his childhood friend Lydie. The castle's enchanting mysteries and danger await all those who dare enter.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/ChuChu Rocket! (USA) (En,Ja,Fr,De,Es).txt",
    "content": "ChuChu Rocket is an action puzzler, designed predominantly as a multi-player game. You have indirect control over mice, and must guide them to the safety of a rocket, and away from a cat. You do this by placing arrows on the ground, which they will follow. The multi-player game is a frantic all-against-all duel, in which each player's mice will only follow instructions of their own colour. You can play this mode on your own against CPU opponents, or take on a series of predefined puzzles\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Crash Nitro Kart (USA).txt",
    "content": "Crash Bandicoot returns to the karting scene with a host of other characters from the adventure series, and this time they have both Neo Cortex and Emperor Velo to worry about. Velo has taken the crew to a remote planet, forced to race for their lives against Neo Cortex and his many evil doers.\n\nChoose from various game modes, from the straight into the action Arcade mode to Adventure mode, following Crash and the gang in the story to save Earth. Race against four friends in multiplayer battle modes, plus connect to the Gamecube for extra options and upload your high scores to the internet ranking system.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/DK - King of Swing (USA).txt",
    "content": "Cranky is hosting the Jungle Jam contest. Before the contest can begin, King K. Rool steals the medallions. It's up to Donkey Kong to retrieve the medals. Players use the L and R Buttons to move left and right and to rotate counter-clockwise and clockwise on pegs. Most of the action takes place on these pegs. DK attacks by either charging up by holding on to two pegs at once or throwing things such as rocks or bombs.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Denki Blocks! (USA) (En,Es).txt",
    "content": "Denki Blocks! uses a single, simple digital toy set to provide a collection of 'puzzle games'.\n\nDenki Blocks! is played by sliding blocks around a board. When blocks of the same colour touch, they stick together to form clumps. Sometimes the player has to join all blocks of the same colour in any way possible. Sometimes specific shapes have to be made.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Double Dragon Advance (USA).txt",
    "content": "After a global nuclear war leaves the world in ruins, gangs emerge as the new elite by seizing control of the city. Twin brothers Jimmy and Billy Lee survive the cataclysmic event with their martial arts abilities intact, but Billy's girlfriend is soon kidnapped by mysterious thugs. Now it's up to you to guide both brothers through different stages filled with enemies and boss characters. Whether you play solo or cooperatively with a friend, you must master new techniques and weapons to find the girl and defeat the bad guys.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Dragon Quest Monsters - Caravan Heart (Japan) (Translated).txt",
    "content": "Up to his usual mischief, Kiefer upsets his father, the King of Gran Estard, more than ever before and flees to his room in hopes of escaping his punishment. Hiding inside his dresser, Kiefer hears a voice call out to him and wanders out to an odd silence and the presence of a Travelers' Gate in his room. Once stepping in, Kiefer finds himself in the world of Dragon Quest II and must no sooner assume the role of a caravan leader in order to help a boy named Luin find a cure for his sick parents.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Drill Dozer (USA).txt",
    "content": "The Skulker gang has stolen your beloved Red Diamond that once belonged to your departed mother. Using your Drill Dozer, you must lead your fellow band of thieves, the Red Dozers, on a quest to retrieve the Red Diamond. \n\nGameplay consists of navigating through several areas using your Drill Dozer robot to bore through enemies, walls, and pretty much anything else that's in your way. The Drill Dozer itself is a multifaceted machine able to work underwater and to take flight. It also has the ability to shift the drill into higher gears to tear through the toughest of obstacles. Along the way, you'll upgrade your Drill Dozer robot with gears and add-ons that will help aide you in your quest.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Dynasty Warriors Advance (USA).txt",
    "content": "Dynasty Warriors Advance is a Game Boy Advance adaptation of the Dynasty Warriors franchise. Based on the \"Three Kingdoms period\" of ancient China,  it takes place at the end of the Han Dynasty during 190 A.D. As the previous government collapses, warlords rise up and fight among one another, eventually establishing three powerful kingdoms: Wei, Wu and Shu. Generals from each of these nations spend the next 100 years fighting among one another, each trying to become the dominant power.\n\nDynasty Warriors Advance is a top-down turn-based strategy board game, but with a focus on action combat. Since it is based on the earlier Dynasty Warriors titles, many of the same concepts carry over. Players begin by choosing one of three available characters from the lands of either Wu, Shu or Wei. Each character has their own unique storyline and missions. A briefing is given for each mission detailing specific objectives before allowing the player to equip themselves with weapons and skills at the camp. Once begun, the player moves the designed number of spaces (determined by movement) around the \"board\". If an enemy player is encountered, the game shifts to a top-down action fighting mode. Here the player uses one button to attack, another button to charge and another to unleash a misou special attack once it is powered up. Misou energy is charged by successful attacking enemy units. The player's success against the enemy unit will determine the unit's \"heath\" and will be destroyed completely if all of it's units are destroyed. Some enemy units contain not just soldiers but enemy generals who have their own special moves and greater health. Many missions feature specific objectives rather than just defeating all enemies.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/F-Zero - GP Legend (USA).txt",
    "content": "The year is A.D. 2201, and you are about to enter the world of ultra-high-speed F-ZERO Grand Prix races, which take place on specially-constructed circuit tracks located all over the universe. Take control of eight different characters - including the mysterious Captain Falcon, new racing star Rick Wheeler, and the evil lord Black Shadow - as you race through an action-packed story that spans multiple planets!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/F-Zero - Maximum Velocity (USA, Europe).txt",
    "content": "All galactic speed limits are about to be broken! F-Zero Maximum Velocity has arrived, and the future of racing has never looked so sweet. Brand-new vehicles and Game Boy Advance original tracks await, so whether you're a Super NES veteran or a race rookies, you'll need some practice laps. And even if you do master the Grand Prix circuit, you'll still have to beat your friends to the finish line. That's right, race fans--with the Game Boy Advance Game Link cable you can take on up to three rival racers, so put the pedal to the metal and get busy boosting, bumping and jumping your way to intergalactic glory!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Final Fantasy I & II - Dawn of Souls (USA).txt",
    "content": "Final Fantasy I: Experience Final Fantasy in a way you've never imagined, with improved graphics and the all-new Soul of Chaos dungeon. Take on the role of the four Warriors of Light, and restore order to their chaotic world! \nFinal Fantasy II: Final Fantasy II gave players deeper characters and a more compelling storyline. In this enhanced edition, experience the addition of the Soul of Rebirth, the never-before-told saga of the heroes who gave their lives to save their world!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Final Fantasy IV Advance (USA).txt",
    "content": "This classic adventure includes 18 towns and castles, dozens of magical spells, and hundreds of monsters, weapons, and items to help players on their quests. The game features the astounding music, challenging adventures, and interesting storyline that are the hallmarks of the Final Fantasy franchise. Additional game elements also have been added to enhance the Game Boy Advance version.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Final Fantasy Tactics Advance (USA).txt",
    "content": "When Marche and his friends open an ancient magical tome, their small town is transformed into a fantasy-filled kingdom known as Ivalice. Guide Marche and his clan against countless foes, and discover the wonders of Ivalice. Build up your party, master abilities and summons, and learn tactical combat to win in battle.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Final Fantasy V Advance (USA).txt",
    "content": "The winds fail. Ships stand still, unable to fill their sails. The world races to its end. Unless a handful of heroes can protect the remaining crystals, the world will fall into ruin. Set off on a grand adventure in the finest version of FINAL FANTASY V ever released!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Final Fantasy VI Advance (USA).txt",
    "content": "An Ancient War Rekindled \n \nA thousand years after the War of the Magi, the Gestahlian Empire has succeeded in reviving the lost power of magic through its clandestine Magitek research program. Now, as the Empire threatens to enslave the world with its newfound might, it is up to a band of rebels known as the Returners to find a way to strike back before the flames of war consume the world once more.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Final Fight One (USA).txt",
    "content": "Classic arcade action is unleased on the Game Boy Advance system in Final Fight One. There's trouble in Metro City. The members of the Mad Gear Gang have kidnapped the mayor's daughter Jessica and the clock is ticking. The mayor, an ex-street fighter himself, calls in the big guns to help, enlisting the iron fist team of Cody and Guy. Now, it's a race against time to scour the city, defeat an army of the Mad Gear Gang's minions, and rescue Jessica before it's too late!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Fire Emblem (USA, Australia).txt",
    "content": "After centuries of peace, smoldering rivalries threaten to set the world aflame in a blaze of battle! The drums of war beat, noble houses plot treason, allies become enemies, and as Lycia stands poised for war, a shadowy figure manipulates empires for his own ends. Now, Lyn, Eliwood, and Hector must amass an army strong enough to fight back the forces that would destroy their homeland. Master battle tactics to douse the embers before they burn the world to ash.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Fire Emblem - The Binding Blade (Japan) (Translated).txt",
    "content": "Fire Emblem: Fuin no Tsurugi is the sixth entry in the Fire Emblem series, the first title produced for the system, and the first title to appear on a handheld console. It is a turn-based tactical role-playing game in which players move a small group of units around a square-based grid, battling their enemies in order to complete a certain predefined objective. It is reminiscent of other tactical RPGs with features such as character classes and the ability to level up. \n \nThe Binding Blade is set on the fictional continent of Elibe, which has been dominated by humans for centuries following an ancient war between humanity and dragons. The story follows Roy, a young nobleman from the small independent nation of Pherae as he leads a growing army against the forces of King Zephiel of the kingdom of Bern, who is gradually taking over Elibe with the aid of a mysterious power.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Fire Emblem - The Sacred Stones (USA, Australia).txt",
    "content": "The kingdom of Renais lies in ruins, shattered by a sudden invasion from a former ally. Guide the loyal heirs, Eirika and Ephraim, on their twin quest to rebuild Renais and discover the dark secret behind the war that has torn their homeland apart.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/GT Advance - Championship Racing (USA, Europe).txt",
    "content": "A Racing Simulation using \"real world\" vehicles, mostly Japanese models. similar to the PlayStation Gran Turismo series. Players begin with a single vehicle selected from a range of fairly standard models, that car is entered into a series of races with cash prizes and prize money can be used to purchase additional vehicles or upgrade an existing one.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Game & Watch Gallery 4 (USA).txt",
    "content": "A collection of classic Nintendo Game & Watch titles, as well as GBA exclusive updates.\n\nGames include Donkey Kong 3, Boxing, Fire Attack, Mario Cement Factory & Rainshower, plus extra games that can only be opened if you beat the high score for each game.\n\nEach game has two modes, one which emulates the original Game & Watch LCD format and an updated version which features improved graphics, slight gameplay changes and a host of Mario characters.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Goemon - New Age Shutsudou! (Japan).txt",
    "content": "Goemon: New Age Shutsudou! gives the franchise a facelift, putting Goemon and his friends in a futuristic rendition of Japan, fending off a supernatural force threatening the city.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Golden Sun (USA, Europe).txt",
    "content": "Evil is slowly covering the world. Forces of darkness are pursuing the lost art of Alchemy, and as they draw ever closer to their foul purpose, mankind hangs in the balance. You and your companions are the last hope: armed with noble weapons, magical Psynergy, and a host of elemental creatures, you must find a way to stem the evil tide.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Golden Sun - The Lost Age (USA, Europe).txt",
    "content": "The story of Golden Sun: The Lost Age picks up right near the end of the first game. Golden Sun veterans will be surprised to learn that The Lost Age is played from the point of view of the party being chased as they try to light the remaining two lighthouses, which will unlock the power of alchemy for the world--or will it instead unlock the world's destruction?\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Gunstar Super Heroes (USA).txt",
    "content": "Your enemies intend to use a powerful crystal to resurrect the devastating God of Ruin and it's up to the Gunstar Heroes, Blue and Red to stop them! Developed by critically acclaimed developer, Treasure, this fast-paced action game will push your Game Boy Advance to the limits! \n \n-Blast your way through six intense levels and defeat an evil empire \n-Choose your hero: play as Red or Blue to combat powerful enemies and gigantic bosses \n-Amazing visuals create an unforgettable gaming experience\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Harvest Moon - Friends of Mineral Town (USA).txt",
    "content": "As a child, you spent a memorable summer on a farm in the country and experience a whole new world of excitement. Years have passed, and now the long-neglected farm that holds fond memories is yours! It is up to you to successfully rejuvenate the farm and build a life for yourself. The best part is that you can do it any way you want! Plant and harvest crops, raise farm animals, marry the woman of your dreams, and start a family! Take over the reins of life, and create your own pastoral adventure!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Harvest Moon - More Friends of Mineral Town (USA).txt",
    "content": "Live the simple life as a farmer in Harvest Moon: More Friends of Mineral Town. This game is similar to the original Harvest Moon: Friends of Mineral Town, but now you can play as a girl who has left the city to pursue a life on the farm. You'll take part in growing crops, managing livestock, finding a husband, and raising children.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Iridion II (USA).txt",
    "content": "This sequel to Iridion 3D is different in gameplay, but twice as much action. Piloting in Kiloblaster Style mechanics from a 3D perspective, you fight through 15 \nlevels of pulse-pounding action that will keep you up all night. Six different weapons with upgrade ability will give you awesome firepower to stop your foes. \n The storyline goes that a hundred years have passed since the Earth was attacked by the vicious IRIDION forces. Wanting revenge over their lost systems, they attack once more. Earth is too far away to send help, and you're the only one that could stop them.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Jet Grind Radio (USA).txt",
    "content": "The hip-hop Dreamcast hit makes it's way to the Game Boy Advance. Your favorite skaters from Jet Grind Radio return in true 3D blasting through exciting and diverse levels. Grab your spray cans and hit the streets painting the town in your colors while avoiding the cops and rival gangs. It's not easy being a kid in Tokyo but with your Overdrive Magnetic-Motor Skates and a need for self-expression you're on your way to making the town yours! \n \nFeatures multiple game modes including one-on-one races, freestyle skating for points, timed tagging sessions and multiple playable characters that have a completely unique look and feel, power-ups that allow you, the skater, to have extra powers.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Kao the Kangaroo (USA) (En,Fr,De,Es,It,Nl).txt",
    "content": "Crikey! Kao's been stolen from down under! It's up to you to get him home to the Outback.\n\nUnlike the Windows and Dreamcast versions of this game, the GBA version is a 2D side scrolling platform game. You control Kao the Kangaroo through twenty-seven levels. You basic modes of travel are running or jumping but in later levels, you will have snowboarding, flying and jet skiing. As you travel along, enemies try to stop you. You must kill or avoid these enemies. Your main weapon is a pair of boxing gloves with which you can pound enemies but, if you push down and attack, you can also do a tail spin to attack lower-height enemies. In each level, there are flags you can pick up and, by pressing select, you can drop them to create your own continue point.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Kingdom Hearts - Chain of Memories (USA).txt",
    "content": "Adventure is in the cards! \n \nKingdom Hearts: Chain of Memories delivers an entirely new adventure and set the stage for Kingdom Hearts II. Sora, Donald, and Goofy travel through many vast and colourful worlds in search of their missing companions. Encounter over 100 of your favourite Disney and Final Fantasy friends and foes. \n \nCollect mysterious cards that open doors to new adventures, unlock powerful abilities, and call familiar friends to your side. \n \nExperience big, bold graphics and high-quality animation.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Kirby & The Amazing Mirror (USA).txt",
    "content": "The Mirror World has been invaded by an evil shadow, and Kirby's got to save the day! Fortunately, he won't have to go it alone! He's been split into four Kirbys of different colors, and with his trusty cell phone, he can call up his colorful clones to lend a hand!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Kirby - Nightmare in Dream Land (USA).txt",
    "content": "Everyone in Dream Land has lost the ability to dream! It seems that King Dedede has stolen the Star Rod, the source of power for the Fountain of Dreams, and given its fragmented pieces to his goons for safekeeping. The world needs a hero... a round pink one. As Kirby embarks on an adventure to recover the Star Rod, he'll have to copy every trick in the book to bring good dreams back to Dream Land.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Klonoa - Empire of Dreams (USA).txt",
    "content": "A grumpy Emperor suffering from insomnia has banned dreaming and imprisoned Klonoa for breaking the law. To prove his courage and win his freedom, Klonoa must defeat the monsters that are creating havoc throughout the empire. Help our hero in his most perilous journey yet and experience the all-new thrills!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Klonoa 2 - Dream Champ Tournament (USA).txt",
    "content": "Floppy-eared hero Klonoa returns in another fast-paced, colorful side-scrolling adventure for the Game Boy Advance. In his latest challenge, Klonoa must race against time and other dream travelers in the Dream Champ Tournament to collect stars, sun and moon stones to become the ultimate Dream Champion. Combining platform, puzzle and adventure elements, Klonoa 2: Dream Champ Tournament is just the adventure fans of the series have been anticipating. Explore the intricate and puzzle-packed worlds where you'll meet a wide variety of interesting creatures! Solve Fiendishly-Designed Puzzles ? Use Boxes, Bomb Boxes, Switches, Pressure Switches, Goomis, Springs and Scales in your quest for glory. Hoverboard Races ? Each world contains a fast-paced thrill ride of gem collecting fun! Master your Skills to Win ? Klonoa must prove his skills against other dream travelers in the Dream Champ Tournament.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Konami Krazy Racers (USA).txt",
    "content": "Konami Krazy Racers is a kart racing game with super deformed racers. It features famous Konami characters like Goemon (from Ganbare Goemon), Dracula (from Castlevania), and Vic Viper (from Gradius). There are 16 courses to race through, and you can collect coins to buy items. Gameplay is similar to that of Mario Kart.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Kurukuru Kururin (Europe).txt",
    "content": "Kuru Kuru Kururin is an innovative puzzle game in which the main character is inside a helicopter, and he must navigate himself through a maze in the least amount of time possible. Movements must be timed and precise, because if the helicopter's propeller hits a wall, 3 seconds is added to the timer. The protagonist's mission is to retrieve his brothers, who will join him after he finds them. He also finds many power-ups that will allow him to customize his helicopter's appearance.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Lady Sia (USA) (En,Fr,De,Es,It,Nl).txt",
    "content": "Lady Sia is a young female warrior princess who's attempting to save her homeland from the cruel beastmen, the T'soas. \n\nAt the opening Sia is being thrown in prison. A veiled figure eventually helps her escape, and that's where you begin the game. Run, jump, crawl, climb, sneak and slash your way past monsters, demons, and assorted perils in order to save your empire from the evil race of the animal creatures.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Legend of Zelda, The - A Link to the Past & Four Swords (USA).txt",
    "content": "The Legend of Zelda: A Link to the Past & Four Swords for Game Boy Advance is a remake of A Link to the Past coupled with an entirely new game, Four Swords. This two-in-one game was released shortly before The Wind Waker. \n \nWhile A Link to the Past is largely a faithful port of the original, it does include an entirely new dungeon and a new quest as rewards for the player playing through the multiplayer-only Four Swords. Aside from these additions, it includes a number of smaller gameplay and dialogue changes, the latter of which are designed to correct a number of minor translation mistakes and inconsistencies with the original Japanese release and to unify the common terms used with the later games.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Legend of Zelda, The - The Minish Cap (USA).txt",
    "content": "Link returns in an all-new Game Boy Advance adventure. When the sorcerer Vaati turns Princess Zelda to stone, the king of Hyrule sends Link on a quest that takes him to all-new locations. Using the power of a mystical hat called the Minish Cap, Link must travel through a fantastic world rife with new items, puzzles, and bosses. As Link, you can shrink down to either battle large enemies from within or find secret items. You can also unlock items and solve puzzles by fusing together magic relics.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Lilo & Stitch (USA).txt",
    "content": "WARNING: Stitch is extremely dangerous. The result of an illegal genetic experiment by a mad scientist, Stitch appears to be harmless - small, furry, with six legs - but his very existence is an abomination to all that's decent in the galaxy. Last seen on the island of Hawaii in the company of a little girl named Lilo. Fugitive may be disguised as a family pet.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Lilo & Stitch 2 - Haemsterviel Havoc (USA).txt",
    "content": "Play as both Stitch and Lilo to rescue Nina and David, who have been kidnapped by the evil Hamsterviel and taken onboard his spaceship. To complicate things, Hamsterviel created evil alien Experiments that go head-to-head with our heroes. Start by capturing each Experiment and harnessing its special power in order to progress and capture the next. Sparky, Experiment 22, helps you out with his powerful electricity balls, while Richter, Experiment 513, shakes things up by igniting an earthquake. Gameplay modes include platform-shooting as Stitch, navigation and strategy as Lilo, intense racing, and multiplayer mode.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Lunar Legend (USA).txt",
    "content": "You play Alex, a young boy who hopes to one day be a Dragonmaster like his dearly departed hero Dyne. One day, a wizard named Nash comes into town, and needs an escort to a nearby shrine in the woods. You, your childhood friend Luna, and your flying cat-like pet Nall accompany Nash to the shrine, and your adventure begins.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Magical Vacation (Japan) (Translated).txt",
    "content": "Magical Vacation is one of the Game Boy Advance's earliest RPGs and it was also Brownie Brown's very first game after they completed Legend of Mana and left Squaresoft. Magical Vacation is a prequel of sorts to the Nintendo DS game \"Magical Starsign.\" \n \nBrownie Brown would later go on to do Sword of Mana and Mother 3 on the GBA. The game never saw an overseas release and is one of the few gems on the Game Boy Advance that is Japanese exclusive.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Mario & Luigi - Superstar Saga (USA).txt",
    "content": "An evil witch has replaced Princess Peach's fair speech with explosives! Mario and Luigi must once again come to her rescue, but this time they employ the help of Bowser, their sworn enemy. Mario and Luigi must learn new moves and combine powers to fight off enemies and move closer to the witch's castle. Guide this unlikely bunch through an abundance of minigames such as Border Jump and Mystery Carts. Combine the powers of Mario and Luigi to pull off special tag-team moves. Immerse yourself in this bright, cartoonish, and humorous world, complete with hit music featured in previous Mario games.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Mario Golf - Advance Tour (USA).txt",
    "content": "Grab your clubs and start down the road to golfing perfection in this role-playing golf adventure! Chat up the locals at golf clinics, hone your skills in challenges like Club Slots and Go-Go Gates, and try to become the champ of all the country clubs! The Mushroom Kingdom residents take on only the very best.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Mario Kart - Super Circuit (USA).txt",
    "content": "All your favourite kart-racing characters are back and ready to kick it into high gear! 20 brand-new tracks await on Game Boy Advance, loaded with classic power-ups and primed for the type of frenzied racing that only Mario Kart: Super Circuit can deliver. It's time to burn rubber in the Grand Prix, challenge your pals, race your own ghost, clash in battle mode and feel the power in the palm of your hand!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Mario Pinball Land (USA, Australia).txt",
    "content": "This is the standard \"Bowser has kidnapped the Princess, and Mario must rescue her\" story. In this case, the Princess is transformed into a ball and launched from a Super Mario 64-style cannon, which a pair of goombas aim directly at Bowser's Castle. Mario is also transformed into a ball and chases after her.\n\nThere are 5 levels, each consisting of a set of pinball tables. Each table has some exits (including the one below the flippers) that Mario can use to move to other tables. Also, each one holds a star, normally obtained by defeating all enemies on the table. Some exits require that Mario has a certain number of stars. To gain access to Bowser's castle, Mario must defeat the bosses of the first 4 levels, which gives him star keys. The game also features a \"Time Attack\" mode, which allows players to fight already defeated bosses again.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Mario Tennis - Power Tour (USA, Australia) (En,Fr,De,Es,It).txt",
    "content": "Players can test their backhand in this unique role-playing tennis adventure. Train hard at the Royal Tennis Academy to be a champion. Gain experience and improve your skills through lessons and tournaments, and rise to the top of the ranks. Play as Mario, Peach, Waluigi, or Donkey Kong in a slew of wild modes. Advance through the story and unlock even more characters, all with their own power moves. Beat Mario at his own game, then link up with a friend or three for even more frantic fun.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Mario vs. Donkey Kong (USA, Australia).txt",
    "content": "After years of apparent goodwill, Mario and Donkey Kong are at it again--this time, on Game Boy Advance. Donkey Kong has stolen all the Mini-Mario toys from the Mario Toy Co., and now it's up to Mario to hunt down his longtime nemesis and retrieve the pilfered goods. As Mario, you must race through challenging levels while finding keys and releasing Mini Marios before time runs out. Along the way, you'll master new moves that can help you overcome new puzzles.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Max Payne (USA).txt",
    "content": "Max Payne lost his family to death. Now he is seeking revenge. In the lore of the original PC hit, Max Payne on the Game Boy Advance follows Max's story as he attempts to take down the crime lords who tried to destroy his life. \n \nUnlike the original, the GBA version uses an isometric perspective to present the action. Various weapons are offered to dispatch the guys (or girls) who get in your way, and by using bullet time, you can slow down time and increase your chances of avoiding incoming fire and hitting the target.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Medabots - Metabee (USA).txt",
    "content": "Join Ikki as he begins his journey as a Medafighter and tries to save his hometown of Riverview City from the evil Rubberobo Gang. Ikki must solve various mysteries with the help of his friends and the Phantom Renegade. Interact with characters and control Medabots popular in the Medabots TV animated series. Can Ikki save the world from the treacherous Rubberobo Gang and become the #1 ranked Medafighter...It is all up to you!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Mega Man & Bass (USA).txt",
    "content": "The mighty robot King has taken over Dr. Wily's base, invaded the Robot Museum, and stolen 100 CDs containing secret robot plans, hoping to create the ultimate unstoppable army of robots! And to make matters worse, he's sent 8 robot masters to prove his new-found power!\n\nMega Man is the only one who can stop him...or so he thought! Bass, Dr. Wily's greatest creation and Mega Man's sworn rival, is actually fighting ALONGSIDE Mega Man for once! Of course, it's only to prove that he's the strongest robot ever made, and he'll do it by smashing King's army of mechanical maniacs!\n\nNow, Mega Man and Bass are heading out to get back all of the CD's that King stole. Run, jump, slide, dash, and blast your way through to destroy this new menace!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Mega Man Battle Network (USA).txt",
    "content": "In the future, a young net-battler named Lan, boots his 'personal information terminal'(PET) and prepares to hack into the network to battle net crime. Lan's PET is no ordinary network navigator. It is Mega Man.EXE, the cyber-identity, which infiltrates the crime-ridden network to battle destructive computer viruses. Defeat viruses in real time and collect Battle Chips program data, containing valuable weapons data and critical system info. Collect over 175 Battle Chips to help Netto and Mega Man.EXE restore peace and order to the network.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Mega Man Battle Network 2 (USA).txt",
    "content": "Netto Hikari (a.k.a. Lan Hikari) and his Navi MegaMan.EXE are back in a new adventure! After defeating the sinister World Three (WWW) and their leader, Dr. Wily, Netto and MegaMan have made the Internet safe once again. But a new Internet terrorist group, led by a mysterious new Navi named Gospel, have begun to spread chaos and fear throughout the Net! Netto and his friend Meiru, Dekao, and Yaito must get to the bottom of their plan and stop them before the Internet is deleted!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Mega Man Battle Network 3 - Blue Version (USA).txt",
    "content": "Join Mega Mega.EXE, his pal Lan and friends as they keep the net safe from cyber mayhem in the most expansive battle network adventure yet. Together with the White version, find all of Mega Man's battle style changes, \"Giga Class\" Chips, enemies and discover more surprises just for you!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Mega Man Battle Network 3 - White Version (USA).txt",
    "content": "Join Mega Mega.EXE, his pal Lan and friends as they keep the net safe from viruses and cyber menaces. You'll travel through new virtual and real worlds, fight-off new bosses, interact with new characters and even find new Battle Chips. It's cyber mayhem at it's best!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Mega Man Battle Network 4 - Blue Moon (USA).txt",
    "content": "The fourth installment in the Mega Man Battle Network series comes in two versions--Red Sun and Blue Moon--each with different enemies, battle chips, souls, and characters. Once again, you assume the role of Lan as he and his friend, Mega Man.exe, fight to rid the Internet of viruses and other cyberworld enemies. Unlike previous games in the series, Mega Man Battle Network 4 focuses on a tournament system where players encounter a variety of enemies that must be defeated. A new Soul Unison system lets Mega Man transform into his defeated enemies.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Mega Man Battle Network 4 - Red Sun (USA).txt",
    "content": "The fourth installment in the Mega Man Battle Network series comes in two versions--Red Sun and Blue Moon--each with different enemies, battle chips, souls, and characters. Once again, you assume the role of Lan as he and his friend, Mega Man.exe, fight to rid the Internet of viruses and other cyberworld enemies. Unlike previous games in the series, Mega Man Battle Network 4 focuses on a tournament system where players encounter a variety of enemies that must be defeated. A new Soul Unison system lets Mega Man transform into his defeated enemies.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Mega Man Battle Network 5 - Team Colonel (USA).txt",
    "content": "Team Colonel is the second edition of Mega Man Battle Network 5. In the game, you can join forces with characters from previous installments of the Mega Man Battle series, and you can play in a new fighting mode. Team up with other cyberheroes in an effort to stop an evil organization from taking control of the global Internet.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Mega Man Battle Network 5 - Team Protoman (USA).txt",
    "content": "Team Protoman is the first edition of Mega Man Battle Network 5. In the game, you can join forces with characters from previous installments of the Mega Man Battle series, and you can play in a new fighting mode. Team up with other cyberheroes in an effort to stop an evil organization from taking control of the global Internet.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Mega Man Battle Network 6 - Cybeast Falzar (USA).txt",
    "content": "In Mega Man Battle Network 6, Lan's father has received a job transfer and the family moves to Cyber City, a town known for conducting various technological experiments. Lan will meet new people and build new friendships in the real world while Mega Man befriends helpful Navis and encounters dangerous new enemies on the virtual plane. Together they will face threats far more powerful and perilous than they ever have before.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Mega Man Battle Network 6 - Cybeast Gregar (USA).txt",
    "content": "In Mega Man Battle Network 6, Lan's father has received a job transfer and the family moves to Cyber City, a town known for conducting various technological experiments. Lan will meet new people and build new friendships in the real world while Mega Man befriends helpful Navis and encounters dangerous new enemies on the virtual plane. Together they will face threats far more powerful and perilous than they ever have before.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Mega Man Zero (USA, Europe).txt",
    "content": "It is the year 22XX...\n\nThe legendary heroes of the Reploids, X and Zero, defeated the evil Sigma long ago, and a new army was created to prevent outbreaks of the Maverick Virus. But as time went on, the army became oppressive, and began to deal out a paranoid brand of justice. It is said that their leader, once a great warrior, has become cold and calculating, eliminating any Reploid that dares oppose him.\n\nA hero is needed in these dark times, and that is exactly what Ciel and her rebel group have found in an old ruin...a hero from the past, reborn in the future.\n\nZero has come into a time he does not know, to save it from a figure of the past...the fate of freedom rests on his shoulders.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Mega Man Zero 2 (USA).txt",
    "content": "A year after the events in Mega Man Zero, the hero finds himself in another battle to save the world. Caught in-between the reploids and humans, Neo Arcadia's new commander has tricked Zero into helping her, although her reasons are uncertain.\n\nTo fix the problem, Zero must battle through level after level, using the new Chain Rod weapon to grapple onto ledges to gain an advantage in collecting out of reach items or attacking enemies from above. Cyber Elfs can again be collected to gain some helpful powerups.\n\nNew to the series is a two player challenge mode, where the first to complete the level wins.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Mega Man Zero 3 (USA).txt",
    "content": "In the third installment of Capcom's Mega Man Zero series, you, unsurprisingly, play as Zero. Continuing where the Mega Man Zero 2 left off, you have to find and neutralize the recently escaped \"Dark Elf,\" before it's able to brainwash the Resistance for the purpose of conquering Neo Arcadia. \n\nIn addition to the old Cyber Elf system, this game also contains a new \"chip\" system, where Zero can gain new abilities by finding chips and installing chip in himself. But they didn't decide to abandon the Cyber Elves in this game by giving them nothing new. No, in order to extend the life of the Cyber Elves, they added the new concept of \"Cyber Space\" to levels, where you enter a door to Cyber Space and are allowed to use each Cyber Elf as much as you please without them dying. However, there aren't too many \"Secret Disks\" (items that can contain anything from profiles of characters to Cyber Elves to new chips) in Cyber Space, so it's better to spend more time in the normal level.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Mega Man Zero 4 (USA).txt",
    "content": "The Zero Knuckle... the baddest new tool in Zero's arsenal lets you steal enemies' weapons and use them in battle. Employ this along with countless other cool moves to fight the Neo Arcadian army, defeat the evil Dr. Weil and help the caravan of humans reach the peace and security of Area Zero.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Metal Slug Advance (USA).txt",
    "content": "You're a warrior of the war, but now you are alone. Enemies have captured your allied troops, and it's up to you to get them back. Armed to the teeth with firearms, grenades and specially made \"Slug\" vehicles, you must travel across the levels and blast anything in sight that isn't a friendly.\n\nTwo characters are offered to play as, and along with the usual Metal Slug flair visually, and epic battle sequences against strange and startling foes, you can now collect special E-cards during the game. Saved allies will hand you these cards that, when brought back to camp, can increase ammo, power and many more improvements to alter the gameplay experience.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Metroid - Zero Mission (USA).txt",
    "content": "She's battled baddies on nearly every Nintendo system, and now, Samus Aran returns to her roots. Metroid: Zero Mission relives the story that started it all--revealing for the first time full details of her meeting with the Metroids. The plotline will be familiar to longtime fans of the Metroid series, but the challenges are new, the power-ups are plentiful, and the graphics and sound are supercharged. Plus, if you thought that the original Metroid had a surprise ending, wait until you get past the Mother Brain in Metroid: Zero Mission. A new twist provides a deeper adventure than ever before.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Metroid Fusion (USA).txt",
    "content": "While lending mission support on planet SR388, interstellar bounty hunter Samus Aran is attacked by an X parasite, an organism with the ability to mimic the abilities of any creature it infects. Near death, Samus is saved by a vaccine made from the DNA of the last Metroid -- the X parasite's only natural predator. When the X spread to a research station in orbit around SR388, a weakened Samus is forced to exterminate them all ... or die trying.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Mother 3 (Japan) (Translated).txt",
    "content": "The Nowhere Islands are an idyllic place; the residents of Tazmily Village live peacefully and in harmony with nature and with each other. But this changes when the mysterious Pigmask Army arrives and proceeds to destroy and corrupt, with force and sly persuasion alike. The main character is Lucas, a young boy who must find out who wants to destroy the tranquility of Nowhere Islands and turn them into a high-tech nightmare. \n\nMother 3 is a top-down role-playing game. The player character (the characters controlled by the player change often) travels around the Nowhere Islands with his party, talking to people and furthering the plot. It is possible to \"dash\", which not only allows to travel faster, but also allows to knock weaker enemies out of the way (or to ram some objects/characters). \n\nThere are many enemies to battle in the game. The battles are turn-based; each turn, a character can attack with his weapon, use a special ability (some characters have powerful psychic abilities, others have different special skills), use an item or try to run away. The battles feature a musical combo system, where tapping a button in rhythm with the background music will cause additional damage to the enemy. The characters have \"rolling HP meters\"; when they are dealt damage, they don't lose all the HP right away, but their HP decreases slowly; this way, even if a character receives massive damage, he can survive with only minor injuries if you manage to end the combat quickly. Winning battles gives the characters experience (and thus makes them stronger) and, later in the game, money (known as \"DP\"), which can be used in shops to buy better equipment or useful objects. \n\nThere are many frogs encountered throughout the game, who serve as save points (and later as ATM machines). If all characters die during a battle, you can come back to life near the latest save point encountered and try again.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Motocross Maniacs Advance (USA) (En,Es).txt",
    "content": "Motocross Maniacs Advance is a side-scrolling racing game with dirt bikes as the main vehicle of choice.  There are four modes of play, Race, Time Attack, Action (stunt tracks for points) and Link Battle (which requires four more cartridges and the link cable to use).  There are six different riders to choose from, each with their own different attributes and abilities. Players can also pick up power-ups during races such as heat-seeking missiles and land-mines along with the nitro tanks among others.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Motoracer Advance (USA) (En,Fr,De,Es,It).txt",
    "content": "The player controls a motorcyclist and must try to win races on various terrain and settings. Each motorcycle in the game handles differently with some performing better on paved roads and others working better on rougher terrain.[1]\n\nThere are a number of different modes: Grand Prix (GP), Motocross, and Traffic. GP takes place at a number of different locations across the world on paved tracks in places such as San Francisco and Russia. The paved tracks require the player to learn how to effectively use their brakes around corners. The GP courses contain small differences between them, giving more variety to the courses in the game. Motocross requires the player to drive on off-road terrain and to master the act of \"powersliding\" on corners. The courses found in Motocross races are less hospitable and often take place in arid and unkept locales and with obstacles. Traffic mixes both GP and Motocross, having mixed pavement courses and traffic on roads that serve as obstacles.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Mr. Driller 2 (USA).txt",
    "content": "You play the game as Susumu or Anna. Equipped with nothing but a pressurized suit and a drill, you need to contact the King of the Undergrounders. To do this, you will need to drill down several thousands of feet avoiding being crushed and remembering to pick up air tanks.This is a real-time puzzle game where you will be continually moving down or sideways in an effort to get to the bottom. As you dig, blocks will fall to fill in the spaces below. Like colored blocks will stick together (giving you time to rest), but will disappear if 4 or more blocks come together. This can cause chain reactions (very common in two-color levels) that become dangerous quickly.Three modes of play: Story, Time Attack, and Endless Driller. Story Mode uses the bare bones story from above. Time Attack gives you a set levels with a specific time limit. Endless Driller allows you to dig for as long as you can.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Ninja Five-0 (USA).txt",
    "content": "Take on the role of Ninja Five-O as he uses all his skill, stealth and magic to rescue hostages and defeat his enemies. Master the art of ninja swords, shuriken throwing stars and ancient ninjitsu magic! \n \n* Kaginawa Wire grappling hook that can be used to hang, fly, jump, climb walls and surprise attack. \n* 6 Challenging missions covering 20 levels. \n* Crush objects to find hidden Power-Ups and secret items \n* Unique enemy boss characters for each level.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Oriental Blue - Ao no Tengai (Japan) (Translated).txt",
    "content": "The game continues the tradition of Tengai Makyou series, also known as \"Far East of Eden\". You play as either Tenran or Aoi, a teenage boy and girl, respectively, on quest to defeat the ancient evil that threatens the prosperous land of Jipang, to prove themselves worthy of the legendary Fire Clan, warriors who have been protecting Jipang for many generations from evil demons and warlocks. The land Jipang is very similar to medieval Japan, and during your adventure you'll also visit Mongolia, China, and other Asian countries. \n \nThe most important new feature of the game is a non-linear storyline. You can tackle many missions in any order you want, and the storyline also changes depending on the outcome of major battles. If you lose against a boss enemy, the game is not over, but instead, a branching storyline path is revealed. Otherwise, the gameplay is similar to other Tengai Makyou games, featuring overworld map traveling and first person perspective, turn-based combat.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Pinball of the Dead, The (USA).txt",
    "content": "Based on \"The House of the Dead\" arcade/dreamcast series, this is a simple combination of pinball and the evil dead. Three pinball tables, Wondering, Movement, and Cemetary (all based on areas seen in The House of the Dead and The House of the Dead 2) are infested with zombies and using your silver ball, you must take out the zombies to save the table. The more you take out, the more points you get and the better the opportunity to take on one of the final bosses.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Pokemon - Emerald Version (USA, Europe).txt",
    "content": "The Hoenn region is unstable--Rayquaza has awakened! Your skills as a Trainer will be challenged like they've never been challenged before as you try to maintain the balance between Kyogre & Groudon. Prove your skills by earning badges & gaining access to the Battle Frontier--the front line of Pokmon battling that offers a whole new level of competition. Never-before-experienced battles await you! \n \n-The third adventure with new episodes in the Hoenn region! \n-Tons of new features, including surprising plot twists and changes to where and how often you can catch certain Pokmon! \n-Use the Game Boy Advance Wireless Adapter to trade & battle between Pokmon Emerald and Pokmon FireRed & LeafGreen versions. \n-Expand your collection when you trade with a friend. Using a Game Link cable, link up with Pokmon Ruby & Sapphire, Pokmon FireRed & LeafGreen or Pokmon Colosseum to catch them all! See instruction booklet for details.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Pokemon - FireRed Version (USA, Europe) (Rev 1).txt",
    "content": "Set off on a grand adventure to fulfill your dreams of becoming a Pokmon Master! Explore the Kanto region and discover wild Pokmon around every corner. Build your Pokmon collection and train, and battle your way to success--earn your badges as you develop winning strategies to use against experienced Gym Leaders in every town. Expore every inch to uncover amazing secrets that will help you in your quest to be the best trainer ever! \n \n-Trade, battle, and chat wirelessly! All new wireless adapter comes packed in every game, so trainers can trade, battle, and chat between their FireRed and LeafGreen versions with no cables! \n-Catch loads of Pokmon in the never-before-seen island areas! \n-Expand your collection when you trade with a friend. Link up with Pokmon Ruby & Sapphire or Pokmon Colosseum to catch them all!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Pokemon - LeafGreen Version (USA, Europe) (Rev 1).txt",
    "content": "Set off on a grand adventure to fulfill your dreams of becoming a Pokmon Master! Explore the Kanto region and discover wild Pokmon around every corner. Build your Pokmon collection and train, and battle your way to success--earn your badges as you develop winning strategies to use against experienced Gym Leaders in every town. Expore every inch to uncover amazing secrets that will help you in your quest to be the best trainer ever! \n \n-Trade, battle, and chat wirelessly! All new wireless adapter comes packed in every game, so trainers can trade, battle, and chat between their FireRed and LeafGreen versions with no cables! \n-Catch loads of Pokmon in the never-before-seen island areas! \n-Expand your collection when you trade with a friend. Link up with Pokmon Ruby & Sapphire or Pokmon Colosseum to catch them all!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Pokemon - Ruby Version (USA, Europe) (Rev 2).txt",
    "content": "Immerse yourself in the beautiful region of Hoenn, a place of masterful heroes and mysterious teams, of friendship and battles. As the new kid in town, you set off on your journey as a Pokmon Trainer. Who knows what wonders and dangers await you? Now it's time to grab your gear and head out on your own... \n \n-Over 200 Pokmon appear with over 100 new discovered species--you'll have to link up and trade with a friend who has Sapphire Version to catch them all! \n-2-on-2 battles--use two of your Pokmon in a battle at the same time! \n-Engage in intense multi battles with up to four friends! \n-Pokmon Contests let you groom your Pokmon to be the Best of Show! \n-Stunning Game Boy Advance graphics display the world of Pokmon with more detail than ever!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Pokemon - Sapphire Version (USA, Europe) (Rev 2).txt",
    "content": "Immerse yourself in the beautiful region of Hoenn, a place of masterful heroes and mysterious teams, of friendship and battles. As the new kid in town, you set off on your journey as a Pokmon Trainer. Who knows what wonders and dangers await you? Now it's time to grab your gear and head out on your own... \n \n-Over 200 Pokmon appear with over 100 new discovered species--you'll have to link up and trade with a friend who has Ruby Version to catch them all! \n-2-on-2 battles--use two of your Pokmon in a battle at the same time! \n-Engage in intense multi battles with up to four friends! \n-Pokmon Contests let you groom your Pokmon to be the Best of Show! \n-Stunning Game Boy Advance graphics display the world of Pokmon with more detail than ever!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Pokemon Mystery Dungeon - Red Rescue Team (USA, Australia).txt",
    "content": "Introducing the newest Pokemon, YOU! \n \nWhat if you woke up one day, and you were a Pokemon? What if all of the sudden you find yourself in a NEW world, where you can speak and interact with other Pokemon? The adventure begins when you and your partner Pokemon set out on rescue missions in a world ravaged by natural disasters. But what is your true purpose and destiny in this Pokemon world? That's the real mystery....\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Pokemon Pinball - Ruby & Sapphire (USA).txt",
    "content": "Pokmon Pinball: Ruby & Sapphire has all the features you'd demand of a pinball game, including bonus tables, lots of bumpers and ways to score massive points. As with your standard pinball video game, the left button on the D-pad and the A-button control the flippers with the R/L triggers used to shake the table. The catch here is that everything is themed in Pokmon. Instead of a ball, you make use of a Pokball. Instead of standard bumpers, you're hitting the Pokball against other Pokmon, and the ultimate goal is of course to \"catch 'em all\". The game features 200 Pokmon, two main tables, and link cable support.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Puyo Pop (USA) (En,Ja).txt",
    "content": "Help Arle and Carbuncle make their way home! Take on all of the wacky characters you meet in challenging games of Puyo Pop so you can make your way through the land and back to safety. It's a mad scramble to erase Puyo, create chain combos, and fill up your opponent's playfield in this fast-paced puzzle game.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Racing Gears Advance (USA).txt",
    "content": "This handheld racing game offers a range of licensed cars, several courses and circuits, and a challenging set of opponents. To these stock elements, it adds one more: weaponry. Now you can choose to nitro past the opponent ahead of you, or slow him down with a missile.\n\nWith each vehicle and driver pair you can race in Practice Mode to familiarize yourself with tracks or choose a Championship Mode to progress through a series of circuits. After each race you'll need to spend some of the money you've earned (either by placing or picking up money icons during the race) to repair and -- if possible -- upgrade your car. The upgrades can improve your car as a racing machine (e.g. a larger engine or better brakes) or as a war machine (e.g. adding more weapons bays or buying a new type of weapon).\n\nThe track design uses the isometric view, and almost never puts the car behind an obstacle. However, among the twisty roads are a few shortcuts that require you to think outside the lines of the road, and occasionally take a leap of faith.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Rayman Advance (USA) (En,Fr,De,Es,It).txt",
    "content": "Rayman Advance is a GBA game. It is basically a port of Rayman 1, however bears some minor changes. The evil Mr. Dark has stolen the Great Protoon, kidnapped all of the Electoons and defeated Betilla the Fairy. Rayman has to travel through 5 worlds before finally meeting up with Mr Dark and defeating him.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Rebelstar - Tactical Command (USA).txt",
    "content": "You can play as the leader of a revolt in the turn-based strategy game Rebelstar: Tactical Command. The Arelian Empire seized control of Earth 70 years ago and has since become an oppressive regime, controlling the world with fear and marauding shock troops. You can fight back by equipping a team of rebels and controlling them in battle. Rebelstar: Tactical Command includes campaign, skirmish, multiplayer hotseat, and multiplayer link mode.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Rhythm Heaven Silver (Japan) (Translated).txt",
    "content": "Rhythm Tengoku is a music game based around good timing and rhythm.  The game has music supplied by the record production company J.P. ROOM, and is developed by the team responsible for Wario Ware.  This is visible in the quirky presentation of the game.\n\nAs with Wario Ware, the game is actually a series of shorter games bundled into one package.  Before each game starts, you are presented with a short tutorial that gets you ready and practice before you begin the real thing.  Control is normally very simple - usually, only the A Button is required, but some games make players press multiple buttons for different actions.\n\nPlayers will punch in time with a karate expert as pots and rocks are thrown; pluck hairs off of an onion; march in time to an instructor; hit a baseball while the screen zooms in and out; shoot ghosts with arrows; chop demons as a samurai; and much more.  At the end of each set of stages is a 'remix stage' - in this stage, sections of the previously played stages are combined and thrown at you at random, all while a single song plays.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/River City Ransom EX (USA).txt",
    "content": "Kunio's greatest adventure with enhanced graphics and new gameplay!\n\nBrothers Ryuichi and Ryuji arrive at the Reihou Academy, located near Nekketsu High. After a short amount of time, nearby schools have begun fallen under the control of Ryuichi and Ryuji, who rumor has it have dubbed themselves the Double Dragons.\n\nRiki Samejima of Hanazono High has never seen eye to eye with Kunio, and in fact, they seem to always compete to be the best.\n\nBut one day, Mami Shimada, Riki's girlfriend, is kidnapped and held at Reihou Academy. The issue is challenged to Riki, come save your girlfriend!\n\nRiki's heart is burning with fury, and he flies out of the gates and seeks out his rival Kunio to help take on all opposing gangs. But one man awaits them at Reihou Academy that will shock Kunio!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Sabre Wulf (USA).txt",
    "content": "The amulet that had been in place to imprison Sabrewulf has been shattered by the evil Dr. Dolittle-Goode. Now, it is up to Sabreman to traverse the land in pursuit of these villains; and to retrieve the eight pieces of the amulet. \n \nThe game is separated into two modes of play: the 3D exploration mode and the 2D platforming sections. The 3D exploration mode is how Sabreman gets around the eight different themed worlds of Sabre Wulf. While there are no enemies in this mode, there are plenty of people to talk to, who might help you in your quest. Also strewn about are more than fifty 2D platforming levels, which you can access through the wulf's head tunnels.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Silent Scope (USA) (En,Fr,De,Es,It).txt",
    "content": "This coin-op conversion doesn't have a sniper rifle light gun, but all the scoping action is still here. \n\nThe aim of the game is to save the captured family of the President of the USA, by sniping all on-coming enemies as you go along. \n\nAs an enemy appears, an area of the screen zooms in, allowing you to easily pick off the guy in the head. Once done, press a button to zoom out, so as to choose your next target.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Sonic Advance (USA) (En,Ja).txt",
    "content": "Sonic the Hedgehog has arrived for his first ever adventure on a Nintendo console. Sonic Advance combines elements from the original Sonic series on Sega's Genesis, as well as from the Dreamcast Sonic Adventure series.\n\nChoose from Sonic, Knuckles, Tails, or Amy and take them through level after level of blindingly fast gameplay and ring collecting, dodging enemies in your path towards the final showdown with Dr Robotnik (aka Dr Eggman). \n\nCollect Chaos Emeralds along the way to transform into Super Sonic for added speed, and train your Chao to exchange them into Sonic Adventure 2 Battle on the Nintendo Gamecube.\n\nAnd if that wasn't enough, you can also play 4 player battle modes with your mates, using one game cart between 4 GBA's.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Sonic Advance 2 (USA) (En,Ja,Fr,De,Es,It).txt",
    "content": "Sonic returns for a second outing on the Game Boy Advance.\n\nOnce again, Sonic is called upon to save the world from the evil Dr. Eggman. On this occasion, Sonic is joined by friends Tails, Knuckles and Cream and rabbit, the latest addition to the Sonic team. Each comes with a set of unique moves, allowing you to reach certain areas through-out the levels. However, unlike Sonic Advance, you must compelte the game as Sonic to unlock the other characters.\n\nChaos Emeralds and Special Rings litter the stages. To collect the emeralds (transforming Sonic into Super Sonic for the final battle with Dr. Eggman), you must find the special rings hidden in each stage to unlock the bonus stage. Complete the bonus stage and the emerald is yours.\n\nYou'll also get the chance to collect and raise chaos, and trade them over to Sonic Adventure 2: Battle on Gamecube, through the use of the GBA/GC link cable.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Sonic Advance 3 (USA) (En,Ja,Fr,De,Es,It).txt",
    "content": "Eggman has broken the world into seven parts, now the player must find the seven Chaos Emeralds to restore the world. \n\nSonic Advance 3 is a Sonic game with a twist: the player can play with a friend in co-op mode or one of many multi-player modes like ring race. The game contains features from Sonic Advance and Sonic Advance 2, but with more options like choosing from 2 characters in story mode (a leading and a following character).\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Sonic Battle (USA) (En,Ja,Fr,De,Es,It).txt",
    "content": "Sonic Battle is a fast paced pseudo-fighting game akin to Super Smash Bros. Rather than being 3D side-scrolling, the game employs a 3D isometric view that is comprised of actual texture-mapped polygons. The character sprites are 2D.\n\nThere are 9 characters to choose from and 5 modes of play: Story, Battle, Challenge, Training, and Mini Games. You can link up 4 GBA's to fight your friends, and each character has several different attacks. It has a system of selecting Aerial, Ground, and Guard based attacks. Depending on what type of attack you set for which area (aerial/ground/guard) you have a possibility of 9 total different special attacks to choose from (only 3 at a time in a match though) which you can change each time you lose 1 stock point.\n\nThe game includes a trainable character whose abilities and techniques you can raise and add to. You get to pick and choose every aspect of the robot's style (running, attacking, jumping, dashing, etc.).\n\nThe game takes a moderate amount of time to play through as all the characters, and adds a longer lifespan to itself if you wish to play through and beat it completely (all characters, get all moves for the trainable robot, etc).\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Sonic Pinball Party (USA) (En,Ja,Fr,De,Es,It).txt",
    "content": "Sonic Pinball Party is the second Sonic Pinball game since Sonic Spinball in the early 90's. The game has an arcade mode, a tutorial mode, and a vs mode (party mode). In the game the game has pinball tables of famous Sonic Team characters such as Nights, Samba de Amigo, and of course SONIC! \n\nThe story mode of the game is the usual type of story, Robotnik steals animals visiting Casinopolis, and is going turn into his Robotic slaves. Of course, Sonic is going to try and stop him. Before he does, he has to win a pinball competition and during the game you unlock prizes. The competition is set out as a knockout format. The game also has a Casinopolis mode, which has Casino games like Roulette. There is also a chao garden, just like in the Sonic Advance games.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Spider-Man - Mysterio's Menace (USA, Europe).txt",
    "content": "Set in New York, Spider-Man: Mysterio's Menace enables players to assume the role of Spider-Man as they take on super-villain Mysterio and his illusory tricks for control of Manhattan. Spider-Man must fight a slew of Mysterio's sinister conspirators and gadgetry to get to the bottom of their plot and free New York from Mysterio's mind-warping grip.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Spyro - Attack of the Rhynocs (USA).txt",
    "content": "In a terrible mishap, Spyro, Sparx, and the Professor have inadvertently torn a hole in the fabric of space between the Rhynoc and Dragon Realms. Now, at the command of the elusive Ripto, droves of Rhynocs are pouring into the Dragon Realms in yet another attempt to make life miserable. As Spyro, Agent 9, or Sergeant Byrd, you must help the Professor close the hole quickly before the gate becomes too big and the two realms fuse together--permanently. You can use Spyro's new abilities, including the Head-Butt Slam, Cyclone Attack, Phoenix Vision, and more.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Spyro - Season of Ice (USA).txt",
    "content": "Dragons never seem to have had it too easy. They have always had to worry about dragon slayers, plus they usually get a bad rap for being destructive, and let's not even get started on what people say about their breath! Fortunately Spyro has generally avoided such negative opinions, but then again he hasn't always had it easy either. You'd think that after several death-defying adventures on the Playstation over the past few years, which included the defeat of the evil Sorceress, Spyro and his friends would be able to take some time off and enjoy a bit of a vacation at Dragon Shores. But with evil brewing and a new title on the way for the GameBoy Advance, which is due out in November, the gang shouldn't get too comfortable on the beach.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Spyro 2 - Season of Flame (USA).txt",
    "content": "Spyro 2: Season of Flame tells the story of Spyro's return to the Dragon Realms where he is surprised to discover that a mysterious enemy has stolen the Fireflies, the source of all dragon firepower, including Spyro's. Now it is up to everyone's favorite purple dragon to save the Fireflies before it is too late!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Street Fighter Alpha 3 (USA).txt",
    "content": "Street Fighter Alpha 3, the third game in the Alpha series, has a total of 31 fighters, the most in the series so far. New characters include old favorites E. Honda, Blanka, Vega, Cammy, T. Hawk, Dee Jay, Juni and Juli. Some of the newest fighters on the block include a former Final Fight character (Cody, who has been in jail since the last Final Fight game, or so his clothing suggests), Karin Kanzuki and Rainbow Mika.\n\nThe major difference between this Alpha and the last two are the new play modes World Tour, Arcade, VS, Training and Entry. \n\nWorld Tour - Simply choose your fighter and travel around the world, fighting the home town heroes that you run into. The more fights you win, the stronger you fighter becomes. You can also learn new moves, and there are three levels of Super moves to choose from before you start each round (called Isms).\n\nArcade - A simple conversion of the arcade version. Beat each fighter with your chosen warrior, in three rounds per match (much the same as past versions of Street Fighter)\n\nVersus - Two human players battle it out. \n\nTraining - A good way to learn all the super moves that are available, against a dummy.\n\nEntry - If you save your character during the World Tour mode, you can upload him here to use in the other modes in the game (especially handy for Training).\n\nFinally, if you complete certain areas of the game three new fighters become available, including another old favourite in Guile, Evil Ryu and Shin Akuma.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Summon Night - Swordcraft Story (USA).txt",
    "content": "Summon Night: Swordcraft Story is an RPG set in the strange world of Lyndbaum, a sacred land linked to four magical dimensions from which Summoners can call forth spirits called Guardian Beasts to do their bidding.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Summon Night - Swordcraft Story 2 (USA).txt",
    "content": "In Summon Night: Swordcraft 2, the player is an orphan from the Colthearts clan raised by a Craftknight (a smith/warrior). The character aspires to be a Craftknight as well. The player character, either Edgar Colthearts or Aera Colthearts, who are Edge Fencers, find themselves at the site of an abandoned ruin where a violent Summon Beast named Goura is awakened. In order to protect their new family, Edgar/Aera is bound to a wild Summon Beast (stray summon) and embarks on a journey to reseal the ruins.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Super Mario Advance (USA, Europe).txt",
    "content": "Super Mario Advance is the adaptation on GBA of Super Mario Bros 2 released on NES. This episode marks a turning point in the series as it introduces the possibility of choosing his character. Embody the famous tandem of mustachio plumbers, Princess Peach or her companion Toad in a magical adventure. You must save the inhabitants of the dream world from the clutches of the ignoble Wart, the batrachian tyrant. This version offers as a bonus a revamped version of the game Mario Bros.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Super Mario Advance 2 - Super Mario World (USA, Australia).txt",
    "content": "One of Mario's greatest adventures is in your hands! \n \nBowser and his crew of cruel Koopalings have taken over Dinosaur Island, but luckily, Mario and Luigi are up for some Koopa-kicking. As they ride Yoshi, search for P-Switches, find secret paths, blast fireballs, and soar skyward with the Cape, they'll need to use every trick in the plumber handbook. Dino Rhinos, Chargin' Chucks, and a host of unforgettable enemies await in one of the Mario Bros. biggest and most challenging adventures ever! \n \n-All 96 levels in the palm of your hand! Ride Yoshi from the spooky Forest of Illusion to the super-tough Star Road - everything from the Super NES classic is here, powered up with all-new features for the Game Boy Advance. \n-Luigi's ready, so pick a Bro and go! Now you can play as Mario or his brother, Luigi, who can jump and fly higher than his famous sibling. Which Bro is the best for each stage? \n-Get linked! Using a single Game Pak, link up four players and play the timeless Mario Bros. arcade game. You can even connect with Super Mario Advance Game Paks for Multi-Pak madness!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Super Mario Advance 3 - Yoshi's Island (USA).txt",
    "content": "Yoshi's Island: Super Mario Advance 3 makes us discover the origin of brothers Mario and Luigi. While a stork brings both babies to their parents, the wizard Kamek hits him to prevent him from reaching his destination because he predicted that Mario and Luigi would be a problem for his master Bowser in the future. Kamek manages to kidnap Luigi but Mario fails on Yoshis Island. The latter get organised so that Mario finds his brother.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Super Mario Advance 4 - Super Mario Bros. 3 (USA, Australia) (Rev 1).txt",
    "content": "A combination of exciting platforming action, wild power-ups, and charming Mario style has made Super Mario Bros. 3 a classic. With Super Mario Advance 4: Super Mario Bros. 3, you have your chance to partake in the special adventure anywhere you go on your Game Boy Advance. Your mission is to rescue the Mushroom Kingdom monarchs who have been transformed into animals by Bowser and his mischievous offspring, and in the process save the princess kidnapped by Bowser. Traverse eight huge worlds and encounter fun minigames and frantic boss battles as you explore the first Mario game to use an overworld map.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Super Monkey Ball Jr. (USA).txt",
    "content": "Based on the Gamecube series of the same name, Super Monkey Ball Jr. has you in control of 3D style arenas, each with a varying degree of difficulty and objectives. Your little monkey, inside a ball, relies on your movement of the arena to get to the required objectives (collecting items, getting to the finish line in under a certain time limit, etc.).\n\nApart from the single player puzzle experience (which includes more then 60 arenas), up to four people can play a collection of mini-games (which you must unlock in the single player game). Play monkey bowling (aka ten pin bowling), monkey fight (knock the other 3 players' monkey ball out of the circle arena) or an 18 hole mini golf challenge.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Super Puzzle Fighter II (USA) (Rev 1).txt",
    "content": "Capcom's knockout puzzle game action, set in the Street Fighter universe, arrives on Game Boy Advanced. Hailed as one of the best puzzle games of all time, Super Puzzle Fighter is chockfull of ferocious competition, pint-sized characters and non-stop high-energy insanity. \n \nCarefully stack the falling colored gems in strategic combinations. When the moment is right, use a burst gem to shatter your blocks. Watch your character execute a combo move and rain a volley of counter gems down on your opponent. Be the first to fill the other's screen with gems and K.O. the other player. Features eight characters from the Dark Stalkers and Street Fighter franchises, including Ryu, Ken, and Chun-Li.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Super Robot Taisen - Original Generation (USA).txt",
    "content": "Unlike some of the saga's opuses, Super Robot Taisen: Original Generation contains only original creations from its developer Banpresto. The player can start this episode by embodying one of the two proposed protagonists, each with its own scenario. For the first time in the series, the player can customize his robots and choose their equipment and weapons.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Super Robot Taisen - Original Generation 2 (USA).txt",
    "content": "The battle rages on! Peace slowly settles over the planet Earth after a brutal war against the alien armada. However, the world is not able to rest for long, as new forces emerge and threaten to bring Earth to it's knees once again. Use all the cunning and tactical skill you have to command the best and brightest mech pilots the world has ever seen in saving humanity from enemies bent on dominating the human race - or worse, annihilating it's very existence.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Super Robot Taisen R (Japan) (Translated).txt",
    "content": "Raul/Fiona and their two friends test out their machine, the Excellence, but are attacked in the middle of the test and the base is totaled. They send out an SOS, which is received by the Ra Calium and the Nadesico. Who will survive?\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Super Street Fighter II Turbo - Revival (USA).txt",
    "content": "Capcom's timeless Street Fighter masterpiece conquers the Game Boy Advance system. Choose from over 16 brawlers from the Street Fighter universe and execute special moves, and super combos to wreak havoc on your opponent and become the best street fighter in the world. Lightning fast animation, unbelievable graphics and Capcom's signature gameplay make Super Street Fighter II Turbo the most respected fighting game of all time.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Sword of Mana (USA, Australia).txt",
    "content": "Sword of Mana tells the tale of two unlikely companions, a former prisoner out for revenge and the last known girl from the Mana tribe. The two come together, despite their differences, for one very important reason: they are the only ones that can save the Mana tree.\n\nBased upon the Mana series and the classic Game Boy title Final Fantasy Adventures, you can take control of both characters (or join with another player in co-op) and battle in realtime using spells, weapons and many more items.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/TMNT (USA) (En,Fr,Es).txt",
    "content": "Cowabunga! Take control of your favourite turtle ninjas as you play through the events of the 2007 CGI movie. The turtles have grown apart, and Raphael has taken to crime fighting solo under the guise of the Nightwatcher.  The Foot Clan are turning up in the streets again, and a mysterious man known as Winters seems to be involved with them. Only the Ninja Turtles can clean up the streets!\n\nThe Game Boy Advance version of TMNT can be best described as similar to the NES game River City Ransom.  Players take control of either a specific turtle or the turtle of their choice (depending on the mission), and fight through waves of enemies in a sidescrolling beat-em-up style.  Enemies will drop the usual health pickups, but also drop money and weaponry.  Money can be used to purchase weapons or upgrades between missions, while weapons can be used as a more powerful tool to defeat your foes (however, these weapons have a limited use).  After the completion of a mission, experience is earned, and after a certain amount of experience is gained, you can level up the turtles to improve their fighting statistics.\n\nEach turtle has their own specific weapon: Leonardo with his dual Katana, Michelangelo with his Nunchucks, Donatello with his Bo Staff and Raphael with his two Sai.  These weapons are used in their standard attacks.  A basic attack is performed with the B Button, but you can perform different attacks with B and other buttons such as the directions of the Control Pad and the A Button.  Uppercuts, Sweep Kicks, Jump Kicks and more can be performed, and you can even juggle enemies in the air to get more hits in and increase your score.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Tactics Ogre - The Knight of Lodis (USA).txt",
    "content": "Assume the role of Alphonse, a knight of Galicia, sent on a mission to investigate the intentions of the suspect governing body of the Holy Lodis Empire and solve the mystery of Ovis. Along the way, you will experience many trials and tribulations, but you must survive the unrelenting battles and cultivate your characters' abilities to reveal your true destiny.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Teenage Mutant Ninja Turtles (USA).txt",
    "content": "The heroes in a half shell are back in an all new adventure. The four turtles have been split up in order to combat the many bad guys that surround the city.\n\nEach turtle (Leonardo, Michelangelo, Raphael & Donatello) has their own set of levels to complete, with their own distinct moves and combat options to use during battle. Along with a set of side-scrolling levels, complete with end of level boss battles, the four turtles will also get the chance to race through the sewers in the unique 3rd person race modes, shooting down the enemy or collecting items, while Donatello takes to the sky in the Shell Glider and Raphael challenges Casey Jones to a one-on-one cycle race.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Teenage Mutant Ninja Turtles 2 - Battle Nexus (USA).txt",
    "content": "Play with \nUp To 4 Players! \nVenture with the Turtles to shell and back in TMNT 2: BattleNexus . Pick up the action on a strange new planet with mysterious new technology. Two tail-kickin' modes deliver green-knuckled action including Story and Battle Nexus Mode! \n \n-Specialized moves for each Turtle! \n-4-player shell-action! \n-Cooperative play & head-to-head four player competition\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Tomato Adventure (Japan) (Translated).txt",
    "content": "This story takes place in a land ruled by and intended for kids: the Ketchup Kingdom. On the holiday, Tomato Day, King Abiira makes an important announcement, declaring a rebirth of the nation with the help of the six Super Kids, and unveiling an awesome machine, the Super Cara-Cooker.\n\nUnfortunately, just after the machine is unveiled, the TV of a boy named Demiru blows out. The adventure begins when you take control of Demiru, and set out to have your TV repaired...\"\n\nTomato Adventure is a very cute and unique RPG meant for young kids, and is currently only available in Japan. It's fairly simple compared to the more complex RPGs out there. But I still think it's very fun; it reminds me a lot of Super Mario RPG.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Tony Hawk's Pro Skater 2 (USA, Europe).txt",
    "content": "The Tony Hawk skateboarding series makes its debut on the Game Boy Advance with this adaptation of the second Pro Skater game.\n\nGameplay is similar to the original console game. The levels have been adapted from the console version for the two dimensional isometric perspective; one is even taken from the original Tony Hawk's Pro Skater.\n\nIn Career Mode, choose from one of 13 professional skaters and, in each level, complete various goals like collecting items, performing special tricks and of course breaking high scores by performing tricks and combos. Completing the goals earns money which unlocks new levels and can be spent on new boards, tricks and upgrading your skater's stats. In competition levels, you don't skate for money but compete for a medal.\n\nIn the Free Skate and Single Session modes, unlocked levels can be practiced and new high scores be established.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Tony Hawk's Pro Skater 3 (USA, Europe).txt",
    "content": "Tony Hawk returns with an all new line-up of skaters, an all new line-up of parks to crash through, and a whole new level of graphics.\n\nThe line-up of street and vert riders include Elissa Steamer, Jamie Thomas, Steve Caballero, Rune Glifberg, Geoff Rowley, Andrew Reynolds, Rodney Mullen, Eric Koston, Chad Muska, Bucky Lasek and Bam Margera from MTV's Jackass (and Tony Hawk, of course).\n\nThe create a skater mode returns, allowing for even further levels of options for your character, like adding glasses and tatoos to changing the colour of the knee and elbow pads or even the hair.\n\nAnd the levels themselves that you must skate through are now more interactive, with cars and humans blocking paths and making noise as you race around to make as many points as possible. Use items around the streets or the park to jump from or over to increase your score, and pull of as many wild and wacky tricks as you can.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Tony Hawk's Pro Skater 4 (USA, Europe).txt",
    "content": "THPS4 is the fourth game in Activision's ever popular franchise.\n\nThe main feature of this game is it's redesigned career mode.  When beginning a level, you have all the time in the world to skate around, perform tricks, get a feel for the level, without the hassel of any goals or time limits.  When you're ready to attempt a goal, simply find a pro skater, talk to him, then receive the goal, similar to Dave Mirra Freestyle BMX.  Goals are similar to the previous games, such as collect SKATE, get a certain amount of points, transfer over this and grind that.  There are new goals, however, such as collecting the word COMBO while doing one big combo.  Miss a trick, and goal fails.  Once all regular goals are accomplished, you can attempt the Pro Goal, which is specific to each skater, and is extremely hard.\n\nAll the major skaters are here, including Tony Hawk, Bob Burnquist, Steve Caballero, Kareem Campbell, Rune Gilfberg, Eric Koston, Bucky Lasek, Bam Margera, Rodney Mullen, Chad Muska, Andrew Reynolds, Geoff Rowley, Elissa Steamer and Jamie Thomas.\n\nThe levels are been expanded and are huge.  Some of the levels include a college campus, a shipyard, and the infamous prison complex Alcatraz.\n\nFor multiplayer, all the favorite modes are back, from Graffiti and Trick Attack to Horse and King Of The Hill.  New modes include Capture The Flag and Combo Mambo.  THPS4 also supports System Link play, but not XBox Live.\n\nThe PlayStation 2 version offers everything from the XBox version, but also has online play, utilizing either your own network adaptor or the official one.  The PS2 version also features a one level demo of Shaun Murray's Pro Wakeboarder, which is not featured on any other version of the game.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Tony Hawk's Underground (USA, Europe).txt",
    "content": "Like earlier entries in the Tony Hawk skateboarding series on the Game Boy Advance, Tony Hawk's Underground adapts the console title to the handheld platform using isometric graphics and polygonal characters.The main game mode is story mode. Players creat\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Tony Hawk's Underground 2 (USA, Europe).txt",
    "content": "Tony Hawk's Underground 2 is based on the console games of the same name.  Like the previous GBA releases of the series, it's an isometric representation of the console levels combined with polygonal characters.  It contains both a story mode, in which you create a rookie skater and take him or her on a world tour with pros to improve their skills and win prizes; and a classic mode, in which you must accomplish various goals such as tricking off objects or getting a high score within two minutes.  Changes in this iteration include removing the timer from most goals in story mode, allowing you to have several active at once and new moves like the nata spin, tantrum, which allows you to recover from a bail without losing everything, focus, where you can slow time in order to land the best trick and sticker-slapping.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Ultimate Brain Games (USA, Europe).txt",
    "content": "Ultimate Brain Games is a collection of 8 games you can play against the computer or a friend.  The games include Sink Ships (aka Battleship), Mahjong, Backgammon, Chess, Checkers, Reversi, Dominoes, and Four in a Row (aka Connect Four).\n\nYou start out by designing how your character looks.  You can modify 9 areas of your character, from eyes to clothes.  After doing so, decide to play single or multiplayer.\n\nEach game follows the rules and gameplay seen in the original games.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Urban Yeti! (USA, Europe).txt",
    "content": "Urban Yeti is is a smooth scrolling 2 1/2-D platform adventure, and might very well be the strangest game you've ever played. You can smash your way through 4 twisting city stages, or attempt to avoid detection all together. Either way the Human AI will adapt as you progress - the more contact you have, the more aggressive they'll become. There are even some unique minigames to add to the excitement - Yeti Frisbee, managing the local \"Yeti Kingdom Of Eats\" restaurant, and catching poultry to offer to your prospective mate. You can even float down a lazy sewer river o' fun on a giant tube! Achieve the ultimate goal and show the world just what kind of Bigfoot you really are.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/V-Rally 3 (USA) (En,Fr,Es).txt",
    "content": "The rally racing series comes to the GBA with texture mapped 3d graphics that take the GBA in a direction never thought possible.\nPlayers can choose from a variety of game modes including rally racing, circuit racing and time trials or link up and go head to head with another player. The better and further you get the more cars and tracks are unlocked.\nView the race from inside the car or behind it as you scream through snow, rain, fog, dirt, gravel and over jumps at different times of day and night as you try to become the best rally racer on the planet.\nFeatures battery backup.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Virtua Tennis (USA).txt",
    "content": "Virtua Tennis arrives on the GBA, without the 'Virtual' 3D element, but with the same gameplay you expect from a tennis game.\n\nChoose from a male or female player (or create your own) and take to the world tour, competing in various tournaments on clay, hardcourt, grass or indoors. Play against some of the best players in the world, both in singles and doubles, or compete against your friends in 4 player doubles.\n\nMini-games test your skills and improves the timing of your shots. Games range from Burger Chef (aim at the grid to decide what comes next on the burger), Disc Shooter (similar to Othello) and Bull's Eye, where you aim for the center of the target. Your created character will also improve depending on your success in each mini-game, with his or her stats increasing over time.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Wario Land 4 (USA, Europe).txt",
    "content": "In this fourth episode of the adventures of Mario's nemesis, the greedy Wario reads in a newspaper about a secret treasure lost in a pyramid. That's enough for Wario: he jumps in his car, enters the pyramid, and then you take control of him. Wario is a classic platform game with a twist: some enemies don't actually hurt you but change you into various forms, like Floating Wario, Zombie Wario, or Bat Wario.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/WarioWare - Twisted! (USA).txt",
    "content": "After accidentally discovering spin technology, Wario reassembles the developers at WarioWare, Inc. to make a new set of wild minigames. WarioWare: Twisted! maintains the fast-paced style of gameplay from the original WarioWare and introduces a new gyro sensor that lets you control the gameplay by rotating the Game Boy Advance SP left and right. The new controls play into more than 200 minigames. Play through them all to unlock souvenirs, such as bonus games, figurines, and instruments.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/WarioWare, Inc. - Mega Microgame$! (USA).txt",
    "content": "Frantic action! Prepare for lightning-quick game play as you blaze through over 200 bizarre microgames designed by a crazy crew of Wario's cronies! There are even two-player contests that can be played on a single Game Boy Advance! Pick up and play! Ultra-simple controls make each game easy to get into...until the games start coming faster... and faster...and FASTER!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Wing Commander - Prophecy (USA).txt",
    "content": "It has been some twelve years since the destruction of Kilrah, the Kilrathi homeworld. The Terran Confederation, slowly demobilizing and reorganizing its military assets, has settled on a new strategy: building several Midway-class megacarriers, brainchild of Navy Commodore Christopher Blair. These new carriers, over a kilometer long, carry all the hardware and weaponry of a Kilrathi-War-era carrier battle group. The first one, the Midway herself, is undergoing her shakedown cruise, with Blair along for the ride. Before this, though, the player is treated to a CGI video of a bizarre rupture in space in the Kilrah system: the first of the Nephilim invaders. The game's titular prophecy involves the coming of these alien invaders, who shall arrive only after \"one who has the heart of a Kilrathi, but who is not Kilrathi-born,\" conquers the felinoid warrior race.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Wings (USA).txt",
    "content": "You are an allied fighter pilot in WW1, duking it out with the \"Huns\" up in the sky in over 200 missions.\n\nThe missions usually come in three flavors: Top-down view bombing missions where you have to take out strategically important targets, isometric strafing runs where you get to blast anything that you fancy blasting with an unlimited supply of ammo, and of course the main part: Dogfights in the sky. Rendered in 3D, seems from behind your head.\n\nThe game is set in the years 1916 through 1918, and to loosen things up a little, we get to read a page of our character's new entry for the diary-like journal in his company between every mission.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Worms World Party (USA) (En,Fr,De,Es,It).txt",
    "content": "The Worms are back, deadlier than ever.\nYou're going to learn that there's nothing more dangerous than a Worm with a bazooka or a shotgun...\n\nAt first sight, Worms World Party may seem very similar to Worms Armageddon. However, this time the game has been specially designed with multiplayer in mind. Up to 6 players can battle out at the same time on local networks or on the internet, using Team17 own matchmaking service, called Wormnet.\n\nOther welcomed additions are the Wormpot, which can provide 400 gameplay variations from \"Goliath Mode\" to \"Bleeding Worms\", hundreds of new landscapes, flags and fanfares, and a load of single player missions.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Yggdra Union - We'll Never Fight Alone (USA).txt",
    "content": "Ruled by a royal family said to be descendants of the gods themselves, Fantasinia is a prosperous and peaceful land -- until the peace is shattered by the invading forces of the Empire of Bronkia. Led by the young emperor Gulcasa, who seized control of the Empire in a brutal coup d?etat, Bronchia's Imperial Army cuts a bloody swath through the people of Fantasinia and the Royal Armies of King Ordeene. Amidst the chaos, a young woman escapes from the besieged capital of Partina -- a woman with innocence in her face, and a sword in her hand. The girl?s name is Princess Yggdra, the last surviving member of the royal family; the sword is the Gran Centurio, a legendary blade once wielded by the founder of Fantasinia, and passed down through generations of royalty. Fleeing to to a remote valley at the southern tip of the continent, Yggdra meets up with Milanor, the charismatic leader of a band of thieves, and readies herself for a war of liberation.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Advance/text/Zone of the Enders - The Fist of Mars (USA).txt",
    "content": "In the distant future, mankind is at the brink of war with it's colonies on the moon, Mars and Jupiter. You take control of a young man who, after a series of events, finds himself in possession of a new type of L.E.V. (a giant combat robot) and stranded on Mars, where he joins forces with the Anti-Terrestrial League.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Color/text/Aliens - Thanatos Encounter (USA, Europe).txt",
    "content": "Prepare for horror and fright beyond your wildest nightmares, as you step into the world of ALIENS: Thanatos Encounter. The terrifying creatures made famous by the popular ALIENS movies come to Game Boy Color in a totally new adventure. You play as one of five space marines who are sent to explore an abandoned freighter. Naturally, the situation is far worse than your squad expected the ship is completely infested with thousands of vicious aliens. In this single-player shooter, you'll make your way through the various sections of the ship in 12 missions. Discover the solution to the mystery of the aliens' reappearance through the cinematic cutscenes you'll see throughout the game. You can use a variety of alien-busting weapons like machine guns and flame-throwers to fend off the incoming horde and, if all else fails, turn tail and run as fast as you can! Battle a wide variety of different breeds of aliens, including some all-new hybrids.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Color/text/Alone in the Dark - The New Nightmare (USA) (En,Fr,Es).txt",
    "content": "Edward Carnaby, private eye of the paranormal, is back.\n\nCarnaby's best friend, Charles Fiske, has been found dead near Shadow Island--a mysterious island near Maine. It is your duty to take up the investigation and find out the secrets of Shadow Island. The game takes place in the surrounding grounds of a gloomy mansion. The game is dark...very dark, and in true survival horror style there are many things lurking, waiting to pounce.\n\n9 years after the original was released, the game that started it all returns for a new chapter in the Alone in the Dark series.\n\nCan you see.......beyond your fear?\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Color/text/Animorphs (USA).txt",
    "content": "Based on Scholastic's popular books and television series, Animorphs for Gameboy Color is a 2D action / RPG hybrid.  The evil Yeerks are invading Earth and only the Animorphs can stop them with their morphing power.  Play as all five members of the Animorphs and collect DNA from animals you meet - now you have the power to morph into these animals.  Keep your morphing power a secret from the regular humans, and use the correct morph at the right time to escape from tricky situations.  Play through five stages of RPG action and five 2D minigames in order to defeat the Yeerks and save the planet.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Color/text/Asterix & Obelix (Europe) (En,Fr,De,Es).txt",
    "content": "Caesar has had a palisade constructed around the village inhabited by the Indomitable Gauls in order to keep them prisoner! Choose Obelix or Asterix and set off across the Roman Empire! Bring back a souvenir from each country crossed in order to prove to Caesar that our heroes are the strongest!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Color/text/Azure Dreams (USA) (SGB Enhanced) (GB Compatible).txt",
    "content": "The huge Monster Tower stands near the village Monsbaiya. It is populated by vicious monsters, and few dare enter it. But the monsters in the tower lay eggs, and whoever takes possession of such an egg, can tame a monster which will come out of it, and those monsters, called \"familiars\", will help their tamers in times of danger. Some brave adventurers dared to enter the tower and to take the eggs. One of them was called Guy. He was killed in the monster tower. Now his son Koh is fifteen, and he is allowed to try his luck in the tower.\n\nYou control Koh and his party of \"familiars\" in this unusual \"monster-taming\" RPG. You must capture the eggs from the tower, bring them home, grow monsters and tame them. During battles, you assign different commands to them. Different species have different abilities and need different approach. The battles system is a mixture of real time and turn based combat. Unlike most other console RPGs, there are no special battle screens.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Color/text/Batman - Chaos in Gotham (USA).txt",
    "content": "The Batman returns on Game Boy Color with BATMAN: Chaos in Gotham City. Based on the popular animated BATMAN series, this single-player action game allows you to don the cowl of one of two Bat-heroes: Batman or Batgirl. Some of the Dark Knight's famous arch-villains have escaped and are causing serious trouble in Gotham, and it's up to you to put them back where they belong. Everyone from Poison Ivy to the Clown Prince of Crime the Joker himself is here to wreak havoc and keep the caped crusader busy. Grab your utility belt and assault 18 stages of varied action that take you on a tour of Gotham City. Much of the action is played from a side-scrolling perspective, but some levels have you taking out the Batmobile or the Batcycle in overhead high-speed excitement. Naturally, Batman and Batgirl are both packing their usual assortment of weapons and tools including the Batarang, the grappling hook, smoke bombs, and more.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Color/text/Batman Beyond - Return of the Joker (USA).txt",
    "content": "Based off the movie, Batman Beyond puts the player on the streets of Gotham (Beyond) to take out the ever-grinning Joker, but before that an obvious long line of his evil minions - some of which are genetically engineered.\n\nScroll around, punch, kick, play with bat-weapons, and avoid being on the receiving end of those attacks. There are multiple 'bat suits' that you can choose from, each with their own special abilities and purposes.\n\nMostly a 3-D beat-the-living-sunshine-out-of-whatever-moves type.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Color/text/Bionic Commando - Elite Forces (USA, Australia).txt",
    "content": "The Avar empire is an imminent threat to our homeland of Karinia. As a member of the Bionic Corps' Elite Forces team your mission is to infiltrate the Avar installations, disrupt their invasion plans and rescue our scout, fellow bionic commando, Commander Joe. You play a bionic soldier with a mechanic arm that extends and contracts to let you interact with objects normally out of reach.\nThe game is based on the Bionic Commando arcade game and is a typical platform game with the emphasis on the capabilities your bionic arms gives you. You can use it to swing from platform to platform, pull yourself up onto higher platforms, and attack enemies with it. A few other weapons and a range of pickups is also available. At the start of the game you also get to choose to play a male or female commando.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Color/text/Blade (USA, Europe).txt",
    "content": "You're Blade, Gothic City's baddest vampire hunter. When rival vampire clams ignite a deadly feud, you go deep to do some serious demon killing. Stalk the undead through 24 gothic locations, then waste an arsenal of intense weapons. Plan on staying up late tonight, 'cause an even greater evil awaits.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Color/text/Blaster Master - Enemy Below (USA, Europe) (SGB Enhanced) (GB Compatible).txt",
    "content": "Taking place sometime after the events of the original Blaster Master, Blaster Master: Enemy Below puts you once again behind the wheels of Sophia 3 as a genetically engineered threat looms from the underground once again.\n\nGameplay-wise the game plays like a remake of the first game, with similar levels and challenges, and featuring the same on wheels/on foot dual gameplay modes while adding new weapons and upgrades.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Color/text/Bomberman Max - Blue Champion (USA).txt",
    "content": "Bomberman returns to the Game Boy Color. The adventure is much the same as before, plant bombs to blow up blocks and enemies that get in your way of the exit. \n\nMuch like Pokmon before it, Max: Blue is one part of the adventure (the other being Max: Red Challenger Edition). During both games, you can pick up \"Charabombs\", creatures that you can raise as your own, and fight against other players Charabombs. It's a simple bonus game of Rock/Paper/Scissors, but the only way to complete the entire adventure is by linking both games together via link cable and pass over levels from one cart to the other, as each game has unique levels, so as to collect all of the Charabombs.\n\nIn Max: Blue you play as Bomberman himself, with all of the classic graphics and sounds that have been part of the series from the start.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Color/text/Bomberman Max - Red Challenger (USA).txt",
    "content": "The second half of the Bomberman Max series, Red Challenger is much the same as Blue Champion in terms of the tasks at hand for the main character. However, instead of playing as Bomberman, you play as Max, who still is much the same as Bomberman except for looks. The graphics are also slightly different for each level compared to Blue.\n\nThe task stays the same, plant bombs to destroy blocks and enemies in your way, as well as collecting Charabombs, creatures who act much the same as Pokmon where you raise the Charabombs and fight against other players. Certain Charabombs and levels are only available in Blue, so you must link with another Game Boy and the Blue Champion Edition to collect all of the Charabombs and complete the adventure.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Color/text/Bomberman Quest (USA) (SGB Enhanced) (GB Compatible).txt",
    "content": "Carrying with him all the monsters he captured on his last mission, Bomberman is headed for his home planet Bomber. However, all of a sudden someone steals all of his four rocket engines and he is forced to make an emergency landing. After having woken up from the crash he realises that not only are his engines gone, but all of the monsters have escaped!\n\nBomberman Quest is a top down action RPG in which Bomberman has to traverse four different lands and speak to the natives to aid him in his quest to reclaim the engines and monsters. In true action RPG fashion, you pick up upgrades along the way, such as bomb parts and skills acquired from defeating monsters.\n\nThere is also a battle mode where two players can duke it out via linked Game Boy Colors.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Color/text/Bugs Bunny - Crazy Castle 3 (USA, Europe) (GB Compatible).txt",
    "content": "Bugs Bunny Crazy Castle brings the gameplay from Bugs Bunny in Crazy Castle and its sequel to the Game Boy Color. In the game you play as Bugs Bunny and you have to find a treasure hidden in an old castle. Unfortunately the witch Hazel put your friends (other Looney Tunes characters such as Daffy Duck, Yosemite Sam, Sylvester and Wile E. Coyote) under a spell and they will try anything to prevent you from reaching your goal.\n\nYou will have to guide Bugs Bunny through 60 levels in and around the castle. In each level you have to find eight keys to unlock the door to the next level.\n\nYou can collect carrots for more lives and there are a variety of weapons you can pick up to take care of your enemies, including bombs, lightning, cork gun, juice and weights. Other items such as a hammer or pick-axe can help you get past level obstacles. Shields, clocks and shoes will protect you from your enemies.\n\nAs Bugs Bunny you can walk around, climb stairs, use elevators and climb through tunnels to navigate around the screen.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Color/text/Bugs Bunny in - Crazy Castle 4 (USA).txt",
    "content": "Bugs Bunny in Crazy Castle 4 is the second game in the Crazy Castle series for the Game Boy Color.\n\nLike in the previous three games you play as Bugs Bunny. This time you have to find your way to the mysterious Crazy Castle. You will pass through a wide variety of locations in which you will encounter familiar Looney Tunes characters such as Taz, Yosemite Sam, Wile E. Coyote, Daffy Duck and Elmer Fudd.\n\nBugs Bunny can climb stairs and ladders, jump ropes and springs, and use a large amount of items such as hammers to break rocks, carrots to replenish health, weapons to knock out enemies and pick-axes to climb over rocks.\n\nThere are more than 60 levels. In each you will have to find eight keys to unlock the door to the next level. Various traps will bar you way, including ice floors, conveyor belts, moving floors and disintegrating platforms.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Color/text/Bust-A-Move Millennium (USA, Europe).txt",
    "content": "An exclusive version of the puzzle franchise on the handheld includes all the fun of the original Bust-A-Move along with varying playfield sizes; story, puzzle and versus modes; and the ability to play against a friend in 2 player versus.\n\nOther modes include endless mode (play as long as you want), and a challenge mode where you must complete puzzles perfectly in order to move on.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Color/text/Conker's Pocket Tales (USA, Europe) (En,Fr,De) (SGB Enhanced) (GB Compatible).txt",
    "content": "Conker has a party with his girlfriend. The Evil Acorn breaks up the party. The Acorn takes Conker's girlfriend. Now Conker must rescue his girlfriend. The game also worked for Game Boy and Super Game Boy. \n\nConker travels through many levels, trying to find presents that the Evil Acorn has stolen. Conker is equipped with a slingshot to battle enemies, such as mutant plants, snakes, and others. Players encounter a few minigames on their adventure, including olympic-type games. If a player started on Game Boy, they had to play through the game before they could play on Game Boy Color. This worked the other way around, also.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Color/text/Croc (USA, Europe).txt",
    "content": "All is not well in Croc's world.  His friends, the Gobbos, have been captured by the evil Baron Dante.  It is your mission in this 3D platformer to search through 42 different levels to save all of your friends before it's too late.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Color/text/Croc 2 (USA, Europe).txt",
    "content": "Croc is on a quest to find his parents. However, Baron Dante has kidnapped the Gobbos kings. Croc then turns his attention to rescue all of the Gobbos kings.\n\nYou travel across 48 levels in this free roaming 3D game. You have to beat all the levels in a village (except the secret level) to move on to the next one. In each village, (except the 4th village) are 5 regular levels, 2 bosses, and 1 secret level. Regular levels are levels where you just beat them and get certain items in them.\n\nBosses are levels where you go through one section then fight a monster at the end. Secret levels are levels where you collect the jigsaw piece. Once you collect the jigsaw piece in all 4 secret levels and defeat Baron Dante, Swap Meet Pete will take you to the lost levels.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Color/text/Crystalis (USA).txt",
    "content": "October 1st, 1997 is known as END DAY. A great war encircles the globe and brings about an end to civilization. The surviving humans concluded that they could never repeat their mistakes and build a great tower in the sky to watch over the world and act accordingly to combat \"evil\". One hundred years have passed since then and a hidden cryogenic chamber in the mountains springs to life...\n\nCrystalis is a top-down action RPG. Starting from the cryogenic chamber, the player takes the role of a mysterious hero who must uncover the mystery of the tower. The character may equip weapons, armor, shields and globe/bracelets on his body and a single item from his inventory for use in the field. To aid in the hero's goal. he will meet up with the four wise people and learn their magic, while also obtaining the four elemental swords which will help him progress. Players gain experience and gold from defeating monsters. The experience is used to gain levels and improve statistics, however a minimum level is required before one can do damage to specific bosses. Gold is used to purchase items in shops.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Color/text/Dexter's Laboratory - Robot Rampage (USA, Europe).txt",
    "content": "Your laboratory has been filled up with evil robots. It's up to you, as Dexter, to make your way through different levels, picking up the necessary tools to rid your lab of the cybernetic menace.\n\nUse laser pistols and other futuristic weapons to help dexter's cause, while searching for marked doors that contain either a new weapon or one of the items needed to complete the level.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Color/text/Donald Duck - Quack Attack (Europe) (En,Fr,De,Es,It).txt",
    "content": "You play as Donald in this 3D platform action game. Donald's girlfriend, Daisy is a reporter for a television station in Duckberg. While doing a story on the secret temple of the terrible magician Merlock, Daisy is kidnapped. Now, it is up to Donald to get her back. Along the way he will have help from his nephews, Huey, Dewey, and Louie, and the inventor Gyro Gearloose. He will also have competition from Gladstone Gander, who is also trying to save Daisy.  \n \nGame play alternates between side-scrolling running and jumping and 3D running and jumping. The side-scrolling levels play a lot like the Super Mario Bros. games. The 3D levels are more akin to the Crash Bandicoot series of games. All in all, there are 20 levels spread out through various areas.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Color/text/Donkey Kong Country (USA, Europe) (En,Fr,De,Es,It).txt",
    "content": "King K. Rool has stolen Donkey Kong's banana stash, and Donkey Kong needs your help to get them back. In search of K. Rool, the Kremling horde impedes your progress. Kremlings, crocodile-like creatures, include Kritters (they succumb to a simple jump on the head), Krushas (they are virtually indestructible), and others. There are also other enemies that block your path, such as beavers, snakes, vultures. Leading them are dastardly bosses, including Very Gnawty, Necky, Bumble B, and Dumb Drum, and they all bar the way with their own special blend of villainy.\n\nDonkey Kong is joined by Diddy Kong: these two primates differ significantly. For example, Donkey Kong is generally stronger; he can destroy most enemies with a single jump and can lift barrels straight over his head to throw them farther. On the other hand, Diddy is faster and not as strong as Donkey; he can run really fast and do cartwheels. Diddy carries barrels in front of him, creating a shield against frontal attacks.\n\nThe game is split into different worlds, which are split into different levels. Each level contains bonus areas, where one can collect bananas, medallions, and lives. At the end of each world is a boss, which is usually a larger version of a minor enemy.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Color/text/Dragon Ball Z - Legendary Super Warriors (USA).txt",
    "content": "Dragon Ball Z: Legendary Super Warriors is a mixture of a card game and a turn-based fighting game for the Game Boy Color. The game is played with original in-game cards for attacks, techniques and support items and initially has only two modes trade and story. Legendary Super Warriors’ story spans from the Saiyan saga to the end of the Buu Saga. Once beaten, a battle mode is unlocked, allowing players to square off with random enemies. Once the game is beaten, any character is usable in any battle, such as Frieza vs. Cell.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Color/text/Dragon Warrior I & II (USA) (SGB Enhanced) (GB Compatible).txt",
    "content": "One of the great traditions in mythology is the story of the lone adventurer conquering evil in the face of seemingly insurmountable odds. The first installment in the Dragon Warrior series throws you into the fray with little more than a horned helmet, the clothes on your back and the generosity of Alefgard's citizens. As you move from town to town, fighting monsters and collecting gold, the details of your mission to defeat the Dragonlord will begin to unfold. \n \nDragon Warrior II \nThe second quest takes place many years after the defeat of the Dragonlord. An era of peace and tranquility has been broken by the monstrous armies of Hargon, who invade Moonbrook Castel to assassinate the King. As the Prince of Lorasia, you'll need to travel the countryside in search of like-minded adventurers then set off as a party to stop Hargon from resurrecting an evil entity.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Color/text/Dragon Warrior III (USA).txt",
    "content": "Your father, the brave Ortega, is dead. He set off to destroy the Demon Lord Baramos but fell in glorious battle. Unless stopped, Baramos will unleash a torrent of evil that will destroy the world. You must stop Baramos and discover the legend of Dragon Warrior! Your journey starts on Aliahan. Only you decide where it ends...\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Color/text/Dragon Warrior Monsters (USA, Europe) (SGB Enhanced) (GB Compatible).txt",
    "content": "In Dragon Warrior Monsters, enter Terry's Wonderland, a magical place of kings, monsters and magic spells.  Make monsters your allies to fight through the dangers that lie ahead in the long quest.  Find your kidnapped sister and become the most powerful monster master in the world! \n \nEach monster has unique special skills to use in battle.  Train and treat them well, and you?ll be victorious!  Over 40,000 different combinations - can you breed the rarest and most powerful monsters? \n \n* Over 200 cute & cool monsters to collect, tame, and train. \n* Breed your trained monsters to make more powerful monsters, each receiving special skills from their parent monsters. \n* Play solo, or use the Game Link cable to link to Game Boy game systems and battle and breed with your friends? monsters. \n* A spin off of Japan?s best selling RPG game, Enix?s Dragon Quest.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Color/text/Dragon Warrior Monsters 2 - Cobi's Journey (USA) (SGB Enhanced) (GB Compatible).txt",
    "content": "Like the original Dragon Warrior Monsters for the Game Boy Color, Dragon Warrior Monsters 2: Cobi's Journey combines themes and characters from Enix' long-running Dragon Warriors series with aspects of gameplay established in the amazingly popular Pokmon handheld games. Player take the role of Cobi as he embarks on a new adventure of monster collecting, training, and combat. A concurrently released companion game, Dragon Warrior Monsters 2: Tara's Adventure, follows the similar adventures of Cobi's sister.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Color/text/Dragon Warrior Monsters 2 - Tara's Adventure (USA) (SGB Enhanced) (GB Compatible).txt",
    "content": "Like the original Dragon Warrior Monsters for the Game Boy Color, Dragon Warrior Monsters 2: Tara's Adventure combines themes and characters from Enix' long-running Dragon Warrior series with aspects of gameplay established in the amazingly popular Pokmon handheld games. Players take on the role of Tara as she embarks on a new adventure of monster collecting, training, and combat. A concurrently released companion game, Dragon Warrior Monsters 2: Cobi's Journey, follows the similar adventures of Tara's brother.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Color/text/Driver - You Are the Wheelman (USA) (En,Fr,De,Es,It).txt",
    "content": "In Driver, the driving (pun intended) force of the world is crime. The main character, an ex-race car driver, takes on the role of an undercover cop. It seems your superior officer has decided to put your talents to the test. He orders you to infiltrate the local mob group, and to help bring it down from the inside. As a result, the game takes place from the perspective of a low-level gang member. The action speeds into a number of different cities, ranging from San Francisco to Miami. It is on the streets that the main part of the game will take place. \n\nBasically, Driver is broken into a number of mini-missions. In total, over 30 different challenges await the persistent gamer. The missions are divided between the various locales of the game. The different assignments will each require a special tactic. As an example, consider the mission in which the objective is to destroy an enemy getaway vehicle. In such a situation, the primary goal is to keep an eye on the target and ram it into submission. If the orders are to pick up a gang member within a time limit, speed and secrecy become of utmost importance. If the cops see the exchange, the badges will be on you like glue. Each situation will require a measure of thought and intelligence. \n\nDriver also offers a couple of extra side games. The survival mode sets the player against a horde of maniacal police officers. The crazed cops will do anything to smash you into submission. The result is a race through the city with a bunch of cops on your tail. It is a test of endurance. In the getaway mode, the idea is to flee for safety from the encroaching stiffs. The game places you in an area of the city, with a cop on your tail. Your only goal is to avoid the authorities. Be careful, though, as the cops may set up a roadblock to impede your progress.\n\nDriver is designed with the Game Boy Color in mind. It offers a password save system to keep your data under wraps.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Color/text/Game & Watch Gallery 2 (USA, Europe) (SGB Enhanced) (GB Compatible).txt",
    "content": "Game & Watch Gallery 2 features 5 original Game & Watch games from the 1980's plus 5 re-mixed versions in full color featuring a cast of characters from the Mario World (incl. Mario, Peach, Yoshi, Luigi and more). The game included are:\n\nParachute: Catch the falling characters to gain points.\n\nHelmet: Run around the arena while trying to avoid falling objects.\n\nChef: Catch falling pieces of food and cook them to feed to customers.\n\nVermin: Move around the arena and whack the characters to climb out of the holes in the ground.\n\nDonkey Kong: The original Donkey Kong game, where as Mario you must stop Donkey Kong and save the Princess by collecting keys and dodging falling obstacles thrown by Donkey Kong.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Color/text/Game & Watch Gallery 3 (USA, Europe) (SGB Enhanced) (GB Compatible).txt",
    "content": "This is the third installment of software that lets you play the old-fashioned \"Game & Watch\". This title includes games such as \"Donkey Kong JR. There is also an arrangement mode.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Color/text/Grandia - Parallel Trippers (Japan) (Translated).txt",
    "content": "This is a Game Boy spin-off from the original Grandia game on Saturn and Playstation.\n\nIt tells the tale of three school children named Yuuhi, Mizuki and Shirou who get sucked into the world of Grandia. In the course of the game you meet the cast of the original Grandia game like Justin, Feena, Sue etc.\n\nThough the characters from Grandia appear in it, it is not a continuation of the Grandia storyline.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Color/text/Gremlins - Unleashed (Europe) (En,Fr,De,Es,It,Pt).txt",
    "content": "In this game, the film's hero, Gizmo, attempts to find the gremlins and capture them all. In the meantime, the sinister Stripe and his army of 30 different gremlins decide to invade the town of Kingston Falls and try to transform Gizmo into a gremlin. The game can be played as either character. Gremlins: Unleashed! features 10 levels based in locations featured in the film, including Billy's house, the school laboratory, the department store, and the movie theater.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Color/text/Hammerin' Harry (Japan) (SGB Enhanced) (GB Compatible) (Translated).txt",
    "content": "Daiku no Gen-san: Kachikachi no Tonkachi ga Kachi is an action/platforming game developed by Biox and published by Gaps for the Game Boy Color platform. Daiku no Gen-san: Kachikachi no Tonkachi ga Kachi was never released outside of Japan.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Color/text/Hamtaro - Ham-Hams Unite! (USA).txt",
    "content": "It's Hamtaro time! Boss has a big secret in store for the Ham-Hams, but he's gotta find them first! The guy's got too much on his hands already, so he sends the loveable Carrot-headed Hamtaro out on the search for the Ham-Hams. The thing is... Hamtaro's gotta learn some hip Ham-chat if he wants everyone to listen to him. So as he ventures on in the game, he becomes the street-wise hipster, learning Ham-chat and getting into tons of adventures... and trouble! \n\nMake friends for life! Go out and have an adventure! Remember... get everyone back to the clubhouse to see what Boss's big secret is...\n\nThis game is based on the anime Tottoko Hamtaro, created by Ritsuko Kawai.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Color/text/Hands of Time (USA, Europe) (En,Fr,De,Es,It,Nl).txt",
    "content": "As the young Sebastian, gamers take the role of the son of a brilliant scientist who has discovered a means to travel through time. Time travel has already taken place in this reality, however, and Sebatian's first mission is to use his father's discovery to return to the past and destroy an earlier time machine, which upset the balance of power in a past war and led to dangerous realities in their present. Just as Sebastian enters the machine to travel back to the past, he watches helplessly as his father is kidnapped and taken prisoner.\n\nYou play as Sebastian, the soldier sent back in time to rectify the present. Hands of Time features an overhead view and six levels, each of which is comprised of a small overworld with various objectives. Much of the game requires completing item-swapping sequences in order to progress, while avoiding enemy soldiers along the way. You have a small pistol with infinite ammo. You can collect better weapons, though their ammo is limited. There are no difficulty levels and no multiplayer; you can jump to any of the six levels by use of a password system.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Color/text/Harry Potter and the Chamber of Secrets (USA, Europe) (En,Fr,De,Es,It,Nl,Pt,Sv,Da).txt",
    "content": "The second Harry Potter role-playing game follows directly on from the first, with mostly the same game mechanics, controls and even some of the graphics.\n\nTo unravel the mystery of the Chamber of Secrets, young wizard Harry Potter must fight turn-based battles and solve quests. In this game, he is not alone, as a party system was added: his friends Ron and Hermione (and some other characters) will join Harry in the battles. While Harry (as in the previous game) can use card combinations of Famous Witches and Wizards cards to produce special attacks and effects, his friends have other means: Ron can unleash his rat Scabbers in special rat attacks and Hermione, being the know-it-all that she is, influences combat through \"lecture attacks\", using helpful hints like \"Be Careful!\" (which increases defense, for example).\n\nGone is the potion-mixing from the first game, but aside from the party system, several other features were added: the Informous spell divulges information about strengths and weaknesses of enemies, which is stored and can be accessed later. To aid in finding one's way around Hogwarts, floor maps were added.\n\nLike the first game, this one also includes several mini-games, including Quidditch, that once found in the game can be accessed from the main menu. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Color/text/Harry Potter and the Sorcerer's Stone (USA, Europe) (En,Fr,De,Es,It,Nl,Pt,Sv,No,Da,Fi).txt",
    "content": "In the first Harry Potter game for the Game Boy Color, the story of Harry's first year at Hogwarts School of Witchcraft and Wizardry is told in the form of a traditional role-playing game.\n\nPlaying as Harry, one advances through the plot of the book and the movie by fulfilling quests, battling monsters and gaining experience and levels.\n\nCombat is turn-based, with Harry being able to use a variety of spells against various critters and other enemies. In addition, card combinations of Famous Witches and Wizards Collector's Cards can be used to produce powerful magical effects. These cards can be found all over the freely explorable Hogwarts. Potions that refill stamina and magic points can be found, bought or mixed by Harry himself, but only with the right ingredients.\n\nAs in other Potter games, Harry also competes for house points for Gryffindor, hoping to win the House Cup in the end.\n\nThe game features several mini-games that, once found in the main game, can also be accessed from the main menu.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Color/text/Harvest Moon 2 GBC (USA) (SGB Enhanced) (GB Compatible).txt",
    "content": "Rebuild the farm of your grandfather and start raising cows, chickens and sheep. Keep them happy and they?ll make you rich! Discover the fantastic Harvest Moon world with cool friends ready to help you succeed in your mission. \n \n- The awaited Harvest Moon sequel for GBC with even more fun! \n- Choice of playing a boy or girl farmer \n- Hours and hours of gameplay \n- Hidden arcade games include Mole Bash and Cherry Cup Horse Race \n- Special Game Link cable options allow trading between Harvest Moon 2 and Legend of the River King 2\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Color/text/Harvest Moon 3 GBC (USA).txt",
    "content": "After much acclaim for your past farming accomplishments (as part of the previous Harvest Moon titles on GBC), you are asked by a young girl to help her get her farm up and running. The farm, situated on an island, needs plenty of work, so you need all your skills to get things working correctly.\n\nYour many tasks range from tending to the farm animals, keeping an eye on the budget while purchasing goods (food, water, mechanical items, etc) at the local stores, and so forth. And although the main aim is to build and maintain the farm, there are plenty of opportunities to take care of yourself (go to the movies, buy pets, find a girlfriend/boyfriend).\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Color/text/Harvest Moon GBC (USA) (SGB Enhanced) (GB Compatible).txt",
    "content": "Harvest Moon is a farming simulator/RPG where you must build and maintain a farm during the course of a year, while taking care of your budget and yourself. \n\nYou have the ability to buy, sell and take care of farm animals, crops and any other supplies that you may have. You can trade with many of the town's people, and fellow farmers. If you link up a friend's Game Boy, you can trade items between players as well.\n\nThe local stores supply plenty of items to help you in your quest, at a cost, of course. And if you have the time, you can go about the town in search of a little fun away from work.\n\nFrom an overhead perspective, you can explore your farming area, the local town and the Harvest Sprite tunnels, full of strange and wonderful creatures that can help or destroy your quest. There are four seasons (Summer, Autumn, Winter, Spring) and each brings with it new challenges such as keeping arm animals warm during the colder seasons, and supplying water to the crops during the warmer periods.\n\nThe GBC version includes all new characters and background sprites in full color, but is also backwards compatible with the original Game Boy version.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Color/text/John Romero's Daikatana (Europe) (En,Fr,It).txt",
    "content": "In 2455 AD, Kage Mishima used the magical powers of Daikatana, the most powerful sword ever forged, to alter time and establish himself as supreme dictator. The player assumes the role of Hiro Miyamoto, a student in the art of Japanese war and one of the few people on Earth who knows what happened. Now it is Hiro's duty to use the Daikatana's power and travel back in time to correct history.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Color/text/Jungle Book, The - Mowgli's Wild Adventure (USA) (En,Fr,De,Es,It).txt",
    "content": "Mowgli's Wild Adventure is a typical 2D platform game for the Game Boy Color. You play as the young Mowgli who can walk, jump, run, climb and crawl. Levels come in various jungle related themes including a ruined temple. Mowgli learns a new special move in each level. He can throw fruit at hostile animals to defend himself. Furthermore Mowgli has to interact with his environment by pulling switches to open doors or douse fire with water. You can collect diamonds for extra lives and apples for health. In each boss level you have to collect seven icons in a race to win the stage.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Color/text/Kirby - Tilt 'n' Tumble (USA).txt",
    "content": "King Dedede is at it again, this time taking all of the stars from the sky. Thankfully for Dreamland, Kirby has returned to stop the evil King once more. But this time, he will need your help more then ever before.\n\nKirby has been turned into a ball, and it is up to you to tilt and turn the game table so that Kirby can dodge enemies and get the the end goal. To do this, you must actually tilt the Game Boy Color/Advance console, thanks to the inbuilt motion sensor in the cartridge. Every move you make determines where the little pink ball goes.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Color/text/Legend of Zelda, The - Link's Awakening DX (USA, Europe) (Rev 2) (SGB Enhanced) (GB Compatible).txt",
    "content": "Link's latest challenge is set on the mysterious Koholint, a place where dreams and reality collide. As a castaway, Link must find a way to escape from the island and return to his beloved homeland of Hyrule. This will not be an easy task.rnrnThe island's inhabitants have no knowledge of the outside world. One creature, a talking owl, may know the solution to Link's dilemma. Link must first tackle eight dungeons full of treacherous monsters and tricky traps. His goal: find the eight instruments of the Sirens and awaken the omnipotent Wind Fish which rules the island.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Color/text/Legend of Zelda, The - Oracle of Ages (USA, Australia).txt",
    "content": "Using the legendary power of the Triforce, Link travels to a distant land known as Labrynna where Veran, the Sorceress of Shadows, has developed a scheme to alter Labrynna's past. Through trickery and deceit, Veran harnesses the power of Nayru, the Oracle of Ages, and travels 400 years into the past. Before the Sorceress of Shadows can complete her dark mission, Link must use the Harp of Ages to save the day.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Color/text/Legend of Zelda, The - Oracle of Seasons (USA, Australia).txt",
    "content": "The land of Holodrum is slowly withering. Onox, the General of Darkness, has imprisoned the Oracle of Seasons and is draining the very life out of the land. With the seasons in tumult and the forces of evil running rampant, the world looks for a hero... and finds Link. His quest won't be easy - he'll have to master the seasons themselves if he's to turn back the evil tide.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Color/text/Legend of the River King 2 (USA) (SGB Enhanced) (GB Compatible).txt",
    "content": "More fishing adventures on the Game Boy. This time, there are plenty more fish and other river creatures that you can catch and collect, including 60 types of fish, shellfish, plants and insects. Other animals living around the river can smell your catch and may attack you.\n\nA new element in the game is the ability to trade your fish, etc. with other players. Link up with another friend to trade your catch, either in Legend of the River King 2 or another Natsume title, Harvest Moon.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Color/text/Legend of the River King GBC (USA) (SGB Enhanced) (GB Compatible).txt",
    "content": "Your sister is ill and you must find the Guardian Fish to save her in LEGEND OF THE RIVER KING. Travel throughout the world and blaze trails to find the best fishing holes. Be careful though, because you might have to fight wild animals with your bare hands. You can catch fish with either bait or lures, each with relative strengths and weaknesses. After catching a small one, keep it stress-free in an aquarium and watch it grow. Hopefully, you will be able to find the Guardian Fish and save your sister in LEGEND OF THE RIVER KING.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Color/text/Lufia - The Legend Returns (USA).txt",
    "content": "The island of the Sinistrals, Doom Island, sank deep into the sea after the second Doom Island War. It was believed to be in an eternal sleep, but has once again begun silently beating, preparing to make its appearance in the sky for the third time. The evil Sinistrals have again been resurrected and released an unforseen terror on the land. A force has awaken witin you... a spiritual flow that draws you to a conflict that will save the world! The power of Maxim's legendary bloodline lives in you... The thread of destiny guides you through an adventurous journey looking for an unknown destination!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Color/text/Magi Nation (USA).txt",
    "content": "What would you do if you found yourself in a strange land, face-to-face with a mysterious presence and catapulted into an adventure to save an entire civilization? Well, find out! Explore a world of color and imagination that will challenge your every notion of reality. Experience the rush of dueling a Shadow Magi, with everything on the line. Find yourself going toe-to-toe with the awesome Timber Hyren, or the gargantuan Ormagon. Be the savior of an entire civilization. And find uses for jellybeans that you never thought possible.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Color/text/Mario Golf (USA).txt",
    "content": "Mario Golf on Game Boy Color isn't a straight port of the N64 game - it's a totally different game in its own right. It is a combination of a golf game and an RPG. As in an RPG, you choose your character at the beginning, with various strengths and weaknesses, and throughout the course of the game, your character gains experience points through winning matches or playing mini-games. Experience points can be distributed to various skills, such as putting, which makes it easier for you to do well. There are quite a few skills, and no two characters you can create will play in exactly the same way.\n\nAlthough the story mode is the main part of the game, there's quite a few other modes to keep you busy, like Tournament, Match Game, Stroke, Training, and the two-player mode via link cable. It comes with a dictionary of all the golf terms you'll need, and an extensive range of statistics on your player.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Color/text/Mario Tennis (USA).txt",
    "content": "Mario Tennis for the Game Boy Color is a much different experience than its N64 effort. In addition to the core gameplay found in the N64 version, the GBC version features an RPG-style world that allows you to work your way up through the ranks at the Royal Tennis Academy.\n\nThe main mode, Mario Tour, has you starting off as a Rookie with low stats. By completing training programs and defeating other students, you're able to gain experience points, which allow you to boost your tennis stats. When you're not playing tennis, you can spend time wandering the Academy grounds: talking to other students, or just taking in the sights and sounds.\n\nIn addition to the main game, there's also an exhibition mode (singles or doubles) for quick-play. And, if you get tired of playing the computer, the game supports the Game Link Cable for play against a friend.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Color/text/Mega Man Xtreme (USA, Europe) (GB Compatible).txt",
    "content": "Mega Man X hits the Gameboy Color! When an unknown hacker group breaks into a super system known as the Mother Computer, havoc breaks out all over the world! X and Zero are called in to find and destroy this hacker group and restore the Mother Computer before the world is thrust into chaos!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Color/text/Mega Man Xtreme 2 (USA, Europe).txt",
    "content": "A new threat is arising! Reploids are suddenly breaking down, and when their bodies are investigated, no traces of their \"souls\" can be found in their memory! No one knows how it is happening, and the Reploid world is in a panic. To make matters worse, several Mavericks from the past are rampaging again, only this time with a new, deadly \"DNA Soul\" chip installed in them, making them even deadlier than before! The only hope left is in the Maverick Hunters, and their greatest heroes, X and Zero, to get to the bottom of this incident.\n\nIt's up to you to guide X and Zero through this deadly new mission and find out who is behind this Soul Eraser terror!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Color/text/Metal Gear Solid (USA).txt",
    "content": "Metal Gear Solid (original Japanese name: Metal Gear: Ghost Babel) for GameBoy Color is not the same game as the popular Playstation/PC installment of the series. It is not set within the storyline of Metal Gear series, but instead tells an unrelated episode featuring the same hero - special agent Solid Snake. A secret government project, codenamed \"Babel\", attempts to revive the Metal Gear project - development of a highly destructive mech weapon. But an organization known as Gindran Liberation Front hijacked the Metal Gear prototype, without which any further development would be useless. Solid Snake is sent to infiltrate Outer Heaven, a location not entirely unfamiliar to him, and to retrieve the prototype.\n\nThe game is similar in style and gameplay to early Metal Gear games. It is viewed from top-down perspective, and its gameplay is mostly based on stealth. Snake has to sneak past the guards, using various tactics to distract them or to kill them silently. Weapons, gadgets, and moves are all similar to those used in the other Metal Gear Solid game. From time to time Snake will also encounter bosses whom he will have to defeat in order to proceed to the next area. Virtual Missions for Snake are also included in this release.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Color/text/Metal Walker (USA) (GB Compatible).txt",
    "content": "Metal Walker is a mechanical take on Pokmon, where the story takes place in the future on an island where a mysterious element called core has been discovered.  This \"core\" element was used to create a highly advanced race of robots called Metal Walkers that are used for both labor and protection for the people of the island.  One day, however, a gang of robots decide to rebel and end up killing a very prominent member of the island.  The player then takes control of the son, Tetsuo, with the help of Dr. Hawk and Tetsuo's Metal Walker in an attempt to hunt down the rebel robots and avenge his father's death.\n\nThe gameplay is very similar to Pokmon, where the player explores various areas of the island searching for clues called Data Packets and battling other Metal Walkers or wild Walkers called Metal Busters, but instead of capturing these walkers, the player instead destroys them.  Destroying these other Walkers results both in scrap metal and items called Capsules that can be used to upgrade or \"evolve\" Tetsuo's Walker into a more advanced form.  Additionally, the player can take the scrap metal to the Junk Shop where they can also be turned into capsules as well.  Additionally, capsules can not only contain power-ups, but traps as well that can be used in battles.\n\nThe battles are also different, whereas this one the attacks consists of rolling attacks that are angled off of the walls of arenas.  Additionally, if a player fights multiple opponents, all of the enemies will be present on the screen at one time and if they choose the right attack and angle, can result in multiple hits on multiple opponents.\n\nThere are also three types of Walkers: Land, Marine, and Sky where, just like in Pokmon, susceptible to the other (ex. Land walkers have advantages over Marine walkers but are vulnerable and weaker to Sky Walker attacks).  Base camps can also be built around various areas of the island and can be used for restoring the health of the players Walker.\n\nAs the player progresses farther into the game, they will encounter over 100 different Walkers, each with their own strengths and weaknesses as well as bosses that have to be defeated in order to access more areas of the island.  Players can also use the Link Cable to both battle their Metal Walkers or even exchange their base camps.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Color/text/Mickey's Racing Adventure (USA, Europe) (En,Fr,De,Es,It).txt",
    "content": "Everyone in Mickey's home town was getting prepared for a big carnival!  Professor Ludwig Von Drake had just finished all the carnival floats and was showing them to Mickey, Minnie, and all their friends.  However, spying from his creepy mansion on the outskirts of town was Big Bad Pete, furious at the group enjoying themselves.  Soon, he'd gathered his cronies and raced into town, swiping all the floats and decorations.  All that was left was a letter challenging them to a race to get their things back.\n\nMickey's Racing Adventure is an adventure game that centers around isometric racing challenges in various worlds.  It's possible to play as Mickey and his friends, as they explore various parts of Mickey's town, earning money for car upgrades and finding train tokens to travel to different worlds and challenge Pete and his henchmen to various races.  For a fee, Magica de Spell will also conjure up spells for you to use in races and get an edge on your opponents.\n\nThe first time you travel to a new world via the train, Casey Jr., you must play a special train mini-game.  Pete has muddled the tracks leading to the worlds, and you must guide Casey Jr. by shifting the track tiles around so that he doesn't hit any dead-ends.  There are also TNT detonators that you must set off by running into them before you can guide Casey Jr. to the exit.\n\nThe game also allows you to play as Pluto - while he can't race himself, he can sniff around town and dig for secrets.  He'll also find hidden tunnels which let you play a Digger-like mini-game where you must either collect all the bones underground, or defeat the other dogs in the area by dropping rocks on them.  After completing the objective, Pluto must then head to the exit.\n\nMickey's Racing Adventure also supports the Game Boy Color's Infra-Red feature by allowing you to send e-mail to your friends via the Infrared Communications port.  Once you unlock the Print Shop, you can also use the Game Boy Printer to print out assorted Disney stickers.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Color/text/Mickey's Speedway USA (USA, Europe) (En,Fr,De,Es).txt",
    "content": "The Weasels have kidnapped Mickey Mouse's dog!  All that was left was a ransom note with a picture of Pluto being hauled away in a van, and some scrawled writing taunting Mickey to try and catch them.  Not knowing what else to do, Mickey called up his friends, who all volunteered to help - even Big Bad Pete plans to race!  You'll have to speed across the country to catch up with the weasels and rescue Pluto!\n\nMickey's Speedway USA is an isometric racing game that uses the same engine as Mickey's Racing Adventure.  Players can choose from Mickey, Minnie, Donald, Daisy, Goofy or Pete (and some secret characters too) as they race around various famous cities and landmarks from the United States, including Los Angeles, the Grand Canyon, San Francisco, Montana, and Yellowstone, just to name a few.\n\nThe Adventure Mode of the game plays out Grand Prix style.  You must complete four races in each world, and at the end of each race, you're given points based on your placing.  The player with the most points at the end of the four races wins the trophy for that circuit.  There are assorted power-ups that help you as you race, including the Baseball Chucker (a projectile), the Magno Flyer (a homing missile), the Carbo Spritzer (a turbo), and the Paint Splotcher (an oil slick).\n\nThere is also a Time Trial mode which lets you race any track that you've previously unlocked - while you can use it to practice tracks, the goal is to race fast enough to beat the track's lap time and earn a gold star in every race.  Another mode is Professor Von Drake's 'Driving School'.  In this mode, you must complete specific tasks given to you, such as parking, reverse parking and slalom driving.  The faster you perform these tasks, the better ranking you will receive (again, with a gold star as your ultimate goal).  However, you will receive a time penalty if you hit a cone or wall, or miss your parking spot, so accuracy counts as well.\n\nMickey's Speedway USA supports many of the Game Boy Color's functions - you can play a two-player link cable race, transfer data from Mickey's Racing Adventure via the IR Link to unlock a secret, and connect to the Nintendo 64 version of Mickey's Speedway USA using the Transfer Pak.  As you progress through the game, you'll unlock many postcards and pictures for your album, which can be printed out via the Game Boy Printer.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Color/text/Mission - Impossible (USA) (En,Fr,Es).txt",
    "content": "Tie-in of Brian De Palma's popular movie \"Mission: Impossible\", a side-scrolling action/adventure. Playing the secret agent Ethan Hunt, the player has to fight international terrorists. Assisted by his IMF team, he sneaks into enemy bases, blows up ammunition depots, retrieves stolen information and takes out the terrorists, using high-tech gadgets and weapons.\n\nThe game comes with an \"Agent Action Kit\", a sort of organizer that uses the cartridge's battery backed-up memory to store names and addresses and send messages. This feature is totally unrelated to the game itself.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Color/text/Mobile Golf (Japan) (Translated).txt",
    "content": "In 2001, Nintendo and Camelot released a Japan-only sequel for Mario Golf (GBC) called Mobile Golf. \n \nIt can be considered an expansion: the same game engine but with new courses, new golfers, new minigames and even an exclusive mini-golf mode that never appeared again in the series. It lacks a story mode, but all RPG elements (experience, leveling up, skill points...) for character building are still there. \n \nBut what it made it so special was its Mobile Adapter compatibility, a special link cable that allowed internet connection through a cellphone. This allowed for massive multiplayer tournaments to be held, where participants could get amazing prizes like special clubs for use in-game and even extra courses and characters that could be considered DLC somehow. \n \nThere is now a fan translation patch which also changes the way DLC is unlocked in-game, so you can unlock them (courses, characters, minigames and clubs) by playing the single-player modes.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Color/text/Monkey Puncher (Europe) (SGB Enhanced) (GB Compatible).txt",
    "content": "Monkey Puncher is a game where the goal is to train a monkey to fight in boxing matches in order to save your kidnapped sibling. You can choose to play as either a boy or a girl character; the one you do not pick is your sibling. \n\nShortly after starting the game you are given your first monkey, Freddy. You can train him in skipping, using a punchbag, doing sit-ups, running and even going shopping. There is also a sixth activity, called sparring. These activities work to improve his speed, power, strength, stamina, knowledge and (for the latter activity) all of these, although only by a small amount.\n\nIn all of the aforementioned apart from shopping, you train your monkey by getting him to copy your actions; your actions are controlled by the rhythmic pressing of the A button. After a while, your monkey should be able to imitate your actions with ease, eventually being able to start the activity without prompting. In regards to shopping, you can send him out to buy what you want from a selection of items, or just let him go out and buy what he likes. This is a good way of obtaining certain items that are otherwise unobtainable. The rarity of items and the accuracy of which items it brings home from your shopping list increases as its knowledge does. Sparring involves pitting your own monkey against a computer controlled one in order to raise every stat by a small amount. Finally, you can 'date' your monkeys, either with each other, with a friend's monkey or in the dating shop available within the game. This is a good way of obtaining monkeys with higher stats, depending on which monkeys you breed and with whom. \n\nDuring boxing matches, you do not have direct control over your monkey, but in between bouts you can do things such as refill its health, stamina, or both. You can also advise it on what strategy to use against its opponent. These matches are won by either a count or by KO'ing the opponent, however if time runs out before there is a clear winner, the winner is the monkey who is left with the most health at the end of the match.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Color/text/Monster Rancher Explorer (USA).txt",
    "content": "Monster Rancher Explorer is an updated port of Tecmo's 1987 NES game, Solomon's Key and features environments, characters and monsters from the Monster Rancher series of games. The game is a platformer with action elements. Each level requires a puzzle to be solved within a time limit, giving the successful player a key to unlock the next level. Bad monsters will attack on most levels, so in addition to moving blocks to get to the key on each level, a player needs to dispatch bad monsters before being killed by them. There are good monsters to meet, several hidden bonus levels, bonus items, and treasure to be found.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Color/text/Motocross Maniacs 2 (USA).txt",
    "content": "Motocross Maniacs 2 is the follow up to the Game Boy title Motocross Maniacs. Much like in the previous iteration of the game, the aim is to ride a dirt-bike through side-scrolling courses filled with loops, jumps, ramps and hills. There are many bonus items to help the player along the way, such as nitro boosts and super suspension.\n\nThe player has the option to play against a computer player or a friend (via Link Cable), as well as Time Trial or Championship.\n\nThere is also a level editor and room for three saved custom tracks made by the player.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Color/text/Mr. Driller (USA).txt",
    "content": "Mr Driller's world has been covered with mysterious blocks. Armed with only a mighty drill, you'll have to dig your way down to safety before his air supply runs out!\n\nMr Driller is a real-time puzzle game that relies solely on quick-thinking and a bit of planning.  Gameplay is a combination of Tetris and Boulder Dash: You have to drill down through multi-colored blocks to reach the bottom while avoiding the consequences of reckless drilling (blocks may fall on you and crush you).\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Color/text/Pocket Bomberman (USA, Europe) (SGB Enhanced) (GB Compatible).txt",
    "content": "Long, long ago, the sun was covered by a dark and heavy cloud. It was said this cloud was caused by a monster that had sealed the Sword of the Sun. Legends also says that to break the seal, a hero must collect five Power Stones that are guarded by monsters. Bomberman takes up the challenge as he is the last hero strong enough to defeat such monsters.\n\nThis is a side-scrolling platform game. In each world, you must clear four areas by killing any monsters within. To kill a monster, you drop a bomb. After a few seconds, the bomb explodes in a four-way blast. If the monster is within range of the blast, it is killed. After you clear these four areas, you must clear a fifth area by killing a boss to clear the world and collect its Power Stone.\n\nBe careful, though, because if Bomberman is touched by a monster, touches a dangerous item or is caught in the blast of his own bomb, you lose a life. After all lives are gone, you get the option to restart that last area or quit. In most areas, you can, though the placement of bombs, find items to increase your jumping, speed, blast radius, etc.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Color/text/Pokemon - Crystal Version (USA, Europe) (Rev 1).txt",
    "content": "Travel back to the world of Johto as the Gold and Silver series continues with brand-new features! Whether you're reading the fresh descriptions in your Pokdex, using the unique sort function to organize your Pokmon in new ways, watching the all-new battle animations, or discovering another ways to capture Suicune, you'll need all of your Pok-skills to master Pokmon Crystal on your Game Boy Color!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Color/text/Pokemon - Gold Version (USA, Europe) (SGB Enhanced) (GB Compatible).txt",
    "content": "Enter a whole new world, with new Pokmon to capture, train and battle!  Meet Professor Elm and get the all-new Pok Gear, including map, radio, cell phone and clock.  Set the clock then watch as day turns to night and events take place in real time - and be sure to keep an eye out for Pokmon that come out only at night! \n \n* Dozens of never-before-seen Pokmon!  Find new evolutions for some familiar Pokmon and discover whole new species.  Your Pokdex will even reveal genders of some Pokmon. \n* A whole new world!  Explore Johto, where there are new gym leaders to beat and eight new badges to earn. \n* Two new types!  Introducing Dark and Steel-type Pokmon. \n* Trade with Silver, Red, Blue, and Yellow versions to catch ?em all!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Color/text/Pokemon - Silver Version (USA, Europe) (SGB Enhanced) (GB Compatible).txt",
    "content": "Enter a whole new world, with new Pokmon to capture, train and battle! Meet Professor Elm and get the all-new Pok Gear, including map, radio, cell phone and clock. Set the clock then watch as day turns to night and events take place in real time-and be sure to keep an eye out for Pokmon that come out only at night!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Color/text/Pokemon Pinball (USA, Australia) (Rumble Version) (SGB Enhanced) (GB Compatible).txt",
    "content": "Discover a whole new way to collect Pokemon - by playing pinball!  Hit the targets with your Poke Ball to catch and evolve Pokemon.  The better you do, the more rare Pokemon you'll find!  Every Pokemon you catch is automatically recorded in your Pokedex - see if you catch all 150!  Some Pokemon appear only on the Red Field or only on the Blue Field, so you'll have to play them both to catch 'em all!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Color/text/Pokemon Puzzle Challenge (USA, Australia).txt",
    "content": "Pokmon Puzzle Challenge is based on Panel de Pon (Tetris Attack), only with characters from the Pokmon franchise. The characters in Pokmon Puzzle Challenge are based on those in the Gold and Silver games, while those in Pokmon Puzzle League - its Nintendo 64 equivalent - were based more on the anime characters. However, the game is also focused around beating the Johto leaders in a puzzle challenge in Johto region. The game play mode is divided into 1 Player, 2 Player, and Training.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Color/text/Pokemon Trading Card Game (USA, Australia) (SGB Enhanced) (GB Compatible).txt",
    "content": "The greatest Pokemon Trading Card Game players of all time - the Grand Masters - are looking for one player worthy of inheriting the four rare, Legendary Pokemon Cards!  Build new decks with the Auto Deck Machine, hone your skills on the Challenge Machine and test your ability in Challenge Hall.  Expand your card collection, duel your way through 8 Club Masters and earn the right to challenge the Grand Masters in the Pokemon Dome!  Shadowy figures, wise instructors and powerful opnnents await in the ultimate trading card game adventure.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Color/text/Pokemon Trading Card Game 2 - The Invasion of Team GR! (Japan) (Translated).txt",
    "content": "Pokmon Card GB2: Great Rocket-Dan Sanjo!, released March 28, 2001, is the Japanese-exclusive sequel to the original Pokmon Trading Card Game, also for the Game Boy Color. Like its predecessor, the game was developed by Hudson Soft and published by Nintendo, and was first announced in January 2001 by Japanese website WatchImpress. It includes new enhancements, such as the ability to choose the gender of the player character, a training mode to help new players, a Deck Diagnosis to rate the effectiveness of a player's deck, and a new group of antagonists known as Team Great Rocket. The game features all cards from the original game, along with new cards from the fourth set, Team Rocket, as well as cards originally exclusive to Japanese vending machines and the Pokmon Trading Card Game Instructional Video Intro Pack, bringing the total number of cards to 445.  \n \nLike the previous title, players must travel across the game world challenging non-player characters to simulated battles using rules adopted from the original tabletop version. All locations from the original are present, along with a new setting known as GR Island which contains its own Battle Masters for players to encounter. By defeating a total of 16 Battle Masters on the old and new islands, players may challenge the game's final boss, King Biruritchi. Though an English release in North America was deemed \"likely\" by website IGN in 2001, the game has not been made available outside Japan. Pokmon Card GB2 earned a 29 out of 40 score from Japanese Weekly Famitsu magazine.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Color/text/Project S-11 (USA).txt",
    "content": "When a vicious crew of aliens decides to hone in on Earth and do some damage, you're the planet's only hope for salvation. You'd better be in top form as you command a killer spacecraft out into orbit in hopes of rescuing humanity from unthinkable misery. Each of the eight stages in PROJECT S-11 poses unique challenges, and each setting is more harrowing than the last. Although you're going it alone in this one, there are four different types of power-ups hidden throughout the game to give the boost you'll need to survive and wipe out the terrifying extra-terrestrials. You'll benefit from a complete statistical readout that adorns the right side of your screen, keeping you abreast of all necessary information: your score, your ship's armor level, and the number of bombs you have stored up for combat. The game's fast-paced action looks excellent in full color, and the intensity of it will have you breaking a sweat before you're through the first level. Those aliens had better look out with you at the controls, Earth stands a fighting chance.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Color/text/R-Type DX (USA, Europe) (GB Compatible).txt",
    "content": "The World Government needs your help. A deep-space probe has uncovered the Bydo Empire's secret plans to mount an attack on Earth. A full-scale assault force would be detected by the Empire's long-range scanners, and any hope of surprise would be lost. Our only chance is for a single pilot in a lone R-Type fighter to penetrate the Bydo defense system and destroy the evil Empire before it can launch its attack. Tear through Bydo defenses as you blast enemies with your Fire Chain, Super Laser and Bubble Beam. Take the fight to a fevered pitch with two pulse-pounding rapid-fire modes on your Game Boy Color system.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Color/text/Rayman (USA) (En,Fr,De,Es,It,Nl).txt",
    "content": "When a villain known only as Mr. Dark appears, trouble brews in Rayman's world. Mr. Dark captures the Toons - source of light and Rayman's friends. With no more light, evil creatures begin to roam, making the world unsafe for everyone. Its up to you, as Rayman, to free your friends and put an end to Mr. Dark's dastardly schemes! \n \nRayman is side-scrolling platformer starring the titular Rayman, a big-nosed chap with no arms or legs. Rayman can jump and use his hair to hover for a short period of time. He can also attack by throwing his fists, or winding up his fists for a more powerful punch. He can occasionally find special power ups that grant him unlimited flying power, giving him the ability to navigate through tricky mazes. \n \nThe Game Boy Color version of Rayman remains true to the spirit of the original game, but makes some notable changes, particularly when compared to the original's bright, vibrant graphics.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Color/text/Rayman 2 (USA) (En,Fr,De,Es,It).txt",
    "content": "Rayman 2 (GBC) is an adaptation of Rayman 2: The Great Escape that was released for the Game Boy Color. Despite the fact that Rayman 2 was a big hit, this game is rarely known about, even to Rayman audiences. It was released under the title Rayman 2: Forever in Europe with slightly different box art. The title screen of this game says Rayman 2: The Great Escape even though the box and the audiences regard it as Rayman 2 (GBC).\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Color/text/Resident Evil Gaiden (USA).txt",
    "content": "It's believed that Umbrella, the creators of the deadly virus that wiped out Raccoon City, has developed a new Bio Organic Weapon on a cruise ship called the Starlight, which is on its way to Europe. One S.T.A.R.S. member, Leon S Kennedy (from Resident Evil 2) was sent out to destroy the weapon, but the team have been unable to contact him since he arrived at the ship.\n\nUsing a combination of top down side-scrolling action and 1st person shooter, it is your job to get aboard the liner, currently floating in the Atlantic Ocean, destroy the weapon and find Leon. Along the way, you'll come across plenty of deadly  undead enemies, similar to those found in the original Resident Evil series, while using a range of weapons and items found in the ship.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Color/text/Return of the Ninja (USA).txt",
    "content": "Return of the Ninja is a side-scrolling beat 'm up game set in Japan. \n\nOn a day when Tsukikage and Saiyuri return to their village, they see it on fire. The player takes the role of either of the two and has to stop the ones attacking the village and avenge their friends.\n\nThe character is controlled with the D-pad. The A and B-buttons are used to jump and attack. There's no fundamental difference in moves between the two characters, but they do feature different animations. Aside from enemies which need to be killed there's also environmental hazards such as fire which have to be avoided.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Color/text/Revelations - The Demon Slayer (USA) (SGB Enhanced) (GB Compatible).txt",
    "content": "The Last Bible series is set in a fantasy world patterned after the ancient Middle East. In this world, humans have learned to call upon the energy of the world, called Gaia. The hero, El, has studied Gaia, but on the day of his graduation, strange creatures begin to appear. Together with his companions, he sets out to defeat the Gaia Masters that are bringing monsters to their world.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Color/text/Shantae (USA).txt",
    "content": "The small fishing village of Scuttle Town is a quiet and peaceful place, thanks mainly to its protector, the self-appointed Shantae the genie.\n\nWhen lady-pirate Risky Boots receives information that a  treasure chest is found at the village, she quickly makes her way there for an invasion to take the cash. As Shantae, you must use the genies magical abilities, her hair whipping attacks and dance moves to stop the pirate and her gang from taking the treasure and leaving the town in ruins.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Color/text/Shin Megami Tensei Devil Children - Kuro no Sho (Japan) (SGB Enhanced) (GB Compatible) (Translated).txt",
    "content": "The dark world of Megami Tensei (Megaten), with its heavy demonology and complex religious and moral problems, becomes much more cute and friendly in \"Devil Children\". The Black Book edition tells the story of Kai Setsuna, a boy who studies in the fifth grade of Harajuku Elementray school in modern-day Japan. His younger brother was abducted by monsters. With the help of his sidekick Cool, a one-headed Cerberus demon, Kai have to stop the demonic invasion from another world.\n\nSimilar to Pokemon, you can \"collect\" demons, raise them, and make them fight for you. This gameplay feature also continues the tradition of Megami Tensei universe, in where demon summoning has always been an integral part of the games. This is basically \"Megami Tensei for kids\".\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Color/text/Super Mario Bros. Deluxe (USA, Europe) (Rev 2).txt",
    "content": "The Mushroom Kingdom has been invaded by the Koopa, a tribe of turtles who possess dark magic. Their king Bowser has transformed all its inhabitants into stones, bricks, and mushrooms; he has also captured Princess Toadstool. She is the only one who can break the evil spell.\nImprisoned in a castle deep in Bowser's new found kingdom, Mario, a humble plumber, hears of the tragedy and sets out to free her.\n\nRun, jump, and throw fireballs to defeat the evil Bowser and his minions.\n\nThe game features the original 1985 game, a challenge mode, and versus game option. Also included are records, an album, and a toy box.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Color/text/Super Robot Pinball (Japan) (Translated).txt",
    "content": "As many as 40 different types of robots, including Mazinger Z and Gundam, are active in the game. When enemies appear, summon allied robots and use powerful techniques such as special attacks and mental commands to defeat them.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Color/text/Survival Kids (USA) (SGB Enhanced) (GB Compatible).txt",
    "content": "When on a pleasure cruise for his tenth birthday, a young boy is swept castaway to a remote island by a fierce storm that destroys the entire ship.  With no family or friends, he must fend for himself on this strange, seemingly uninhabited island and ultimately find a way to return home.\n\nSurvival Kids is presented in an overhead action-RPG style similar to Link's Awakening.  Players must try to survive through each day by getting enough rest, eating food and drinking water regularly.  This can be risky, as certain foods such as mushrooms can have varying effects including paralysis and poison, while other foods can go rotten and make you sick if you eat it.\n\nThe game also features a unique \"merge\" system, which allows you to create a number of different items by combining two other items.  For example, combining bark and a stick would produce kindling, while using ivy with a bent stick could create a bow.  There are plenty of useless items that can be made in addition to the essentials, so it's up to the player to think as to what could be helpful in their quest to survive.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Color/text/Survival Kids 2 - Dasshutsu!! Futago-Jima! (Japan) (SGB Enhanced) (GB Compatible) (Translated).txt",
    "content": "2 brothers are seperated on Twin Islands and need to figure out how to escape the island alive. Survival skills are put to the test, as you hunt for food, make shelter and explore the great unknown islands.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Color/text/Tetris DX (World) (SGB Enhanced) (GB Compatible).txt",
    "content": "Tetris DX requires you to place different shaped blocks which fall from the top of the screen, along the bottom of the screen to make up a line which then disappears from the screen. Watch out though, if you cant fill the gaps and the blocks fill up to the top of the screen the game is over.\n\nTetris DX features 4 one-player modes and two-player mode using the Universal Game Link Cable.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Color/text/Toki Tori (USA, Europe) (En,Ja,Fr,De,Es).txt",
    "content": "Just hatched from its shell, Toki Tori finds that his fellow chicks have been kidnapped. Lucky for him that even at a young age, he has plenty of skills up his sleeve, so he sets out to find his family and why they were taken in the first place.\n\nA cross between a puzzle and an action title, you must use the skills available to you to advance through 60 levels, seperated into 4 worlds of 15 levels. Skills include building ladders to cross gaps that your jump can't make, warping to other areas of the level or building gaps for enemies to fall through.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Color/text/Tomb Raider (USA, Europe) (En,Fr,De,Es,It).txt",
    "content": "Deep in the jungles of Peru, hidden in a lost temple is the Nightmare Stone, an ancient and magical crystal. In the wrong hands it has the power to destroy the world! \n \nLara Croft must find the deadly crystal before anyone else, but first she must jump, climb, swim and blast her way through temples, tombs and treasure rooms, facing skeletons, giant snakes and evil spirits in her most action-packed adventure yet!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Color/text/Tomb Raider - Curse of the Sword (USA, Europe).txt",
    "content": "Released in conjunction with the LARA CROFT: Tomb Raider film starring Angelina Jolie, Curse of the Sword is one of the more advanced titles ever created for the Game Boy Color. While averting a museum robbery, Lara is wounded ever so slightly by what seems to be a cursed sword. Now, her worst fears are beginning to come true, as a bizarre cult based out of New Orleans is plotting to steal her soul. Help the lovely and talented Ms. Croft save herself as you control her through worldly adventures of all sorts. An equal blend of puzzle solving and action, the game boasts a unique control system that allows for maximum character response. You'll be collecting keys and artifacts throughout the experience, each of which will help you to unlock doors and secrets. Graced by perfect animation and epic gameplay, TOMB RAIDER: Curse of the Sword is a welcome addition to the long line of brilliant TOMB RAIDER games.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Color/text/Turok - Rage Wars (USA, Europe) (En,Fr,De,Es).txt",
    "content": "Turok: Rage Wars is an action game, in which the main character Turok has to travel through four worlds while fighting enemies with multiple weapons. Each world is made of various levels, some of which have persistent scrolling. Weapons can be upgraded or combined to achieve various effects. The scenario is about Turok trying to prevent dinosaurs and bionosaurs to reach Earth through dimensional portals.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Color/text/Turok 2 - Seeds of Evil (USA, Europe) (En,Fr,De,Es) (GB Compatible).txt",
    "content": "Turok 2: Seeds of Evil is an action-platform video game that features eight side-scrolling levels and four boss encounters. The player can use multiple weapons to defeat enemies, ranging from a pistol to a shotgun, a grenade launcher, and a bow and arrow. In some levels, the player must ride a Pterodactylus or a canoe while avoiding opponents. The game employs a password system to prevent the loss of progress. Although the game is set in the same world as its Nintendo 64 counterpart, it features a different storyline. The story follows protagonist Joshua Fireseed and his attempts to stop the Amaranthine Accordance villains from bringing a massive Dinosoid army from the Lost World to Earth.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Color/text/Turok 3 - Shadow of Oblivion (USA, Europe) (En,Fr,De,Es).txt",
    "content": "In Turok 2 when Primagen's Lightship was destroyed, the explosion created a shockwave through out the universe. This effect nearly ends the life of Oblivion, a 'thing' the drifts through space, consuming anything that ends up in its way. Also during this explosion, a new world was created. In this world lies the Turok family tree, and Oblivion knows that the only way the pain the lies within can be stopped, is to destroy the Turok line. \n\nThe third title in the Turok series adds two characters to play instead of one, new weapons (as well as some old favourites) and a highly detailed soundtracks with cut-scenes detailing the storyline as you go along.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Color/text/Wacky Races (USA) (En,Fr,Es).txt",
    "content": "For those who can remember the cartoon series, this will be a blast from the past. Choose from all your favourite characters including Peter Perfect, Penelope Pitstop and, of course, Dick Dastardly and Muttley, and wind your way through cartoon like environments in the familiar vehicles of each character. Simply get to the end of the race first to open up new tracks, and use weapons to pick off the rest of the cast, and aid your progress.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Color/text/Wario Land 3 (World) (En,Ja).txt",
    "content": "During a joyride in his biplane, the engine blows and Wario crashes into the woods. It's here where he finds a hidden cave with a magic Music box. Before he can say \"I hate Mario\", the box pulls him inside and into a room with a dark figure, who strikes a deal with him. Find all of the missing Music boxes and he can leave. And any treasure he finds he can keep. \n\nMuch like Wario Land 2, Wario can't die from any attacks by the enemy. However he can change form after certain attacks, which can both help and halt his progress in each level. New forms of Wario include Invisible Wario and Ball of Yarn Wario (an un-controllable ball of yarn, with Wario inside).\n\nAlso, basic attacks such as swimming and the butt stomp don't become available to Wario until after completing a certain amount of levels, meaning you have to go back to completed levels to access other areas full of loot.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Color/text/Wario Land II (USA, Europe) (SGB Enhanced) (GB Compatible).txt",
    "content": "Seeking revenge on Wario after he stole their treasure in Wario Land: Super Mario Land 3, special agents from the Black Sugar Gang of Kitchen Island sneak into Wario's newly built castle, steal back the treasure, and leave the castle and the surrounding area a mess. As Wario, you must clean the place up and take back what you now call your own.\n\nIn a change from the original Wario Land, Wario is now immortal, to a certain point. Instead of dying when hit by an enemy, Wario loses the coins he collected along his travels in each level. And he can also turn into other Warios. For example, if he is hit by a bee, Wario puffs up into a giant ball of air, and floats up to the top of the level. Only when hit by a sharp object will he return to normal. There are other types, like Fire Wario and Zombie Wario, and each can have its advantages, like getting to other areas otherwise unreachable, or they can halt your progress.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Color/text/Warlocked (USA).txt",
    "content": "In the perilous world of Warlocked, a ferocious war is raging between the Human forces of Queen Azarel and the Beast horde of Chief Zog. Players can control either side, each of them offers 30 missions. \n\nWarlocked brings real-time strategy gaming to the Boy Color set in a fantasy warfare scenario. The key to victory is a balanced mix of resource gathering, building, exploration and combat. Adding a magical twist to the straightforward action is the presence of wizards, each of whom has one powerful spell. While some wizards can convert enemy troops to your side, others can change them into chickens or skeletons. More than 20 kinds of wizards are hidden throughout the game.\n\nUsing a Game Link Cable, you can test your war skills against another player. Two-player battle maps are earned by progressing through the single-player game. Warlocked also enables you to build your own personal armies with resources that you have saved in your campaigns in single player mode, and then trade them with a friend using the infrared ports on the console.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Color/text/Wendy - Every Witch Way (USA, Europe).txt",
    "content": "While exploring her house's attic, the little witch Wendy discovers a treasure chest.  Upon opening it, magical stones are released from their prison, and head to a castle which is suspended in the sky. The power of the stones upsets gravity, and the castle comes crashing to the ground, right on top of Wendy's house!  It's up to Wendy to set things right again!\n\nWendy: Every Witch Way is a combination of a side-scrolling platformer and a puzzle game.  As Wendy, players explore the castle in search of the troublesome stones that have upset gravity.  Wendy has the ability to control gravity herself  by pressing up or down on the control pad while jumping, Wendy will cause gravity to reverse in that direction.  Most enemies and obstacles in the game world are also affected by the gravity switching  you'll need to manipulate gravity frequently to progress through the game's different puzzles.\n\nStars can be used to power up Wendy's magic.  For every star that she collects (to a maximum of five), her magic will increase.  Beginning with a small weak shot, you can power your magic up to a spread shot that fires in three directions.  The stars also act as Wendy's health meter  if you get hit, you'll lose a star, as well as some magical power.  Get hit when you have no stars left, and you'll lose a life.\n\nAt the end of every world, there is a short bonus stage with Wendy riding on her broomstick.  In these stages, you must attack enemies and collect stars as Wendy automatically flies to the next world.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo Game Boy Color/text/Yu-Gi-Oh! - Dark Duel Stories (USA).txt",
    "content": "Dark Duel Stories brings the Yu-Gi-Oh! card game to you via Gameboy Color.  Battle your way past opponents from the TV show and manga as well as your friends using the Link Cable.\n\nIn Dark Duel Stories, you must defeat your opponents to advance and eventually make it to the four Rulers of Ancient Egypt who have the Millennium pieces.  As you win battles, you will get new cards as well as card parts that can be used to construct more cards.\n\nSet up your deck with monsters, traps, and spells to help you defeat your opponents.  And don't forget to bring along some fusion monsters to help when you get into trouble, or just to help finish off your opponent.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/8 Eyes (USA).txt",
    "content": "8 Eyes chronicles the adventures of Orin, the falconer, who must visit 8 different houses in 8 different lands and defeat 8 different guardians in order to collect 8 different jewels called eyes. It is a side-scrolling action/adventure game where the lead character can attack with a sword of somewhat limited reach. However, that is not the most powerful tool at his disposal - Orin also has his trusty falcon that he can send around the room to attack enemies or trigger remote switches. In single-player mode, the player controls both the falconer and the falcon. However, the game also offers a cooperative mode where the first player controls Orin and the second player controls his falcon in a mode which offers greater flight capability.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Adventure Island (USA).txt",
    "content": "In the South Pacific, Master Higgins lives peacefully wearing only a grass skirt and a cap. That is until the Evil Witch Doctor decides to capture the Princess Leilani and hold her as his own. It's up to Master Higgins to gather throwing axes, fireballs and skateboards in order to aid his noble quest.\n\nThe game is a side scroller, Master Higgins moves across the screen from left to right and finds his power-ups in giant eggs. This includes a skateboard which results in a great speed enhancement - until Master Higgins gets hit and loses his power. If he is not on a skateboard a hit means instant death. Another game mechanic is starvation which gets indicated through a meter which steadily decreases. If it hits zero the hero dies and the only way to fill it up is by collecting food on the way. Bosses await him at the end of levels, all the way to the Evil Witch Doctor himself.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Adventure Island 3 (USA).txt",
    "content": "Your girlfriend is once again kidnapped by aliens, and you have to rescue her, forcing your way through various levels.\n\nThe gameplay and the design haven't much changed since Adventure Island II: Aliens in Paradise: there is a world map, you can choose items before starting a level, the levels themselves are quite short (unlike Adventure Island, where each large level contained several stages). You perform standard \"adventure island\" activities: ride various types of dinosaurs, throw boomerangs at snails, birds, snakes, and skulls, collect grapes and apples, jump over stones, and of course, ride your old trusty skateboard. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Adventure Island II (USA).txt",
    "content": "In Adventure Island II: Aliens in Paradise the player takes the role of Master Higgins who has to save his cavegirl from aliens which also want to dominate the Earth. The basic gameplay elements are the same as in its predecessor Adventure Island: Master Higgins walks through the levels while fighting against various enemies. One hit results in his untimely death unless he carries one of the various power ups, e.g. weapons or a skateboard which improves his speed. He also needs to collect food to fill up his steadily decreasing starvation bar - death awaits if it hits zero.\n\nA big addition are dinosaurs which serve as mount and offer different abilities, e.g. flying or shooting fireballs. Like all power ups these don't have to be used instantly but can be saved for later: before every level the player can choose the power ups he wants to bring with him. There are overall eight worlds with different themes which are represented by a overhead map. Sometimes there are different paths with other level and at the end of a world Master Higgins has to fight a boss. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Adventure Island IV (Japan) (Translated).txt",
    "content": "Master Higgins and his lover Tina were having a good time with their dinosaur friends on the peaceful Adventure Island. One day, suddenly a suspicious shadow appeared in the sky and kidnapped the dinosaur friends one after another. The animals of the island were brainwashed by the suspicious shadows, and the terrain of the island was completely changed. Master Higgins embarks on an adventure to rescue the kidnapped dinosaurs and restore the peace of the island. \n \nAdventure Island IV marks a notable departure from previous games in regards to the gameplay, ditching the linear arcade-style platforming in favor of a more open-ended, exploration-oriented game with light RPG elements, more closely resembling later games in the Monster World series. \n\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Adventures of Lolo (USA).txt",
    "content": "The lovely princess Lala was kidnapped by the Evil Demons of the Empire. You are Lolo, a round ball-like creature (just like the princess herself), and your mission is to sneak into the empire castle and to liberate the princess.\n\nAdventures of Lolo is a puzzle game, and each level is a castle room. The goal in each room is to collect all the hearts. It is not always easy, because some hearts are blocked by enemies who will shoot you when you cross their path horizontally or vertically (or both). Once you collect all the hearts, a treasure chest will open and activate all the creatures in the room, even those who were not hostile until now. You must quickly cross the room to the exit which is now available to go to the next room. The game contains 50 rooms in total.\n\nThe difficulty level increases with each room, and after a few levels there is an especially hard room with tougher enemies.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Adventures of Lolo 2 (USA).txt",
    "content": "Lolo and Lala are back in this sequel to the popular puzzle game Adventures of Lolo. On his return from the haunted castle, Big Demon has once again kidnapped Lala to challenge Lolo. Can he overcome the challenge of the mazes of the tower and the castle of Big Demon and free her? To succeed, Lolo will have to make his way through the mazes by collecting the jewels on each level. He'll also have to push tiles, collect heart boxes, temporarily turn enemies into eggs with his magic attacks and repel enemy attacks by moving the emerald blocks. It's up to you to help Lolo and Lala escape the clutches of Big Demon and defeat him!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Adventures of Lolo 3 (USA).txt",
    "content": "This time, Lolo has a red friend who will do for him some of the work. Unlike the two previous Lolo games, here you can wander around a world map and enter different locations in a non-linear fashion. However, some of the locations remain blocked until you find a key after completing another level. \n\nThe gameplay is very similar to the one of the two previous games. You have to collect all the hearts in each room. Enemies will prevent you from doing that, and others will appear once you have eaten all the hearts and are hurrying towards the exit. The puzzles involve mostly pushing things to prevent enemies from stopping you.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Adventures of Tom Sawyer (USA).txt",
    "content": "Tom Sawyer's famous literary exploits come to life in this adventure where you play Tom Sawyer (or Huck Finn in a 2 player game).  The adventure begins in Tom's dream while he sleeps in school.\n\nControl in this typical platform game consists of jumping and throwing rocks.  Avoid many obstacles such as rolling barrels; defeat persistent enemies such as pirates, mice, and even a giant octopus.  Help Tom navigate down the Mississippi River, through forests, haunted houses, and the sky above.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Alfred Chicken (USA).txt",
    "content": "Alfred the chicken must rescue his friends and his bird (pardon the pun) Floella from the Meka Chickens. The result is a platform game across differently-themed levels, which are finished by either climbing to the top of the level or killing a boss. Bonus games and secret rooms have been included, and progression sometimes requires solving positional puzzles.\n\nAlfred cannot fly, but he can use ramps to jump up and hit enemies with his bionic beak - this kills them, but any other contact will hurt Alfred. Watch out for spiked snails though. Other enemies include whales armed with guns, and stray bombs.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Arkanoid (USA).txt",
    "content": "The original Breakout concept involves controlling a bat at the bottom of the screen and using it to catch and direct a ball so as to hit all the bricks which are arranged at the top of the screen. It was unpopular for over a decade, before Taito revived it with some new ideas in this arcade game. \nThe game's plot redefines the bat as a Vaus spaceship, the ball as an energy bolt, and the bricks form a mysterious wall stopping the ship from progressing to safety. \nBy the mid-80s, power-ups were popular in most types of arcade games, and Arkanoid features them. They are caught by positioning the bat below them as they fall (meaning that you risk missing the ball if you go for them at the wrong time). The power-ups include lasers (which are mounted to each side of the ship and allow you to shoot out the blocks), a catching device (so as to be able to fire the ball off at a different angle every time you hit it) and one that slows the bolt down.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Arkista's Ring (USA).txt",
    "content": "An evil character named Shogun has stolen the Elven ring of Arkista, and in so doing has plunged the whole Elf kingdom into darkness. All the elves hope lies in one elf warrior named Christine.  Equipped in the beginning with only a bow, she proceeds to find the ring and restore her home back to normal.\n\nThis is a game that may be compared to The Legend of Zelda, though more linear in it's game play. The game is broken down into many stages, the goal of each being to simply find a way into the next stage.  Playing out in puzzle fashion, you will shoot all the enemies on screen, earn the hidden key, and find the correct exit.  Defeated enemies will randomly drop bonuses that can be collected; these items include health restore, increased armor, and weapon improvements.\n\nBeating the entire game requires successful progression through 125 stages.\n\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Astyanax (USA).txt",
    "content": "You are Astyanax, a sixteen year old boy that has the same dream night after night: A princess, calling for help. One afternoon, you are summoned to the world of Remnia by Cutie, a pixie, to save the realm's princess. You are the chosen one mentioned by their prophecies!\n\nYes, this is your typical fantasy story setting. You must save the realm from Blackhorn's evil horde! Along the way you'll find powerups that will make you stronger, and upgrade your weapon; and you can also unleash magical attacks that hit all enemies on the screen.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Balloon Fight (USA).txt",
    "content": "In Balloon Fight you need to fly around with the aid of two balloons and try to pop your opponents balloons before they pop yours. Landing on top of your opponents will cause their balloon to pop and they will use a parachute to fall to safety. You then need to destroy the fallen opponent by running into it before it can blow up a new balloon and rejoin the battle. Should both of your balloons get popped, you will fall into the water below and lose a life. There is also a second game variation called \"balloon trip\" where you need to collect as many balloons as possible while avoiding the ocean below and lightning which forms maze like walls.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Banana Prince (Germany) (Translated).txt",
    "content": "In the great Banana kingdom, the Banana nation possesses a great symbol of prosperity - a big banana. One day, the Prince is engaged in a conversation with the Dragonmaster, when the evil Paprika Dragon flies over, saying \"quack, quack!\", and... oh horror - steals the holy banana! The Dragonmaster is desperate. \"Fear not\", - says the Prince, - \"for I shall embark on the perilous journey and return our dearest possession to the folk\". And that is exactly what he does!\n\n\"Banana Prince\" in an action platformer. You travel between locations on the world map in a linear fashion, entering various platform levels - forests, caves, towers, etc. The Prince will find various weapons during his journey and use them to take care of the numerous enemies. You can also collect rings scattered everywhere and use them as currency in shops, where you can acquire various items.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Batman - Return of the Joker (USA).txt",
    "content": "The Joker lives again in SunSoft's sequel to their NES \noriginal. The Joker has somehow managed to escape from Arkham Asylum once again, and Batman must fight him across seven stages to restore peace to Gotham City.\n\nBatman carries a gauntlet shooting basic bullets by default. This can be upgraded with weapon powerups located in boxes throughout the level, giving access to homing and energy weapons. Every upgrade weapon can be charged up for a secondary attack, different for each weapon. Batman also has a slide useful against most enemies and some bosses. \n\nBoss fights introduce a system where life is measured by points instead of tick marks or bars. In these sections, Batman has significantly more health, and can take many more hits when rumbling with these stronger foes.\n\nLevels include a snowy landscape, moving train, military base, and sewers. Two levels require you to run and dodge explosions while vehicles keep pace in the background. Some levels also have Batman activate a jetpack and play through a short side-scrolling shooter. \n\nThis game is one of the few Batman games that was not based directly on a movie or television series. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Batman - The Video Game (USA).txt",
    "content": "The NES version of Batman: The Video Game is loosely based on the 1989 movie. It is a side-scrolling game, with a blue dressed Batman fighting enemies such as robots, jet-packed soldiers, ninjas and mutants.\n\nThe game consists in five levels somewhat related to the movie: Gotham City streets (with Killer Moth as the final boss), AXIS Chemical Factory (with Machine Intelligence System as boss), Underground Conduit (with Electrocutioner as boss), the Laboratory Ruins (the Dual-Container Alarm as boss) and Gotham's Cathedral (with Firebug as boss) where Batman finally faces the Joker. Before each level, a cutscene with scenes from the movie is displayed.\n\nBesides his ever trusting punches, Batman has plenty of weapons in his utility belt: the Batarang, the Spear Gun and the Dirk (a three direction weapon). Batman has an ammunition counter shared for the three weapons. The Batarang takes one pellet per shot, the Spear Gun two pellets and the Dirk, three. Batman also has an eight hit life bar, which can be replenished by collecting hearts dropped by killed enemies. The enemies will also drop pellet items (10 pellets per item) and bonus items (which will only sum up points).\n\nBatman can also perform a \"wall jump\": he'll grab a wall when jumping toward it, allowing him to escalate some narrow passages. Batman has three lives and unlimited continues. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Batman Returns (USA).txt",
    "content": "Like Konami's other adaptation of Batman Returns, the NES version is a side-scrolling beat 'em up. Next to brawling action, it also features two sections where the player controls the Batmobile and the Batskiboat seen in the movie.\n\nIn the beat 'em up sections, Batman has to defeat a large number of enemies (members of the Penguin's circus gang) to advance. Possible attacks include punches, sliding attacks, drop kicks and a powerful 360 cape slash attack which will drain Batman's health bar. Gadgets to be used include a limited number of batarangs and a grappling hook. The hook is useful for many things: it can take down flying enemies, pull Batman up to higher levels, lets him climb into open windows and more. Hidden in background items somewhere in the levels are power-ups, including hearts that refill the health bar and extra batarangs.\n\nEach of the six levels in the game concludes with a boss fight against one or more especially powerful enemies.\n\nThe Batmobile is armed with machine guns and bat discs, used to dispatch the enemy bikes and cars in the driving level. The Batskiboat section is similar, except that there are no enemies and the only goal is to collect coins for extra points.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Battle of Olympus, The (USA).txt",
    "content": "This game is much like Zelda II: The Adventure of Link turned into ancient Greece. You play as Orpheus, whose girlfriend, Helene, has been kidnapped by the demonic ruler of the netherworld called Hades. So begins the journey.\n\nJust like in Zelda II, there is a top-down map of Greece with towns and other locations to explore. Each of these has side-scrolling sections in which Orpheus fights his way through the minions of Hades. There are various items one must get to continue to the next location, including swords, shields and crystals. There are three fragments of love hidden around; Orpheus has to find them before he can enter Tartarus and fight Hades to save his beloved Helene.\n\nThe monsters of the game are also based on the Greek mythology and it is pretty entertaining to confront cyclopes, minotaurs and pegasuses.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Battletoads (USA).txt",
    "content": "The Dark Queen has attacked and kidnapped (toadnapped?) your best buddy.. To make matters worse, she nabbed the best looking girl around! So, what will you do? Cry? Whimper? Hide? Call the Starcops? NO! Cause you're a Battletoad! Battletoads don't cry, hide or call for help! And they certainly don't whimper! They get MAD then they get EVEN! So grab your blaster, hop on the Toadster and go get 'em!\n\nYou will control a battletoad through various levels. Some are side-scrolling beat-em-ups, other are vertical drops down a shaft, fighting as you go, others have you riding a rocket or surfboard, shooting or avoiding enemies. At the end of each area, there is a boss. In some areas, about half-way through, you may have a mini-boss.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Battletoads-Double Dragon (USA).txt",
    "content": "Earth is under fire by Colossus, a battleship the size of a city. Using powerful laser cannons, it has destroyed most of Earth's defence forces, while its many troops clean up the rest of the planet. All expect for 5 warriors.\n\nThe Battletoads, who are well aware of evil forces in the galaxy, join forces with Billy and Jimmy Lee from Double Dragon to defend Earth from the deadly ship and its troops. Using a range of special moves you must fight your way through the streets into the heart of the ship and destroy it. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Best of the Best - Championship Karate (USA).txt",
    "content": "Best of the Best Championship Karate is a realistic fighting game.\nAfter you choose your fighter for his parameters (strength, stamina and resistance), you can choose from 55 different moves.\nYou can now train your fighter at a gym before the real fights.\nTo master the game, one must alternate training and fights, as training improves stamina, strength and resistance.\nBe careful, loosing a fight reduces those parameters, so you have to be ready before getting on the ring ! \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Bio Miracle Baby Upa!! (Japan) (Translated).txt",
    "content": "In this game, you control a little baby! The baby crawls through imaginary worlds, made of candy, chocolate, toys, and other things a baby would dream of. It has to traverse those platform levels to defeat or avoid various enemies. The way the baby deals with the enemies is quite unusual: it inflates them. When inflated, the enemies lose control and begin to float, until they finally explode. The baby can use this to its advantage, riding the enemies while they are floating, kicking them to various directions, making them bounce off walls, using them as projectiles to hit other enemies, etc. Such strategies are necessary when dealing with the bosses you encounter. There are various items scattered through the levels, such as milk, which restores your health completely.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Bionic Commando (USA).txt",
    "content": "You play a soldier with a bionic arm that extends and contracts.  Your arm allows you to grab on to fixed objects to swing around and climb up levels -- no jumping allowed! The arm also grabs opponents and pull them towards you.\n\nYour mission is to infiltrate the enemy fortress, find your missing comrade, \"Super Joe\", and take out the evil leader, \"Generalissimo Kilt\", of the invading force that has been attacking your people for the last 2 years.\n\nAfter most levels the Bionic Commando will recieve items. Often these items are required to successfully complete other levels. Additionally, each level will require a different colored communicator in order to make sense of message traffic \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Blades of Steel (USA).txt",
    "content": "Based on the arcade game, Blades Of Steel is a hockey arcade action game (gameplay doesn't require the need to worry about statistics or provide the ability to customize teams.) Two players can play against each other, or one player against the computer. In one player mode there are single game and tournament mode options.  From time to time a fight may break out, which will provide a close up view of the two players. The player has control during the miniature fight game sequence, with the loser having to spend time in the penalty box.  The referee will break up fights that go on too long, and calls a few penalties such as icing. Several short clips of digitized voices are also featured.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Blaster Master (USA).txt",
    "content": "The classic story of a boy and his frog who runs away, becomes radioactive and jumps into a hole. More importantly however, it's the story about a boy who finds a fully functional battletank, SOFIA the 3rd, and goes adventuring around the underground. His mission... to find new weapons and add-on parts to the battletank which will in turn allow him to explore more areas until eventually he finds that freedom-loving mutant frog. And while he's down there he might as well defeat the Evil Plutonium Boss who wishes to threaten the Earth.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Bomberman (USA).txt",
    "content": "Bomberman was a robot in a bomb making factory who longed for his freedom. Rumors circulated that escaping to the surface would allow the robot to become human. Getting out would be the trick. Each room is inhabited by monsters that must be neutralized and the exit itself hidden underneath bricks.\n\nThe first of the Bomberman series. Bomberman is a single player game with a top down view and simplistic controls. In fact, in addition to movement, you only have a single ability: placing bombs. Each bomb explodes into a cross-shaped blast (4 directions) which can destroy either enemies or blocks. Power-ups may be found to increase the size of the blast, place additional bombs, increase the speed of the Bomberman or to walk through walls. Your goal on each level is to destroy all enemies and escape through the exit before the time limit is up.. Hitting the exit with a bomb blast releases more enemies which must also be destroyed.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Bomberman II (USA).txt",
    "content": "Our hero the white Bomberman (Bomberman Shiro) was walking down the street one day when he witnessed a robbery. It was black Bomberman (Bomberman Kuro) who was the robber. But Black Bomberman knocked White Bomberman to the ground, and than left the money so that he would be framed. Now Bomberman has been taken to jail and must fight his way out of this place using the only method he knows: explosive bombs.\n\nBomberman is the second Bomberman game in the series and plays similar to the first, only all gameplay has been reduced to a single screen. Your goal however remains the same on a smaller playing area. You are to destroy all enemies on a level and then find the exit to the next one. Bombing the exit is always a bad idea. The occasional power-up will increase your bomb blast, number of bombs on the screen at one time, player speed or give you the ability to walk through walls.\n\nIn addition to the single Player game, Bomberman II introduces a Versus Mode for 2 players and a Battle Mode for 3. Your goal in these is to destroy the other players while staying alive yourself. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Bonk's Adventure (USA).txt",
    "content": "Prehistoric platform game where you are in control of a baby and have to guide him through the levels avoiding all manner of strange nasties.\n\nThe game is very similar to every other platform game you have ever played, but it does have its own unique features such as the ability to climb vertical walls with your teeth and do a diving head butt from a jump. Power ups come in the form of lumps of meat and give extra speed and invulnerability in the later stages.\n\nIf you have ever played chuck rock then you know what to expect from this, a bog standard platform game with a prehistoric theme.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Break Time - The National Pool Tour (USA).txt",
    "content": "Time to \"rack 'em up\" in this late release from FCI. Choose one of four different games - Rotation, 8-ball, 9-ball, and 14-1 Rack Game - each based on professional pool rules. As if that wasn't enough, also included are Practice and Watch Modes and the \"National Pool Tour,\" where you must test your skills against five different pros in five different cities on your way to becoming the champion. Features digitized commentary and password save.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Bubble Bobble (USA).txt",
    "content": "Bubble Bobble is the story of two humans, Bub and Bob who wander into the mysterious cave of monsters and magically turn into dinosaurs. The only way to transform back is to reach the end of the cave. \nEach level being a single screen. The enemies must be cleared from a level to go to the next one. With one player controlling Bub and the other controlling Bob, the player can jump and collect items for points (such as fruit). The real power Bub and Bob have however is the ability to blow bubbles. These bubbles can be as platforms to leap on, or to trap enemies. Enemies trapped in a bubble must be popped by jumping into them, wherein they'll turn to fruit. Additionally, power-ups sometimes float by in bubbles. They include lightning, which flies out horizontally at enemies, and water, which drags the player and enemies straight down flowing over platforms. Complete any level will summon Baron Von Blubba, who will float around the screen trying to destroy the player.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Bubble Bobble Part 2 (USA).txt",
    "content": "Cubby and Rubby, descendants of Bub and Bob from the original Bubble Bobble, must rescue their friend Judy, who has been kidnapped by the evil Skull Brothers!\n\nThe game plays much like the original game: You use a dinosaur that spits bubbles at their enemies, trapping them until you touch the bubbles to make them pop and defeat the trapped enemies. But Cubby and Rubby have two skills their ancestors did not: by holding down the attack button, they can float upwards - and by releasing it, they'll fire several bubbles at once. They can also pick up special items that increase their points, speed and attack power. This game features 80 levels, all-new enemies, and bonus mini-games. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Bucky O'Hare (USA).txt",
    "content": "Captain Bucky O'Hare and his loyal crew; Blinky, Deadeye, Jenny and Willy, fight to save the Aniverse from the scourge of the Toad Armada. That is until Bucky's ship is attacked and his crew taken prisoner. Now a lone bunny on a mission, Bucky must fight to rescue his comrades from four hostile planets and then confront the Air Marshall on his flagship.\n\nBuck O'Hare is a side-scroller game based off of the cartoon of the same name. Bucky's main abilities are a jump and a blaster weapon, which he can charge up to make an even more powerful jump. Life and Weapon bars are displayed at the bottom of the screen. Bucky can obtain new weapons throughout the game from his crew members.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Bugs Bunny Birthday Blowout, The (USA).txt",
    "content": "The Bugs Bunny Birthday Blowout takes place as Bugs is invited to his 50th birthday. Because some of the other Warner Bros. toons weren't invited (including Wile E. Coyote), they decided to stop Bugs from going to this party.\n\nA Warner Bros licensed game, The Bugs Bunny Birthday Blowout is a 2d side-scrolling platform game. Bugs can jump over and on some enemies and try to collect as many carrots as possible. Bugs can use his hammer in order to smash enemies as well as to find some secrets.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Bugs Bunny Crazy Castle, The (USA).txt",
    "content": "This game is the first in the Crazy Castle series of Bugs Bunny games for the Game Boy. The object of this game is to move Bugs around the 80 levels of a castle and collect all of the carrots. Preventing Bugs' progress are the usual Warner Bros. characters, such as Daffy Duck, Yosemite Sam, and Sylvester. Bugs himself does not have any attack moves, but you can find various objects like anvils and boxing gloves to thwart your enemies.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Burai Fighter (USA).txt",
    "content": "The Burai, a race of evil super-brain aliens, have launched their plan to conquer the universe with their army of half-organic, half-robot creatures -- the robo-mutants.  It's up to you to stop them!  Strap on your jet pack, and get ready to become the ultimate Burai Fighter.\n\nBurai Fighter is an arcade shooter with two modes of play.  Most levels are side- and vertical-scrolling with pre-designed layouts.  A few levels are different, though: top-down perspective, with a randomized layout.  Either way, you'll be armed with a variety of weapons, including different guns (laser, missile, ring) and the powerful cobalt bomb which kills everything onscreen.\n\nBurai Fighter uses a slightly different gameplay mechanic when compared to other shooters. You can shoot in 8 directions, and when you hold down the fire button you keep shooting in that direction.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Captain America and the Avengers (USA).txt",
    "content": "The Mandarin has knocked out Iron Man and the Vision. This time it is personal.\n\nYou play as Captain America or Hawkeye. In the one player mode, you must fight your way through various thugs to rescue Iron Man and the Vision. This game is a side scroller, somewhat reminiscent of Bionic Commando in which you fight through a level then move to an overhead map to decide where to go next. In between levels, Wasp gives you hints.\n\nCaptain America's attacks are: when he is standing, shield throw; when he is crouching, punch and when he is jumping, kick. Also, if you push twice in a direction, Cap can do a powerful forward charge with his shield for a short distance.\n\nHawkeye's attacks are all arrow shots. He can shoot left, right, up, upper-left or upper-right.\n\nIf you complete an area with one character then complete it with the other character right away, you can press start to switch between Cap or Hawkeye. This has the advantage that Cap's forward charge is powerful and by grabbing poles, he can then jump to areas Hawkeye cannot.\n\nHawkeye can shoot enemies or targets too high for Cap to jump up and kick.\n\nIn the battle mode, this is a two player, one-on-one battle. Player one chooses from Captain America or Hawkeye (the good guys) and player two chooses from Wizard, Ultron or Crossbones (the bad guys).\n\nYou fight each other until one player has won three rounds.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Captain Tsubasa Vol. II - Super Striker (Japan) (Translated).txt",
    "content": "Captain Tsubasa Vol. II: Super Striker is the second game in the Captain Tsubasa series, role-playing soccer games based off the anime of the same name. Super Striker was released on July 20, 1990 in Japan for the Famicom, published and developed by Tecmo. The game allows players to make choices, and then watch how they play out in the field.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Castelian (USA).txt",
    "content": "Julius is his name. Demolition is his game. Eight colossal towers that almost crack the sky! You and Julius - the Anurian Hybrid - are charged with the task of collapsing the alien towers. As Julius climbs and leaps across the face of each tower, he is confronted by potent and very deadly adversaries. Roving Hexalons, scanning I-Balls, orbiting Spheroids and dissolving pathways threaten you at every turn. Their mere touch will cost you your life! Yet, somehow, you must reach the tower's top in order to detonate your powerful D-bombs! Your courage, skill and determination will guide you to the summit of Castelian. Fire your Carbonobombs, catch the high-speed elevator, and escape into the doorways of the unknown. The island's future depends upon you and Julius. Watch him, learn his secrets and demolition will become your game!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Castlevania (USA) (Rev 1).txt",
    "content": "Enter at your own risk! \n \nIf you think it's scary on the outside, wait till you see the basement. You're in for the longest night of your life. Ghosts, goblins, demons, wolves, bats  creatures lurking around every corner. As you descend deeper and deeper, they get thicker and thicker. Better stick close to the cavern floor - it's your only chance of finding a weapon or two. You're gonna need 'em. Because when you finally meet the Count, you know he'll be going for the jugular. So keep your courage up and your stake sharp. And say your prayers.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Castlevania II - Simon's Quest (USA).txt",
    "content": "Castlevania II: Simon's Quest is the second one of three Castlevania games released on the NES. After the vampire killer Simon Belmont destroyed Count Dracula in the original Castlevania (1987), an evil curse possessed him. The only way Simon can break the count's curse is to find five of Dracula's body parts (which are mysteriously strewn throughout Transylvania) and burn them. \n\nUnlike most of the other Castlevania games, Simon's Quest does not feature the traditional stages but allows you to freely roam the land of Transylvania in the style of Nintendo's Metroid. In several towns Simon can talk with NPC's and buy items in shops, adding a touch of role-playing. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Castlevania III - Dracula's Curse (USA).txt",
    "content": "Only you can stop Dracula from drawing first blood! \n \nLed by the immortal Count Dracula, the greatest army of evil ever assembled is poised to bury mankind in a Tomb of Terror. Destroying this legion of Swamp Dragons, Slasher Skeletons and Forces of the Undead will be the supreme challenge for the mightiest of warriors. \n \nYour place in history is 100 years before Simon Belmont's birth. Dracula is young at heart, and it will take more than a stake to penetrate his evil. Luckily, you command the role of Trevor - Simon's forefather and the origin of the Belmont Warlord Chromosones.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Chip 'n Dale - Rescue Rangers (USA).txt",
    "content": "The rescue rangers are tiny heroes. Consisting of two chipmunks, two mice and a fly... these heroes may be small but there's no case too big for them to take on. This game starts out simply enough, with a mission to rescue a small kitten, but soon escalates into a wider plot that pits the rescue rangers against their arch-nemesis, the feline kingpin, Fat Cat. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Chip 'n Dale - Rescue Rangers 2 (USA).txt",
    "content": "Following the first Rescue Rangers game, the Rangers' overcame the plot of their arch-nemesis Fatcat, and locked him up in the prison/pound. However, Fatcat's henchmen have sprung him from prison by blimp. Suddenly a television news anchor is reporting that there is a bomb threat in a local restaurant. The Rescue Rangers take it upon themselves to save the day only to learn that the whole bomb scare was a diversion in order to allow Fatcat to steal an artifact known as the Urn of the Pharoah. The team must track Fatcat and learn what he has in store for the stolen goods.\n\nLike the previous game, Chip & Dale's Rescue Rangers 2 is a side-scrolling action game where 2 players can play simultaneously as Chip & Dale, or 1 player can control either chipmunk. Our heroes must conquer a series of oversized (from their perspective) stages in order to thwart Fatcat's nefarious schemes. For example, the first stage has the chipmunks hopping across the tables, chairs, and counters of a restaurant, and on through the kitchen. Many enemies try to slow the player's progress. The chipmunks' offensive ability is to pick up any of the copious blocks that litter the landscape and toss it in any of 5 directions (sideways, up, and diagonal-up). Along the way, there are scattered RR blocks for the heroes to collect. The other members of the Rescue Rangers -- Monty, Gadget, and Zipper -- are on hand to lend help out at key junctures. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Chronicle of the Radia War (Japan) (Translated).txt",
    "content": "You wake up in the middle of a forest. Your head hurts. You don't remember anything: you don't know who you are, and you vaguely recall your name. A man approaches you and says his name is Darus. After realizing that you are suffering from a strange amnesia, Darus takes you to a nearby village and soon reveals to you that he is a sorcerer on a quest for revenge. You join forces, and soon become involved in a complex mystery of a kidnapped princess, the destruction of the world, and search for your own identity...\n\nRadia Senki is set in a semi-modern, semi-medieval environment, and introduces an unusual blend between action and strategic RPG. During the pre-set (not random) battles, your party and the enemies can freely move around the battle screen. You control the main character by attacking in real time, but you can pause at any time and give a command to other party members: attack a specified enemy, be offensive in general, use a healing or other technique, pretend to be dead, etc.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Clash at Demonhead (USA).txt",
    "content": "Professor Plum and his designs for the \"doomsday device\", DEAD END have been taken by the diabolical LAWBREAKERS - a sinister group dedicated to the destruction of mankind. It's only a matter of time before the device is assembled and the final countdown begins. \nAs Sergeant Billy \"Big Bang\" Blitz of the special Assault Brigade for Real Emergencies(S.A.B.R.E) your mission is to foil the LAWBREAKERS plan. To do this, you must find the shortest route to the summit of Demonhead mountain, where the professor is being held. Rescue the professor and save the world from total destruction. \nThis is a \"typical\" sidescroller with Role playing elements. the various enemies you meet with leave behind cash which can then be used to buy equipment. You'll need a diving suit to swim underwater, a jetpack to get to those hard to reach areas and don't forget the shop card that can be used to call the shop no matter where you are.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Cocoron (Japan) (Translated).txt",
    "content": "Tapir, an enigmatic blue wizard in spotted pajamas from the Dream World, sends the player on a quest to rescue princess Rua. But things quickly become more complicated and the player soon has to rescue other characters along the way, such as Santa Claus, the king of Trump castle and the blue fairy Cocoron. Tapir can manipulate people's dreams and this ability gives Cocoron an unique twist - the player can assemble his own character by combining one of the eight available heads to one of the eight available bodies (which both include several designs to choose from, resulting in literally hundreds of combinations! ). More than a mere physical appearance, each part also defines the character's attributes, such as his health, speed, how high he can jump and so forth.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Conquest of the Crystal Palace (USA).txt",
    "content": "Long ago the Crystal Palace was a thriving kingdom, however the evil war spirit Zaras appeared one day and brought destruction to the lands! The people of the Crystal Palace left as Zaras and his henchman took over, changing the kingdom into a maze of many dangers. You control Farron, the hero of the story who needs to enter the Crystal Palace and destroy the bad guys in order to restore peace. The game is an action platform game that scrolls both horizontally and vertically. On each of five stages you'll need to fight various enemies throughout the varied terrain, and finally defeat the boss at the end. You'll start with just a simple sword, but additional weapons can be found or bought in order to help you out. If you get into trouble, you can also call your dog Zap onto the screen; he'll jump around causing damage to the enemies giving you a chance to escape. You may also come across Kim's shops along your journey. Here you can buy various items, including additional  lives, replenish your health, more powerful weapons, and other useful items. To purchase items, you'll need money which can be collected after defeating enemies in battle.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Contra (USA).txt",
    "content": "In the year 2631, a small meteorite has fallen into the Galuga archipelago, located 20km northeast off the coast of New Zealand. Two years later, a terrorist group known as Red Falcon has seized the island in preparation for an alien invasion. The earth's marines sent two members of their elite Contra unit, Bill Rizer and Lance Bean, to neutralize the terrorists.\n\nAs either, Bill (player 1) or Lance (player 2), the player must get to the end of each stage, shooting everything in sight, while avoiding enemy fire themselves. The player can upgrade their standard-issue rifle into one of four different weapons, including the powerful spread shot.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Cowboy Kid (USA).txt",
    "content": "In this game you play the role of a young gunslinger who travels the land fighting baddies and playing mini games. The main game play involves you moving around the towns horizontally collecting gold by hitting chest whilst at the same time killing the bad guys before they kill you. There is also an RPG element to it where you have to visit people in the towns in order to proceed like at the very beginning where you need to first acquire a knife and you are then able to smash the chest and get money in order to buy a key which in turn allows you to enter the Sheriffs building. Once you are made sheriff you can go to various towns hunting down an outlaw for the bounty money. There are also mini-games such as the shooting range where you have to shoot the bad guy targets whilst avoiding shooting the innocent bystander targets.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Crackout (Europe).txt",
    "content": "In the year 30XX, the mankind has exhausted all the metal resources on the Earth, so they had to travel into space in order to find more. They find a planet high in minerals, and they name it Selim.\n\nBut soon they discover that there is someone watching, spying on them; it's some kind of alien race. These aliens find a hole in the humans' main computer and get inside it. The computer, programmed to self-destruct in case of a failure, starts its countdown.\n\nThere is only one way to avoid self-destruction, which is entering a 14 digit code into the machine; but these digits are hidden in the walls of the corridors in the complex. Your mission is to find these letters and avoid self-destruction, aboard the \"Red Warrior\", and using your only weapon, an energy ball.\n\nCrackout is an Arkanoid clone for the NES, but it's probably one of the most singular clones. You'll have to destroy all blocks but also the walls surrounding them, as the 14 letters are spread inside them, apart from killing the alien bosses here and there. In your way, you will find a bizarre mixture of enemies, from alien forms to parts of the body (eyes, lips, skulls...), who will make your game tougher by changing the direction of your ball; but also happier by dropping a sweet variety of power-ups such as the cherries (extra life), the clock (the enemies freeze), a rocket (to throw into the blocks), a fire device (the ball fires missiles), a parachute (slows the ball) an extra ball, or the weirdest of them all, the so-called Konami Man, who will take you to a secret parallel complex with different (and harder) levels.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Crisis Force (Japan) (Translated).txt",
    "content": "The year is 199x and a robot army has invaded Tokyo City. A boy and a girl (who remain unnamed) board their ships to fight off the threat.\n\nThis is a vertical scrolling shoot-em-up game viewed from overhead, where the player pilots a fighter ship through seven levels of intense shooting action. Each level hurls enemies and bullets at the player's ship, ending with a boss fight, except for one which instead is a boss rush level. The game allows for two players to play at the same time.\n\nThe player has a choice of two weapons; bullets or lasers. Weapons can be changed by picking up gems of different colors. Picking up the same color as you already have allows you to upgrade your current weapon a few times. The player's ship can change form and with it the way that the weapons work. This allows the player to pick the best weapon strategy for each situation. The player also has a limited amount of bombs that are useful to get out of tricky situations.\n\nWhen a weapon is upgraded it also acts as a shield so the ship can take an enemy bullet without dying. This will however degrade the weapon down to the first level again. There are also pickups that alter the ship's speed and a special gem that, if five of them are collected, temporarily transforms the ship into an invincible super ship.\n\nCrisis Force was only released in Japan.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Crystalis (USA).txt",
    "content": "October 1st, 1997 is known as END DAY. A great war encircles the globe and brings about an end to civilization. The surviving humans concluded that they could never repeat their mistakes and build a great tower in the sky to watch over the world and act accordingly to combat \"evil\". One hundred years have passed since then and a hidden cryogenic chamber in the mountains springs to life...\n\nCrystalis is a top-down action RPG. Starting from the cryogenic chamber, the player takes the role of a mysterious hero who must uncover the mystery of the tower. The character may equip weapons, armor, shields and globe/bracelets on his body and a single item from his inventory for use in the field. To aid in the hero's goal. he will meet up with the four wise people and learn their magic, while also obtaining the four elemental swords which will help him progress. Players gain experience and gold from defeating monsters. The experience is used to gain levels and improve statistics, however a minimum level is required before one can do damage to specific bosses. Gold is used to purchase items in shops.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Darkwing Duck (USA).txt",
    "content": "The kingpins of crime are at it again! The mysterious criminal organization F.O.W.L. has hatched a plan to take control of the peaceful city of St. Canard. Six of their most heinous henchmen are running rampant through the city and only the daring Darkwing Duck can bring them to justice! Join Darkwing as he explores the woods to weed out Bushroot's evil plan. Search the warehouses along the wharf for Mega Volt and pull the plug on an electrifying scheme. Track down all six of FOWL's crafty criminals and then prepare yourself as Darkwing squares off against the sinister Steelbeak in his fiendish floating fortress!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/David Crane's A Boy and His Blob - Trouble on Blobolonia (USA).txt",
    "content": "Blob has come from the distant planet Blobolonia in search of an earth boy to help him save his world. Join him on this fantastic adventure in mysterious caverns beneath the earth searching for treasure. then travel to Blobolonia to battle the evil emperor. Discover Blob's amazing appetite for jellybeans and the different transformations that occur with each flavor. Learn to use these shapes to overcome even the most outrageous obstacles.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Deja Vu (USA).txt",
    "content": "Deja Vu was the first game ever made by ICOM, the makers of such famous adventure games as Shadowgate and Uninvited. It featured mouse support, a multi-window interface, and bitmapped graphics at a time when text-based interactive fiction was the norm. \n\nIn Deja Vu your character wakes up in a toilet stall of a sleazy pub with no memory of who you are or what you're doing there. To make matters worse, you soon stumble upon a very dead corpse upstairs with three bullets buried in him. Sure enough, you find there's a gun in your pocket with three bullets missing. From there you have to figure out what happened and who you are before whatever is happening to your brain turns you into a mindless vegatable. To make matters worse the cops would very much like to have a word with you about that stiff.\n\nIn 1991 a remake of this game was made for Windows 3.x, featuring improved graphics etc. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Destiny of an Emperor (USA).txt",
    "content": "A role-playing game for the NES set within the Romance of the Three Kingdoms mythos that has spawned games on nearly every platform imaginable.  A party is formed by selecting up to five officers from a huge pool, many of whom would only join you after be bribed or defeated in combat.  Officers in turn each had a certain amount of soldiers, which essentially acted as hit points (i.e. Si Ma Ye leads 40000 men, and when he is hit by Zhang Bao, he loses 5000 men, so his manpower is now at 35000).  One of the first games on the NES to attempt to simulate large scale combat between different forces, although obviously in a very limited way.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Devil World (Europe).txt",
    "content": "Devil World is a scrolling maze game, strikingly similar to the classic Pac-Man, only with an undeniable religious bent. Collect dots in an automatically-scrolling maze directed by the devil himself, use crosses to power up and destroy his minions, and be careful not to get crushed by the walls. After collecting all the dots, you must collect bibles to seal up the source of the enemies and make the devil temporarily retreat. After this, there is a timed bonus stage where the player can control the scrolling, then the next round starts the cycle over from the beginning.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Digital Devil Story - Megami Tensei (Japan) (Translated).txt",
    "content": "A high-school student and skillful computer programmer named Akemi Nakajima created a software called \"Devil Summoning Program\". At first Nakajima intended to use the software to gain revenge on a classmate who bullied him. However, things went out of control and Nakajima summoned malicious demons. Together with his friend Yumiko Shirasagi, a transfer student, he now must fight the demons he unleashed!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Digital Devil Story - Megami Tensei II (Japan) (Rev A) (Translated).txt",
    "content": "In year 199X, a terrible disaster occurred. An atomic explosion destroyed large parts of the Earth and opened the way to a demonic invasion. The world lies in ruins, and the demons are ripping it apart. You control a group known as Devil Busters. Your mission is to prevent the demonic minions and their evil lord from dominating the entire planet.\n\nIn the beginning of the game, you create a party and allocate available skill points at your wish (upgrading strength, stamina, magic, etc.). When you level up, you can also distribute the gained points the way you like. Upon meeting a hostile creature, you can talk your way out of the battle or even convince a demon to fight for you. The game world is viewed partly from top-down perspective, and party from first-person perspective (in dungeons and battles). \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Donkey Kong Classics (USA, Europe).txt",
    "content": "Donkey Kong Classics features both the original Donkey Kong and Donkey Kong Jr. on a single cartridge. In Donkey Kong, you need to guide Mario safely up the scaffolding to rescue his girlfriend, Pauline. In Donkey Kong Jr., the roles are reversed; you control Jr. who needs to rescue his father, who has been captured by Mario.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Door Door (Japan).txt",
    "content": "DoorDoor is platform game in which you have to lock up the monster creatures that pursue you. Only one creature can be locked up behind one door. Don't forget to close the door or the creatures will walk out and pursue you again.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Double Dragon (USA).txt",
    "content": "Set in a post-apocalyptic New York, Double Dragon is the story of Billy and Jimmy Lee, twin brothers trained in the fighting style of Sou-Setsu-Ken. Together, they manage a small martial arts training school, teaching their students in self-defense. One day, Billy's girlfriend, Marian, is kidnapped off the street by the \"Black Warriors\", a savage street gang led by a man named Willy. The Black Warriors demand the Lee brothers disclose their martial arts secrets in exchange for Marian's freedom. The Lee brothers set out on a rescue mission to crush the Black Warriors and save Marian.\n\nUsing whatever techniques they have at their disposal, from the basic punches and kicks to the invulnerable elbow strike, as well any weapon that comes into their hands, the Lee brothers must pursue the gang through the city slum, industrial area and the forest before reaching their hideout to confront the big boss, Willy.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Double Dragon II - The Revenge (USA) (Rev 1).txt",
    "content": "The lovely Marian was rescued from the clutches of the Black Warriors gang by Billy & Jimmy Lee in the first Double Dragon game, but now the gang has killed her in retaliation of their early defeat. The Dragons must now embark on a mission to avenge her death and defeat the Black Warriors for the second and final time.\n\nThe original arcade version of \"Double Dragon II\" was essentially an improved version of the first game. In addition to offering renewed audio and visuals, as well as new traps, moves and enemy characters, \"Double Dragon II\" discarded the conventional punch and kick buttons in favor of a direction-oriented attacking system similar to the original Technos beat-em-up Renegade.\n\nThe NES version offered new stages, new moves and illustrated cut-scenes, as well as a new final boss and a new ending. Unlike the first NES game, it offered 2-Player Co-Op gameplay with the option to turn off the friendly fire.\n\nThe Game Boy version of \"Double Dragon II\" is an English localization of a \"Kunio-kun\" game (the Japanese franchise which inspired \"Renegade\" and \"River City Ransom\" and has nothing to do with the arcade and NES versions. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Double Dragon III - The Sacred Stones (USA).txt",
    "content": "The final game in the trilogy.\n\nBilly and Jimmy Lee are returning from martial arts training when their paths cross a fortune teller. She tells them of a great evil in Egypt, their strongest adversary yet, and how the Rosetta Stones can aid them.\n\nThis game features weapon shops where Billy and Jimmy can buy power-ups, tricks, energy and extra lives to aid them in \ntheir quest.\n\nPower-ups make Billy and Jimmy twice their size, increasing their damage done and range of attack.\n\nThe character graphics have changed, moving away from cartoon style graphics to more realistic looking characters. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Downtown Special - Kunio-kun no Jidaigeki Dayo Zenin Shuugou! (Japan) (Translated).txt",
    "content": "Downtown Special: Kunio-kun no Jidaigeki da yo Zenin Shugo! is a beat 'em up set in medieval Japan using the same engine as River City Ransom. \nThis is the Sixth NES Episode of the prolific \"Nekketsu Koha Kunio-kun\" series which can roughly be translated as \"Nekketsu High School Thug Kunio\" and which has brought over a dozen titles to the NES (Renegade, Nintendo World Cup, Crash 'n the Boys: Street Challenge, etc.). \nBunzo, Kunio's sensei has been affected by a mysterious illness. Kunio and his brother Tsuu must go in search of Kanpou to cure him, but many adventures will occur on the road.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Dr. Mario (Japan, USA) (Rev 1).txt",
    "content": "In this Tetris-style game, you play as Dr. Mario, who must drop differently coloured pills onto viruses to remove them from the bottle. Each pill is split into two, with each side a different colour. Match that colour to the colour of the virus, and it will be removed from the bottle.\n\nIncluded in the game is the normal mode, a time trial, and a two player battle mode to see who can remove the most viruses.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Dragon Fighter (USA).txt",
    "content": "In Dragon Fighter the protagonist is a fighter who can turn into a dragon. In this side-scrolling action game the hero can walk, jump, and slash with his sword. He can also charge his sword to fire a magical projectile. The real power-up, however, is that he can transform into a flying dragon. When this happens, the game turns into a shmup-style game in which the scrolling moves at a constant rate and the dragon can shoot fireballs in a spread formation. Transforming into a dragon is restricted by a power meter.\n\nThe game features six levels of action-- a snow level, a cave level, a water level, an industrial level, and a haunted castle level. The sixth and final level is fought entirely as a dragon with unlimited flight capability.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Dragon Spirit - The New Legend (USA).txt",
    "content": "Galda has decided to attack earth and it is up to you to stop him.  Galda has taken Iris, the sister of Lace captive.  You are Lace who, taking his father's sword, goes off to defeat Galda.\n\nYou have the ability to change into a dragon and are in that form throughout the game.  As a dragon, you can pick up power-ups, or upgrades, that will help you in your fight.  Upgrades can include extra heads on your dragon, health, faster shots, and more.\n\nFly around and destroy everything in your path.  At the end of each stage, you will need to defeat a boss.  Having good upgrades that are not lost from being hit before reaching the bosses will help. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Dragon Warrior (USA) (Rev 1).txt",
    "content": "Dragon Warrior is the first famous console RPG. You assume the role of a descendant of Erdrick, a brave warrior of the past. Once upon a time, Erdrick defeated the evil Dragonlord with the help of the Ball of Light. Now, Dragonlord stole the Ball of Light, and your mission is to recover it and to restore peace in the world.\n\nIn Dragon Warrior, you move your character around in a top-down world. In cities and palaces you can talk to people, rest in inns and buy stuff in shops. There's a variety of weapons, equipment and armor to buy. \n\nWhen wandering around in the wilderness, you occasionally encounter enemies, and fight them from 1st person perspective. Combat is turn based: you select menu options while fighting - you can attack with your weapon, cast a spell (using up some of your magic energy), use and item or try to run. Killing monsters gives you experience, and, as is typical for RPGs, you level up and improve your stats when you gain enough experience. \n\nLike in later RPGs, you have limited hit points, lose them when you are attacked by enemies, and die when you run out of them. When your character dies in a battle, he is automatically restored in a nearby town.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Dragon Warrior II (USA).txt",
    "content": "Dragon Warrior II is an early top-down RPG that expands and improves on its predecessor, Dragon Warrior. Taking the role of a descendant of Erdrick, the player once again ventures forth in an effort to save the world.\n\nUnlike the first game, Dragon Warrior II allows the player to join forces with two other characters, a magic-using princess and a wizard-warrior prince. Also including expanded monster battles involving up to 6 creatures and a much larger world, Dragon Warrior II is an important step in the evolution of the Dragon Warrior series.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Dragon Warrior III (USA).txt",
    "content": "Dragon Warrior III is the concluding game of the first Dragon Quest/Dragon Warrior trilogy, and its story takes us back to the time period of the legendary Erdrick (also known as Loto), the ancestor of the first game's hero. You are the son of a powerful warrior Ortega, skillful in physical combat and spellcasting. Your father went out to fight the evil Baramos, who is responsible for the appearance of monsters in your region, and never returned. You are sent by the king on a quest to continue your father's brave deeds and to defeat Baramos.\n\nDragon Warrior III is a top-down role-playing game where you travel around the overworld, caves, castles, cities and other locations while battling random encounters, buying equipment, and talking to people. You and your party members receive experience when they beat up monsters and level up with enough experience, increasing their stats. The game features a day/night cycle - as you travel, day slowly changes to night and vice versa; shops are typically closed at night. \n\nYou begin with control of just the main character but can quickly recruit three more members to your party. During the game you can choose to drop your current characters and recruit others at any time. The recruitable characters are divided into six classes: soldier, fighter, merchant, goof-off, pilgrim and wizard.\n\nThe game has a unique job system, giving you the ability to switch your hired characters' classes after they have achieved at least level 20 in their base class. Characters can switch to the other beginning classes, as well as the sage class, which is not available at the beginning. When a character switches classes, they lose all earned experience points, and half of their stats, but retain all of the abilities of the previous class. In this way, you can create powerful combination characters that are able to cast spells and fight effectively.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Dragon Warrior IV (USA).txt",
    "content": "Dragon Warrior 4, the fourth volume in the Dragon Warrior series (and the last on the NES), once again took the elements of the previous games and expanded them into a five chapter saga of epic proportions.\n  The first four chapters are played from the viewpoint of one character per chapter, who will all meet up in the fifth chapter.  From a soldier to a merchant, the game weaves an intriguing story that ties all four characters together in the end.\n  Also new in Dragon Warrior 4 is the introduction of battle tactics where the lineup of the characters is important to how much damage they deal.  The player is even given the opportunity to swap a character from reserve into the battle to add a whole new depth of strategy.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/DuckTales (USA).txt",
    "content": "Duck Tales for NES is a traditional platform game in which the player takes the role of greedy Scrooge McDuck in search of treasures around the globe. He counts on his three nephews and on other Duck Tales characters to help him in his quest through inospit places such as the Amazononic forest, the African Mines, the Himalayas, Transylvania (where he meets Dracula Duck) and even the Moon.\n\nEach one of them reserves the old duck lots of adventure, different enemies and hidden rooms.\n\nThe game features a 2D side-scrolling platform gameplay very similar to Mega Man. Graphics are colorful and cartoonish, music remembers players of the TV series and controls are very simple. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/DuckTales 2 (USA).txt",
    "content": "Scrooge McDuck is hot on the trail of the richest adventure ever. Pieces to the map of the Lost Treasure of McDuck have been scattered across the globe, and Scrooge must find them before the greedy Flintheart Glomgold grabs them. It's going to be a race to the finish as both of them try to find the treasure and become the richest duck in the world! Join Scrooge and his nephews as they explore the ancient pyramids of Egypt and do battle with swash-buckling pirates in the Bermuda Triangle. Help them search the haunted halls of an ancient Scottish castle and scale the watery heights of Niagara Falls. Aid Scrooge in his quest for the secret of the island of Mu and you'll gain the final clue to unravel the hidden location of the Lost Treasure of McDuck!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/EarthBound Beginnings (USA, Europe) (Virtual Console).txt",
    "content": "Mother is a first person role playing game on Nes. You play as a young boy whose house is possessed by a tortured spirit. You soon discover that a tragedy has taken place there. With three other companions, you go on an adventure to understand the ins and outs of this mystery. Encounters with enemies are random and you can use special psychic powers to destroy them.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Elite (Europe) (En,Fr,De).txt",
    "content": "You have a ship with virtually no equipment. Take her and trade among the different star systems. You can be safe and trade on razor-thin margins among the safe systems, or take some risks and trade with anarchic systems while watching out for pirates. You can save on fuel costs by buying a fuel scoop and fly near the sun, but again, watch out for pirates! Or be a pirate yourself and raid other ships...  Don't get a bad rep as the police will come after you... Dock with space stations and do your trades (some may take contraband...) Upgrade your ship with your proceeds with better weapons,  shields, and other equipment. With 8 different galaxies, each with HUNDREDS of planets, there are plenty of room for exploration! Can you make your reputation all the way up to \"elite\"?\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Excitebike (Japan, USA).txt",
    "content": "Race by yourself against the clock or compete with other motocross riders on 5 tracks full of long straights, large jumps and obstacles to win the Excitebike championship.\n\nCreate your own tracks by placing jumps and obstacles of all different sizes and shapes on the track and choosing how many laps each race will have, then race against the clock or other riders to see how your track fares in competition.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Famicom Wars (Japan) (Translated).txt",
    "content": "The Red Star nation and the Blue Moon nation are at war. Each has deployed troops and works to obtain enough funds so as to buy the necessary military hardware to overcome the other side.\n\nFamicom Wars is a turn-based strategy game. The player takes the role of commander of military forces for either the Red Star or Blue Moon armies. The goal of each battle map is to overcome the other side's forces, destroying all enemy units and capturing all enemy-held landmarks. Each side of the battle takes their turn, moving units across the map. The capture of cities will give that side extra funds which can be used to build new units at factories and shipyards.\n\nFamicom Wars features 17 maps total to battle across.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Faxanadu (USA) (Rev 1).txt",
    "content": "Disaster strikes the once peaceful Elf town of Eolis. The sky rains meteorites upon the World Tree - wild animals and evil monsters terrorize the citizens - the water supply from the wells is dwindling - plants are withering - people are dying. Only you can restore peace to the land by conquering the Evil One, who lives in the Evil Place. \nThere are many places you must visit during your quest including the medieval town, where you begin, country villages, fortresses, caves, and gloomy bogs - each with its own ambiance and musical score. You will be talking with the villagers, collecting gold to buy weapons, armor and other objects, jumping over obstacles and using items. Attack zombies, dwarves, giant snakes, wyverns, evil gnomes, or one-eyed one-footed things with a large collection of swords and daggers or zap them with a magic spell.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Felix the Cat (USA).txt",
    "content": "Felix The Cat is a platformer based on the famous cartoon character.\n\nThe Professor has kidnapped Kitty, Felix girlfriend, trying to exchange her for Felix' magic bag. Naturally, Felix is not going to let himself be blackmailed, and instead sets out to free Kitty. \n\nThere are four different types of levels. \n\n1. Typical platforming levels in which Felix has to make his way to the exit while jumping about obstacles and chasms, killing enemies using different weapons.\n\nSwimming levels in which Felix rides a float or on the back of a dolphin.\n\nLevels that take place entirely under water.\n\nFlying levels that put Felix in control of different flying devices, such as a plane, a hot-air balloon or an umbrella.\n\nThroughout all levels, Felix can collect cat symbols to improve his weapons. After collecting a certain number of cat symbols, milk bottles or hearts will appear. Hearts improve Felix' current weapon. What types of weapon Felix can use, depends on what type of level he is in. There are lots of different weapons ranging from a boxing glove to motorcycles to tanks to spaceships. All weapons that are better than the standard weapon have an energy bar that diminishes over time and can be refilled by collecting milk bottles. Getting hit by an enemy decreases the level of Felix' current weapon. If he gets hit while carrying the standard weapon, he loses a life.\n\nThe Game Boy version plays virtually identically to the NES version, but features less levels.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Fester's Quest (USA).txt",
    "content": "Uncle Fester was out one night, moonbathing in the yard of the Addams Family property one day when suddenly, out of the sky, a UFO descended and started beaming alien creatures to the planet. Grabbing his gun, Fester sets off to stop the aliens and slay their boss creatures, encountering other Addams Family members along the way who will aid him.\n\nFester's Quest is an overhead-view game in which Uncle Fester uses his gun, or later, a whip to attack enemies near him. Enemies drop money and power-ups. The money can be used at Hot Dog stands to replenish health. A variety of items can be collected, each with a different effect. Fester and the rest of the Addams family are based on their characters from the popular 1960s TV show (this game was made before the remakes in  both series and movie form).\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Final Fantasy (USA).txt",
    "content": "Hironobu Sakaguchi's Final Fantasy... the first of one of the longest role-playing game series known to mankind. Final Fantasy is the game for the NES console that started it all. \n \nThe world is veiled in darkness. Winds don't blow, the seas are stormy, and the earth rots. All people can hope for is that the ancient prophecy will be finally fulfilled. \"When the world is veiled in darkness, four warriors will come...\" And indeed, they come - the four characters you have previously chosen. Their first quest is to free a princess from the evil Garland, and then the real journey begins...\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Final Fantasy II (Japan) (Translated).txt",
    "content": "The ruthless emperor of Paramekia leads his demonic armies across the land, laying waste to all in his path. One by one the nations fall, and those without the will to resist are forced into servitude. When the conflict reaches the borders of Phin, its people choose to fight, and are all but annihilated. After the loss of Castle Phin, the survivors flee to nearby Althea, where the rebellion makes a temporary headquarters. \n \nAmong the survivors are Frioniel, Maria, and Guy; rescued by the rebel leader Princess Hilda and the white mage Ming-wu. Though young and implusive, they gain Hilda's trust and are allowed to join her battle against the empire. While the road ahead may be paved with loss and sacrifice, each victory brings them closer to reclaiming their homeland.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Final Fantasy III (Japan) (Translated).txt",
    "content": "In a remote village of Ur, four orphan boys were raised by the priest Topapa. Once, the Crystal of Wind, guarded by the people of Ur, sank deep into the earth. The four boys decided to retrieve it from there and went down into an underground cave. But when they found the crystal, it spoke to them and from its words they understood they were chosen for a much more important and world-embracing mission...\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Fire 'n Ice (USA).txt",
    "content": "The peaceful island Coolmint is attacked by flame monsters sent by the evil wizard Druidle. The queen of the winter fairies chooses the novice wizard Dana to drive back the monsters. \n \nFire 'n Ice is a puzzle game seen from a side-view perspective. The goal in each level is to extinguish all flames by pushing or dropping blocks onto them. The player takes control of Dana who can create or destroy ice blocks, climb blocks and push loose blocks. Ice is created diagonally below Dana in the direction that he is facing, if there is already an ice block there, it will be destroyed. However, ice blocks cannot be created on a spot that is already occupied by a flame, so that the player will often have to find a way to create ice blocks next to or above a flame so that they can be pushed or dropped onto it. If an ice block is created next to another object or wall it will stick to it, meaning it can't be moved and won't fall down. It is therefor also possible to create ice bridges to get over chasms. When a loose ice block is pushed, it slides above the ground until it hits another object. Rocks can also be used to extinguish flames, but they are indestructible and only move one space when pushed (unless they are on an icy surface).\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Fire Emblem - Shadow Dragon and the Blade of Light (Japan) (Translated).txt",
    "content": "Dark Forces have attacked the land of Aritia. You're controlling some of the members of the Aritan's forces that escaped from their country and came on the island of Tamis for safety. Unfortunately, a group of pirates is invading the Tamis, and it's up to you to control the island again."
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Fire Emblem Gaiden (Japan) (Translated).txt",
    "content": "In a coup d'etat, a general deposes the king and it's up to a young hero, Alm, to join up with a rebel army and fight against this unjust rule.\n\nGame takes place on battle maps in which the player moves all characters in his turn (or lets them assault/group via menu). If the characters enter close combat the display changes to a side view and the characters attacks the enemy once or multiple times (usually provoking a counter attack) for which the character receive experience points.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Flintstones, The - The Rescue of Dino & Hoppy (USA).txt",
    "content": "The Flintstones and the Rubbles were enjoying a fine day when suddenly, someone from the future called Dr. Butler arrived and stole their pets, Dino and Hoppy!  Butler plans to feature the pets in his intergalactic zoo, and what's worse, he's destroyed the Great Gazoo's time machine so that no-one could stop him!  It's up to everyone's favourite caveman, Fred Flintstone, to find the pieces to the time machine and repair it, so that they can travel to the future and confront Dr. Butler once and for all!\n\nThe Flintstones: The Rescue of Dino & Hoppy is a side-scrolling platformer for the NES.  In it, you control Fred Flintstone through various locations such as Bedrock, Reef Rock, the Jungle and more as he searches for the missing pieces of Gazoo's time machine.  Fred has his trusty club which he can use to attack with, or charge up it's power by holding B for a more deadly attack.  Fred can collect coins after defeating enemies, which are used to pay for secondary weapons like slingshots and tomahawks, as well as special abilities such as flying and diving.\n\nAfter completing the first level, the player is presented with an overworld map that allows you to choose which level you'd like to go to.  There are also basketball courts on the map - if you beat your opponent in a game of basketball, you can earn one of the special abilities which are required for use later. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Flintstones, The - The Surprise at Dinosaur Peak! (USA).txt",
    "content": "Fred and Barney are searching for their children, Pebbles and Bam-Bam who got lost. When they finally find them, a volcanic eruption blocks their way and so they start going all the way around the mountain to find out why this happened and of course to save their children. \n\nThe Surprise at Dinosaur Peak is the second Flintstones-licensed game for the NES. There are two characters you can play with. By pressing the Select button you can change from Fred to Barney and vice versa. Each character has unique abilities that are needed to complete certain parts of each stage. For example Fred can grab the edges of a roof or a hill and climb while Barney can hang from ropes and vines. In terms of weapons Fred has a bat which is stronger and can also be charged for extra power but it takes more time to use. Barney on the other hand has a slingshot and can shoot small rocks for ranged attacks but rather weak. There are also weapons like throwing axes and bowling balls that both can use. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/G.I. Joe - A Real American Hero (USA).txt",
    "content": "G.I Joe is a side-scrolling action game where you can select 3 out of a possible 5 characters to complete a mission. \n\nEach level is in three main parts:  The fight into the mission zone, the mission zone, and the escape from the mission zone.  The stages where you fight into and escape from the mission zone are straightforward action  just fight your way to the end of the stage, and defeat the stage boss.\n\nThe actual mission zone is a maze, where the object is to place bombs at pre-determined locations, then find and use the exit.  The mazes start out easy with the first one being only two screens high and 4 long.  Level 6 is 7 by 8 for a total of 56 screens.\n\nCharacters:\n\nDuke (Tiger Force first sergeant/squad leader), Rock & Roll (gatling gunner), Capt. Grid-Iron (hand-to-hand combat specialist), Blizzard (arctic attack soldier), Snake Eyes (commando) \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Ganbare Goemon Gaiden - The Missing Golden Pipe (Japan) (Translated).txt",
    "content": "\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Ganbare Goemon Gaiden 2 - Treasures of the World (Japan) (Translated).txt",
    "content": "\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Ganbare Goemon! (Japan) (Translated).txt",
    "content": "First title in the Ganbare Goemon game series of action/adventure titles. Karakuri Douchuu stars Goemon as he has to make his way through several parts of feudal Japan fending off bandits and other evil-doers.\n\nThe game is played as a side-scrolling beat 'em up, but with the added challenge of having to find the exit for the maze-like stages besides beating all the baddies. Goemon fights using his smoking pipe, but he can upgrade his weapon with power-ups found in the game or bought at several shops using the money collected from fallen enemies  la River City Ransom. Features hot-seat alternating 2 player gameplay. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Gargoyle's Quest II (USA).txt",
    "content": "The Ghoul realm is under attack by a mysterious force and aspiring warrior Firebrand sets out to save it. \n \nAs in its predecessor, gameplay in Gargoyle's Quest II is divided into an adventure and an action part. During the adventure parts, Firebrand explores a world map and several villages from a top-down perspective, talking to his fellow ghouls and zombies to advance the story or receive important items. Action parts are seen from a side-scrolling perspective. In these parts of the game, Firebrand has the ability to jump, cling to walls, fly for a limited amount of time and shoot fireballs at his enemies. As the game progresses, Firebrand becomes more and more powerful, receiving items that improve his agility, armor or attack power.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Gemfire (USA).txt",
    "content": "Koei made an incursion into the fantasy worlds of magic with this game.\n\nSix magicians, each trapped inside a magical gem, are liberated from the crown Gemfire by Princess Robyn, daughter of the tyrannical ruler of Ishmeria, King Eselred.  Fleeing across the length and breadth of the island nation, they each choose a leader from the greatest noble houses as their champion to topple Eselred and bring peace to Ishmeria. \n\nPlayers select one of these noblemen and seek to unite all the provinces under their banner through a combination of warfare and diplomacy.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Genghis Khan (USA).txt",
    "content": "In a few words: Conquer all you can.\nYou have two options: Mongol conquest or World conquest. In the first campaign as Temujin (later known as Genghis Khan), you must unite all the little tribes of Mongolia. You can use force or diplomacy.\nIn the second campaign, you can be one of four characters. As in the first campaign, you must unite all the countries.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Ghost Lion (USA).txt",
    "content": "Legend of the Ghost Lion is a Dragon Quest style turn-based role-playing video game. It is an adaptation of a 1988 Japanese movie, \"Piramiddo no Kanata ni Howaito Raion Densetsu\". The legend of the White Lion tells that one day, a Lion attacked and ravaged the village. The lion was wounded by the spear of a brave soldier and disappeared in a cave. One day, the parents of a young girl named Maria, decided to go and solve the mystery of the White Lion, leaving her alone. They never returned. While searching for her parents, Maria falls into a river and wakes up in a fantasy world.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Ghosts'n Goblins (USA).txt",
    "content": "Ghosts'n Goblins is a sideways scrolling action platformer spread over six levels, each of which must be completed within three minutes (or a life is lost), taking in forest, village, mountain and cavern settings with increasing difficulty.\n\nArthur the brave knight must rescue his beloved Princess from the Demon King Astaroth and his forces - amongst them are the various undead (ghosts, zombies), bats, ogres and goblins. Other challenges include moving platforms, ladders and water/fire hazards. \n\nAs in most games in this genre, the player can pick up power-ups such as daggers and bombs during the course of the game, giving the player greater firepower. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Go Go! Nekketu Hockey Club - Multi-Sport Battle (Japan) (Translated).txt",
    "content": "Hey there, this is the Nekketsu High School Paper. Our own Kunio has become famous as a leader. With him we won both the dodge ball and soccer championships. They competed and won at the world stage, it is truly amazing. But did you know, Nekketsu High also has an ice hockey club? Sadly, our team is very weak... We probably won't even make the playoffs in the next national championship. Perhaps Kunio can lead our ice hockey team to victory as well. With him, would it become a successful team, or still be in the minor leagues? Passionate ice hockey spirit! Good luck everyone!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Go for it! Goemon 2 (Japan) (Translated).txt",
    "content": "Sequel to Ganbare Goemon!, Goemon 2 puts you back in the shoes of Goemon as he traverses feudal Japan looking to bring justice to any corrupt baddies he may find.  \n \nJoining Goemon in his adventure is the wacky ninja Ebisumaru which allows for simultaneous 2-player gameplay, marking the biggest difference in terms of gameplay with the original. The game keeps the straightforward side-scrolling beat 'em up formula and even removes some of the maze-like elements in the previous game, adding new weapons and upgrades to make the game more action-oriented. Wandering through the stages is still possible and you can enter several stores and locations and trigger amusing humorous sequences keeping in tone with the lighthearted spirit of the series.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Golgo 13 - Top Secret Episode (USA).txt",
    "content": "You play as Golgo 13, the greatest assassin for hire in the world. A vial of the deadliest biological weapon known to man, codenamed \"Cassandra G.\", has been stolen and you need to recover it before someone uses it on the unsuspecting world.\n\nThis is a traditionial side-scrolling game that uses a third-person view in cutscenes. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Goonies II, The (USA).txt",
    "content": "In a movie released in the 1980s, a group of youngsters formed a special gang and called themselves The Goonies.  Nintendo banked upon the movies popularity by releasing several games using the characters and music from it, including the theme song by Cyndi Lauper.  This is their second game on NES, The Goonies being released only for the Famicom system outside the United States.\n\nYou play Mikie, one of the gang members, whose friends have been kidnapped by the gangs arch enemy  the Fratelli family.  Your buddies and Annie the Mermaid must be rescued, but it wont be easy sneaking into the dark and creepy underground hideout where they are being held.  You must find a way to destroy their master computer and keep your friends from becoming road kill.  If Ma Fratelli or crazy Cousin Pipsqueak doesnt stop you, one of her two crazy sons will!\n\nUpon starting the game, Mikie is armed only with a yo-yo and the ability to jump.  As the game progresses, he will find boomerangs, a gun, bombs, molotave cocktails and even scuba gear to help him. Fight snakes, spiders, skeletons, man-eating fish while exploring the huge world full of cellars, secret caverns and elaborate mazes.\n\nThere is more than typical side-scrolling action, although theres certainly a multitude of that.  Seventeen magic implements and many secret messages await you.  When Mikie enters a room he can talk to NPCs and try to find hidden items and doors by hitting the walls.  A password lets you keep your possessions for the next game.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Gradius (USA).txt",
    "content": "The people of Gradius are in trouble. The ameoboid Bacterions have launched an all out attack against the planet, and it's up to you to fly into battle and save them. Along the way you'll be able to power up your ship with hyper speed, force fields, lasers, missiles, double beam cannons and more to help you battle. Based on the arcade game, Gradius is a side scrolling shooter. Shooting certain enemies will leave a power up pod behind which can be collected to add more power to your ship. Each level features a wide variety of enemies trying to stop you, with a large boss at the end. Gameplay is for one player or two players alternating.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Gradius II (Japan).txt",
    "content": "Gradius II is a sequel to Gradius, and Life Force, and is a horizontal space shooter composed of 7 levels.\nLike it's predecessor, you can collect power up from enemies and chose which ones to use when. This time, this system is enhanced because you can chose between 4 different power-up sequences, allowing you to use differents types of weapons against your enemies. There is also the possibility to gain options, which are mysterious balls of fire that follows your spaceship closely and mimic all its movements (including shots). While you only could have 2 of them in Gradius, you now can have up to 4 of them.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Gremlins 2 - The New Batch (USA).txt",
    "content": "As Gizmo, you must reach the Gremlin Control Centre to wipe them out. This is an isometric action game differing from the Elite title. You can gain items such as a bow and arrow and matches after each level to help. Mr Wing's Shop also contains many goodies, so watch out for its door magically appearing. Hazards include spiders, electrified wires, ground-mounted hazards, and a boss at the end of each level. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Guardian Legend, The (USA).txt",
    "content": "In the far future, Earth is a peaceful place with very few worries.  To ensure it stays that way, a top secret project was authorized: the creation of the guardian suit.  It's a suit of flight armor that allows the guardian to survive any environment.  It's a good thing too, because a giant space station is spotted on a collision course with Earth.\n\nYou take the role of the guardian.  Your mission is to activate the station's self-destruct and destroy it before it collides with Earth.  As you travel through the station NAJU, you'll find increased armor and better weapons to help you defeat waves of enemies.  You'll battle through the station in a human form and also as a jet in certain areas.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Guerrilla War (USA).txt",
    "content": "A tropical island (specified as Cuba in the Japanese original) is being oppressed by a dictator, but fortunately one or two brave US soldiers (Ernesto \"Che\" Guevara in the Japanese version) are on hand to restore justice. March through the rivers, swamps and forests to overthrow the dictator (specified as Batista in Japan) in this evolution of the Commando style.\n\nThe game scrolls vertically, as you move up the screen shooting enemies, finding good strategic firing points and collecting powerups. As the enemy soldiers come towards you in groups, some care is required when picking them off, either using your gun or the grenades. There are also hostages carried by some soldiers, with points bonuses for not shooting these but shooting their captors. Each level ends with a boss.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Gun Nac (USA).txt",
    "content": "A Galactic Federation starfighter is sent off to destroy an alien armada (led by giant robotic rabbits this time around -- an unusually whimsical theme in keeping with the contemporary Parodius) threatening to collapse your system's sun into a supernova.\n\nGun-Nac is a top down shooter in which the player controls the Federation starfighter. Power ups and genre mechanics are as could be expected from a \"shmup\".  now with collectible money that allows you to shop for different weapons and bombs to complement your standard main gun in the inter-level weapons market. Directional weapons, attachments and up to four bomb types can also be bought to increase your survival chances, further aided by player control over the speed at which your ship moves through the levels. Single player only.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Gun.Smoke (USA).txt",
    "content": "Gun.Smoke is a top-down scrolling shooter that casts the gamer as a lone gunman, out to save the gold rush town of Hicksville from a fearsome group of bandits known as the Wingates. Each level has a particular target enemy, although his or her henchmen must also be taken out.\n\nAlthough it largely takes place on foot, the gameplay resembles Commando, with its top-down action. The screen scrolls at a constant rate, and enemies come at you from the edges, to be shot or avoided. You can grab various power-ups along the way. Finding a horse will allow you to get hit twice before you die rather than just once. There are scenes in which you raft up a river and use the tracks of a railway line.\n\nOn the NES you can tap the A button to fire up and right, the B button to fire up and left, or A and B simultaneously to fire straight ahead. One-button control systems mimic all this.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Gyruss (USA).txt",
    "content": "The entire solar system is being attacked by the vicious Gyrusians, and it's up to you to save the day! You will need to fly your spaceship to each of the nine planets and then clear three stages of enemies to rid that planet of the Gyrusians. You start the game with a single canon, and can gain a double canon after shooting a power up satelite. After clearing each planet, there is another bonus stage where additional weapons and bonus points can be collected. Gyruss is an arcade action shooter, however instead of piloting your spaceship horizontally or vertically, you move in a circle around the perimeter of the screen. The NES version of Gyruss adds to the original arcade version additional music, additional weapons, new enemies, and a large boss at the end of each level.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Hammerin' Harry (Europe).txt",
    "content": "In the peaceful town of Carpentersville, some workers known as The Rusty Nailers decide to bulldoze a house that belongs to Harry. Harry is certainly not happy with this, and goes on a rampage, destroying workers that get in his way. As Harry, you can destroy workers in one of two ways: you can smash them when one of them gets near them, or you can pound the ground, and by doing this, you will send shockwaves in both directions. \n\nThere are four environments in which Harry needs to get through: construction sites, sewer, ship, and the mansion where Harry meets the leader who ordered the demolition of his house. At the end of each environment, a boss needs to be defeated in order to proceed to the next environment. In between these, there are bonus stages in which you have to destroy a number of enemies before time runs out.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Heavy Barrel (USA).txt",
    "content": "Heavy Barrel is a shooter with a top-down view similar to Commando and Ikari Warriors. Terrorists have seized the underground control complex of a nuclear missile site. It is up to the player to infiltrate the installation and eliminate the leader of the terrorist army before they can launch the missiles. To stop the terrorists you will need the powerful weapon Heavy Barrel. The problem is that the weapon still is in the installation. Before the fortress fell the weapon was taken apart and locked in six different storage lockers. To defeat the terrorists you must collect all keys and reassemble the weapon. The game supports co-op for two players.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Holy Diver (Japan) (Translated).txt",
    "content": "Randy, the Holy Diver, is setting out to retrieve the five emblem seals belonging to the King Crimson Family in order to expel the greatest evil, the Black Slayer, back into another dimension.\n\nHoly Diver is an action game much in the vein of Castlevania. The player controls the Diver as he uses magic powers such as shooting energy balls and freezing time to traverse the game's eight levels. Enemies throughout the levels respawn and there are destroyable objects in your path. At the end of each level a tougher boss character must be beaten. Once defeated a power-up spell becomes available to the player. To use these spells the player must pause the game and select it from the inventory menu. The player has the ability to shoot horizontally as well as up. Difficult paths may sometimes be crossed by the combination of the right spell at the right time such as the freezing spell that freezes quicksand. \n\nThough scheduled for release in North America, the game never went beyond its release in Japan.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Ice Climber (USA, Europe, Korea).txt",
    "content": "In Ice Climber one or two players need to climb their way to the top of 32 different mountains. Each mountain is broken up into eight levels of platforms along with a bonus stage at the top. Attempting to stop you from making upward progress are different creatures ranging from polar bears to condors as well as treacherous landscapes with falling icicles, moving platforms, and icy floors. To help out, your only weapon is a mallet which can be used to knock out enemies as well as bust away bricks in the platforms to give you some room to jump up to the next level. When you finally reach the top, it's time to move on to the next, more difficult level.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Ice Hockey (USA).txt",
    "content": "Ice Hockey is an action game for one or two players. Start of by selecting a team and customizing your players. Each team member can be one of three player types: small and skinny (very fast, but not good at checking or shooting), very large (slow, but with a strong body check and outstanding shooting strength) or average (medium speed, with average checking and shooting strength). After the teams are set up, it's time to play some ice hockey! Gameplay features a scrolling screen to follow the action, and lets you choose which of the players you wish to control when on defense (on offense you always control the player with the puck). Fights can break out between players, and the loser may end up in the penalty box. There are five different speed settings for the game, and periods can be either 7, 10, or 15 minutes long.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Iron Tank - The Invasion of Normandy (USA).txt",
    "content": "In 1944 the United Forces are preparing their final assault on the Normandy coast. The mission is to break through the front lines and destroy enemy headquarters. To spearhead the invasion, they have chose Paul from Command Unit 88, also known as Iron Snake. To succeed in his mission, Paul will need all the firepower of the mightiest fighting vehicle, the Iron Tank. Iron Tank is played from an overhead view with a scrolling screen. You need to control the Iron Tank and it's varied weapons and power ups to rescue hostages and defeat enemy forces. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Ivan 'Ironman' Stewart's Super Off Road (USA).txt",
    "content": "Enter the world of off-road racing as 4 vehicles will face each other, on a series of tracks which are based around flipped and reversed versions of a core selection. Fame, glory and bikini clad women await your victories and the taste of dirt awaits if you fail. Let a computer car beat you and you lose one of your 3 credits. \n \nSuccessful races bring more money, which can be used to soup up their machine. Boosts to top speed, grip and acceleration can be purchased, and your nitro boost must be kept topped up. If you are desperate for upgrades, you can buy into your spare credits.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Jackal (USA).txt",
    "content": "The enemy army has captured too many of your forces. Being held in P.O.W. camps, these soldiers are effectively out of the war... unless some kind of rescue operation can be mounted. Heavy Forces are too slow and visible to be of any use, but perhaps something smaller and lighter may make it in where larger forces would fail. A small jeep, maybe two, crewed by about 4 people.... minimal enough not to represent too much of a loss and yet suitable enough to aid in rescue. But of course, if these brave men want to succeed AND come back alive; they'll need to fight like animals... they'll need to fight like jackals...\n\nJackal is an overhead view jeep game for up to 2 players. The controller moves in four directions, button A fires your gernades (upgradable to bazooka) and button B your machine gun which ALWAYS fires to the top of the screen. Your mission is to locate facilities where soldiers are being held prisoner, rescue as many as possible, and escort them to a safe landing zone where they will be air transported away. After that, you'll need to fight a boss battle against the enemy to progress.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Jackie Chan's Action Kung Fu (USA).txt",
    "content": "Jackie Chan and his twin sister Josephine were great kung fu fighters in China and trained under a great master. One day when Jackie and Josephine were out walking, the Master's great enemy, The Sorcerer appeared. The Sorcerer had come to rule over China and knew the twins would stand in his way... so he cast a spell to make Josephine disappear. Now it's up to Jackie Chan to follow after the Sorcerer and battle his minions in order to rescue his sister and save China.\n\nJackie Chan's Action Kung Fu is a side-scrolling fighting game. Jackie's controls are one button to jump and another one to attack or be used in combination with a direction for a special attack. On his quest, Jackie must punch and kick his way past frogs, ninjas, birds and other enemies. Jackie can acquire special-moves such as the Tornado attack, the 180 degree spin kick, the 360 degree spin kick and the Sky Attack. Other power-ups include energy refills and bonus points.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Jetsons, The - Cogswell's Caper (USA).txt",
    "content": "The Jetsons: Cogwell's Caper is based on the well-known Jetsons property from Hanna-Barbera. In this spin-off adventure, George Jetson is tasked my his employer to put a stop to the profit-making schemes of the rival Cogswell's company. To do this, George must hop from location to location in his jet and conquer each level using the resources available to him, as well as with the assistance of the other Jetson franchise characters.\n\nCogswell's Caper is a side-scrolling action game where George Jetson can walk, crouch, and jump (actually, he's too lazy to jump and a jet pack handles the jumping duty for short bursts). Each level is littered with crates and other items that George can pick up and toss at enemies, while finding useful items (and occasionally even more enemies) underneath them. Since the game is set in the futuristic world of the Jetsons, there are also copious switches on walls which activate all kinds of features of the surroundings, such as a switch that reverses gravity for a brief time. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Journey to Silius (USA).txt",
    "content": "The year is 0373 in the new space age calendar. The earth's population is growing rapidly, and people are now forced to start space colonies. Jay McCray is among those leaving earth and heading to the colony in the Silius solar system. Unfortunately, terrorists have destroyed a research colony there. Jay's father was killed in this attack, and now Jay vows to destroy the terrorists responsible and to continue the research his father was working on. Journey To Silius is a side scrolling platform game. On each level there are a wide variety of robot enemies guarding the terrorist's fortress, along with several weapons to find which make your mission easier. There are a total of six stages, each ending with a very large boss.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Joy Mech Fight (Japan) (Translated).txt",
    "content": "The evil scientist Warunachi has hacked all the otherwise peaceful robots in Japan and now plans to launch an attack for world domination the likes of which the world has never seen. Fortunately his former partner, Dr. Eamon, saved one robot from the takeover and has now programmed him to defeat the other robots and foil Dr. Warunachi's evil plans.\n\nJoy Mecha Fight is a one-on-one 2D fighter, in which you control a robot and attempt to defeat your opponent by attacking him with your basic moves and special attacks triggered by specific control motions. Each robot is composed of six hovering segments: the head, torso and limbs, which hover around each other forming a basic humanoid shape. \n\nThe game features story, instant fight, and Vs modes. In the story mode you start with the Sukapon robot, and as you defeat other robots they become available for selection as you advance through the story with all moves being explained via a pre-fight tutorial if you want to. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Just Breed (Japan) (Translated).txt",
    "content": "The town of Astholm is protected by a Sapphire, one of the magical stones mentioned in old legends. Generation of honorable priestesses protect the stone, and with it the town. Tonight is the annual Sapphire Festival, and the young priestess Firis is going to conduct the ceremony. But just after the joyous event, the priestess is kidnapped by Gel du Rey, the henchman of the evil Lord Ezelkiel. You play the role of the captain of Astholm's guards. You and Firis have been close friends ever since the childhood. You decide to rescue the priestess, with the help of your loyal guards and friends you meet on your journey.\n\nJust Breed is a hybrid of traditional console-style RPG like Dragon Warrior or Final Fantasy, and strategy RPG. During confrontations with the enemies, the battle screen occupies the entire location, and large parties of allies and enemies fight each other in turn-based style, moving on the field to perform physical attacks (melee as well as ranged) or to cast magic spells.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Kabuki - Quantum Fighter (USA).txt",
    "content": "In this futuristic platform game, a computer virus has affected the Earth's defense systems. A lone warrior is transferred into digital data and sent inside the mainframe, where he becomes a Kabuki warrior. Gameplay is similar to other ninja-platformers (such as Ninja Gaiden) but with some interesting modifications, such as using your long red hair as a whip to attack enemies! \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/KickMaster (USA).txt",
    "content": "The evil wizard Belzed and his forces have attacked the kingdom of Lowrel, killed its king and queen and kidnapped princess Silphee. Players take control of aspiring martial artist Thonolan who sets out to rescue Silphee and defeat Belzed.\n\nKick Master is a side-scrolling platformer in which enemies are defeated by using various kicks and spells. Defeated enemies drop three items that refill Thoalon's health or magic, grant an extra life, damage him or increase his experience. When Thoalan gains a level, his maximum MP is increased and he learns new kicks, such as sliding, flying, roundhouse or butterfly kicks. Along the way, he can also pick up different spells that damage his enemies, protect him or refill his health.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Kickle Cubicle (USA).txt",
    "content": "Kickle Cubicle is a Lolo type sliding puzzle game where the Wicked Wizard King covered the kingdom with ice and hid the people and palaces deep within the ice.\n\nArmed with his freezing breath, Kickle sets out to save his friends and attempts to rescue the kingdom from this puzzling predicament of perpetual winter.\n\nEach level has a fixed time limit and enemies that will try and block your progress. The four lands (Garden, Fruit, Cake and Toy) have 17 or 18 puzzles in each. Beat all of those and there is a Special Stage with 30 more challenging puzzles.\n\nYour main options are to move, make a block of ice and slide a block of ice.\n\nObjects appearing in puzzles include: \n\n1. Rock: You cannot go over these but you can use them to stop sliding ice cubes.\nSlippery Ice: Enemies can not go there.\nBase Rock: These can not be destroyed and enemies generate from them.\nSpring: Springs an ice cube across the screen.\nWater Hole: You can't fill or walk across these holes in the ice.\nBreaker: Shatters ice cubes that strike its corners.\nHammer: Changes ice cube direction and hits enemies.\nPower Rock: Hit this and all enemies will freeze.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Kid Dracula (World) (Castlevania Anniversary Collection).txt",
    "content": "Kid Dracula is an unusual side-scroller from Konami.  It's  a parody of the company's popular Castlevania series. Instead of playing as a member of the Belmont family, you play as young Kid Dracula.\n\nYou have been woken up from your sleep by the evil demon Garamos, who's been wrecking havoc in Dracula's Castle. It's up to you to stop him by traveling across several different locations, including Dracula's Castle, New York, the Sea, and Egypt!\n\nGameplay consists of very standard jump and shoot platform action.  As you progress through the 8 levels, you gain the ability to perform spells, such as turning into a bat, and different special attacks, such as a spread / homing attack. You can also spend the coins you get when you defeat enemies in one of several mini-games that show up when you're between levels. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Kid Icarus (USA, Europe) (Rev 1).txt",
    "content": "Far away in peaceful Angel Land lived a young angel warrior named Pit, who has been given the task of defeating the monstrous Medusa, who wishes to destroy Angel Land and all of the people, and she has started by kidnapping Palutena, the Princess of Angel Land.\n\nYoung Pit must rescue the Princess and restore peace to Angel Land. He will travel from the deep caverns of the Underworld to Medusa's palace in the sky on his journey, and deadly monsters will attack him every step of the way. But he has the power of the Gods on his side! A powerful bow and arrows, Water of Life, and Angel Feathers will assist Pit on his quest to destroy Medusa and save the princess!\n\nKid Icarus is a platform game where the player goes through several vertically outlaid levels, shooting enemies with his bow on the way and collecting hearts they leave behind. Pit's bow can shoot both forward and upwards. As Pit continues upwards, more and more of the level ends up beyond the bottom of the screen and if Pit falls down out of the screen, he dies. \n\nThe levels contain doors which lead to chambers of various types - some chambers are filled with enemies, some are treasuries which allow Pit to obtain a power-up, some are stores where Pit can buy stuff, some will replenish his health, in some Pit will be able to take a test in hopes of getting a powerful weapon, and finally some chambers give Pit a chance of receiving a strength upgrade, therefore increasing the amount of damage his attacks deal. \n\nPit earns experience as he defeats enemies, and he gains levels from this experience. The more levels Pit has, the more maximum health he has. \n\nHearts taken from enemies are used in shops to buy various items and power-ups. Items include a protective shield which harms enemies, a more powerful bow, a mallet which allows you to smash the poor Palutena's warriors turned to stone who will later help you to fight a boss, a torch to see yourself in dark areas and others.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Kid Klown in Night Mayor World (USA).txt",
    "content": "Kid Klown and his family are on their way to perform in a circus when they meet the magician Night Mayor. He asks Kid Klown to help him open a treasure vault, but Kid Klown, having been warned about the evil magician by his parents, refuses. Not willing to give up so easily, Night Mayor kidnaps Kid Klown's family and dares him to follow him into his world if he ever wants to see his family again.\n\nKid Klown in Night Mayor World is a side-scrolling platformer. Kid Klown has to complete several different stages inhabited by various enemies. His most helpful tools are his balloons that he can throw at his enemies, use as a trampoline or cling to in order to float through the air. \n\nThere are various items to be picked up as well, including bonus lifes, health power-ups, strawberries, lightnings that make Kid Klown temporarily invincible and question marks that can have the same effect as any of the other items, but might also reverse the controls.\n\nAfter every completed stage, a bonus game can be played in which Kid Klown may win items by throwing balloons at them. The number of balloons available depends on the number of strawberries collected in the previous stage.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Kid Niki 2 (Japan) (Translated).txt",
    "content": "One day, a mysterious theme park called Karakuri Land appeared in Edo. In it were various mechanical attractions, built around different themes. Many people went to visit, and the park was very popular. The princess asked Yanchamaru if he would like to go with her, but since he was busy with his training, she went by herself. However, she didn't come back, and so Yanchamaru must make his way through the oddly-aggressive attractions to find and rescue the princess!\n\nKaiketsu Yanchamaru 2 is the sequel to Kid Niki, and once again stars the big-headed, sword-spinning, headband-sporting fighter Yanchamaru. Each stage is based around a theme, such as a world built from cakes and a world built from volcanoes, and each is filled with animatronic enemies, with a boss at the end. Yanchamaru has his trusty spinning sword, and can also find bonus items to improve his abilities and increase his score.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Kid Niki 3 (Japan) (Translated).txt",
    "content": "The princess has been kidnapped again, this time by a pair of menacing-looking figures. Locked in a tower, she manages to write a plea for help on a scrap of paper and then sends a paper airplane out of her prison. Miraculously, it reaches her boyfriend Yanchamaru who, being the upstanding samurai that he is, immediately sets out to save her.\n\nKaiketsu Yanchamaru 3 is the final sequel to Kid Niki and is a significant departure from the first two games. Not only does the game feature full four-way scrolling and large maps to explore, but Yanchamaru himself sports a completely new look and numerous new abilities. His trademark spinning sword now seems to more closely resemble a bo, and Yanchamaru can now use it to shoot waves of energy at foes, bounce on the end, spin in place, and even launch off of walls and corners. Taking a cue from Mega Man, he also now has the ability to slide through narrow spaces and underneath dangerous spikes.\n\nEach stage contains numerous keys and locked doors. Any key will open any door, and it is possible to complete a stage without even finding all the keys and doors. The final door in each stage leads to the boss room. After clearing each stage, your performance is tallied, and depending on what you did, bonuses such as points or lives are given. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Kirby's Adventure (USA) (Rev 1).txt",
    "content": "The Dream Spring, the source of all dreams, has dried up, causing all the dreams of Dream Land to disappear. Now it's up to Kirby to rescue Dream Land! \n\nKirby's Adventure is an action/adventure side scrolling platform game. As the pink puffball Kirby you will explore numerous, colorful lands with a variety of enemies to defeat. To help out on his journey, Kirby has the ability to eat enemies and spit them out as projectiles. With certain enemies Kirby can capture their abilities and e.g. gain a sword, shoot lasers, or even fly around the level. There are seven different stages, each broken up into multiple levels, and sometimes also containing a couple of bonus mini-games. The game cartridge features a battery backup allowing games to be saved without the need for passwords.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Kiwi Kraze - A Bird-Brained Adventure! (USA).txt",
    "content": "One day, a kiwi tribe was having fun and games outside the zoo, only to be kidnapped by the evil-minded Leopard Seal, who plans to sell them at the black market. Fortunately, during the kidnapping process, Tiki, leader of the tribe, managed to escape the sack, and her job is to rescue Phee-Phee and the other kiwis scattered around New Zealand, and are held in cages in various locations that include Auckland, Rotorua, Waitomo Caves, Strait Cook, and Mt. Cook. \n\nIf Tiki doesn't rescue a kiwi in a limited amount of time, the devil will appear and try to kill her. When Tiki reaches the outskirts of each city, except Strait Cook, there is a boss waiting to meet Tiki, and kill her by using their own choice of weapons. Also making the rescue mission difficult are several nasties that attempt to throw their own weapons, like bombs and arrows, at her. To defeat these enemies, Tiki shoots at them using her crossbow and arrows. More often than not, when Tiki shoots at enemies, they will leave behind pieces of fruit that she can pick up for points. However, it is likely that Tiki may get other weapons or the letters E, X, T, E, N, and D. Collecting all these letters will result in an extra life, and as for the weapons, they include laser shots, bombs, and fireballs. \n\nIn some levels, a few areas are located further up than just left or right, and the only way that Tiki can go up is by snatching something off the enemy that gives her the ability to fly up. Other areas are underwater, and when Tiki goes underwater, her oxygen  meter decreases, so she has to rise up to the surface again to restore her oxygen levels. Apart from her own weapons, Tiki is able to squirt water at enemies if she gets to the top of the water.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Klax (USA) (Unl).txt",
    "content": "An action/puzzle game, the object is to catch assorted color falling tiles and create rows, columns, or diagonals of a single color. Each level requires a different pattern to be made, and the tiles fall faster, more at a time, and in an increasing number of colors as the game progresses.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Krazy Kreatures (USA) (Rev A) (Unl).txt",
    "content": "Krazy Kreatures is an action strategy game for one or two players. Critters of all sorts will fill up the game board and you need to move them around to line up creatures of the same type before the entire board becomes filled. Depending on the type of creature, you will need to line up 3, 4, 5, or 6 of the same type of creature for them to disappear. After you have cleared a certain number of creatures, the board will stop filling up and you have a limited amount of time to try to clear as many creatures as possible for bonus points. As the levels progress the game board changes shape and will fill up faster and faster with different creatures.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Krion Conquest, The (USA).txt",
    "content": "The Krion Empire chose the year 1999 in which to stage an invasion of earth. The planet's defenses were no match for the alien robot invaders. Fortunately, a witch named Francesca has taken it upon herself to single-handedly free mankind from this scourge.\n\nThe gameplay and artistic style are heavily influenced by the NES Mega Man games (some contend the elements are \"borrowed\" or \"stolen\", in fact). The game is a side scroller in which the heroine can wield a variety of different offensive capabilities (all available from the start of the game), selectable via a subscreen in her quest to wipe out wave after wave of robot invaders throughout the four levels. You also have a limited range broomstick at your disposal for riding across chasms and such.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Kung Fu (Japan, USA).txt",
    "content": "You'll need lightning fast reactions to knock out the Knife Thrower, stop the Stick Fighter, and trip up the evil Tom Tom Brothers in this action-packed martial arts contest! Are you sure you're tough enough? Because it'll take all your strength and skill to master the moves in KUNG FU, beat your opponents, and rescue the fair Sylvia who's held captive on the top floor! The action is non-stop, and just when you think you've got your enemies licked there's always a Giant, a Snake, or a fire-breathing Dragon to contend with in KUNG FU!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Kung-Fu Heroes (USA).txt",
    "content": "Kung-Fu masters Jacky and Lee (Lee and Loo in the arcade version) return to their kingdom from a long trip. They discover that in their absence, Princess Min-min has been kidnapped and the 10 treasures of the kingdom stolen. Jacky and Lee must fight their way into eight different castles in order to defeat the monsters and rescue the princess.\n\nChinese Hero is a top-down action game for one or two players, both playing on the same screen. Each ninja has the ability to move in any of four directions: up, down, left and right, as well as punch directly in front of them and do a \"Moon Sault Kick\" (which can be powered up to a \"Miracle Kick\") whereby they jump and somersault directly in front. Both punches and the Moon Sault Kick can harm enemies. Defeating a certain number of enemies on each level will open the doorway into the next level. Occasionally extra passages (named \"Quick Passage Zone\") can be found to take shortcuts through areas with stronger enemies. At times, defeated enemies will leave power-ups behind which either player can collect in order to increase their abilities temporarily. While power-ups are diverse, here are examples of some of the effects: weakening specific enemies, invincibility, increased attack, extra lives and the ability to use projectile attacks. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Legacy of the Wizard (USA).txt",
    "content": "Long ago, an evil dragon named Keela was imprisoned inside a magical dungeon. However time has passed and the magic that sealed the dragon away is weakening. The Drasle family decides that it's time to destroy the dragon once and for all. However only one weapon is capable of doing this, the Dragon Slayer, which is itself sealed away by four magical crowns. The Drasle family decides to take on this quest, and will use every member of the family in order to accomplish it.\n\nLegacy of the Wizard is an side-scrolling action platform game with role-playing elements.  The player chooses a character from among five different members of the Drasle family. The choices are: Xemm the father and woodcutter, Mayna the magic-using mother, Roas the brave warrior son, Lyll the athletic daughter and Pochi the domesticated monster-pet. Each character has unique abilities (including attack and jumping abilities) and can only use certain items from those collected. Players can travel back to the Drasle household at any point to change characters.\n\nThe object of the game is to enter the large dungeon, itself divided into 5 areas, collecting a variety of items (which as mentioned, can only be used by particular characters) and use them to progress through the dungeon, defeating monsters. Power-ups dropped by monsters include gold, keys, health-restoring bread, magic-resoring potions and health-damaging poison. Gold can be spent on items and other power-ups that are available at various shops hidden inside the dungeon. The player must eventually defeat the four bosses guarding the crowns that seal the Dragon Slayer and then use that weapon to defeat the Kress.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Legend of Fuma, The (Japan) (Translated).txt",
    "content": "In the first years of the Demon Age, a horrible demon named \"Dragon Master\" was revived by his minions in hell. To protect the peace of the overworld, the two eldest Fuuma brothers fought the Dragon Master. Both were unable to defeat him and were killed, losing their legendary Wave Swords, also called Hadoukens. To avenge their deaths, the last of the Fuuma brothers vowed to slay the Dragon Master, and take back the Hadoukens.\n\nGetsufuma Den is an action game with slight RPG elements. You travel through the overworld on pre-determined paths, which branch most of the time, leading you to shops, places where you can encounter other characters, and dungeons. Once you descend into a dungeon, you navigate your character on a platform, jumping and fighting enemies with your sword or other weapons. There are also a few first-person dungeons later in the game. In the dungeons you can collect money and then use it to buy weapons and other accessories on the overworld.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Legend of Zelda, The (USA) (Rev 1).txt",
    "content": "In one of the darkest times in the Kingdom of Hyrule, a young, pointy-eared boy named Link takes on an epic quest to restore the fragmented Triforce of Wisdom and save the Princess Zelda from the clutches of the evil, power-hungry Ganon.\n\nThe Legend of Zelda for the NES marks the first action-adventure title of the popular Nintendo series. Players must make their way through the various forests, graveyards, plains, and deserts of the Overworld to find the secret entrances of the eight dungeons in an attempt to piece together the broken Triforce. Once all pieces are joined, Link will be able to gain entry to Death Mountain, home of Ganon, and prison of Princess Zelda.\n\nThe game is drawn in a top-down perspective. Link begins his quest in the Overworld, which features forests, mountains and lakes and is divided into several screens. Link can explore the Overworld freely, though when he enters a screen, he will encounter several enemies. He can attack them with his sword. If link is at full health, he can toss his sword to attack enemies from afar, but when he is hurt, even slightly, he can only fight in melee range. \n\nLink's health is represented by hearts; initially he can have a maximum of three hearts, but as he progresses in the game, he will find heart containers that increase his maximum health. The enemies are varied - some attack from up close, some shoot projectiles. When killed, they often leave behind an item - a heart to restore energy, rupees that function as money (and can be used to buy stuff in various shops in the Overworld), or bombs which can be picked up and set down to attack enemies or destroy some walls. When enemies are killed, they stay dead and will not re-appear once the screen is entered again. \n\nThere are other items to find in the game; some function as weapons, while others are used to solve puzzles. \n\nTo find the Triforce pieces, Link must explore dungeons. Once he finds an entrance to the dungeon and goes in, he must explore the rooms, fight enemies and collect keys until he finds the boss monster he must defeat. He will then be able to pick up a Triforce piece. Once he does so, however, all the monsters in the Overworld come back to life. \n\nIf Link dies on his quest, he can continue it; he will go back to his start position in the Overworld, but with the items he managed to collect so far. When Link finishes his quest, the pl;ayer can choose to play the \"2nd quest\", which is essentially a harder version of the game. \n\nThe Legend of Zelda is known for several factors that were revolutionary at the time: A full world that could be freely explored, power-ups that would permanently enhance your character's abilities, and a battery back-up save feature that allowed players to retain their progress instead of having to start over. The gameplay balanced out frequent action sequences with discovery, secrets, and exploration.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Legendary Wings (USA).txt",
    "content": "Legendary Wings is an arcade shooter influenced by Greek mythology.  A heroic figure from ancient times thrust into a strange futuristic world, you must fight your way through six levels to defeat \"The Devil\" and save the day.\n\nThe primary gameplay mode is a top-down, vertical-scrolling shooter similar to Xevious and Capcom's own 1943.  Your main weapon is used to attack flying enemies, and your secondary missile weapon is used to attack fixed placement, land-based enemies.  Numerous powerups are available along the way, and these both improve your weapons and your resistance to damage (every \"upgrade\" is worth a free hit from enemies without dying).\n\nSeveral secondary gameplay modes (Danger, Lucky, and Palace) are also triggered at key points in the vertical-scrolling mode.  All of the secondary modes are side-scrolling shooters.  The Danger stage requires you to face a gauntlet of enemies, while the Lucky stage is full of powerups, game continues, and other bonuses.  The Palace stage is triggered when you defeat a mini-boss; you must get past the palace defenses before you can face the end-of-stage boss.  And, oh yeah...don't get crushed by those walls!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Life Force (USA) (Rev 1).txt",
    "content": "In a distant part of the universe, an alien creature called Zelos was born. As he grew so did his appetite, and soon he began devouring galaxies, planets, and stars by the hundreds. Now your planet has appeared in Zelos' path, and it is up to you and a partner to fly into battle to save your world. Life Force is an action packed shooter based on the arcade game. There are six levels which alternate between side and vertical scrolling, each of them ending with a powerful guardian. Throughout the game, destroying certain enemies will release power ups which can be used to equip your ship with more powerful weapons, extra speed, and shields. Gameplay is for one player or two players simultaneously. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Little Nemo - The Dream Master (USA).txt",
    "content": "Based on a comic strip for the 1940's, Nemo is a young boy from London summoned to the kingdom of Slumberland, a fantasy realm filled with strange creatures and dream-like locations.  You soon learn that the King of Slumberland has been kidnapped by the Prince of Nightmares, and you are requested to save him by Princess Camille.  Using your only weapon, a sack of candy, you stun enemies and lull friendly animals into helping you through levels like the Mushroom Forest and Train Land.  This platformer featured licensed characters and artwork from the comic, along with using the animals, such as apes and moles, to traverse through the different terrain. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Little Ninja Brothers (USA).txt",
    "content": "Blu Boltar, lord of the Yoma clan has invaded Chinaland and captured the Emperor. Sending out a TV broadcast across the realm, Blu Boltar declares himself the ruler. Jack and Ryu are the ninja masters of Chinaland, training under their mentor at Mt. Epin. Having heard the news of the Emperor's capture they set out to defeat Blu Boltar and his Yoma Clan.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Little Samson (USA).txt",
    "content": "Ta-Keed, the Prince of Darkness, has managed to escape from his supernatural penitentiary where he has had centuries to plot exactly how he will take revenge on those that locked him away. Emperor Hans sends his troops to deal with this threat, but they are no match for the ultimate evil one. As an alternative, the emperor summons the bearers of 4 Magical Bells. These 4 adventurers must make their way to the castle and work as a team if they are to destroy Ta-Keed.\n\nThe first part of Little Samson has each of the 4 characters journeying from his or her home land to the emperor's palace. This gives the player an opportunity to explore that character's unique abilities which will be essential throughout the game.\n\n1. Samson is a human who is reasonably fast and also possesses magnificent rock climbing prowess. He is able to scale walls and hang across ceilings, and also grab onto walls and ceilings while jumping. His offensive option is the ability to shoot bells straight ahead.\n\n2. Kikira is the Dragon Lord. Since she has claws, she does not slip on ice. When she jumps, she can also fly for short bursts. She breathes fire in 2 intensities, depending on how long the player holds down the fire button. Her fireballs spread in arc patterns.\n\n3. Gamm is the Rock Lord. Since he is a living rock he is very strong. So strong in fact that spikes do not hurt him, which is very valuable in a number of situations. He is also very slow and has only a short leap. He has a powerful punch.\n\n4. K.O. is the Mouse Lord. He is tiny which allows him to enter areas that other team members can not. He is also extremely fast and the highest jumper of the team. However, he is the weakest member so he can not sustain very much damage. He has the same wall and ceiling traversal abilities as Samson. Offensively, he can drop time-delay bombs.\n\nWhen all 4 characters reach the emperor's palace, they all jump into Samson's bell. Actually, Gamm and K.O. quietly jump into Samson's bell; Kikira initially refuses. After a brief fight (with the player controlling Samson), Kikira joins the effort. Throughout the rest of the game, the player can switch between any of the 4 characters by entering the sub-screen. Each character has their own power meter. However, all the characters share lives. If the presently selected character loses all of his or her power, then one life is lost. The player must swap between all 4 characters in order to complete the journey.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Lone Ranger, The (USA).txt",
    "content": "In the early 1880's in Texas, a man has returned to bring  justice to the outlaw who murdered his brother and his former comrades, the Texas Rangers. His name is the Lone Ranger. The outlaw, whose name is Butch Cavendish, has now kidnapped the President. The time has come for the masked man to begin his journey of adventure for the purpose of safely rescuing the President and avenging the deaths of his brother and former comrades.\n\nThe game takes you through 8 western-themed regions, each \nwith a different objective, all of which brings you closer to your nemesis, Butch Cavendish. The game features many points of view during gameplay. Most of the time, the game is played from a top-down perspective, as you travel through the country and walk through towns. At other times, the game switches to a side scrolling view when you are in a boss stage. On occasion, the view switches to a first person perspective and plays similar to a first person shooter.\n\nEach bad guy you kill is worth money. You can use money to buy more bullets, dynamite, rifles or a patch up from a doctor. For example, you start with a short barreled gun which you can upgrade to either a medium or long barreled gun. Your gun shoots standard bullets but can also fire silver bullets which are stronger than the standard ones.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Low G Man - The Low Gravity Man (USA).txt",
    "content": "The year is 2284, and the human race has perfected space travel and is colonizing the galaxy. To help out, robots of all types are used in exploring new planets. There are even entire planets dedicated to manufacturing new robots. But then an alien race captured one of the robot manufacturing planets and reprogrammed the robots to destroy humans! Now it's up to you to go in and take back the planet. Using a low gravity backpack, you have the ability to jump higher than normally possible. You also have a wide variety of weapons to help battle the robots guarding the planet, and additional weapons can be found by destroying certain robots.  Some robots will be riding in vehicles. If you destroy the driver, you can capture the vehicle to help you out on your mission. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/M.C. Kids (USA).txt",
    "content": "The Hamburglar has stolen Ronald's bag of magic tricks!  In this 2D platformer, it's up to you to play as Mick or Mac and get it back.  Go across various lands and meet McDonald's characters as you travel to places like Ronald's Clubhouse, Birdie's Treehouse, and the Hamburglar's Hideout as you collect Ronald's cards.  \n\nTo kill the many animal enemies you will find, you must collect bricks and throw them. In some sections you will travel along water in a dinghy; also watch for moving platforms and bonus sections, The game features seven different worlds with over 30 main levels and nine bonus levels.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Mafat Conspiracy, The (USA).txt",
    "content": "You play as Golgo 13 aka Duke Togo, ace sharpshooter and assassin. Based off a character of various manga comics, Golgo is a down-to-business man at the end of a gun. Stuck in the world of espionage among such groups as the FBI and the CIA, Golgo is constantly in mortal danger, and a lethal weapon in his own right. \n\nThe Mafat Conspiracy is the sequel to the NES game Top Secret Episode. In this chapter, Golgo must track down a missing satellite from the SDI laser defense system, as well as rescue a top scientist and stop those who would use the satellite for blackmail and terror on the world's nations. \n\nWhile Golgo is outdoors, the game is a side-scrolling romp where the player can fire and jump. This changes when Golgo enters a building, at which point the game switches to a first person 3D maze. Navigating past soldiers and between floors, Golgo collects various clues to advance the storyline. There is also a driving sequence, and several sniper sequences in which precision aiming is required. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Magic of Scheherazade, The (USA).txt",
    "content": "The evil wizard Sabaron summoned a horde of demons to invade Arabia. One brave magician tried to fight Sabaron, but was trapped in the holes of time. This magician is you. Traveling through different time periods, you'll have to stop Sabaron's evil plans and to rescue the beautiful princess Scheherazade he kidnapped.\n\n\"Magic of Scheherazade\" is a mixture of action- and turn-based combat RPG styles. Wandering through Arabia, you'll encounter enemies whom you'll fight in real time, using various weapons. You'll also be attacked by enemies with whom you'll engage in strategic, party-vs.-party combat. You can choose from three character classes: Fighter, Saint, and Magician. Each class has its own special abilities that you'll use in battles as well as during your exploration of the game world.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Maniac Mansion (USA).txt",
    "content": "The Edison mansion has always been a creepy old house on the edge of town. There have been rumors of strange experiments going on and of odd creatures living amongst the Edison family. There is even a story that a meteorite once crashed near the home nearly 20 years ago. More immediately, a girl named Sandy has gone missing from the local highschool and her boyfriend Dave swears that he saw Dr. Fred abducting her. Dave knows that he cannot do it alone and will need help from two other students if he has any hope of infiltrating the mansion and rescuing Sandy. \nnnPlayers start by choosing 2 students to accompany Dave to the Edison mansion, and can then switch between these three characters at will. Most actions are carried out by selecting verbs on the screen and applying them to an object (such as \"OPEN Door\"). Each character maintains a separate personality and may have a different way to solve a problem from his classmates.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Mappy-Land (USA).txt",
    "content": "Mappy the mouse has a girlfriend named Mapica. In order to please his girlfriend, Mappy goes on a mission to collect gifts for his significant other. Unfortunately the boss cat Nyamco and his legion of pink cats want to track Mappy down so they can make a meal out of him. The goal of the game is to collect 6 of 1 item in each stage without getting eaten by a cat. The items you collect (either pieces of cheese, wedding rings, christmas trees, or baseballs) vary depending on what stage your playing.  There are also stage specific items in the background that will help you defeat your feline adversaries. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Marble Madness (USA).txt",
    "content": "A port of the arcade game. The idea is deceptively simple: Guide a marble down a path without hitting any obstacles or straying off the course. The game is viewed from an isometric perspective, which makes it harder to stay focused on the direction the ball is to follow. There are tight corridors to follow and enemies to avoid. There is a 2-player mode in which players must race to the finish; otherwise you're racing against the clock.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Mega Man (USA).txt",
    "content": "In the future city of Monsteropolis, the use of robot labour has helped civilization grow more than ever before. At the forefront of this technology is Dr. Light and his assistant Dr. Wily, who are commissioned to build six robots to handle a variety of specific tasks. They are named Bombman, Gutsman, Iceman, Cutman, Elecman, and Fireman in reference to their individual prime functions. Dr. Wily, however, has bigger plans and chooses to take control of the robots and let loose destruction in a bid for world control. Dr. Light fights back with the best tool he has, an experimental human-like robot, Rock aka Mega Man, who had been tested to perform cleaning duties. Now properly armed, it's up to Mega Man to take on the maverick robots, fight his way into Dr. Wily's castle, and end this madness.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Mega Man 2 (USA).txt",
    "content": "After defeating Dr. Light's six robots that were reprogrammed by the villainous Dr. Wily in Mega Man, it seemed like the world was safe.  But it was not to be.  Dr. Wily has escaped from prison and is madder than ever, this time creating eight new Robot Masters of his own to take over the world and crush Mega Man!  Is the world doomed?\n\nMega Man 2 is the sequel to the NES game Mega Man. In this game, Metal Man, Air Man, Bubble Man, Quick Man, Crash Man, Flash Man, Heat Man and Wood Man are Dr. Wily's eight prize creations that have been sent to take over the world.  As Mega Man defeats these bosses, he can steal their powers and use them for himself.  Each Robot Master is weak against another's weapon, and through experimentation, Mega Man can gain the upper hand by using the weapon they're vulnerable against.\n\nOther additions to the game include the 'E-Tank' - an item that can be used at any time to completely refill Mega Man's energy, and a Password System, which allows players to continue their game by recording which Robot Masters have been defeated and how many E-Tanks they have.  Mega Man 2 also removes the scoring system from the original game.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Mega Man 3 (USA).txt",
    "content": "\"Calling Mega Man! Calling Mega Man! Come in please! ....\"\n\nThis is a traditional action-platformer: you jump from brick to brick while avoiding pits and shooting robots. It's quite similar, in all respects, to other Mega Man games; however, this is the first time that you get a sidekick. It's also the first time you're allowed to slide instead of merely walking. Also, there is a mysterious character called Protoman who may or may not be your friend.\n\nRush is your dog who helps out by offering other modes of transportation when you need it. He starts out with the 'Rush Coil' ability to launch you to the top of the screen like a springboard; later he acquires the 'Rush Jet' ability to turn into a guided, floating platform to carry you wherever you need to go; and he also gets the 'Rush Marine' ability which is a submarine that works just like the jet except underwater and with the added ability to hop around out of the water(you can actually jump while on the jet but the jet continues to hover beneath you whereas you stay inside the submarine). All of these abilities function just like boss weapons.\n\nHow do those work, you ask? When you defeat the boss at the end of a level you gain his power - or at least a similar power. You may pause the game at any time and switch to any single power you have. It supplants your regular Arm Cannon with a limited - but superior - ability. The weapon ammo is displayed next to your energy meter. There are 8 of these, corresponding to the 8 main levels, even though there are 21 levels in the entire game. The bosses are as follows: Snake Man, Gemini Man, Needle Man, Shadow Man, Spark Man, Top Man, Magnet Man, & Hard Man.\n\nEnemies will often supply you with both energy and ammo refills. You can also collect Energy Tanks which can only be used once but will entirely restore your health. You'll definitely want some of these for Dr. Wily's fortress, if not for the levels before it, since you start the game with only 3 lives. There are even Surprise Boxes lying around for you to find. And, of course, you do get infinite continues and a password feature to resume play at the beginning of any level.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Mega Man 4 (USA) (Rev 1).txt",
    "content": "In Mega Man 4, Dr. Wily is declared as having been killed by the explosion of Gamma. A year passes and Rock, Roll, and Dr. Light are living in peace. But soon, the peace is broken by a new threat.\n\nA supposed colleague of Dr. Light's, the mysterious Dr. Cossack, has sent out eight of his own Robot Masters to find Mega Man, whom Cossack blames for the kidnapping of his daughter. Mega Man, hoping to clear his name, sets out to find Dr. Cossack, this time armed with a powerful new weapon: the Rock Buster!!\n\nRockman must now battle with Cossack's fiendish Robot Masters and find Cossack's daughter before it's too late!\n\nOriginally for the NES, Mega Man 4 was also released for the PSX in Japan as the fourth installment in the Rockman Complete Works series.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Mega Man 5 (USA).txt",
    "content": "Dr. Cossack, humbled by his defeat and his allowing of Dr. Wily to influence his ways, decides to help Dr. Light by providing him and Rockman with tools and weapons to help foil Dr. Wily for good. All seems calm and peaceful, until...\n\nA sudden rampage breaks out, and the cause is found to be a group of robots, led by a mysterious figure. As Dr. Light begins to investigate this rampage and attempts to find a way to stop it, he is kidnapped by the leader of the robots. Rockman hurries to save Dr. Light, but is too late...the only thing he can find at the scene is a yellow scarf...one that almost seems to belong to...Blues!?\n\nCould Rockman's supposed brother, the strange but good-hearted Blues, be the one who kidnapped Dr. Light? Is Blues the one responsible for the rampages? With these questions racing through his mind, Rockman sets off to find Blues and get the answers he wants.\n\nLike the other early Rockman / Mega Man games, the Playstation version was only released in Japan, as part of the Complete Works series.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Mega Man 6 (USA).txt",
    "content": "The sixth (and supposedly final) volume in the Rockman Complete Works series contains the final NES/Famicom Rockman title: Rockman 6: The Biggest Battle in History!!\n\nIn Rockman 6, the whole world is alive and buzzing with word of the 1st Annual Robot Design Contest. Hundreds of robot designers from all corners of the globe enter their most powerful robots into the contest in hopes of taking home the ultimate prize. The sponsor of the contest, the mysterious Mr. X, suddenly declares that he has decided on winners...and takes 8 of the Robot Masters for his own purpose...taking over the world!! Rockman confronts him and demands an explanation, and what Mr. X replies with shocks him.\n\nMr. X declares to Rockman that he had been using Dr. Wily as a puppet the entire time, and now HE would take over the world, and nothing could stand in his way! Rockman finally decides to stop Mr. X once and for all, and sets off to defeat his 8 new Robot Masters and then the madman himself!\n\nThe Rockman Complete Works series was only released in Japan.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Mendel Palace (USA).txt",
    "content": "In Mendel Palace, you are Bun-Bun and you have to rescue your girlfriend Candy, who has fallen asleep and is now trapped in her dream. To progress, you have to go through various areas that feature dolls as enemies. Games are played on a board of 7x5 sliding tiles, using an overhead view. By sliding floor tiles, you'll be able to put them off balance and make the crash in the wall, leading to their destruction.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Metal Gear (USA).txt",
    "content": "Crazed Colonel Vermon CaTaffy poses new terrorist threat to the world. \nOuter Heaven leader CaTaffy has activated the ultimate super weapon: Metal Gear! \nResponding to the crisis, covert unit \"Fox Hound\" is called into action, and that's where you come into play. Trained in hand-to-hand combat and skilled in every weapon known to man, you're Fox Hound's lethal fighting machine, code named \"Solid Snake\". \nBut on this mission you better be sly as well, to surprise heavily armed enemies, busting 'em up quietly and rescuing their hostages before alarms are triggered. \nPlus you gottamaintain radio contact with Commander South, who'll feed you you crucial info on Metal Gear's whereabouts. To survive, capture submachine guns, Barettas, grenade launchers, and plastic explosives... \nUntil you find and destroy Metal Gear, ending CaTaffy's reign of terror. \nFor one player only.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Metal Slader Glory (Japan) (Translated).txt",
    "content": "Metal Slader Glory is a graphic adventure game where the player interacts with the protagonist's surrounding via a menu-based commands. The commands the player can choose varies between context, which usually ranges from talking to supporting characters to investigating the surrounding. The player must explore every possible option in order for new choices to appear. However, if the player makes a wrong selection, the game will end and the player must restart the game from where they left off. The player can quit at any point of the game and continue later via a password feature. \nThe game takes place eight years after a great war was waged between colonies in outer space, and peace has finally settled back onto the Earth. The main character, a 17-year-old war orphan named Tadashi Himukai, purchases a used worker-mech in order to start a construction business with his girlfriend, Elina Furfa. However, when he first activates it, the worker-mech disguise falls away, revealing a combat model Metal Slader, which were all supposedly dismantled after the war, and an enigmatic message is displayed in the cockpit: \"EARTH IN PERIL... SEEK THE CREATOR\". Prompted by this warning, Tadashi, his sister Azusa, and Elina head out into space to find the answers behind it. \nIt was the final game released by HAL Laboratory as an independent third-party developer before their buy-out by Nintendo. The game's story and character designs were done by manga artist Yoshimiru Hoshi, who loosely based the game on his 1984 manga Aktens Fixallia\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Metal Storm (USA).txt",
    "content": "Metal Storm is an action game in which the player takes control of the giant mecha M-308 Gunner in order to put a stop to a malfunctioning computer menace. \n\nTo save it from becoming another generic action game, innovation is shown through fast paced gameplay and the \"gravity flip\" ability, which enables the character to freely switch between moving along the floor or ceiling. While the game is only seven levels long, the difficulty ramps up quickly, so mastery of the gravity technique and memorization of the levels become absolute necessities for survival.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Metroid (USA).txt",
    "content": "It's you against the evil Mother Brain in the thrilling battle of Metroid! \n \nYou're inside the fortress planet Zebes. The planet of endless secret passageways where the Metroid are multiplying. Left alone the Metroid are harmless. But in the wrong hands they could destroy the galaxy. It's up to you to prevent the Mother Brain that controls Zebes from using the Metroid for evil purposes. But that won't be easy. You'll have to use your spacesuit to absorb valuable energy for your search to gain the use of power items like the Ice Beam, Wave Beam, High Jump Boots and Varia. If you survive, it will be you and your acquired powers against the Mother Brain.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Micro Machines (USA) (Unl).txt",
    "content": "Choose your vehicle and go! Feel the power, feel the traction - excellent! Performance sports cars, Formula One racing cars, Power boats, Combat Monster trucks & Turbo Wheels. Absolutely Brilliant!!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Mighty Final Fight (USA).txt",
    "content": "Capcom's only 8-bit port of the Final Fight series, Mighty Final Fight follows the storyline and characters of the first Final Fight game. Mayor of Metro City Mike Haggar, his ninja friend Guy and his daughter's boyfriend, Cody learn that Haggar's daughter, Jessica,  has been kidnapped by the Mad Gear Gang whose leader has fallen in love with her, and also wants the meddling Mike Haggar to leave town. Now it's personal! Choosing one of the three fighters, the player embarks on a beat-em-up quest through the streets of Metro City.\n\nThe game is a side-scrolling beat 'em up and a one-player only game (unlike other Final Fight ports). Also exclusive to this particular Final Fight game is the experience system which allows gaining levels to learn additional moves, similar to the first Double Dragon game. The characters have all been squished down to super-deformed 8-bit likenesses.  Graphically this looks similar to River City Ransom. Each character has a button for attack and a button for jumping. Pressing the two together unleashes a character-specific super-move. Various grabbing moves and throws can also be done by moving the player near an enemy.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Mike Tyson's Punch-Out!! (Japan, USA) (Rev 1).txt",
    "content": "Mike Tyson's Punch-Out is one of the most popular and biggest selling video games of all time. Step into the ring as Little Mac, a 17-year-old fighter from the Bronx, ranked number three in the minor circuit. Your goal is to work your way up through the rankings so that you can challenge Mike Tyson, Kid Dynamite, in a dream fight.  \n \nBut the road to the championship is long and hard. You'll have to work your way up through the minor, major, and world circuits by winning against tough contestants like Piston Honda, Glass Joe, Super Macho Man and many, many more! Defeat all your opponents and meet the ultimate challenge against the World Heavyweight Champion Mike Tyson in the greatest fight of all - The Dream Bout! Knockout Tyson and you can become WVBA (World Video Boxing Association) Champ! \n \nThe rules of the World Video Boxing Association govern your bouts. Each match is three three-minute rounds long. Any boxer knocked down for a 10 count is Knocked Out (KO). If a boxer goes down three times, he'll find himself a Technical Knock Out (TKO). If both boxers make it to the end of the third round, the ref determines the winner.  \n \nOnce you're in the ring you'll have to beat your opponent with smart fighting. Use left and right punches, as well as uppercuts to knock your opponent to the mat. Dodge your opponent's blows with some fancy footwork. Dazzle them with your brilliance and you'll be the World Video Boxing Association Champion. On the other hand, you might find yourself down for the count. \n\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Mitsume ga Tooru (Japan) (Translated).txt",
    "content": "Mitsume ga Tooru (translates to The Three-Eyed One) is based on the manga and anime of the same name. You control Hosuke Sharaku - a boy with a third eye on his forehead and of terrifying power. This power is unleashed when his third eye is open so he is wearing a bandage to seal his power and remove any memories of his true nature. \nIn the game, another three-eyed man with great powers appears and attacks a city. He also kidnaps Sharaku's friend Wato who watches unable to do anything. Sharaku then, with the bandage removed, begins his quest to save Wato from this man.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Monopoly (USA).txt",
    "content": "This time, a Monopoly game on your computer, as good as it knows to be in your reality. Every move of yours can be in 3D animation, or off if you don't want to see animations. There can be up to 6 players at once, and it can be played over the Internet. Music is in midi format, and the sound quality is at the wav format. Roll, spin, and don't miss to give us a grin.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Monster Party (USA).txt",
    "content": "You are a young boy with a baseball bat named Mark. On your way home from a baseball game, you encounter a monster named Bert. Bert needs your help in saving his planet from the evil monsters. You learn how to fuse with Bert and become a monster fighting gargoyle. You'll spend most of the game attacking bad guys by swinging your bat at them or volleying their fire.\n\nThis is a side scrolling adventure, similar in play to Super Mario Bros., but with monsters and skulls. The game itself is infamous for its outlandish quotes.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Monster in My Pocket (USA).txt",
    "content": "The evil Warlock wants to take over the world! He calls his fellow monsters to join him, but several refuse - and after casting a shrinking spell that backfires and shrinks down all the monsters around him, transporting them to different homes in Los Angeles.\n\nWarlock didn't let his size impairment get in the way of world domination, however, so it's up to The Vampire and The Monster to stop him! Along the way, both characters will have to fight through Warlock's henchmonsters through the streets, sewers, a construction area and even a Japanese garden.\n\nThe game features classic platforming action. The player only has one all-purpose attack and they can also double jump to avoid enemies or reach high ledges. The player can also pick up small objects and use them to attack several enemies at once. If there's only one player, they can choose between The Vampire or The Monster. Or if they don't want to go alone, a friend can join in and help them beat Warlock in the two player co-op mode.\n\nThe game is based on the Monster In My Pocket toy franchise. The package also included a limited edition Monster in My Pocket toy, Blemmyea (#81), which was only available with this game.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Moon Crystal (Japan) (Translated).txt",
    "content": "Moon Crystal is a platform action game where you control Ricky Slater on his mission to free his kidnapped father from the evil Count Crimson. The Count is forcing his father, a great scientist, to use the power of the moon crystal to turn the dead into living and rule the world.\n\nThere are 7 stages, each ending with a boss fight. The themes of the stages follow the story closely. The player begins each stage with only small knife to defend yourself. The player can find power-ups that can extend the range of your knife, give additional health containers, allow Ricky to make double jumps etc. The player has 3 lives and also an unlimited amount of continues.\n\nThe game is notable for its fluid animations and rich graphic cut scenes which moves the story forward. It was never officially released outside of Japan, but an unofficial English translation patch exists.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Mr. Gimmick (Europe).txt",
    "content": "Mr. Gimmick is a little doll with a life of its own, that's given to a girl for her birthday. The girl's other toys quickly become jealous of the attention given to Mr. Gimmick, and they decide to carry her away to a mystical land. Mr. Gimmick goes after them to bring his owner back. \n\nThe game Mr. Gimmick is a platform game where you take control of Mr. Gimmick over the course of six levels. You defend yourself by throwing bouncing stars that take a second to form and are then thrown downward. You can also ride the stars thrown to gain access to higher platforms. The inventory you have allows you to store bombs, potions, and fireballs.\n\nThe game has two endings. The easier way is to just run through all of the levels. Each level has a treasure hidden that can be a bit difficult to get, and finding all of these gives access to an extra level. But if you lose all of your lives and have to continue, the game will take all of your treasures away, and not allow you to get to the final level.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Mysterious Murasame Castle, The (Japan) (Translated).txt",
    "content": "\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/NES Open Tournament Golf (USA).txt",
    "content": "In NES Open Tournament Golf, you can play a round of golf on one of three different courses. One or two players can play in the U.S., Japan, or the U.K. and choose a stroke or match play game. Gameplay is from two point of views, starting with an overhead view allowing you to set up the shot and choose a club, then switching to a 3-D point of view. Hitting the ball uses the common power meter where tapping the button starts the meter, tap the button a second time to select the amount of power in the shot, then tap the button a third time to select the amount of slice or hook. If you are unable to finish a round in one play, NES Open Tournament Golf features a battery back-up allowing you to save the game and continue later.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Nekketsu! Street Basket - Go for it, Dunk Heroes! (Japan) (Translated).txt",
    "content": "Another action/sports title in the Nekketsu High game series. Nekketsu Street Basket is exactly what it sounds like: a tournament of two-on-two \"street\" basketball matches all across the US featuring the characters of the Nekketsu High series.\n\nThe game uses the same base engine and graphics as the other games in the series, featuring super-deformed sprites moving across a side-scrolling stage trying to defeat the opposing team. You can pass the ball, shoot it, and attempt super dunks for added points. As with other Nekketsu games you can choose to play foul and beat the hell out of your opponents with your bare hands or any weapon you can find in the stages, and there are many other rule-bending features such as double and triple hoops that score extra points.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/New Ghostbusters II (Europe).txt",
    "content": "New Ghostbusters II follows loosely the original Ivan Reitman's film plot. You start out by selecting two ghostbusters out of  five (The 5th one is Louis Tully). The first, player controlled buster will use proton pack and second, controlled by AI, uses the trap where ghosts end up, after been freezed by using the proton pack. Player controlled buster can get hurt, if touched by a ghost, while AI buster can't. \n\nThe game's perspective is Top-Down, where you move from a one room to another and get rid of ghosts. The type of ghosts vary. After every level you have to fight against a boss, usually someone from the movie. For example, in the first courthouse level you fight against the Scoleri brothers. \n\nThe game contains six levels, inspired by the movie:The Courthouse\n2. Subways\n3. Apartment\n4. The Underground\n5. The Museum of Art\n6. Vigo's Altar\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Ninja Gaiden (USA).txt",
    "content": "Ninja Gaiden begins with a cinematic animation in which 2 ninjas duel to the death; one goes down. It is revealed that the doomed ninja is the father of Ryu Hayabusa. When Ryu learns of this, he embarks on a quest to find out who killed his father and why. This quest takes him to America to find an archaeologist with whom Ryu's father was working. From there, Ryu becomes embroiled in an evil, supernatural conspiracy involving a villain named Jaquio who has plans to use an ancient castle and some relics to unleash a terrifying evil upon the world.\n\nNinja Gaiden is a side scrolling game where Ryu the ninja can run, jump, and slash with his ninja sword. He can also attach to any vertical surface. Powerups are littered throughout the landscape that allow Ryu to toss fireballs and ninja stars, and perform other feats.\n\nRyu will battle through urban city settings, forests, jungles, snow covered castles, underground railroads, and ancient castles. A major feature in Ninja Gaiden are the cinematic scenes -- sometimes fullscreen -- through which the storyline unfolds.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Ninja Gaiden II - The Dark Sword of Chaos (USA).txt",
    "content": "A year after the events of the original Ninja Gaiden, a new villain named Ashtar receives word of Jaquio's defeat. Ashtar uses this opportunity to hatch a new plan to plunge the world into darkness. The ninja, Ryu Hayabusa, hits the trail to destroy all.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Ninja Gaiden III - The Ancient Ship of Doom (USA).txt",
    "content": "This is the third entry in the series of fast-paced ninja action games, and is the last game in the series to be released on the Nintendo Entertainment System.\n\nSome time has passed since the defeat of Ashtar and the resurrected Jaquio, and Irene Lew has received a new mission to complete. She is to observe a strange factory that has been constructed recently for an unknown purpose, and investigate it. She proceeds to reconnoiter it, but is intercepted and apparently assassinated by her friend Ryu Hayabusa...except it isn't Ryu. It is an imposter. The real Ryu, angered over her death, and the subsequent false accusation that he murdered her, continues her mission and proceeds to investigate the factory.\n\nAs stated, this was the last game in the regular series produced for the NES. It had many features the previous games in the series did not, such as a power up to extend the length of your sword, a new vertical \"wave\" attack and vertically-scrolling levels. The US version of the game is reputed to be the hardest in the series, due to the extra damage incurred when hit, slightly shorter regular sword length, limited continues and more enemies.\n\nThe Lynx port is the second Ninja Gaiden game on the platform, the first being a port from the Arcade Version. This port is identical to the NES game, but the in-game picture is compressed for the smaller screen of the Lynx. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Nintendo World Cup (USA) (Rev 1).txt",
    "content": "This soccer game was made at the time when Nintendo introduced their four player adapter, and was probably made for the four playing purpose. This is shown clearly when you choose to play 2 or more players. Then you can choose between many different ground layers, like ice, grass and stone, which adds to the replayability.\n\nWhen you play a one player game you play the world cup as one of the top soccer countries of that time, and you meet countries in a fixed order. Cameroon in the first match and the final is against West Germany. In an old-school fashion you lose when you play a draw, there's no extra time whatsoever.\n\nIn the game you always steer only one character, which you choose before the match starts. You can then give simple orders to you team-mates, like pass, tackle and shoot. Your moves are also limited to these moves. The game is totally lawless, so feel free to make elbow tackles without a wink from the referee. Probably it was made this way to be funnier to play against friends.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Noah's Ark (Europe).txt",
    "content": "Noah has been commanded by God to put two of each animal aboard his ark to save them from the flood. However unhappy people from around the world have captured different animal species, preventing Noah from doing his job. Noah will need to visit these different locations and free the animals from the people holding them captive.\n\nNoah's Ark is a side scrolling action game. The player, as Noah, must choose which level from several world locations to play. Once in a level, Noah can move left right, duck, jump and fire pellets directly in front of him. These pellets can be used to defeat enemy creatures and uncover hidden items. At the end of each level, Noah will encounter a stronger enemy creature who must be defeated. Noah's ultimate goal is to rescue the designated captive animals listed for each level.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Nobunaga's Ambition (USA).txt",
    "content": "In the 16th century, Japan's Sengoku period divided the nation into numerous feudal states, each ruled by a daimyo. Many dreamt of conquering the land, becoming the Shogun and ruling the entire country. One of those daimyos was the ambitious Nobunaga Oda, a merciless ruler and a renowned strategist. Players take on the role of Nobunaga Oda or one of many other daimyos to try to conquer Japan. \n \nNobunaga's Ambition is a turn-based strategy game which can be played in different modes.  Players begin by selecting either a 17 regions scenario or a larger 50 scenario. Then, the player must select a daimyo, each of which is rated attributes in several categories; Age, Health, Ambition, Luck, Charm and IQ. As the game progresses, these values change depending on events in the game. The age value represents a time limit of sorts, as an elderly daimyo becomes increasingly likely to die of old age or sickness.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Nobunaga's Ambition II (USA).txt",
    "content": "Nobunaga's Ambition II is the sequel to Nobunaga's Ambition. The setting is 16th century feudal Japan, a period when ruthless daimyo (feudal lords) contended with each other for dominance. Ultimately, the winner in this struggle will become Shogun and hold actual power over the islands, while being nominally subject to the Emperor.The game casts the player as one of the daimyo, allowing them freedom to decide the fate and future of feudal Japan, through diplomacy and ultimately war. The objective is to unify Japan under the player's rule. If the player fails through death on the battlefield, assassination at the hands of a ninja, or through natural causes, they can choose a successor and play on. Functionally, the first job is to let prosper the fief (province) under the player's control through agricultural development and town investment.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/North and South (USA).txt",
    "content": "Based on the Belgian comic book, \"Les Tuniques Bleues\", this strategy game allows you to replay the American Civil War from both the North and the South sides.\n\nIn the strategy part of the game, you can move your troops on a map of the US. If two opposing armies enter the same state, the battle is played out in an action sequence. Additional action sequences must be accomplished when capturing an enemy fort or train.\n\nThe game also offers a two-player-mode. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Over Horizon (Europe).txt",
    "content": "Over Horizon is a side-scrolling shooter in which the player has to guide a spaceship through various levels and destroy numerous enemies. The ship's weapons can be fired in tow directions and defeated enemies sometimes drop power-ups that equip the ship with different weapons and up to two options. There are three different weapons in addition to the standard shot: Laser, homing missiles and bombs.\n\nThe \"Edit Mode\" presents an unusual feature. In it, players can determine the options positions (which can be changed by pressing the A and B button simultaneously), as well as the properties of the weapons. It is, for example, possible to have the laser behave like homing missiles or the homing missiles like bombs.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Palamedes (USA).txt",
    "content": "The goal of Palamedes is to clear the screen which is, line by line, filling up with dice. Players control a small person situated near the bottom of the screen, who can only be moved to the left or right. The number of the dice the person is holding can be changed with the B button, pressing the A button will shoot the dice upwards. If the die hits another one with a matching number, the targeted dice disappears from the playing area and is added to a column at the bottom of the screen. Pressing down after lining up at least three dice of either the same number or consecutive numbers in the bottom row will destroy up to five lines at once.\n\nThere are three modes of play: The standard single player mode, which requires the player to destroy a set number of lines in order to advance to the next stage; a tournament mode in which the player has to duel a number of CPU-controlled opponents and a two player mode.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Panic Restaurant (USA).txt",
    "content": "Panic Restaurant is a side-scrolling platform game where you play as chef Cookie. The rival chef Ohdove has taken over his restaurant and it's up to Cookie to reclaim it.\n\nIt is a fairly basic platform game. You run and jump, and enemies are placed all around to try and stop you. The entire game, backgrounds, enemies and bosses, is food-themed. You encounter things such as sausages, microwave ovens, onions and hamburgers on your way through the restaurant. To your help you always have a frying pan to beat the enemies with, and you can also find other items, such as a spoon, and plates to throw at the enemies.\n\nThe game contains 6 stages, each in a separate location in the restaurant, such as the kitchen, freezer and basement. At the end of each level you are faced with a boss. In between each level is a bonus game where you play a slot machine to try and win some extra health and lives.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Parodius (Europe).txt",
    "content": "This is mostly the parody of Gradius (Nemesis on some systems), with some flavor from other shoot-em-ups, like Twinbee. The series is available on numerous platforms.\n\nThe game is a right-to-left scrolling shoot-em-up. You can choose from 4 different flying creatures, with different weapons. You must finish 7 stages, each having a boss at the end. You may start at either one, but must complete every level to advance to the final stage.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Perman - Return the Space Saucer! (Japan) (Translated).txt",
    "content": "Perman: Enban wo Torikaese!! is an action platformer for the Nintendo Entertainment System. The game is based on a Japanese comics and has an animated television show. \nBirdman's space saucer was stolen by Dr. Mad and its up to Perman to recover it and save the day. \nThe game features standard platforming and has two playable characters, Perman and Booby the monkey. There is also the boss battle that resembles a boardgame.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Perman 2 - Down with the Secret Madou Society! (Japan) (Translated).txt",
    "content": "Paaman (or quite possibly Parman) is a comic in Japan which is done by Fujiko Fujio who did Doraemon. Like that wasn't already obvious just by looking at them. All of the four characters that you have the choice of controlling have the amazing ability to fly in an amazingly awkward fashion. \nThere's a side view, where you can fly, like what I was just talking about, and there's a top view, where you walk around inside of buildings and stuff. You can't fly though, but you can jump, which is pretty useless. What's cool about this game is the sheer amount of fun crazy bonus rooms you can go into and sometimes at the end of these rooms you can earn neat stuff, like new weapons or weapon upgrades.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Pinball Quest (USA).txt",
    "content": "Billed as a pinball role-playing game, though the term is used loosely, as you only earn gold to buy stoppers and more powerful flippers.  Actually, there are four different modes of play.  The RPG-mode has six, multi-screen pinball tables, where you use your flippers to knock the pinball into enemies, find keys, and eventually rescue Princess Bali.  The other modes, POP!POP!, Viva Golf, and Circus, are each specialized multi-screen pinball tables involving sports, golf, and the circus.  The latter has a slot machine and a bonus game in which you throw balls at animals to save the girl they are chasing.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Pirates! (USA).txt",
    "content": "Modern warfare is no match for the fierce realism of six historically accurate severteenth century pirate raids along the Spanish Main. Aye, matey! That's why plundering and pillaging are back in style, as you command the role of a high seas high-jacker. Either an English Buccaneer, Dutch Adventurer, Spanish Renegade or French Explorer, each with a different skill level and strategic impact. \nAs a swashbuckling scoundrel, you'll barter with enemy merchants, trade for hidden treasure maps, negotiate with unscrupulous governors and forge alliances with monarchs who'd just as soon stab you in the back than float you a loan for new ships. Buth that's only half the battle! You'll also assault towns, sword fight with garrison commanders, lay siege to forts, and fire your cannons broadside at an armada of naval foes, including Spanish War Galleons, Dutch Frigates, French Merchantment and English Sloops.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Pizza Pop! (Japan) (Translated).txt",
    "content": "A pizza delivery guy is in love with a girl named Betty. He's going about his careless job, delivering in hopes of big tips, when something catches his eye. It's a beautiful diamond ring, and it's impossible to resist! Unfortunately, it costs $10,000 - way beyond his budget. And to make matters worse, another man named Nick has eyes for Betty. Now our hero will have to work extra, EXTRA hard to buy it and impress Betty! \n \nIn Pizza Pop!, the player fights through seven crazy neighborhoods populated by a whole host of pizza-hungry characters. The player can, however, defeat his enemies by jumping on them, or whacking them with his pizza pan. The player can also run through the level or use motor vehicles to get around, but he can't run for too long or else he'll get tired - unless he jumps while running. In addition, there are two pizza-stacking mini-games which can earn the player points and extra lives.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Power Blade (USA).txt",
    "content": "It is the year 2191, and Earth's blissful existence was governed by a master computer. Then suddenly, its master control program malfunctioned, and people panicked ensuring total chaos. Secret Agent Nova is called in to locate agents located in six sectors. These agents hold an ID card which Nova must acquire to gain access to the security room within each sector. There, he must defeat the guards and obtain secret tape units, and if Nova obtains six of these, he will be able to gain entry to the control center and defeat the guard to destroy the computer and restore order to society.\n\nPower Blade is a platform game, in which you must run through the level, destroying various enemies, and exit through the door. However, you can't leave each sector without locating agents.  By destroy enemies, you can get power-ups which restore your energy or upgrade your weapon. Occasionally, you can get a special power-up which transforms you into a Mech, which has a special attack mode and an three units of energy.\n\nYou must get through each sector before time runs out. You can leave a sector without getting the ID card and go to another sector, and come back when you're ready.\n\nPower Blade is the significantly altered US Version of Power Blazer\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Power Blade 2 (USA).txt",
    "content": "Christmas Eve, 2200.\n\nThe Delta Foundation has just finished the development of a cyborg unit which represents a new generation of fighting robots. They want to sell it to the government's department of defense as it would pose a threat to the security of the nation if it is sold to a foreign country. They have asked the president, who is actually an alien from outer space, to consider their offer and respond in one week. The government takes this matter very seriously, and assigns Nova to destroy the Delta Foundation. Unfortunately, the government cannot be involved in the event that something might happen to him.\n\nPower Blade 2 has six stages which involves you running through the level, while killing off enemies and avoiding hazards. At the start, you can choose which stage to start at, but unlike Power Blade, once you have chosen a stage, you can't exit and choose another one until you have completed the current one first. Nearly each stage involves you using your wits, as you dodge spikes, jumping towards the top of the screen to avoid fire, and getting fans to lift you onto platforms. You can also slide your way through tight spots, as long as you slide in the right place.\n\nAt the end of each stage, you fight a different boss. However, in the end, you must fight all the bosses you fought before before you get to fight the alien leader.\n\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Princess Tomato in the Salad Kingdom (USA).txt",
    "content": "Many growing seasons ago, the Salad Kingdom was a peaceful land. But one day, minister Pumpkin betrayed king Broccoli, kidnapped princess Tomato, stole the royal Turnip Emblem, and took them to his castle in Zucchini mountains. He sent his cruel Farmies to terrorize the Salad Kingdom. Shortly thereafter, the king died, unable to recover from the loss of his beautiful daughter. But he promised you, the brave Sir Cucumber, the princess' hand and the entire kingdom, if you save the beautiful Tomato from the clutches of the evil Pumpkin. \n\nPrincess Tomato is an adventure game in which you interact with the environment by choosing commands from a menu, such as the traditional \"check\" or \"give\", and the less traditional \"praise\" or \"percy\". Percy is a little persimmon who will be your trusty side-kick throughout your quest and who will help you on many occasions. The puzzles are on the simple side, and are primarily based on talking to characters, finding items and giving them.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Pro Wrestling (USA) (Rev 1).txt",
    "content": "Pro Wrestling is an action wrestling game for one or two players. By using different controller combinations you can perform a wide variety of moves to try and beat your opponent in a 5 minute match. In the one player version, you need to fight your way to first place (but the game will be over if you fall below 6th place). There are seven different wrestlers to fight before you can be declared the Video Wrestling Association champion!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/QIX (USA).txt",
    "content": "In this game, you guide a marker which must draw rectangles and other weird objects in order to claim your territory, and you can either draw these rectangles fast or slow. Drawing the rectangles using the \"slow\" method awards you the most points. Once a rectangle has been made, it will be colored in to show that you have claimed your territory. While drawing the rectangles, you need to watch out for Qix (pronounced \"kicks\"), a series of colored lines that crawl the screen. In addition to Qix, you also need to avoid the Sparks who travel around the border, as well as any lines that you have made, as well as The Fuse, who travels along the line that you are drawing. Once you have claimed enough territory, you proceed to the next level.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/R.C. Pro-Am (USA) (Rev 1).txt",
    "content": "Guide your radio controlled car to victory in this racing game. You have to beat your 3 opponents on 32 tracks while avoiding obstacles like water and oil puddles and collecting bonus items like better engines and tires. \nYou can also collect a variety of weapons to blast your opponents out of the way. \n \n\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/R.C. Pro-Am II (USA).txt",
    "content": "This second Pro-Am racing game for NES introduces some innovations compared to its predecessor. Once again, you have to bring your red radio-controlled car to victory, score points, hit turbo speed lines, and leave no chance to your blue, green, and yellow adversaries. But you can also upgrade your engine and tires - if you can afford it, which means you'll have to think seriously about gathering those dollar signs scattered on the track. The tracks themselves have more variety, some have unusual enemies (little planes bombing you from above), and more kinds of obstacles. You also have several lives and don't die immediately if you arrived last.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Raging Fire - Recca (Japan) (Translated).txt",
    "content": "Conceived as an entry for a game development competition, this game would later be published by Naxat Soft in 1992.  This frenetic shoot-'em-up taxes the Famicom system and the player's reflexes with huge quantities of enemies while maintaining smooth, fast gameplay!  In addition to a single player campaign, there are also score attack and time attack modes available.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Rainbow Islands - Bubble Bobble 2 (Europe).txt",
    "content": "There's trouble in the Rainbow Sea, home of Bubby and many other peaceful people. An old monster named Krabo has cast an evil spell over the land. Only Bubby, with his ability to create magical rainbows, can stop Krabo and save the Rainbow Sea. In Rainbow Islands, you control Bubby on his quest to stop Krabo. Your power to create rainbows will help you climb obstacles and destroy enemies. There are seven levels for you to complete, each with its own level-ending boss. After you have defeated each boss and claimed the Rainbow Diamond for the stage you will have saved the Rainbow Sea from Krabo's treachery.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Rampart (USA) (Jaleco).txt",
    "content": "A medieval masterpiece of power, strategy, and ingenuity! \n \nThe objective is brutally simple: engage your enemy in an all-out exchange of cannonfire, then assess the damage and rebuild your castle. \n \nBut the reality of RAMPART is far more complex. The key to victory lies in how quickly you can pick up the pieces and redesign, refortify, and extend your walls before the next battle begins. \n \nWhether you're facing an onslaught from the computer's armada, or pitting your castle cannons against another player's, there's only one way out. Defend... or perish.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Rescue - The Embassy Mission (USA).txt",
    "content": "Terrorists have overrun an embassy and hold the people inside as hostages. You control six counter-terrorists whose mission is to eliminate the terrorists. In the first part of the game, you have to bring three men into position so they can snipe the building. The second part involves entering the building with the other three men to kill the terrorists and rescue the hostages. Depending on how well you positioned your snipers, you can use them to assist you on that mission.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Ring King (USA).txt",
    "content": "Ring King is a port of an arcade game by the same name. Box your way from the lowest ranks up through the circuits, on your way to become world champion. Build your fighter up in training mode, or take on another player's boxer in a 2-player battle.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/River City Ransom (USA).txt",
    "content": "The evil Slick has kidnapped Ryan's girlfriend and taken over the high school. The player is cast as either Ryan or Alex (second player) and has to fight his way through River City's merciless gangs before confronting Slick and freeing his girl. \n\nRiver City Ransom is a side-scrolling beat-em-up similar to Double Dragon. The player, or players, travel through the locations of River City, encountering various gangs along the way. Gang members can be defeated with punches and kicks, or beaten up with objects scattered around. Upon their defeat, gang members drop money which Alex and Ryan can spend in malls to buy items that restore health and improve their combat abilities. The main characters have RPG-like numerical stats that can be improved this way, and can also buy books to learn combat manoeuvres. To finish the game, the player(s) have to find and defeat all the bosses.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Rockin' Kats (USA).txt",
    "content": "Willy is a young jazz cat who goes by the name of \"The Rockin' Kat\". His girlfriend, Jill, was kidnapped by Mugsy, the local crime boss.\n\nIn this side scrolling game, you must help Rockin' Kat Willy to save his girlfriend through 7 stages. Each stage is a TV show broadcast through different channels of a TV set, and you must thus choose which channel you want to play. Through the channels Willy it will be sent to different themed shows such as western movies, gangster movies, etc, as well as some bonus channels.\n\nWilly can walk and jump around, and carries as a weapon a spring-load Super Punch Gun, which he can put in diverse uses:\n\n1. Knock his enemies: by pressing A.\nPerform higher jumps: by jumping (B) and pressing down + A.\nSpin Attack: by grabbing a ledge (A) and rotating with the d-pad.\nSpin Jump: by grabbing a ledge (A), rotating with the d-pad and jumping (B).\nCatch and Trow: by holding A, grabbing an object and releasing A.\n\nHe can also buy attachments that will make his gun more powerful, such as the Bomber, the Twin Balls, the Hammer Punch and the Jet Sneakers. \n\nRockin' Kats is so cartoonish that you might expect to see it on Saturday morning TV.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Rodland (Europe).txt",
    "content": "Taking a rather literal view of the term 'slap-stick humour', Rodland features two fairies called Tam and Rit, whose mission is to rescue their mum who's been captured and taken to a castle.  \n \nThere are 40 screens to clear, all full of baddies, who are disposed of by grabbing them with a stick, and flipping them from side to side to inflict damage. The hits needn't all be inflicted at the same time, as it's possible to release them to move them out of the way.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Rollergames (USA).txt",
    "content": "This is a platform game in the same fashion as Turtles II, that is that it's a sidescroller were you can move up and down on the screen, but you go on rollerskates. This makes the game go much faster than its counterpart, which adds difficulty and also a sense of speed.\n\nIt includes a silly story about three different roller skates gangs (somewhat like motor cycle gangs) in a close future, which is most an excuse for the game to exist.\n\nYou can choose between three different gangs, one is all-around, one is fast and weak (and consists of women) and one is slow and strong, you get the fashion. This adds some replayability, but in reality, they are kind of the same.\n\nThe game also suffers from trial and error; you must learn the courses if you want to master them. Luckily, the game has unlimited continues.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Rolling Thunder (World) (Namcot Collection, Namco Museum Archives Vol 2).txt",
    "content": "Rolling Thunder is the worlds most powerful secret police force and you are its best agent. Your mission is to stop an underground conspiracy to conquer the world and to save agent Leila, who has been captured. Starting out armed only with a handgun, you have to make your way through heavily guarded hallways and secret passages to find Leila and stop the enemy. Rolling Thunder features side scrolling action based on the arcade game.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Romance of the Three Kingdoms (USA).txt",
    "content": "Based on the events of the Three Kingdoms era in China (3rd century), and on Luo Guanzhong's famous novel Sanguo Yanyi, you take command of one of the many warlords rivaling for control after the Yellow Turban Rebellion.\n\nThis strategy/RPG game introduces hundreds of historically real characters of the Three Kingdoms era. The main purpose of the game is to be supreme ruler of the remnants of the falling Han Dynasty. To do this you have to build a mighty empire by conquering provinces and recruiting generals worthy of command. Fight massive battles, triumph over natural disasters and capture the enemy stronghold is the name of the game. In the end, can you unite China?\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Romance of the Three Kingdoms II (USA).txt",
    "content": "The sequel to Romance of the Three Kingdoms. The game concept is still the same, though they did improve a lot of features that one may consider 'disturbing' from RTK I (e.g. Generals dying easily due to disease, etc.). RTK can be said to be much more 'stable' where players no longer have to worry that much about time length in the game, as the game take a slower time rate to allow the players to build up their forces without much interference. The RTK II gameplay and interface is closely similar to Nobunaga's Ambition II.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Rush'n Attack (USA).txt",
    "content": "Depending on which title you use, and how you interpret it, this game is about a guy who a)rushes in before attacking b)attacks Russians (this was the mid-80s, when the US helped bin Laden do the same), or c)wears a rather goofy hat. One way or another, this arcade conversion arms you with a knife and sends you on a kamikaze mission against hordes of enemy fighters.\n\nThere are four distinct sections of gameplay, taking in a Missile Base, a Harbour, a Bridge, and an enemy Prison Camp. Extra weapons with limited ammunition can be collected along the way, which will make the task a lot easier. The level is divided into 3 horizontal levels, which can be moved between either by jumping or using ladders, and this gives a chance to avoid the more threatening mobs of enemy fighters\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Rygar (USA) (Rev 1).txt",
    "content": "A hero has arrived to defeat the forces of evil in the land of Argool, and you are this hero. Do you have what it takes? This game was one of the first adventures to hit the NES and the remarkable aspect on top of this was the multiple viewpoints the games offers. When you are in an action zone, the game is a side-scrolling action game; however, then you are travelling between zones, the game takes on an overhead view that can also lead to combat situations.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/S.C.A.T. - Special Cybernetic Attack Team (USA).txt",
    "content": "In a humorous take on the eighties' sci-fi judgment day films, you either play Arnold or Sigourney in a mission to save the world. The year is 2029 and an alien invasion, led by Supreme Commander Vile Malmort, threatens the earth.\n\nThe heroes are equipped with a jet pack and two orbiting cannons. These can be set to fire in one direction or in a fixed pattern. You can fly in all directions and use power-ups to gain new types of weapons or to restore health. Only seven lives per mission are provided, but there is an unlimited amount of continues. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Samurai Pizza Cats (Japan) (Translated).txt",
    "content": "Edoropolis is home to a race of Animaloids, anthropomorphic animals which are a combination of flesh and cybernetic body parts. They are ruled by Shogun Tokugawa Lei Lei and his daughter, Tokugawa Usako. Unfortunately for them, the Prime Minister Kitsunezuka Ko'on No Kami is actively trying to depose both of them and wants to assume power by force! He's always got a plan up his sleeves, usually involving attacking the city using an army of Ninja Crows, led by Karamaru and Karasu Gennarisai (who also serves as Ko'on No Kami's advisor).\n\nIt's here where Inuyama Wanko-no-Kami, Chief of the Palace guard, steps in - by bringing in the Secret Ninja Team Nyankii! Whenever Wanko-No-Kami hears that Ko'on No Kami is plotting something, he dispatches the Nyankiis from their secret base at the Pizza Cat Restaurant so they can stop him before he is successful.\n\nHowever, there are rumors that a foreign scientist called Dr. Purple is aiding Ko'on No Kami... but for what purpose? What could Ko'on No Kami be planning this time?\n\nKyatto Ninden Teyandee is a side-scrolling action game in the tradition of Ninja Gaiden, and it is based off the Japanese TV show produced in 1990 by Tatsunoko Productions and Sotsu agency. There are eleven stages in total, and you can play as any of the three main Secret Ninja Team Nyankii members: Yattaro, leader of the team, who uses his Cat's Eye Sword as his main weapon; Pururun, the only female on the team, who attacks with projectiles and her razor-sharp nails; and Sukashii, who uses an umbrella to dispatch his enemies.\n\nBy pausing the game, you can switch out and change places with one of the four Rescue Team members in order to use their special abilities: Rikinoshin can break boulders, Mietoru can fly for a limited time, Gotton can drill through certain walls, and Nekkii can swim easily and use water attacks. You can only use their abilities for a limited amount of time, which can be recovered by picking up items with a cat paw printed on it.\n\nAll seven playable characters have an upgradable special move, which can be used by pressing Up + B. Each move is more devastating than the last, but can only be used a certain amount of times, until the Ninpo bar is drained.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Shadow of the Ninja (USA).txt",
    "content": "In the 21st century, the evil Emperor Garuda has taken over the city of New York, killing many of its inhabitants. You play as either Hayate or Kaede, two ninjas who are attempting to free the city from Garuda's control.\n\nShadow of the Ninja is a typical side-scrolling action game, consisting of running, slashing and jumping through 5 levels, each with 4 sub-stages with numerous and varied foes, and a boss enemy at their end.\n\nKaede and Hayate can not only jump; as ninjas, they can hang from platforms and make swift saltomortals between floors. Sometimes, canisters containing powerups can be found. Typical powerups extend range of the default sword, or they may be additional weapons such as throwing stars and a ninja weapon that looks like a big grappling hook on a string.\n\nThe game allowed two players to play cooperatively, a rare feature for action games outside of the Contra series. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Shadowgate (USA).txt",
    "content": "Using the same graphical interface as Deja Vu, Shadowgate is an adventure game set in a fantasy world. Players take the part of an adventurer sent to the ancient keep of Shadowgate on a quest to find a mystic artifact known as the Staff of Ages and stop the evil Warlock Lord from summoning a horrific demon known as the Behemoth. However Shadowgate has become infested with the Warlock Lord's demonic minions, not to mention the castle's still functional booby-traps.\n\nUnlike Deja Vu, death comes at you suddenly, unexpectedly, and most of all OFTEN. Such simple acts as pulling the wrong switch or opening the wrong door can cause you to be skewered by a booby-trap or disemboweled by a monster. It's allso worth mentioning the fact that if your torch burns out (this happens quite regularly) and you forget to light a new one, you'll trip in the dark and break your neck.\n\nA Windows 3.x update to this game was created in 1991.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Shatterhand (USA).txt",
    "content": "Shatterhand is an action game with eight-direction scrolling. You control Shatterhand in his quest to find and defeat General Grover, leader of the Metal Command. Through the game youll encounter all kinds of mechanical and biomechanical creatures. Shatterhands primary weapon is his cybernetic fists and therefore most enemies must be defeated by punching them.\n\nAdditional help can be given from any of the eight hovering satellite robots, each of which has its own weapon that fires automatically when Shatterhand throws a punch. These satellite robots can be obtained by collecting combinations of alpha-beta letters that appear when you punch some of the white boxes that are scattered throughout each stage.\n\nThe game has seven stages. The first and the last must be played first and last respectively, but the five middle stages can be played in any order. The path to the final showdown with General Grover leads through a factory, a refinery, an anti-gravity research facility, a submarine, a burning subway, a filtration plant and finally to General Grovers missile launch complex.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Side Pocket (USA).txt",
    "content": "The main objective is to cross different USA cities and reach the predetermined scores to go ahead. But remember: you'll have only 16 balls and every error can be lethal!\n\nThe game also comes with modes for 2 players with two variants: 2P Pocket Game (the traditional mode) and 2P 9-Ball Game, where the premise is to sink 9 balls before the other player makes them first. If you prefer, test your target in Trick Game or even hear your favorite song in Jukebox.\n\nAfter each stage completed (and some luck), a bonus stage will appear, as well as the chance to earn extra balls. You will only need a good target in the parquet block!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Silk Worm (USA).txt",
    "content": "Silkworm is a classic horizontally-scrolling shoot-em-up based on the 1988 Tecmo arcade game. The main difference between this game and many other side-scrolling shoot-em-ups is that you got to be on land as well as in the air.\n\nPlayer 1 would play as a helicopter, but if a second player joined the game, they would play as a jeep. Both players would have to protect each other as well as themselves. After a certain number of kills, a \"goose\" helicopter would form on the screen. If the players managed to destroy it they would get a weapons powerup. This would go on throughout the entire game (a \"goose\" could appear even during the end of level baddie!).\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Sky Kid (USA).txt",
    "content": "You are the legendary Red Baron, flying a plane through a horizontal side-scrolling scenery set during World War I. To complete a mission, you simply need to get to the landing spot on the other side without being shot down, but you can gain extra points by destroying enemy vehicles and planes. For huge points, pick up a bomb hidden in the level (you will be warned by a sound when approaching it) and drop it on a large structure. If you fail to land on the landing strip, you run out of fuel and crash.\n\nYou can only shoot horizontally and diagonally by tilting the plane's nose. When in trouble, perform an aerial loop with the secondary button, this often destroys other planes and avoids bullets. There is a co-op mode with the character Max as well.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Smash T.V. (USA).txt",
    "content": "The year is 1999. The world's most popular television show is Smash T.V., an ultra-violent contest between two armed-to-the-teeth combatants, set loose in a series of deadly arenas that are filled to bursting with hordes of mindless beasts and killer robots. The aim of the game is to blast everything in sight and try to grab more cash and prizes than the other guy. Toaster ovens, VCRs, fancy cars and luxury holidays are there for the taking... for anyone who can survive long enough to enjoy them.\n\nSmash T.V. is an insane shoot-em-up from the brain of Eugene Jarvis, creator of Robotron: 2084. It retains that game's frantic style of play and two-joystick control method, but adds plenty of gore, violence, a hint of satire and that all-important two player mode.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Snake Rattle n Roll (USA).txt",
    "content": "Brilliant 3-D graphics and a colorful new duo - Rattle and Roll! \n \nIt's a race to the moon! But first you must travel through 11 levels of adventure. Hurtling anvils, exploding Nibbley Pibbleys, flying carpets, ferocious 3-D terrain, plus BIGFOOT and more! \n \nThe action is non-stop. The challenge is terrific. Help Rattle and Roll, the two snakes, make their way up the perilous mountain. \n \nGobble up Nibbley Pibbleys to gain enough weight to advance to the next level. Defeat enemies while you gather points, food, and extra lives along the way. \n \nPlay alone or with a friend, and get ready to Snake Rattle N Roll!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Snake's Revenge (USA).txt",
    "content": "An unofficial sequel to the original Metal Gear for the NES. Three years has passed since the Outer Heaven incident. FOX-HOUND has gained intelligence that an unknown terrorist group has seized a remote facility containing mass-produced Metal Gear tanks, as well as a new Metal Gear prototype which was under development. The newly-promoted Lt. Solid Snake is called back into action to infiltrate the terrorists' base with the help of two FOX-HOUND rookies, former marine Nick Myer and navy intelligence agent John Turner.\n\nThe player once again assume the role of Snake. The objective is similar to the previous game, as the player must avoid any kind of visual contact (even moreso than the first game), while collecting weapons and equipment on-site. There is a greater variety of areas such as a jungle, a warehouse, a train, a couple of prisons and even a cargo ship containing the mass-produced Metal Gears. The player must also overcome new traps such as searchlights, soldiers in gyrocopters, door-sealing devices and even suicide bombers. The player must also interrogate captured enemy officers by injecting them with a truth serum to increase their rank, in addition to saving hostages like in the first game. Side-scrolling areas are also included in addition to the main overhead game, where the game takes a more action-oriented route (while still maintaining the stealth premise).\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Solomon's Key (USA).txt",
    "content": "Solomon's Key is a platform game with both action and strategy elements. On each level your goal is to retrieve a key which can then be used to unlock the exit. To help out, you have a magic wand which can be used to create and destroy blocks (though some blocks can't be destroyed). In order to reach the key you will need carefully to arrange the blocks on the screen so you can jump your way around safely. Wandering around each level are a variety of enemies which will cause you to lose a life if you're caught. Some creatures can be killed by destroying the block they are standing on, others must be dodged. Hidden bonuses and magic can be found on many of the levels, sometimes even hidden in blocks. Some treasures give you bonus points, others can form magic spells to help deal with the enemies. To make the game more difficult, each level has a time limit in which it must be completed.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Splatter House - Wanpaku Graffiti (Japan) (Translated).txt",
    "content": "Wanpaku Graffiti is the first Splatterhouse game to appear on a home console. It is not clear how it fits in the series' timeline, but it starts with Jennifer mourning over Rick's grave (her boyfriend). Lightning strikes his grave and he is resurrected. Before she can rejoice, another bolt strikes the grave next to him and a jack-o-lantern appears. This pumpkin king kidnaps Jennifer and Rick barely has the time to wipe off the dust from his clothes before he sets off to rescue his girlfriend.\n\nAlthough the game is not as gory as the other titles, there is still plenty of disturbing enemies such as headless chickens, severed hands and zombies. Through seven side-scrolling levels, including a graveyard, a mansion, a Japanese pagoda and an Egyptian pyramid, you chase the pumpkin king with your cleaver and a shotgun you can pick up along the road. Just like the other games in the series, there are lots of movie references. The game often needs good timing and pixel perfect jumps, as falling down from platforms will regenerate the enemies. You can pick up candy, hamburgers and cans of soda to restore your health. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Spot - The Video Game (USA).txt",
    "content": "A puzzle game loosely featuring licensing from the 7Up soft drink. The gameplay involves up to 4 players, which can be either human or computer, each taking on spots of a particular colour. Starting from opposite corners, they take it in turns to move, either by 'reproducing' one of their spots to form another one in an adjacent square, or by making a jump, losing the square you did have but taking one two spaces away.\n\nWhen a piece lands next to one of another colour, that piece changes colour into that of their opponent. The winner of each round is either the last player with any pieces left, or the player who has the most pieces left when the level is full.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Star Wars (Japan) (Namco) (Translated).txt",
    "content": "Only the people who made the movie could bring you this much action and adventure... Control your favorite Star Wars heroes - Luke Skywalker, Han Solo, Princess Leia. Enlist the help of Obi-Wan Kenobi, C-3PO, and R2-D2. Outfight and outsmart the intergalactic bad guys - stormtroopers, jawas, Banthas, bounty hunters, sinister droids, and more. Explore the spectacular worlds of Star Wars - from the Tatooine Desert to the Mos Eisley Spaceport to inside the Death Star. And if you get very, very good... destroy the Death Star and save the Rebel Alliance from Darth Vader!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/StarTropics (USA).txt",
    "content": "In StarTropics, you play the part of Michael Jones. Mike's uncle (Dr. Jones, a famous archaeologist) is on C-Island looking for some lost ruins and has invited Mike to come visit him. However, shortly after arriving on the island Mike learns from Chief Coralcola that Dr. Jones has recently been abducted! Now it is up to Mike to locate Dr. Jones and find out why he was abducted. StarTropics is a combination of an adventure and action game played from an overhead point of view. Starting out with just an island yo-yo, Mike will need to search the island for Dr. Jones. The villagers may be able to offer some clues, there are many dangerous enemies to defeat, and along the way there are a variety of new weapons and other items to be found which will help Mike on his quest. The cartridge uses a battery backup to allow games to be saved.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Super C (USA).txt",
    "content": "The alien Red Falcon is back, and planning on taking over the planet Earth. Now it's up to Scorpion and Mad Dog to battle through five levels and save the planet. Based on the arcade game, Super C is the sequel to Contra. Gameplay is a combination of side scrolling/platform and top down view. There is a wide variety of enemies to defeat, starting with earthly locations, and progressing to more alien. To help out, weapon upgrades can be found as the game progresses. Two players can play simultaneously, or one player can attempt to take on Red Falcon himself.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Super Dodge Ball (USA).txt",
    "content": "This ain't elementary school and it sure as heck ain't gym class. This is Super Dodge Ball. Control your team of six players to pummel the opposing team into submission using only the ball and your team's unique skills. Each player has his own special attacks and each team has their own unique attributes.\n\nPlay the World Cup mode and take on teams from around the world to claim the championship. You play as the star USA team and must work your way through teams from countries such as England, Iceland, Japan, and more to finally take on the current ruling world champions, the Soviet Union.\n\nOr you can challenge a friend in Versus mode and go head to head with whatever teams you choose.\n\nOr, if you just feel like cutting loose, you can play Bean Ball mode which is just a free-for-all every-man-for-himself romp in the school yard. Be the last man standing. You can play this alone or with a friend, but the computer will control the remaining 4-5 players.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Super Mario Bros. (World).txt",
    "content": "The Princess has been kidnapped by the evil Bowser, and it is up to Mario and brother Luigi to save the day.\n\nThe first ever platform adventure for the Mario Brothers has the player exploring level after level, with Bowser to contend with as the end of level boss. Power-ups include the Super Mushroom, which increases Mario's size and power, the fire flower, allowing him to shoot fireballs at enemies, and the ever important starman for a short burst of invincibility.\n\nEach level includes a bonus section filled with coins plus a shortcut through the level, plenty of bad buys and obstacles to get past, and an end of level flag, in which the higher the player grabs it, the more points are awarded to them. Certain levels also include warp points, which takes the player to higher levels.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Super Mario Bros. 2 (Japan) (En).txt",
    "content": "Originally released in Japan as Super Mario Bros. 2, this game has previously made only brief cameo appearances in the Western hemisphere. Mario fans will appreciate the familiar look and feel of the game, while finding that its updated game play creates an entirely new challenge. No longer content just to wear different-colored overalls, Mario and Luigi also possess different skill sets (Mario can stop quicker, while Luigi can jump higher). In addition to the classic enemies already known to fans worldwide, there are also Poison Mushrooms, backward Warp Zones, and the occasional wind gust (which can help or hinder your progress) to take into account. And if that?s somehow not enough, expert players can go looking for the game?s secret worlds. So get ready to put your Mario skills to the ultimate test, and save the Princess again. Just don?t be surprised if she?s in another castle!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Super Mario Bros. 2 (USA) (Rev 1).txt",
    "content": "One night Mario has a strange dream, where he opens a door to another world filled with even stranger creatures and lands then those in his last adventure against Bowser. Amazingly, the next day, Mario, Luigi, Toad, and the Princess stumble upon a cave, which leads to the world that was in Mario's dream.\n\nSubcon, the land of dreams, is under an evil spell thanks to Wart, so Mario and the gang must save the day. New creatures to defeat and plenty of nasty surprises await.\n\nChoose from the four characters, each differing in speed and jumping ability, and head on through 7 levels each filled with puzzles, bosses, bonus money, the always helpful mushroom, and invincible star, plus bombs and magic potions. \nAfter each level, depending on the coins you collect, you can use them in the bonus game to collect extra lives.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Super Mario Bros. 3 (USA) (Rev 1).txt",
    "content": "Bowser is back, and along with the Bowser kids, he's out to spoil Mario's day once again. \n\nThis time, along with nabbing the Princess, the Bowser crew have also taken the magic wands from the Kings of each land and turned them into creatures.\nIt's up to Mario and Luigi to get back the magic wands, defeat Bowser, and save the Princess all before the day is done.\n\nOld and new power-ups abound in each level for the Mario Brothers, including the return of the Super Mushroom and Fire Flower, plus the new power-ups including the frog suit, the warp flute, and the most important of all, the leaf, which allows the player to fly and attack enemies with your tail.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Super Spike V'Ball (USA).txt",
    "content": "Bump, Set, Spike, Kabooom!! \n \nWarm up with a few exercise games then face contenders in the American Circuit. For the ultimate challenge play against the best in the World Cup. \n \nJump and block opponent's spikes, dive to dig a a cross court spike, or set one up for a smash that only the best player can return. Kabooom!! Your Super Spike blasts your opponent off his feet! \"X\" marks the spot so you can track the ball. \n \nPick players with speed, strong defense, or killer offense. Your quick reflexes and competitive spirit complete the team. \n \nPlay againt the computer, by yourself or challenge a friend. With the NES Satellite or the NES Four Score, any combination of 1 to 4 can play - even two vs. two! \n \nNow you can play on sand courts from Daytona to Los Angeles. Face off international teams in Hawaii, or challenge the hot Navy team aboard an aircraft carrier. \n \nWatch the sand fly! Hear the applause. Soak up the rays! It's Super Spike V'Ball or World Class fun!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Super Spy Hunter (USA).txt",
    "content": "In the year 2525, things are a mess. politically. Terrorists led by someone named \"X\" want to attack the United Nations. The CIA is in charge of discouraging the attacks. To that end, and since all of their best agents have failed the task, they send out an unofficial agent -- you, the Super Spy Hunter.\n\nThe Super Spy Hunter has a super spy car. It's actually a well-armed car that can turn into a boat or a plane at opportune times. The action is fast vertical scrolling as the vehicle faces all manner of powerful vehicle threats from a well-funded terrorist enemy -- cars, trucks, helicopters, etc. Luckily, there are many powerups to collect along the way, both defensive and offensive.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Sweet Home (Japan) (Translated).txt",
    "content": "\"Sweet Home\" follows the exploits of five members of\nan investigation group: Kazuo, Akiko, Taro, Asuka, and Emi. The famous painter Mamiya Ichirou lived many years in a secluded mansion, and rumor says there are some valuable frescos to find inside. Our investigators decide to take some pictures of the frescos. However, upon entering the mansion, a ghost-like figure of Mamiya appears  and threatens them. After this, they find themselves trapped in the mansion. The heroes must now find a way out of the mansion, not forgetting the frescos they came there for, and the destiny of an earlier investigation group that has disappeared under mysterious circumstances.\n\n\"Sweet Home\" is perhaps the first known example of survival horror genre, created by the same company that later made the famous  Resident Evil. However, \"Sweet Home\" is also a console-style RPG: characters fight random monsters in turn-based battles, equip various weapons and level up. You can (and must) form different teams from the five available characters, both for battles and for solving puzzles. Each character has his (or her) own item-based skill: Taro can take pictures, Emi can unlock almost any door, Kazuo has a lighter, Akiko uses a vacuum cleaner to remove dust and other obstacles, and Asuka has medical kits.\n\nThe game was never released outside of Japan.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Sword Master (USA).txt",
    "content": "Sword Master establishes the tale of an evil wizard in league with a monstrous demon who have dared to kidnap a damsel. The Sword Master is a knight who seeks to rescue the fair lady and destroy the evil people and creatures in the castle in which they dwell.\n\nIt is a parallax side-scrolling action game in which the player must use sword and shield to battle through 7 game levels, from the forest, to a cursed town, to multiple levels of the villain's castle lair. The player will encounter giant bats, wolves, skeleton warriors, evil knights, wizards, lizard men, gargoyles, and other fierce enemies on his quest. The Sword Master can swing his sword, defend with his shield, and gather power-ups which enable him to change his form; for example, the Sword Master can transform into a magic user himself and cast offensive magic spells.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Tecmo Bowl (USA) (Rev 1).txt",
    "content": "The most popular American football game to hit the NES console, Tecmo Bowl pits the player vs. the computer in 11 game single-elimination playoff action, or you can go head-to-head with a human opponent in action or coach mode.  There are 12 teams of real NFL players (circa 1988) to choose from, but don't look for official NFL team logos or mascots like Bears or Dolphins--Tecmo Bowl has the NFLPA but not the NFL license.\n\nThe play perspective is top-down and the screen scrolls horizontally.  Player graphics are large and colorful, which is made possible by limiting the number of players to nine per team.  Animated cut-scenes are shown following touchdowns and at half-time, and crowds are shown filling the endzone seats.\n\nThere are four plays to choose from on offense--usually two runs and two passes. The player takes control of the quarterback before the snap and then either hands off to the running back or works through his receiver progression from the top to the bottom of the screen.  Defense consists of trying to guess which offensive play the opponent will select and then taking control of one of the defensive players before the snap.  A very simple power meter system is used for kicking field goals, extra points, and punts.\n\nThere are no game or season stats and there is no way to save your season, but there is a password feature allowing you to resume tournament play where you left off.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Tecmo Super Bowl (USA).txt",
    "content": "Tecmo Super Bowl is the follow-up to the NES football arcade/simulation Tecmo Bowl.  While the basic gameplay of the original is intact, a host of new features and improvements have been added.  \n\nFeatures include: 28 real NFL teams/mascots with real NFL players (circa 1991), 11 players on the field per team, player substitutions, fumbles, improved control over kicks and punts, eight plays to choose from during games, customizable playbooks, arcade/coach/computer simulation options for one or two players, pre-season/regular season/Pro-Bowl games, regular season team standings and rankings, regular season player statistics and rankings, end-of-game boxscores, and a 12-team playoff following the NFL format.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Tecmo World Wrestling (USA).txt",
    "content": "In Tecmo World Wrestling, you select from 10 fictional wrestlers and compete against the others for the coveted Tecmo World Wrestling Title. When your match begins you'll find you've got all the moves of the pros. You can run, climb to the top ropes, climb outside the ring, pick up your opponent, throw them over the ropes, pin them, and escape from a pin yourself. The wrestlers, such as \"The British Star\" Rex Beat and \"The Technician\" Dr. Guildo have a full assortment of professional wrestling moves and holds such as the Pile Driver, Shoulder Throw, Cobra Twist, as well as the ever-popular Slam the Guys Face Into the Metal Post maneuver. \n\nBefore selected matches you'll be able to beef up you're wrestler's strength with three different exercises. The bottom portion of the screen is where the energetic announcer describes what is going on in the ring, move by move.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Teenage Mutant Ninja Turtles (USA).txt",
    "content": "With April O'Neil held hostage by The Shredder's thugs, Bebop and Rocksteady, once again, it's up to the Teenage Mutant Ninja Turtles to come to her rescue!  Play as all four of the turtle heroes, rescue April, and then rescue your sensei Splinter from Mecha-Turtles clutches than go after The Shredder deep in the bowels of The Technodrome itself.\n\nTeenage Mutant Ninja Turtles is an action game based on the late eighties/early nineties cartoon series of the same name. Play as Leonardo, Michaelangelo, Donatello and Raphael (one turtle only, but the ability to swap between turtles at any time) as you save your friends and battle The Shredder and his cronies. There are no 'lives', as such - when you lose a turtle, he becomes 'captured', and you cannot use him again until you rescue him from a place hidden in the overworld.\n\nGameplay takes place in two perspectives: a top-down view, which lets you run around and explore buildings, sewers and other places. When entering places from the top-down view, the perspective shifts to a side-scrolling view, where most of the battling takes place. In addition to each turtle's main weapon, sub-weapons (such as shuriken) can be acquired, to use at foes - these have a limited use.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Teenage Mutant Ninja Turtles II - The Arcade Game (USA).txt",
    "content": "April O'Neil, the reporter friend of the Teenage Mutant Ninja Turtles, is kidnapped by the villainous Shredder and his two goons, Bebop and Rocksteady. The four ninja turtles: Raphael, Michelangelo, Donatello and Leonardo fight their way through hordes of Foot Soldiers in order to rescue April. They battle familiar foes such as the mad scientist Baxter Stockman, General Traag from Dimension X and the evil alien brain Krang, up to the final showdown with Shredder himself.\n\nTeenage Mutant Ninja Turtles: The Arcade Game is a port of the popular arcade game made by Konami during the height of the cartoon series' popularity. Depending on the version of the game, up to two, three or four players can take part in the action. The game plays like a simplified Double Dragon. While most of the standard Foot Soldier enemies are easily dispatched, some attack with knives or ray guns and are thus more dangerous. At the end of each level, players encounter a boss (or in certain cases two bosses working in tandem, such as Bebop and Rocksteady).\n\nThe NES version of the game features additional content not present in other versions of the game: two new levels (Snowy Central Park and The Dojo), new bosses (including Tora, Shogun and Baxter Stockman as a fly), additional music tracks as well as more variations of Foot Soldiers. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Teenage Mutant Ninja Turtles III - The Manhattan Project (USA).txt",
    "content": "This was the last side-scrolling Teenage Mutant Ninja Turtles game for NES. It followed the highly acclaimed Turtles II over a year later and, unlike its predecessor, doesn't have an Arcade counterpart.\n\nThe third game in the series is basically the same as the second. The story and the stages are different, of course, but it doesn't really matter. Choose your favourite turtle and kill as many Foot Clan soldiers as you can, fight the bosses and reach Shredder in a Double Dragon-styled game.\n\nThe graphics and gameplay were improved. And, if the choice of the turtle depended only on personal taste in the second game (as they were all the same, in different colors), in this third episode they gained individual special moves. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Terra Cresta (USA).txt",
    "content": "In the follow-up to Moon Cresta, a well-guarded planet is being invaded. You will have to make a succession of passes over the landscape, shooting out ground turrets and aliens. Numbered bases release power-ups when shot - these can either be used in combination or (by pressing the space bar) in Formation Mode, covering a wider range of shooting positions. Each pass over the planet ends with a boss; the third and final one with a boss who can only be killed if you are at maximum power. Death puts you back to the start of the world.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Tetris (USA).txt",
    "content": "This version of Tetris is one of many conversions of the famous block-stacking game, as well as the best-known (but not the only) version on Nintendo's first home console. The goal is to place pieces made up of four tiles in a ten-by-twenty well, organizing them into complete rows, which disappear. As rows are cleared, the pace of the game increases, and the game ends if the stack reaches the top of the well.\n\nThe game offers two different modes of play, \"Type A\" and \"Type B\". \"Type A\" is a standard endless mode, where the speed of the game increases every ten lines, with an option for the starting level when beginning the game. \"Type B\", on the other hand, is a race to clear 25 lines, with options for both drop speed and starting garbage. In both modes, successful play is rewarded with cute animations. There are also three different background songs to choose from.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Tetris 2 (USA).txt",
    "content": "Unlike the original Tetris, Tetris 2 has you clearing the field of blocks in a different way. Each play field starts with different colored dots (in this case black, gray and white), with one of each color flashing. The blocks are made up of the same three colors, and by matching blocks of the same color over the top or to the side of the dot will clear the dot and those blocks from the screen. If you clear a flashing dot, all the corresponding dots of the same color will be cleared. To complete the round just clear the dots, not the blocks themselves.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Tiny Toon Adventures (USA).txt",
    "content": "These Tiny Toons have big problems. That's right. The arch enemy of Acme Acres, Montana Max, has kidnapped the ever-so-popular Babs Bunny. Now the furry female's fate rests in the paws of Buster Bunny and his crime fighting pals - Dizzy Devil, Furrball and Plucky Duck. Four kooky buddies with their own special talent. Buster can bounce over bad guys with the best of them. Furrball uses his feline claws to climb walls. Dizzy Devil prefers to spin through them. And Plucky can glide through the air and swim like a fish. Choose which partner you want at the beginning of each level before you face-off against time and goofballs gone bad in 6 zany wonderlands. So you better get jumping or it will be curtains for our playful pals!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Tiny Toon Adventures 2 - Trouble in Wackyland (USA).txt",
    "content": "Buster Bunny receives an invitation to a newly opened amusement park. He gladly accepts, unaware of the fact this invitation is a trap. Now he and his friends have to overcome all the obstacles and to survive in the Wackyland...\n\n\"Trouble in Wackyland\" consists of several mini-games which you can complete in no particular order. You have to reach the engine of a train in a standard side-scrolling platformer, keep your balance on a wooden plank while diving down dangerous waterfalls, compete in toy car tournament, etc. Once you gain enough tickets, you can access the Castle, that is standing behind the Amusement Park. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Toki (USA).txt",
    "content": "The hero of the game is a young jungle-man named Toki. One day the evil wizard Dr. Stark kidnaps his girlfriend Wanda. When Toki tries to save her, he is turned into a monkey! Now Toki has to find Dr. Stark in his palace, to rescue Wanda, and to become a human being again!\n\nIt is a platform game with a lot of various levels: jungle, underwater, volcanic caves, on the ice... Toki's only weapons are spitting on the enemies or jumping on them and crashing them. There are many possibilities to upgrade his spitting \"weapon\";  for example, if he finds an upgrade, he can spit fireballs. \n\nThis game is ported from an older arcade version.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Tombs & Treasure (USA).txt",
    "content": "While exploring Central America, Professor Ime has disappeared.  He was last known to be going to the Mayan Tomb of Chichen Iza.  You lead two kids in their search for the professor.\n\nThis is a point and click adventure.  The directional buttons move a pointer on screen.  You'll be able to interact with items and switches after choosing from a list of keywords such as: look, use, and get.  The save feature uses passwords in order to continue your progress. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Town & Country Surf Designs - Thrilla's Surfari (USA).txt",
    "content": "In order to restore his immortal powers, Wazula, an evil Kahuna, is ordered to travel to Hawaii to kidnap Barbi Bikini. Barbi Bikini happens to be Thrilla Gorilla's girlfriend so now he's off to Africa so he can rescue her.\n\nThe game features 7 worlds each containing 5 stages (except for the 1st and 3rd world where each contain only 4 stages). Most of the game involves controlling Thrilla on a skateboard, dodging or jumping over various obstacles and enemies while attempting to get to the end of the stage. There will also be times when Thrilla will get to be on a surfboard, but gameplay remains the same as it was on the skateboard. Thrilla also rides a shark underwater with the goal still being to get to the end of the stage while either dodging enemies or throwing spears at them. There are also boss battles where Thrilla throws either coconuts or spears trying to deplete all the health of his adversary. \n\nThere is also a shell game between stages which allows the player to obtain extra lives. The game also contains powerups throughout its levels such as a banana which restores health.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Town & Country Surf Designs - Wood & Water Rage (USA).txt",
    "content": "T&C Surf Designs features both skateboarding and surfing games. The skating section (called Street Skate Session) is a side scrolling action game where you need to navigate through an obstacle course within the given time limit. Ideally you want to earn as many points as possible by performing tricks, jumping over items, and collecting bonuses. If you crash too many times (or fall into a hole, run out of time, etc...) then the game will be over. In the surfing section (called Big Wave Encounter) you need to surf a giant wave all the way to the beach. As with skating, you can earn points by performing tricks and collecting bonuses; likewise the game ends if you crash too many times. You can choose to play either game individually, or alternate between the two (the Wood & Water Rage option). You can select several T&C Surf Designs characters to play as, including Thrilla Gorilla, Kool Kat, Joe Cool, and Tiki Man.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/TwinBee 3 - The Aimless Demon King (Japan) (Translated).txt",
    "content": "\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Ufouria - The Saga (Europe).txt",
    "content": "Ufouria is a (side scrolling) platform adventure video game. You begin play as Hebereke (Bop Louie in PAL regions), a penguin (though in PAL release he is more humanoid and looks like the Stay-Puft Marshmallow Man), and must explore the world on which you and three other friends crash landed. As you encounter the new characters you must fight them to make them recover their memory.  Once you have recovered all 3 other characters you are then searching for Temple Keys which will lead back to your homeworld of Ufouria.\n\nThe world in which you interact is free form, meaning that you can wander around as you please. To get to new areas you will need to get power-ups and/or new characters with their own abilities. Character switching is done as needed, not defined by levels.  Sections of the game have bosses and mini-bosses which include the characters which have not had their memory returned yet. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Ultima - Quest of the Avatar (USA).txt",
    "content": "Following the defeat of the evil triad in the previous three Ultima games, the world of Sosaria changed beyond recognition: continents rose and sank, and new cities were built, heralding the advent of a different civilization. Unified by the reign of the benevolent monarch Lord British, the new world was renamed Britannia. Lord British wished to base people's well-being on the ethical principles of Truth, Love, and Courage, proclaiming the Eight Virtues (Honesty, Compassion, Valor, Justice, Sacrifice, Honor, Spirituality, and Humility) as the ideal everyone should strive for. The person who could accomplish full understanding and realization of these virtues would serve as a spiritual leader and a moral example for the inhabitants of Britannia; he alone would be able to obtain holy artifacts, descend into the Stygian Abyss, and access the Codex of Ultimate Wisdom. This person is the Avatar.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Vice - Project Doom (USA).txt",
    "content": "Quinn Hart and his partner, Detective Reese of the VICE squad both work to stop the trafficking of illegal substances. But something new has appeared on the scene, a neon gel with great addictive properties. During investigations as to the origin of the gel, Reese mysteriously disappears and leaves Hart without a lead. Time passes and Hart becomes romantically involved with his new partner, Christy, as he continues trying to track down the gel. But Hart is about to get a brand new lead...\n\nVice: Project Doom is a game that features both overhead driving modes and side-scrolling platform adventure sequences. Hart's vehicle can accelerate or slow down and fire his weapon straight ahead. During side-scrolling sequences, Hart can jump, duck, climb or use his selected weapon. Weapons that can be selected include a Katana sword, a pistol and a grenade-type weapon. These weapons feature limited ammunition with the exception of the katana. Power-ups include ammunition, coins, and health.\n\nDuring both of these sequences, Hart must fight and maneuver his way past enemy foes to confront a boss. By destroying the boss and completing the level, Hart progresses and learns a bit more about the origins of the neon gel and what Project Doom is all about. Cinematics dialog between the levels tell the tale in a style similar to that of Ninja Gaiden. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Wacky Races (USA).txt",
    "content": "Despite what the name implies, Wacky Races for NES is not a racing game, and has nothing to do with the other games bearing the same name but the license. In this game, the player takes control of Muttley, the grumbling, but loyal dog from the popular Hanna-Barbera cartoon. His master Dastardly sends his on three different missions, each taking place in a different location, which in its turn is divided into smaller levels. \n\nMuttley has to complete those levels in a rather standard platformer fashion, moving from left to right, jumping, overcoming obstacles and fighting various creatures and boss enemies from the cartoon movie. The dog's primary weapon is, unsurprisingly, his own mouth - biting regular enemies will usually lead to their instant death. Muttley can also collect bones scattered across the levels, which will grant him powerful weapons and skills of limited use, such as a bomb, a projectile attack, and the ability to heal.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Wai Wai World (Japan) (Translated).txt",
    "content": "The player starts the game as Konami Man, and can switch between Konami Man and Konami Lady. If two players are gaming, then one will play as Konami Man and the other as Konami Lady. Both players are not able to switch characters until they rescue at least one character from one of the six levels. The player must play through six different selectable levels that take place in different Konami games and save that game's star character with a key who the player can then play as. Each character has different abilities to begin with as well as ones they can eventually gain. The player ventures through these first six levels in a sort on non-linear fashion with gameplay.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Wai Wai World 2 - SOS!! Parsley Castle (Japan) (Translated).txt",
    "content": "Wai Wai World 2: SOS!! Parsley Jo, lit. \"Wai Wai World 2: SOS!! Parsley Castle\" is a 1991 Famicom platform game released only in Japan by Konami. It is a sequel to Konami Wai Wai World, and stars various Konami characters. \n \nThe player begins the game by choosing one of four character groups which consist of three different Konami characters. Most of the levels are spoofs of various different levels from Konami games. The gameplay is mostly like a straightforward platform game, similar to Contra. In these levels you start off with the main character Rickle (or Rikkuru), who by collecting a special power-up, can transform temporarily into one of the three different characters the player chose at the beginning of the game. There are also space shooter, driving, and puzzle levels. After certain levels you can choose different paths which consist of different stages.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Wario's Woods (USA).txt",
    "content": "Wario's Woods is a puzzle game similar to Tetris or Columns, but with a twist. Instead of directly controlling the monsters and bombs that are falling down, the player controls Toad who has to carry around stacks of monsters and bombs and to combine them in the right way. One bomb plus at least two monsters of the same color have to be combined to make them disappear. If five or more objects are cleared at the same time, a diamond will appear. Destroying the diamond will clear all monsters of the diamond's color. \nThere are four different ways to pick up objects. The A button lets Toad pick up the whole stack that is in front of him, the B button lets him only pick up one object, even if it's in the middle of a stack, the Y button lets him kick a monster or bomb that's in front of him and the X button places him on top of the stack that he is carrying. He can also run up walls and stacks to catch falling objects out of the air or to pick up certain parts of a stack.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Whomp 'Em (USA).txt",
    "content": "Whomp 'Em tells the tale of a little Native American Indian named Soaring Eagle who is on a quest to fill his magic pouch with totems. These totems are guarded by fearsome bosses at the end of different environments spread throughout the land. Each totem gives Soaring Eagle a new power to help him complete his journey.\n\nWhomp 'Em is a side scrolling action platformer. The hero can run, jump, and attack with his spear. Not only can he jab forward with his spear, Soaring Eagle can also stab upwards or downwards while jumping. Further, he can use his spear to defend from attacks coming from above.\n\nSoaring Eagle must first conquer a bossless, introductory level. From there, he is free to choose from among 6 different lands to explore: Fire test, ice ritual, secret cliff, water test, magic forest, and sacred woods. Each level is highly unique with its own dangerous enemies and lethal boss. After completing these 6 areas and collecting the associated totems, Soaring Eagle is whisked off to a cloud realm where he must use all of his accumulated power to defeat a much larger enemy.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Willow (USA).txt",
    "content": "Willow is an action RPG based on the movie with the same name. The player assumes the role of Willow, the chosen one who must restore human form to the benevolent sorceress Fin Raziel and destroy the evil sorceress, Bavmorda. While the game follows the movie's plot somewhat most of the time, it also expands on it and introduces characters, races and enemies not found in the movie.\n\nGameplay is similar to other action RPGs and The Legend of Zelda. Willow is seen from a top down perspective and all enemies are visible on screen. Slaying enemies will give Willow experience points, which will eventually lead to him increasing his stats automatically. New weapons, shields and magic items are found in various treasure chests scattered across the land or given to Willow as part of the plot. Aside from battling minor enemies Willow will also face off against several boss monsters as well as characters from the movie.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Wrath of the Black Manta (USA) (Rev 1).txt",
    "content": "The Big Apple is being overrun with crime, and the cities children have been mysteriously disappearing. It is up to the Black Manta to rescue the children and stop whomever is behind this. In addition to your ninja skills, you will be able to find additional powers (including invisibility and teleportation) to help you out against the numerous and well armed villians. Wrath of the Black Manta is a side scrolling arcade style action game with five different levels. Throughout each level you may come across various clues to help you find where to go next or lead you to a hidden location. Some of the bad guys you come across may also possess useful knowledge and can be interrogated (if they don't kill you first that is!)\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Xexyz (USA).txt",
    "content": "It's the year 2777. Due to nuclear wars and natural disasters, Earth's population has decreased dramatically and only five island are left, forming the nation of Xexyz. In Xexyz, humans, spirits and faeries have lived peacefully for centuries under the reign of King Xeu Star. One day, Xexyz is attacked by Goruza who murders the king, builds mechanical castles on each island and captures the queen of each island. You take on the role of a soldier named Apollo who wants to put an end to Goruza's reign.\n\nControlling Apollo, it is your task to free all five islands. Freeing an island is done in several different phases that feature 'Jump'n Shoot' as well as 'Shooter' levels (called \"Action Mode\" and \"Shooting Mode\"). The first level of each island is a Jump'n Shoot level that contains many doors to shops, bonus games, friendly NPCs or mid-bosses. NPCs will sometimes give you important hints, items or weapons; bonus games can be played to win some money (\"Balls\"); defeating mid-bosses (and thereby freeing a Fairy) will get you a cash reward and shops also offer weapons and items. Weapons differ largely in attack power and range. Items have temporary effects such as invincibility or improved jumping abilities. In an island's first level, you will have to find a secret room and defeat a boss, for which you will receive a Force Star that is needed to gain access to a mechanical castle. Mechanical castles look similar to other Jump'n Shoot levels but are more complex.\n\nOnce you have made your way to a \"Cyborg Rider\", a self-scrolling Shooter sequence starts in which you have to shoot your way through lots of enemies while picking up speed and weapon power-ups.\nAt the end of this sequence you will leave the Cyborg Rider, and step onto a floating platform for a boss fight. After the boss is defeated, another Shooter sequence with another boss at the end awaits, but this time, the boss if fought from the Cyborg Rider. After defeating this boss, you start the process over with a Jump'n Shoot level. \n\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Yoshi's Cookie (USA).txt",
    "content": "Yoshi's Cookie is a fast-paced puzzle game that can be enjoyed by everyone as it is easy to play, but challenging to complete. To play, you move the randomly placed cookies into rows and columns of cookies with similar patterns. When you successfully assemble a row or column of the same cookies, the line will disappear, and you can begin on a new row or column. The \"Yoshi\" cookie is very special in both the 1-player and the 2-player game. Since the Yoshi Cookie is the key to both games, you must use it wisely.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Young Indiana Jones Chronicles, The (USA).txt",
    "content": "The Young Indiana Jones Chronicles is based on the television series of the same name, which is in turn based on the Lucas/Spielberg movie franchise starring Harrison Ford. In this game, a young Indiana Jones embarks on globetrotting adventures in which he gathers treasure and fights for what is good and right.\n\nThe game features side-scrolling action where young Indy trots along the ground, jumps, crawls flat, and can collect and wield a variety of weapons against copious enemies in the game. Indy starts with a whip and can find such weapons as throwing knives, grenades, pistols, rifles, and others. He can also collect hat powerups which allow him to sustain more damage.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Zelda II - The Adventure of Link (USA).txt",
    "content": "The land of Hyrule is in chaos.  As Link, you'll be sent on a treacherous journey to return six precious Crystals to their origins in six stone statues.  Only by defeating the guardians of the six palaces will you gain passage to the seventh palace, take on the ultimate challenge that awaits you, and wake the Princess Zelda from her sleeping spell.  On your way, helpful villagers you encounter will offer clues and secret messages invaluable in your quest.  As you guide Link through the levels of Hyrule, close-ups and overviews will enhance your video vision.  Are you up to the challenge?\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Zoda's Revenge - StarTropics II (USA).txt",
    "content": "You are Mike Jones, the main character in the game. One day at Dr. Jones' office, the Oxford Wonder Word is opened and while saying the magic words; a time rift opens up and you fall in. This game is a journey through time and space, going through 8 different time shifts, and meeting some of the historical figures from the past. Your mission is to get the mystical tetrads that are located in these time periods. You run into the alien creature Zoda who is out to steal and destroy the tetrads.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo NES-Famicom/text/Zombie Nation (USA).txt",
    "content": "In 1999 a mysterious object crashes into the desert and a mysterious creature, Darc Seed appears. Using magnetic powers, he soon turns the people of the United States into zombies and exerts influence over various weapons and objects. Among the weapons Darc Seed claims is the legendary samurai sword, Shura. When the great head of the samurai, Namakubi hears about this, he sets out for the United States to defeat Darc Seed and reclaim the sword.\n\nWhat makes this so unusual however is that \"great head of the samurai\" is to be taken literally and Namakubi therefore is a giant disembodied head. His main weapon is the ability to shoot projectiles from his eyes and bombs from his mouth which he fires at various enemies, objects and buildings. Furthermore, should a zombie hostage fall out a window he can rescue them to slowly power up his attacks.\n\nThe game is a side-scrolling shooter in which the player can control Namakubi's movement across the screen and the ability to shoot. Enemies reduce health by varying amounts, health can be restored by increasing the player's score. The game features four distinct stages with 2 difficulty settings.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/ActRaiser (USA).txt",
    "content": "ActRaiser was one of the early SNES games, drawing upon the success of side-scrolling platform action titles and the building model of Sim City. You play \"The Master\", and must save the world from evil. First you purge the land by sending your spirit into a warrior with a big sword and magic powers. This side scrolling portion puts you in many different locales, from swamps and forests, to pyramids and snowy mountaintops. As you eliminate evil from different parts of the land, you allow villagers to return and build their towns. You then control an angel who helps guide the villagers in their town building, and can send down miracles to aid them in their needs.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/ActRaiser 2 (USA).txt",
    "content": "Players control \"The Master,\" a god-like spirit sent down from the heavens, and fight to eradicate evil from the land. This sequel to ActRaiser focuses entirely on the side-scrolling action of the original, and has 14 levels with new monsters, new abilities, and new super powers.\n\nYou still control a \"Cloud Palace\" across a zoomable map of the world, choosing your next area of battle. In addition, many of the sound effects from the original game make their reappearance, as well as some hidden RPG elements. \n\nChanges from the original ActRaiser include the elimination of the village-building mode, a move from a battery-save to password-save system, and a new musical score.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Adventures of Batman & Robin, The (USA).txt",
    "content": "Konami's game based on the 90s animated series starring the Caped Crusader sends him against his most famous enemies in a platforming/beat'em'up title. Each level sends Batman against one particular villain. Most levels present Batman with a large number of henchmen to take out and environmental dangers to avoid on his way to one or more boss battles. Besides kicks, throws and punches, Batman can use a variety of equipment against the enemies. Always available are Batarangs and the grappling hook. Before each mission, Batman can also select additional equipment, like knockout gas spray, throwing stars, smoke bombs and plastic explosives, all with limited ammunition. Special equipment required for certain levels include a flashlight, gas mask and X-ray goggles. If some necessary equipment is missing, it is always possible to return to the Batcave to change the gear and then restart the current level. Many of the situations and environments of the levels are based on episodes from the series and the game's graphics emulate the animation and drawing style of the show.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Aero Fighters (USA).txt",
    "content": "The world's hope hinges on your combat skills and sheer determination as an \"aero fighter\". Defend the world from unknown alien forces that are attempting to take over the world. You must extract these unknown forces before they can execute their plot for dominance. After conquering the unknown forces, the battle continues into space where the \"controlling intellect\" dictated the take-over attempt. You must seek and destroy this evil force to prevent it from seizing other worlds.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Aerobiz (USA).txt",
    "content": "You are the CEO of an airline company. Your goal is to become the most successful airline in the world by connecting all 22 cities with air routes, maintain a profit, and meet the required quota of passengers. If you cannot turn a profit for a year or meet the victory conditions in 32 years you lose. Some strategic decisions you must make include negotiating for open air routes, purchasing or selling aircraft, invest in branch offices and hotels, advertise your airline and set budgets. You must also pay attention to statistics like quarterly and annual sales reports, as well as city data. World events also affect your airline, from natural disasters to war and even the Olympic games, all of which will affect how many passengers you get. All the planes in the game are based on real-life aircraft, such as the Boeing 747 and the Concorde.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Aerobiz Supersonic (USA).txt",
    "content": "You have just been elected as the CEO of a brand new airline company that must compete against 3 other airlines for global dominance. Set up new routes, buy businesses, and manage all your resources including planes, cashflow, and company representatives.\n\nThe basic premise of the game is the same as that of the original Aerobiz, but this time you have more planes to choose from, more city airports spanned over 7 different global regions, and 4 different time period scenarios complete with historically accurate political relationships and events.\n\nDo you have what it takes to make your company fly high? Or will it crash and burn?\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Aladdin (USA).txt",
    "content": "For years, Jafar, the Sultan's evil advisor has sought a magic treasure - a single lamp that holds the key to the greatest power in the world. With this goal in sight, Jafar learns that only one person in the world can claim the magic lamp from the dreaded Cave of Wonders - one whose rags hide a heart that is pure - a diamond in the rough! \nJoin Aladdin and his pet monkey Abu, as they race through the marketplace toward their date with destiny. Watch as Jafar tricks our hero and his friend into retrieving the lamp from the dangerous Cave of Wonders. But Aladding and Abu outwit Jafar, releading the power of a wacky blue Genie! Aladding will have the chance to spoil Jafar's devious plans and win the hand of the beautiful princess Jasmine. But it will take more than magic to make his wishes come true...\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Alien 3 (USA) (Rev 1).txt",
    "content": "Alien 3 on Super NES immerses you immediately after the end of the movie \"Aliens\". Ellen Ripley, the main character in the saga, is dormant cryogenically aboard the Sulaco Ship. An alien has infiltrated on board, decimating the crew and causing the ship to crash on the planet Fiorina 161. Help Ripley to survive and rescue the prisoners from the clutches of the aliens until help arrives.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Alien vs Predator (USA).txt",
    "content": "Based on the Alien VS Predator comic book series. During the 25th century, mankind has colonized many planets. On one of these, New Shanghai, strange creatures have been discovered. These Aliens cause much havoc. New Shanghai initiates a distress call to other planets in the galaxy. A cloaked ship belonging to hunting creatures known as Predators intercepts the message. The Predators on board decide that these strange Alien creatures might make worthy trophies for the collection. The player takes the role of one of the Predators.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Amazing Spider-Man, The - Lethal Foes (Japan) (Translated).txt",
    "content": "The Amazing Spider-Man: Lethal Foes is based on the Spider-Man cartoon of the time and pits Spider-Man against several of his old foes as well as an army of Spider-Slayers. Spider-Man can attack with a hand-to-hand combo or by shooting out pellets of webbing. He can crawl on any wall or ceiling and also swing along with his webbing strands if he has enough clearance. The story is told in dialogue scenes with the stage's boss as well as Spider-Man's allies at the end of each stage.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/American Tail, An - Fievel Goes West (USA).txt",
    "content": "Based on the movie by the same name, Fievel Goes West is a platform game featuring the young mouse Fievel Mousekewitz. After immigrating to overseas to America in the 1800s(?), the Mousekewitz family has moved out onto the open frontier of the wild west. With dreams of being a cowboy, Fievel soon makes friends and plays on the dusty streets imagining himself a great gunslinger. But all is not well as the villainous Cat R. Waul and his gang of cats (as well as other creatures) has plans to turn this place into an all-you-can-eat mouse buffet. It's up to Fievel to get in the way of Cat's plans with the help of the canine sheriff, Wylie Burp and his non-mouse eating cat pal, Tiger\n\nFievel Goes West is a platform game. Fievel can jump and fire a pop-gun as he ventures through each level, collecting coins. The pop-gun can be powered-up to fire more powerful projectiles.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Animaniacs (USA).txt",
    "content": "Animaniacs is a side-scrolling action/puzzle game based on the animated TV series of the same name.  The Warner kids, Yakko, Wakko, and Dot have escaped the water tower again and are on a quest to retrieve movie memorabilia from the Warner Bros. studio lot.  \n\nThere are 4 stages, and in each stage the Warners must work together to get past obstacles and enemies. Yakko can push or pull boxes, Wakko can use his hammer to smash things, and Dot can blow kisses to charm simple minded foes.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Arcana (USA).txt",
    "content": "In this game you play as a young boy named Rooks.  He's the only one that can save the world from the evil Galneon.  With the power of the cards he begins his adventure.\n\nAll of the people you fight with and against are displayed on cards.  They can have an elemental attribute or not.  Rooks is able to summon an elemental to aid him.  He can only summon one type at a time, and he must find them before being able to summon them.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Ardy Lightfoot (USA).txt",
    "content": "A Zelda-like game with a twist.\n\nHere you are some sort of a dog with oversized bird which you use to defeat your enemies. Your goal is to find seven pieces of powers. Each piece is spread throughout a colorful world with funny enemies and weird bosses.\n\nIts like a Zelda-clone, Ardy and Link are not twins but they have same goal, to find pieces which then have to be puzzled together to find the greater evil.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Arkanoid - Doh It Again (USA).txt",
    "content": "A sequel to the arcade game Arkanoid. Use your paddle to move the ball around and hit bricks to clear the level. Once all the bricks are gone in the current level, you go on to the next level. Power-ups, like lasers and paddle lengthening will help you during the levels. Unlike the arcade version, the sequel has boss battles and somewhat of a storyline. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Axelay (USA).txt",
    "content": "This planet was once a quiet, peaceful place to live, until...they came...\n\nAn unknown alien race came to this planet and promptly laid waste to it. The remaining defense force has been sent out to try and defeat them. One lucky person gets to fly the latest line of defense ships made: the AX-77 Axelay. However, these ships are still in the prototype stage, and as such, only one exists.\n\nSo get out there and head to the alien's homeworld. With some luck, you may just be able to take them out at the source...\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/BASS Masters Classic - Pro Edition (USA).txt",
    "content": "This game is basically an update to Bass Masters Classic. Updates involve adding 6 pro fishermen, five different lakes instead of four, an expanded lineup of different fishing equipment, 2 difficulty level settings, a zoom function, larger lakes, and new music tracks. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Bahamut Lagoon (Japan) (Translated).txt",
    "content": "The Kingdom of Kahna is in Great Danger. \n \nThe evil Emperor Sauzer, obsessed by his world domination ideas, is preparing to invade the kingdom. The king sends his best troops of knights and wizards to face the enemy, but in vain - the kingdom is conquered by Sauzer, the king is murdered, and his lovely daughter is kidnapped. You were brave, Leader of the Dragon Squad, but now you will have to become strong. Remember the promise you gave the princess a long time ago: always to be at her side. \n \nSupported by his friends and by his faithful dragons, you must now free the princess and the kingdom from the enemy's hands. If only the strongest of the dragons, Bahamut, could be awakened... \n\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Bassin's Black Bass (USA).txt",
    "content": "Bassin's Black Bass is a fishing game endorsed by the professional fishing champion Hank Parker. It is another entry in Hot-B's long line of fishing games. Players aim to become a professional fisherman and can travel by themselves or along with Hank.\n\nThere are four different fishing areas players advance to as they win each round of the tournament. Players travel by boat on the water, select a fishing spot and then select lure and cast fish. Certain types of fish are only available at specific spots. There is also a fish radar that makes a sound when there is fish nearby. Players need to select the correct type of lure (there are about 20), keep track of weather conditions and the limited time available in tournaments. Some fish fight back hard and need to be reeled in with careful timing.\n\nThe four tournaments are Local Amateur Tournament, Amateur Bass Championship, Pro Bass Tournament and Bassin' World Championship. About eight types of fish can be caught. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Batman Returns (USA).txt",
    "content": "The successful movie sequel Batman Returns spawned many different game adaptations. The SNES version presents the story of Batman's encounter with the Penguin and Catwoman as a side-scrolling beat'em'up, with one Batmobile driving sequence thrown in.\n\nThere are two varieties of the beat'em'up levels. One plays like Final Fight and similar games: Batman can move in two dimensions, beating up his enemies with various punches, kicks, combos and special moves.\nSpecial gadgets to be used include the famous Batarang to take out enemies from a distance and \"Test Tubes\" filled with chemical explosives which will damage all enemies on the screen.\n\nIn the second type of side-scrolling level, Batman can only move in one dimension, left or right. The Batarang is the standard weapon here, with punches only being used when the enemy gets close. Also in these levels, Batman can use a grappling hook to cross dangerous areas unharmed.\n\nEnemies in the beat'em'up levels usually belong to the Penguin's Red Triangle Circus Gang - clowns in all varieties: thin clowns, fat clowns, clowns on bikes, clowns armed with bazookas, and more. At the end of each level there is a boss fight, including several encounters with Catwoman and the Penguin.\n\nIn the Batmobile driving level, the action is viewed from behind. Batman has to evade clowns on bikes and shoot them down when he gets the chance. At the end of the road, another boss fight awaits.\n\nDigitized images from the film illustrate the storyline.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Best of the Best - Championship Karate (USA).txt",
    "content": "Best of the Best Championship Karate is a realistic fighting game.\nAfter you choose your fighter for his parameters (strength, stamina and resistance), you can choose from 55 different moves.\nYou can now train your fighter at a gym before the real fights.\nTo master the game, one must alternate training and fights, as training improves stamina, strength and resistance.\nBe careful, loosing a fight reduces those parameters, so you have to be ready before getting on the ring ! \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Biker Mice from Mars (USA).txt",
    "content": "Based on the cartoon of the same name, Biker Mice From Mars is a racing game very similar to Rock 'n Roll Racing. Races are shown from an isometric perspective and you can choose between six different drivers that differ in acceleration, top speed and grip. During the races, you can use weapons such as mines or missiles to slow down your opponents and pick up random bonuses ranging from money to making you temporarily invincible. After each race, you will receive money that can be spent on better tires, armor, engines or weapons. There's also a two-player mode that lets you play the main race with a friend or compete in a one on one race.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/BioMetal (USA).txt",
    "content": "BioMetal is a side-scrolling shooter game. Their are two pairs, one for lasers and the other for missiles, of three upgrades for your weapons. \n\nThe war that divided the galaxy and used all it's resources has ended. A fleet was sent on a mission to find more natural resources. They never returned. Their last transmission reveals that the enemy' created one last experiment. This experiment is a combination of the aggressive nature of animals combined with the efficiency of machines. These creatures were named BioMetal.\n\nThe MF-92GX Halbard mothership has been assigned to destroy the threat before they can not be stopped. You are piloting the MF-92GX Halbard fighter that is equipped with the experimental Gel Analog Mutant weapon. The Gel is charged up on the ship and can be used to surround the ship as a protective shield or be thrown at the enemy forces.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/BlaZeon - The Bio-Cyborg Challenge (USA).txt",
    "content": "BlaZeon is a space shooter and direct conversion of the arcade game. The player travels in a spaceship from the left side of the screen to the right while swarms of enemy spaceships appear. The player is able to fire at them with his cannon (which can be fired normally or rapid fire) and special missile weapon. After the defeat of certain enemies they will leave behind their husk. Touching this former enemy will allow the player to upgrade their spaceship into more powerful forms. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Blackthorne (USA).txt",
    "content": "Blackthorne is an action-adventure game that takes place on the planet Tuul. Tuul was a peaceful place, until the evil warrior Sarlac used the power of the Darkstone to take control.  Blackthorne's father, the good King Vlaros, sent him to Earth just as his kingdom crumbled around him.  Now, 20 years later, Blackthorne is grown and must return to Tuul to free it from the clutches of Sarlac.\n\nThis game is played from a side-view with non-scrolling backgrounds. It has strong similarities to Prince of Persia, except you battle your foes using guns and bombs instead of a sword.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Bonkers (USA).txt",
    "content": "The game is based on the Disney TV show of the same name. Bonkers is a bob-cat police officer who lives in \"toondom\", a cartoony land where people co-exist with various creatures from cartoon movies. \n\nOne day, Bonkers and his partner Lucky hear about a shocking robbery: Hollywood's most valuable treasures - Sorcerer's Hat, Mermaid's Voice, and Magic Lamp - were stolen! Now it is up to Bonkers to capture the thieves and to take back the stolen treasures.\n\nThis is an action platform game. Bonkers can jump and dash, throwing enemies aside and even destroying some obstacles. Enemies can be killed by jumping on their heads. You can also collect various items such as bombs to throw at the enemies, cakes to refill your health, or hyper juice to make you dash continuously.\n\nBesides the common license, this game is totally different from the Genesis game  Bonkers. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Boxing Legends of the Ring (USA).txt",
    "content": "Boxing Legends of the Ring lets you take control of eight middleweight legends of boxing, Roberto Duran, Tommy \"Hitman\" Duran, Jake \"Raging Bull\" La Motta, Rocky Graziano, \"Sugar\" Ray Robinson, \"Sugar\" Ray Leonard, \"Marveleous\" Marvin Hagler and James Toney.  You can either compete in an exhibition mode or play in career mode and become the greatest of all time.\n\nThe set of punches in the game is pretty much standard, jab, hook, uppercut, even the ever popular but illegal low blow.  Also, for each round and every knockdown you score on an opponent, you get a super punch, a straight shot to the face and is almost unstoppable and connected right could knock out your opponent, but if you miss, you lose your punch for the round.\n\nThere are two main displays during a fight, a damage inflict meter in the form of two boxing gloves, one on each side and as a player connects a punch, the glove will show a black area of where the glove connected and a damage meter that show's the two fighters faces.  As the round progresses, the fighter shows more bruises and cuts and starts to flash red when the fighter is getting tired and is the best time to land your super punch.\n\nAnother feature is from round to round, your view will alternate, from looking over your shoulder to the next round and looking at yourself over your opponents shoulder.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Brain Lord (USA).txt",
    "content": "In \"Brain Lord\", you play a young traveler and warrior who is searching for his long lost father. Long ago, when you were a mere child, your father told you about the great legacy of your village. Once your people were Dragon Warriors, who could control and fly on dragons. But the dragons had disappeared, and your father was determined to find the legendary Tower of Light, where, according to rumors, the last dragons might be hiding. You father went to search the Tower of Light and never came back. Years have passed, and now you finally found the Tower of Light. But your adventure doesn't end there, as you had thought - it begins there...\n\n\"Brain Lord\" is an action RPG with a heavy emphasis on dungeon exploring. You fight enemies in real time, using various weapons with different ranges - swords, axes, etc. You can equip different kinds of armor and shields. On your quest you will find magical jades that summon fairies who would fight at your side. The fairies have special attacks and level up after fighting just like you, but are controlled by the AI. There are also puzzles to solve in the dungeons, and the hero has the ability to jump.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Breath of Fire (USA).txt",
    "content": "In a distant land, peace was maintained for thousands of years by a fearful dragon clan who could transform into powerful monsters. One day they discovered a goddess who could fulfill their every wish. Greed split the clan into Dark and Light Dragons, each battling the other to win her magic. \n \nOne member of the Light Dragons, along with seven of his companions, emerged to keep the opposing forces from destroying their world. Using six magical keys, they sealed the goddess into another realm. \n \nCenturies have passed. The Dark Dragons are destroying the land in search of the keys. When they find the keys, they will once again release the magic goddess. Light Dragon... the time has come to draw your sword and fight for the future of your people.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Breath of Fire II (USA).txt",
    "content": "Ryu was a young boy who has memories of a strange village far away and a magical doorway which sucked him through. However those are only distant memories. Ryu and his best friend Bow are apprentices in the Ranger's Guild. As adventurers they take on posted jobs needed by the townspeople. However it isn't long before one job goes awry and Bow is accused of stealing a valuable item. In order to clear his friend's name and find the meaning of his dreams, Ryu will explore the world, eventually discovering the meaning of his dreams and hidden abilities inside himself. \n \nBreath of Fire II is a role playing game. The majority of game is played from a top-down map, however battles are seen from an isometric view. Ryu will form parties from among 8 other characters, each with their own set of skills and powers that will help him discover the truth behind the mystery.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Bugs Bunny - Rabbit Rampage (USA).txt",
    "content": "A fiendish animator has gone crazy and has started painting Bugs Bunny into all sorts of messes across reused cartoon landscapes. Bugs is getting into trouble from all kinds of characters including Elmer Fudd, Marvin the Martian, Crusher the wrestler, Yosamite Sam, the three little pigs. Bugs will need to use his experience, wit, and arsenal of wacky ACME weapons in order to defeat the challenges of each location.\n\nBugs Bunny Rabbit Rampage is a side-scrolling platform game. The player, controlling Bugs Bunny, is able to jump (and squash), high-kick, throw cream pies and use ACME weapons. These weapons are scattered all over the landscape and include such cartoon favorites as bone-shaped dynamite sticks, anvils to drop on heads, Shrink Rays, portable holes and many more. Players will encounter a variety of familiar Looney Tunes characters as enemies and level bosses. At the end of each level (10 in all). players are given a rating based on their gameplay style, which includes how many of these ACME weapons they were willing to use. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Bust-A-Move (USA).txt",
    "content": "Bust-A-Move (also known as Puzzle Bobble) is a real-time puzzle game in which the player controls a device called \"pointer\" at the bottom of the screen, aiming and releasing randomly colored bubbles upwards. Depending on the aiming, the bubbles may float up directly or bounce off the walls, changing their trajectory. The goal is to aim the bubbles in such a way that they will touch identically colored ones. When such bubbles form a group of three or more, they pop and disappear from the screen. \n \nIf the ceiling of the area is covered by too many bubbles, it will gradually descend; the game is over when it nearly reaches the player-controlled pointer. Should the player fail to release the bubbles within a specific time limit, they will be released automatically, unaffected by the pointer's aiming. \n \nA two-player mode is included as well. Each player competes on an area occupying half of the screen, dealing with identically generated bubbles. Whenever a player successfully disposes of a bubble group, a part of it is transferred onto the opponent's part of the screen. \n \nThe game features the two dinosaur protagonists (Bob and Bub) as well as other characters from Bubble Bobble, even though the two games have distinctly different gameplay.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Cacoma Knight in Bizyland (USA).txt",
    "content": "The people of Bizyland were hard-working and prosperous. However, Wagamama, the queen of Lasyland was jealous and used the power of her magic mirror. The spell that was cast would switch the realms of Bizyland and Lasyland around. The only people left unaffected by the spell were those who were not hard-working: notably the king of Bizyland as well as two children and a robot who were playing that day. Using the king's magic chalk, they must travel over Lasyland and restore enough of a percentage of each area so as to break the spell over each region. \n \nCacoma Knight is a puzzle-painting game. Choosing one of the three characters, the player will begin each level only able to move around the edges. The player can start using the chalk to move away from the edges and draw a line over the darkened area and reach another edge. Once a section (always the smaller) is \"chalked off\" from the rest, it will be restored.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Cannon Fodder (Europe).txt",
    "content": "Guide a team of up to four soldiers through 72 levels of combat in this innovative top-down action/strategy hybrid, best thought of as Lemmings crossed with Commando crossed with Dune 2. The characters are controlled indirectly using the mouse, as you activate each soldier or group of them by highlighting them, click the left button to move them to a particular spot, and the right button for them to fire guns at an enemy. You can also pick up grenades, which can be used to destroy groups of enemies or buildings (by pressing both buttons at once). \n\nEach mission has a specific objective, and some feature vehicles such as tanks to make things easier. Your troops can cross water but can't shoot within it, so finding and controlling bridges is often crucial. You can use the arrangement of trees to find hiding places to shoot from, and should watch out for CPU soldiers also doing so.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Castlevania - Dracula X (USA).txt",
    "content": "In Transylvania, people lived in fear of the evil Count Dracula. The ultimate embodiment of evil, Dracula swept his dark hand over the land, making the people mere sheep for his thirst for blood. But when a young woman named Sonia Belmont came forth to confront him, he made a horrible mistake: he underestimated her. Thus, the battle between Dracula and the Belmont family began.\n\nNow, in the late 18th century, the battle still rages on...\n\nDracula has been resurrected by a cult of black magic to cast his shadow of fear and terror over the land once again. But now, Dracula takes his fight to those the Belmonts are close to. He kidnaps two girls, Annette and Maria Renard, to bring forth the latest Belmont, so that he may destroy the bloodline for good.\n\nRichter Belmont, Annette's lover, has no choice now, but to take up the legendary Vampire Killer and follow his destiny: to battle Dracula and save Annette and Maria.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Choplifter III - Rescue-Survive (USA).txt",
    "content": "Choplifter III for the SNES features entirely different levels from the Game Gear and GameBoy versions, and plays slightly different than other Choplifter games. While the controls and basic gameplay haven't changed significantly, and the main goal of each level is still rescuing a certain number of hostages, Choplifter III is faster and more action-oriented than earlier Choplifter games.\n\nEnemies appear in larger variety and numbers now. They reappear more often and some levels feature fights against large bosses. To compensate for this, there are more power-ups (such as missiles, bombs, invisibility, etc.) available, and it is possible to have the helicopter repaired at certain points in a level. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Chrono Trigger (USA).txt",
    "content": "What begins as a carefree day at the Millennial Fair for a young man named Crono turns into a huge adventure. He will be thrusted into the ultimate trip through time and space, encountering new friends, defeating the forces of evil, and encountering the one who would destroy the flow of time. \nChrono Trigger is a role-playing game, with the usual game mechanics fare. As the characters grow in power, not only their ability scores increase, but they also learn new \"Techs\". \nThe game utilizes the ATB (active time battle) combat system from Final Fantasy game. Apart from normal Techs, it is possible to use Double and Triple Techniques.There are no random battles in the game, as all the enemies are visible on screen, and it's even possible to just pass by them entirely. \nThe game allows you to face your ultimate adversary at different points of time, which leads to several different endings.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Chuck Rock (USA).txt",
    "content": "Chuck Rock is your typical average cave man.  He likes to spend his Sunday afternoons watching football and drinking beer.  Unfortunately, his peaceful existence is interrupted one day when his wife, Ophelia Rock, is kidnapped by the village wierdo, Gary Gritter.  So, Chuck is rather upset about this whole situation and you have to help him make things right.\n\nThe game is a side-scrolling platformer.  Chuck fights of a variety of dinosaurs using his belly-buster attack and a jump kick.  Occasionally he has to pick up and throw rocks to defeat enemies and allow him to jump to greater heights.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Clock Tower (Japan) (Translated).txt",
    "content": "Jennifer and her friends are adopted by a nice lady named Mary one day. They expect to be going to a wonderful new home, at the Barrows Mansion. There they will live with Mary and Mr. Barrows. Unfortunately, something goes terribly wrong and Jennifer's friends are showing up dead one by one.  While this is happening, Mary is missing and Jennifer ends up being chased by a crazed psychopath known only as...Scissorman. \n\nNow she must survive and get out of the mansion in this point-and-click horror adventure... Being a teenage girl, you have no special abilities at all, just your wits and your will to survive, there are a few enemies that can kill you instantly, but Scissorman is the true horror that will give you trouble.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Clue (USA).txt",
    "content": "Who killed Mr. Boddy? Was it Colonel Mustard, in the Kitchen, with the Lead Pipe? All the deductive fun of the classic mystery game comes to life with hundreds of animated vignettes, crisp graphics, bright colors, and refined sound effects and music of advanced 16-bit technology. Playing alone or with up to five human or computer opponents, you'll solve a new CLUE® mystery every time you play, as you choose one of five \"ranks\" and work up from Amateur to Detective. \n \nSo enter Mr. Boddy's mansion and start collecting evidence from the animated vignettes that show Suspects skulking through Rooms and leaving fingerprints on Weapons. When you've collected enough clues, make your Accusation of Whodunit? Where? With which Weapon? If you're right, you'll see the murder reenacted before your very eyes!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Contra III - The Alien Wars (USA).txt",
    "content": "It's time for revenge...\n\nThe hideous Red Falcon, thought to have been destroyed long ago by the Earth's greatest commandos, Mad Dog and Scorpian, has risen again, this time pissed off and thirsty for revenge. His armies are marching through the cities, across the lands, and with the intention of exterminating the human race like a bad case of fleas. Two new commandos, Jimbo and Sully, have come forth now to kick Red Falcon's ass and save what remains of the world from his hideous plans!\n\nThe Alien Wars begin!!!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Cool Spot (USA).txt",
    "content": "Cool Spot is a solid, colorful platform game featuring the 7-up mascot in the hero position. The game objective is fairly simple; you have to collect enough number of bonuses throughout each level in order to find the trapped Spots.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Cybernator (USA).txt",
    "content": "In the year 2065 AD, the nations of Earth have split into two major powers: the Axis and the Federation. These governing bodies are constantly at war for land, which has even extended into the frontiers of space. \n \nJake is a soldier for the Pacific States' Marine Corp and pilots his own Assault Suit for the Federation. He has been assigned to lead a covert strike team to confront the Axis troops head-on. Your Assault Suit is ready for battle and can jump, shoot, and hover over small distances. Battle through seven war zones, and capture power-ups for upgrades and new weapons. Complete your mission objectives as the fight takes you through Earth's fragile ecosystem, to the moon, and across the vast expanse of space!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Daffy Duck - The Marvin Missions (USA).txt",
    "content": "Based on Chuck Jones' Looney Tunes character, Daffy Duck, Daffy Duck: The Marvin Missions sees Daffy in his quirky \"Duck Dodgers\" spin-off persona, also known as \"Duck Dodgers in the 24th and 1/2 Century!\".\n\nIn this game, Duck Dodgers sets out to stop Marvin the Martian from performing various notorious deeds, including destroying his beloved home-planet, Earth. There seems to be only one way to stop Marvin - and that's to destroy all five of his deadly machines!\n\nGameplay-wise, this is a standard platforming affair. However, you can also shoot at your enemies using an array of weapons, fly around with your jet-pack and defend enemy fire with your shield. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Death and Return of Superman, The (USA) (Rev 1).txt",
    "content": "\"Doomsday\" is here and only Superman can stop him. Unfortunately in doing so he gets killed himself. Now four other characters emerge, each claiming to be the real hero. The story starts you off with Superman, then Steel, the Eradicator, the Cyborg, and Superboy. Each character has slightly varied moves so different strategies apply when playing as them.\n\nThe gameplay is basically that of a standard beat-em-up, with the punches, throws and specials moves.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Demon's Crest (USA).txt",
    "content": "The Demon's Crest consists of six magical stones that when combined will give the holder power to rule all. The inhabitants of the Demon Realm had long fought for possession of this infinite power until one gargoyle emerged victorious: the red demon known as Firebrand. At the end of his final battle, Firebrand was ambushed by his nemesis, Phalanx, and the stones are stolen. \n \nNow, Firebrand must recover the stones before humans and demons fall under Phalanx's sinister rule. Breathe fire, claw walls, and hover across seven intense levels of the Demon Realm. Gain new transformations and abilities as you fight your way through Phalanx's forces. With three different endings to experience, twenty-five hidden items to discover, and six magical stones of cosmic power to control, can you save the realms from total anarchy?\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Donkey Kong Country (USA) (Rev 2).txt",
    "content": "Help Donkey Kong and Diddy Kong get back those stolen bananas!After a dark and stormy night, Donkey Kong finds all of his bananas stolen by K. Rool and his reptilian crew of Kremlings! Armed with chest-pounding muscle, mighty barrel rolls, and awesome vine-swinging skills, Donkey Kong and Diddy Kong set out to face their adversaries! Play solo, compete with a friend, or play cooperatively with a friend in over 100 levels filled with collectibles and hidden bonus levels. With the help of Donkey Kong's quirky family, animal friends, and your fast reflexes, our dynamic duo will prove to be an unstoppable force. Time to save those bananas!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Donkey Kong Country 2 - Diddy's Kong Quest (USA) (En,Fr) (Rev 1).txt",
    "content": "Donkey Kong has been kong-napped by the nasty K.Rool and the Kremlings, and it is up to Diddy Kong and his girl-friend Dixie Kong to save him.\n\nAll the familiar enemies and helpful friends return, along with some new characters, including the wise Wrinkly Kong who will teach you some important lessons in gameplay. Again the emphasis is on banana collecting, where as every 100 bananas makes one extra life. Apart from beating K. Rool and rescuing Donkey Kong, there are extra missions that can be completed. Collect enough K. Rool Krem Coins to open up the routes to the Lost World, while every level has a hidden Hero Coin to collect. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Donkey Kong Country 3 - Dixie Kong's Double Trouble! (USA) (En,Fr).txt",
    "content": "This time both Donkey Kong and Diddy Kong have been kong-napped by a mysterious new leader of the Kremlings, and it's up to Dixie and new team mate Kiddy Kong to save the day.\n\nNew elements to the series includes the Brother Bears, thirteen Bears who, if you pay them with Bear Coins found in each level, will aid you in your quest by building certain items. Also, new bonus mission have you playing a 1st/3rd person shooter style party game. Plus a host of new enemies, the usual huge end of world bosses and a collection of the Kong family who will help you out as best they can. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Dragon Ball Z - Hyper Dimension (Japan) (Translated).txt",
    "content": "Dragon Ball Z: Hyper Dimension is a fighting game based on the Dragon Ball Z series. Players select one of ten fighters: Freeza, Gotenks, Kid Buu, Majin Buu, Majin Vegeta, Perfect Cell, Piccolo, Son Goku, Ultimate Gohan and Vegetto.\n\nHyper Dimension includes a Story Mode, which starts in the Freeza saga and ends in the Buu saga. In this mode you have to fight one on one against several enemies.\n\nIn addition to the Story Mode, this game also contains a Versus Mode, Tournament Mode and Practice Mode. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Dragon Ball Z - La Legende Saien (France).txt",
    "content": "Dragon Ball Z: Super Butouden 2 is a fighting game that chronicles the events that take place during the battle against Perfect Cell, and includes a side story about Bojack and his henchmen (who Gohan, Trunks, Piccolo and Vegita fought in the \"Bojack Unbound\" movie), and Broli, the Legendary Super Saiyan. You can play as SSJ2 Gohan, Piccolo, Vegeta, Future Trunks, Perfect Cell, Cell Jr., Bojack or Zangya. Goku and Broli will be also available after you enter a secret code.\n\nSome basic elements from Super Butouden have remained, such as the split screen system or the special attacks (which now are executed by a shorter button combination). However, now you will also count with the Meteo combos, which allow attacks with multiple hits. You can also hold down buttons in order to quickly recharge your energy. Special moves can be also fired back in retaliation to your rival's attack, marking then the beginning of a button smashing duel.\n\nThere are 3 game modes, including a story mode that lets you choose different paths and changes depending on the outcome of battles; a 1 vs 1 mode, where you can battle against another player or the CPU; and a martial arts tournament mode with an eliminatory system in which you and other players (or the CPU) choose a character to become the winner. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Dragon Ball Z - Super Saiya Densetsu (Japan) (Rev 1) (Translated).txt",
    "content": "Cho Saiya Densetsu is based on the popular manga/anim series Dragon Ball. It follows the events described in the beginning of Dragon Ball Z, the second story block, which tells about the connection of the hero Son Goku with a powerful alien race, and new mighty foes from far away planets. The game starts just where the tale of Dragon Ball begins. Son Goku goes to meet his friends, but is stopped by a mysterious stranger named Raditz who tells Son Goku they are relatives. Raditz demands from him to destroy humanity, and as Son Goku refuses, takes his son Son Gohan hostage. To rescue his son, Son Goku joins forces with his arch-rival, the Demon King Piccolo, who obviously has his own plans concerning Raditz. And thus begins the story during which Son Goku will learn of his true origin...\n\nThe game is a RPG similar to the card-based Dragon Ball Z RPGs for NES. During battles, you choose cards from your card inventory, which determine the nature and the strength of your characters' attacks. You can also train your characters in training houses and upgrade their special Ki power. Unlike early DBZ RPGs, you can move around freely in Cho Saiya Densetsu, and your movements are not determined by cards. You can also fly around the world and use your special Dragon Radar to discover location of magical Dragon Balls. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Dragon Quest I & II (Japan) (Translated).txt",
    "content": "This is a remake of two classic NES RPGs - an exclusively Japanese release of the two first Dragon Quest titles on one cartridge.\n\nIn Dragon Quest (known as Dragon Warrior in the US), you play as the descendant of the legendary warrior Erdrick, and your goal is to recover the magical Ball of Light from Erdrick's and the humanity's arch-enemy, the Dragon Lord. In Dragon Quest II, you assume the role of the descendant of the hero of the first game, and must join forces with two other characters in order to defeat a demon lord who destroyed a nearby city and killed its inhabitants. \n\nBoth RPGs feature random battles and turn-based combat viewed from first-person perspective. In Dragon Quest you fight alone, while in the sequel two other characters can join your party, and you also fight against multiple enemies at once.\n\nThe remake includes updated graphics (although they still retain the original NES look), sound of SNES quality, and some changes in the gameplay and in the game world. Certain locations are larger, some menu commands (such as \"Stairs\") are omitted, and there is a larger variety of items. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Dragon Quest III (Japan) (Translated).txt",
    "content": "Dragon Warrior III is the concluding game of the first Dragon Quest/Dragon Warrior trilogy, and its story takes us back to the time period of the legendary Erdrick (also known as Loto), the ancestor of the first game's hero. You are the son of a powerful warrior Ortega, skillful in physical combat and spellcasting. Your father went out to fight the evil Baramos, who is responsible for the appearance of monsters in your region, and never returned. You are sent by the king on a quest to continue your father's brave deeds and to defeat Baramos.\n\nDragon Warrior III is a top-down role-playing game where you travel around the overworld, caves, castles, cities and other locations while battling random encounters, buying equipment, and talking to people. You and your party members receive experience when they beat up monsters and level up with enough experience, increasing their stats. The game features a day/night cycle - as you travel, day slowly changes to night and vice versa; shops are typically closed at night. \n\nYou begin with control of just the main character but can quickly recruit three more members to your party. During the game you can choose to drop your current characters and recruit others at any time. The recruitable characters are divided into six classes: soldier, fighter, merchant, goof-off, pilgrim and wizard.\n\nThe game has a unique job system, giving you the ability to switch your hired characters' classes after they have achieved at least level 20 in their base class. Characters can switch to the other beginning classes, as well as the sage class, which is not available at the beginning. When a character switches classes, they lose all earned experience points, and half of their stats, but retain all of the abilities of the previous class. In this way, you can create powerful combination characters that are able to cast spells and fight effectively. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Dragon Quest V (Japan) (Translated).txt",
    "content": "You are the son of the brave warrior, Lord Papas. It appears that your mother died just after giving birth to you, and your father took you on a long journey when you were a little baby, and all you know is that he was searching for something. Now you are six years old, and Lord Papas brings you to your home village. After some time, you learn that His Highness Prince Henry was kidnapped by bandits. Your father attempts to rescue him, and during this action you discover that perhaps your mother is still alive... The game follows the story of Papas' son, and this story is stretched over years, as the hero grows and becomes a man of courage and virtue. During the game, the hero will discover the truth about his mother, and will have to make some crucial decisions, such as which girl to marry (the decisions affect the course of the game and its ending).\n\n\"Dragon Quest V\" is a party RPG with turn-based combat, and battles viewed from 1st person perspective, just like all its predecessors. Your party roams about the world, fighting random enemies, performing quests, and defeating bosses. The novelty is in the game's unusual story, which spans almost a lifetime of the hero. \n\n\"Dragon Quest V\" was not available outside of Japan until 2009, when the DS version was released in the United States. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Dragon Quest VI (Translated).txt",
    "content": "You and two of your friends decide to attack the Archenemy - the evil Mudo - in his castle. But as you reach his throne, he attacks you and send the three friends into three different places...\n\nWas this just a dream? You have just fallen out of your bed dreaming! It's time to go to the village elder, to get a seemingly simple assignment - to sell some goods at a bazaar in the nearest town. But soon the hero will discover his dream was not so far away from reality...\n\n\"Dragon Quest VI\" is the last SNES game of the Dragon Quest series (called \"Dragon Warrior\" in US). It is a party RPG with turn-based combat and battles viewed from 1st person perspective. Not much has changed since the NES days of Dragon Quest - gameplay style, setting, and even menu layout seem almost identical to those of the early classics. Like its immediate predecessor  Dragon Quest V, this game was never released outside Japan. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Dragon View (USA).txt",
    "content": "Solve puzzles and fight monsters in order to save your love.  She's been taken by Giza an evil sorcerror bent on destroying all life in the world.  You'll journey through different lands in search of clues and powerful items and magic.\n\nThis game is a 3D side scroller.  You fight in real time.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/E.V.O. - Search for Eden (USA).txt",
    "content": "The storyline of E.V.O.: Search for Eden follows the same patterns as modern Evolution theories. The players first controls a prehistoric sea organism, and fights to gain evolution points with which he can improve his fish's body parts and upgrade his attack/defense abilities. The gameplay is not completely linear, which means that certain choices of paths and stages will affect the player's success.\nThe game is composed of a series of stages, in which the sea organism slowly evolves into an amphibian, and later a land-only creature. The physical changes are fairly scientifically accurate which gives the game a semi-educational purpose as well. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/EarthBound (USA).txt",
    "content": "In the year 199X, in the village of Onett, on the continent of Eagleland...\n\nYoung Ness was asleep one night when a loud crashing noise awoke him suddenly. As he rushes out of bed and up to a nearby hill, he encounters a strange meteor, carrying a single passenger: a mysterious insect-like being named Buzz Buzz. Buzz Buzz tells him that in the future, an evil alien being known as Giygas has conquered the world, and the only one who can stop him are 4 young kids: 3 boys and a girl. Ness, of course, is one of the chosen ones... Ness now must find the other three children: Paula, a young girl with remarkable psychic powers, Jeff, a mechanical genius, and Poo, the young Prince of Dahlaam. Together, these four friends have the power to defeat Giygas and save the world from his chaotic reign!\n\nEarthBound is a top-down RPG where you travel around Eagleland and various other, exotic countries, trying to end Giygas' evil influence. \n\nOn the way, Ness and his friends will encounter a lot of enemies and battle them in turn-based combat. Each turn, each of the characters in the party can attack with their weapon, use a special ability (some characters have powerful psychic powers that can hurt enemies, heal comrades and more; some also have some other, unique special powers), use an item or try and escape. The game features \"rolling HP meters\" - when a character is dealt damage, it's not all taken away from his HP right away, but instead his HP decreases slowly; if the combat is ended quickly, even a massively damaging attack can leave a character with only minor injuries. By winning battles, characters receive experience and thus become stronger. \n\nIf your characters are strong enough, weak enemies will escape from them instead of trying to attack them, and when chased down, they will be defeated instantly! \n\nSaving the game is done by finding a telephone and calling Ness' father. When you defeat enemies, your bank account receives money which can be then retrieved from ATM machines throughout the game and spent in shops to buy better equipment or useful items.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Earthworm Jim (USA).txt",
    "content": "A crow is chasing a worm named Jim while in outer space Psy-Crow is chasing a renegade ship. The ship's captain has stolen an ultra-high-tech-indestructible-super-space-cyber-suit and Queen Slug-for-a-Butt has ordered Psy-Crow to get it, since it can make her more beautiful than Princess-What's-Her-Name. Psy-Crow blasts the captain and the suit falls to Planet Earth.\n\nBack on earth Jim wonders if he is finally safe when an ultra-high-tech-indestructible-super-space-cyber-suit lands on him. Luckily Jim rests in the neck ring of the suit. Then the space particles begin interacting with Jim, causing a light-speed evolution. Jim soon realizes he is in control of the suit.\n\nJim overhears the Queen's plans for the suit and decides to meet this Princess...\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Earthworm Jim 2 (USA).txt",
    "content": "An ordinary average earthworm named Jim goes about his normal daily life, cruising around avoiding crows and doing other general worm-like things. Jim is suddenly struck by a very large ultra- high- tech- indestructible- super- space- cyber- suit. Through sheer luck, Jim rests safely in the neck ring of the suit. \n\nSuddenly, the ultra-high-tech space particles of the suit begin interacting with Jim's soft wormy flesh. A radical light-speed evolution takes place.\n\nJim soon realizes he is in control of the suit.\n\nGameplay is similar to the first game, with Jim jumping and running through the levels. There are 5 weapons more than the original game to collect. Characters like Princess Whats-Her-Name and Psy-Crow appear.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/F-Zero (USA).txt",
    "content": "F-Zero is a futuristic racing game, set in the year 2560. The player chooses one of the four available hovercars and then can race with other hovercars in one of the gameplay modes - \"Practice\" or \"Grand Prix\". \n \nIn \"Practice\" mode, the player chooses one track where he competes with one other hovercar to win the race (or there can be no rival at all, if you so wish). In \"Grand Prix\", the player must complete a series of races with several competitors. Each race consists of five laps.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Faceball 2000 (USA).txt",
    "content": "Faceball 2000 is a first-person shooter.  You control a H.A.P.P.Y.F.A.C.E., or Holographically Assisted Physical Pattern Yielded For Active Computerized Embarkation. The graphics consist of flat shaded corridors. Enemies are all simple geometric shapes with smiley faces on them. Although the graphics are simple, they allow for full freedom of movement, not unlike Wolfenstein 3-D.\n\nThere are two modes of play. First there is a single player mode in which your goal is to find the exit to each level.  There are 70 mazes in this mode. The second mode is the multiplayer arena. For the Game Boy: up to 4 Game Boys can be linked together in this mode.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Fatal Fury (USA).txt",
    "content": "Southtown City plays host to the King of Fighters Tournament. Andy & Terry Bogard take part in the tournament cause winning the tournament is the only way they can defeat Geese Howard. Geese Howard controls Southtown City and killed their father several years ago. Also taking part is Joe Higashi, a Japanese kickboxer. Select either Joe, Andy or Terry, visit several locations in Southtown City and win that tournament!\n\nFatal Fury is a 2D fighter and is the first game in a series of one-on-one fighting games by SNK. It's a conversion of the original Fatal Fury arcade game. This first game does not yet feature the series' trademark pseudo 3D mode (which allows you to move between the foreground & background while fighting). Includes a two-player vs. mode.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Fatal Fury 2 (USA).txt",
    "content": "It's time for 20 megs of non-stop action, with another super-hot arcade game for your Super Nintendo. Rejoin the brothers Andy and Terry Bogard, with their friend Joe Higashi as they discover that FATAL FURY was just a warm up! Now they must face the meanest, most dangerous fighters ever assembled! \n \nChoose from among 8 fierce opponents: from Big Bear - the savage unmasked wrestler to Mai Shiranui-the female beauty with mystical arts of the Ninja. Battle through Thailand, Spain, Australia and many other locations. Feature packed, and filled with all the hard-hitting action you'd expect from Takara's Fighting Series. Unique 3D movements enable you to move and fight both in foreground and background - in way NO other street fighting game can. This game rocks with huge, blazing arcade style graphics and faster animation that ever before! The question is - are you up to a new challenge?\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Fatal Fury Special (USA).txt",
    "content": "Fatal Fury Special is an improved version of SNK's 2D one-on-one fighter Fatal Fury 2. It's a conversion of the 1993 arcade game of the same name. The objective is still to win the tournament by defeating all other fighters including end boss Wolfgang Krauser. Fatal Fury Special features a fairly large selection of fighters that includes:\n\n1. The eight regular fighters from Fatal Fury 2: Terry Bogard, Andy Bogard, Joe Higashi, Kim Kaphwan, Jubei Yamada, Cheng Sinzan, Mai Shiranui and Big Bear.The four bosses from Fatal Fury 2: Billy Kane, Axel Hawk, Lawrence Blood and Wolfgang Krauser (this time they're all immediately playable).Three characters returning from the first Fatal Fury: Duck King, Tung Fu Rue and Geese Howard (the end boss from Fatal Fury).\nOther improvements include:\n\n1. A new Count Down mode (defeat as many opponents as possible in 3 minutes).Extra color schemes for every character.New & improved background graphics.Dolby Surround Sound support.\nFatal Fury Special still features the series' trademark pseudo-3D movement along two planes.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Final Fantasy - Mystic Quest (USA) (Rev 1).txt",
    "content": "Focus Tower is the center of the world and balances the forces of the world. However 4 monsters have taken the 4 elemental crystals (Earth, Water, Fire, Wind) for their own use, and also taken the 4 keys that for doors inside of Focus Tower. With the balance disrupted, disasters befall the world. A young boy by the name of Benjamin finds his home village destroyed. Meeting a mysterious old man while trying to escape from earthquakes, he soon learns that he is the prophesized hero and the only one who can save the world. Benjamin must recover the 4 crystals, unlock Focus Tower and defeat the ultimate monster before the 5th crystal, the Crystal of Life is corrupted.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Final Fantasy II (USA) (Rev 1).txt",
    "content": "This is the fourth entry in the  Final Fantasy series. It was known as Final Fantasy II internationally, because the  second and third games were never released outside of Japan.\n\nThe military country of Baron is one of the strongest in the land, with a proud army and a majestic air force known as the Red Wings. But, while their armies are kind and loyal, the recent actions of the King are anything but. The young Captain of the Red Wings, Cecil, is ordered to steal a crystal from a village of innocent magicians, and when he questions the actions of his King, Cecil is immediately thrown out of the country and sent off to kill strange monsters. Little does he realize the price the King's actions will pay, and what the true secret of the crystals, and their powers, truly is...\n\nThis is the first Final Fantasy game that introduced the famous ATB (active-time battle) system: during the battles, you have a time indicator for each party member that tells you when this character is able to act. If it takes you too long to select a command for this character, the enemy will act without waiting for your turn. The game abandons the job system that was implemented in the  first and the  third game in favor of pre-set character classes (paladin, white mage, ninja, etc.) assigned to each party member.\n\nThe PlayStation version adds a new rendered intro and ending.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Final Fantasy III (USA) (Rev 1).txt",
    "content": "1,000 years ago, the War of the Magi occurred. People remember it as one of the most horrible tragedies in history. Since the War of the Magi, magic has been all but forgotten, technology began to grow, and people returned to seemingly normal lives. The only true worry people had was the Empire, whose leaders were looking to revive the great force once known as \"magic\". \n \nBut then...something happened that would change the course of history forever... \n \nThe Empire had heard word of the remains of a mystical being, known as an \"Esper\", being found in the mining town of Narshe. Quickly, three soldiers were dispatched to find this Esper and bring it to the Emperor. One of the soldiers, a young girl, triggers a power in the Esper that will begin one of the most dangerous series of events ever. And the only ones who can help her are a rag-tag band of rebels and heroes, whose very hearts and souls are the only ones that can save the world from the mad plans of the Empire.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Final Fantasy V (Japan) (Translated).txt",
    "content": "The Elemental Crystals are the life source of the planet. With them, gentle winds blow, the seas are active, fire burns bright, and the earth is full of life. All seems well in the world, until the wind suddenly stops, the sea begin to grow stagnant, the heat of fire becomes scarce, and the earth begins to wither. King Tycoon, sensing a premonition of evil, hurries off to check on the Wind Crystal, only to witness it destroy itself. \n \nMeanwhile, a young traveler named Bartz is camping in a field when a giant meteor strikes the planet. When he heads out to examine the meteor, he is shocked to find a young girl named Lenna, who is the princess of Tycoon, and an old man named Galuf, who is on a critical mission. Later, joined by Faris, a pirate captain, the foursome must travel the land in search of the destroyer of the Crystals, and save the planet at any cost.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Fire Emblem - Mystery of the Emblem (Japan) (Translated).txt",
    "content": "A remake and expansion of the first NES/Famicom Fire Emblem, Marth must face the betrayal if Hardin and an old enemy he thought long vanquished, the Dragon King Medeus.\n\nBook 1 of the game is essentially a remake of the first NES game. Book 2 continues the story with the same characters.\n\nThis game expands the series, however it drops explorable towns and the navigation through a world map which was introduced in Fire Emblem: Gaiden. New features include the ability to dismount the horse and pegasus mounted units, to allow the riders to fight indoors if needed. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Fire Emblem - Seisen no Keifu (Japan) (Translated).txt",
    "content": "The fourth installment in the popular strategy series, set in the continent of Jugdral, southeast of Akaneia. The game's first fifth chapters follow the Prince of Chalphy, Sigurd -- from there, his son Celis becomes the protagonist. The game uses the same turn-based strategy gameplay as its predecessors, but changes up the promotion system by making it entirely level-based, adds RPG-style status effects, and introduces the concept of the weapons triangle, in that a sword is strong against an axe, spear against the sword, and axe against the spear. Seisen no Keifu also featured much larger maps than previous titles (though a lower number of them -- 12 in all) and a handful of new units, such as the Troubadour, Dragon Master, and Falcon Knight. The game was released late in the Super Famicom's lifecycle in Japan and never published internationally. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Fire Emblem - Thracia 776 (Japan) (Translated).txt",
    "content": "Thracia 776 continues the Fire Emblem story with a midquel or a \"meanwhile\" setting. The events transpire during  Fire Emblem: Seisen no Keifu and the game contains many of the same characters from that game, while featuring cameos of many more. \n\nAt its most simple the story is of Prince Leaf of Lenster's struggle to free his native land from two forces, the Grandbell Empire and the Loptus religion.\n\nFeatures introduced into this part of the series include fog of war and night maps with limited vision, this requires characters to use torches and wands to light their way. Also the capture command which allowed enemies to be subdued and their weapons taken. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/FireStriker (USA).txt",
    "content": "A long time ago the kingdoms of wind, fire, earth and water\ncompeted for the Trialight, a weapon created by the Arch Mage Wylde that can only be used by a Firestriker. The kingdom of wind won and united the four kingdoms. Wylde however, was not satisfied with peace and conjured four monsters to overthrow the united world. Now, only the kingdom of wind remains and the player takes control over the last Firestriker to free the other kingdoms and defeat the monsters.\n\nEven though Firestriker looks like a typical SNES RPG, it is in fact an action game that has more in common with a pinball-game than with any other genre. The Trialight is a ball of fire that basically behaves like a pinball. The player controls the Firestriker who can freely walk across the screen and strike at the Trialight to control its movement. Levels are filled with obstacles, destroyable block and monsters. Monsters and blocks can only be destroyed by the Trialight. The goal of each level is to maneuver the Trialight towards the exit of the screen. The exit is usually blocked by destroyable obstacles and sometimes certain conditions (such as killing all monsters or destroying certain objects) have to be fulfilled before a level can be completed. If the Firestriker is killed or the Trialight falls off the screen, the player loses a life. Additionally to the Firestriker, the player can use the shoulder buttons to control a magician who (in single player mode) stays at the bottom of the screen. The levels consist of several screens and are entered from a world map. As the game progresses, the player will also fight several bosses and free other Firestrikers whose special abilities are necessary to complete the game.\n\nFirestriker also features a two-player cooperative mode as well as a duel-mode for up to four players.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Firemen, The (Europe) (En,Fr,De).txt",
    "content": "You play as a firefighter, together, you and your squad are sent in into a big building which is on fire.\nYour mission is to rescue the people inside the building and also put out the fire.\n\nUse your watercannon to put out fire or use your waterbomb to put out bigger flames.\n\nBe sure to listen to every word your squadmate tells you, or you may be toast.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Firepower 2000 (USA).txt",
    "content": "A secret \"underground race\" on an island in the mid-Atlantic ocean has stolen top military vehicles and equipment from around the world and have rebuilt powerful war machines from them. They are even piloted by robots with one mission: to destroy. Military and intelligence officials of major countries have detected them, but they are afraid that they will be unable to prepare against an assault by this underground race. Their plan is to send you in to infiltrate their base and destroy them before they have a chance to unleash the war upon the rest of the world. You can choose to control either the Helicoptor or the Jeep, which have different advantages -- for instance, the Helicoptor is not obstructed by obstacles but the Jeep can fire in any direction. There are nine weapons (five permanent, four short-lasting specials) you can pick up along the way to help you destroy the enemy. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/First Samurai (USA).txt",
    "content": "\"The Demon King descends from his mountain domain to you, the First Samurai and your master. Defenceless against the Demon's magic, you succumb to his powers, leaving the your Master to fight the Demon King alone. Your master falls in combat, dying. But, with his last breath, he summons the Wizard Mage. The Demon King fearing defeat, escapes to the future. Tormented, the young samurai seeks the teachings of the Wizard Mage in the ways of magic. Boiled with revenge and armed with a magical sword, the young samurai follows the Demon King into the future and the unknown...\"\n\nThe First Samurai is a platform action game very much similar to other platform games, but with a medieval oriental touch to it in addition to various unique features.\n\nArriving in the new unknown land, you are defenceless hence your fists and kicks. But as you journey forth, you'll find your trusty magical sword as well as throwing weapons such as knives and axes. With your martial art skills, your enemy best beware with those sudden moves that may prove fatal!\n\nThe First Samurai offers a wide array of weapons, special items and other objects. Combat is usually melee, either relying on your punch or kicks or using the magical sword to slash some pretty skillful blows in whatever direction possible.\n\nMonsters are forever regenerating but food for health is plentiful. It actually takes an effort to be killed...\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Flashback - The Quest for Identity (USA) (En,Fr,De).txt",
    "content": "The year is 2142. You play as Conrad B. Hart, a man who has lost his memory. After barely escaping from hostile aliens, Conrad's bike crashes on an unknown planet. Conrad finds himself in the jungle, and from now on his quest for survival and his lost identity begins.\n\n\"Flashback\" is a platform action adventure. You navigate Conrad over the platforms, performing various moves. You can simply jump or do a longer run-and-jump, run, climb, hang off ledges, and pick up objects lying on the ground. To defend yourself, you shoot enemies with your gun and also use various objects (such as stones) to harm or to distract them. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Flintstones, The - The Treasure of Sierra Madrock (USA).txt",
    "content": "The Great Poobah has retired and is looking for a successor. Since there are so many candidates, it is decided that the person who finds the Great Treasure of Sierra Madrock will become the new Great Poobah.\nThe player takes control over Fred and Barney who also participate in the treasure hunt in order to make Fred the New Great Poobah.\n\nThe Flintstones: The Treasure of Sierra Madrock is a side-scrolling platformer that includes several board game elements. On a world map, Fred and Barney  throw dices to determine how many fields they can move. \n\nThere are different fields that hold different challenges.\n\nMost fields require you to finish a side-scrolling platforming level. Fred and Barney can jump, club their enemies and climb trees or stone pillars. Holding down the jump button lets them hover in the air for a short moment. Throughout the levels, different power-ups and items can be found: clamps are used as money, apples replenish some health, 100 stars grant an extra life to Barney or Fred and an empty Heart frame increases their life bar.\n\nOn fields marked with a skull, a boss has to be defeated. \n\nHeart fields hold bonus games in which you have to collect as many items as possible within the time limit.\n\nAt amusement parks, several mini-games can be played to win items or extra lives. Mini-games include: Memory; Balls O' Fun\", where you can win items by throwing a ball at them; a mini-game in which you have to stop monkeys from climbing down trees and stealing your items by hitting them with coconuts and others.\n\nIn Cafes you can buy food to replenish your health.\n\nIn stadiums you can participate in special challenges (3D cart races for example), in order to gain new abilities such as double jumps.\n\nWhile stadiums, cafes and amusement parks can be revisited, all other levels only need to be finished once.\n\nFred and Barney are not the only characters that move about the playing field. You will also run into their wives Betty and Thelma as well as other characters that are also looking for the treasure. When Fred or Barney encounter their wives, they are dragged a few fields back. Other characters give them useful items if you can beat them at a challenge (usually a race).\n\nOther notable features are a password system and a competitive 2-player mode. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Front Mission (Japan) (Translated).txt",
    "content": "In the future, many military forces are dependent on huge mech robots, called Wanzers (Walking Panzers) for combat. At Huffman Island, located in the the pacific ocean, wanzers are deployed by both the USN (United States of the New Continent) and the OCU (Oceana Community Union), who dispute ownership over the island.  One night, the OCU forces stage a covert recon mission on a facility located in Larcus, a USN-held territory and weapons facility. Lead by a soldier named Roid, this mission was entirely unofficial and violated the peace treaty. During the mission, USN forces lead by Commander Driscoll appeared and ambushed the OCU soldiers. During the combat, Roid's fiance, Karen is killed and the USN facility is blown up; placing the blame on the OCU. This became known as the \"Larcus Incident\" and the OCU denied all knowledge of it's soldiers actions. Ultimately it would be a leading cause to the second Huffman War. \n\nOne year later, the war is underway and Huffman island is under provisional control of the OCU, but with a weakened military unable to defend against USN attacks. The soldiers involved involved in the Larcus Incident have all been discharged and disgraced. Roid spends his time fighting as a gladiator in the Wanzer fighting arena before being approached by a mysterious man. Colonel Olson has found out about Roid's history and wants him to command a mercenary unit he is assembling on behalf of the OCU, dubbed \"Carrion Crow\". Convincing Roid that Driscoll is still out there on the island, Roid agrees.\n\nFront Mission is a turn-based strategy RPG played from an isometric perspective. Players progress in the story through large strategic battles involving multiple units and cutscenes between them. At certain places, usually towns, the player can visit multiple locations including bars and shops, and talk to people. Shops are also found to purchase new weaponry, parts and make repairs. In combat, each Wanzer robot is a seperate unit and, has a large variety of weapons and attack styles depending on what's equipped. Units get experience for defeating enemies and also for using various techniques. The more an attack is used, the more powerful it becomes.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Front Mission Series - Gun Hazard (Japan) (Translated).txt",
    "content": "The year is 2064, when the great solar power satellite, ATLAS is overshadowed by the invention of fusion power. The government alliance that had supported the building of ATLAS now find themselves facing economic crisis as the balance of power shifts. In this world of conflict and change, the Walking Panzer, or Wanzer, (a form of mecha) becomes the standard armored unit for wars and petty battles across the globe. For the small nation of Bergen, a coup d'etat is underway, staged by Colonel Ark. Seeking to establish complete control over the government and the NORAD units stationed there, Ark's first step involves the capture of President Orwen. Tipped off to the rebellion, Orwen seeks to flee from Bergen, looking for safe passage out of the seaport of Port Ertothal. A young Wanzer pilot, Albert Grabner, is assigned escort duty to the president by loyal elements of the army stationed there... \n \nGun Hazard is a side-scrolling version of the Front Mission series. Gameplay is more than a little similar to Cybernator or Metal Warriors. The player moves between different stages on an area map. Once inside a level, the player controls Albert and his wanzer as it moves left, right across the screen. The wanzer is able to jump, and attack with a primary and a special weapon. At any time during a level, Albert can eject from his heavily armed wanzer to explore. Although vulnerable when outside, Albert is able to reach areas the wanzer cannot, in addition to being a smaller target and being able to jetpack indefinitely. \n \nAdditionally, Albert can recruit other characters through the normal course of the story, some of whom can be designated to support roles. These support characters when set can provide a variety of different cover fire abilities for Albert during his missions. They too gain experience and levels. Different weapons and armor can be found or bought. Essential components include the Booster ability which allows the wanzer to hover and increase it's jumps, as well as the Dash ability which allows quick left-right movement by the wanzer. Money and experience are earned through the completion of level objectives as well as the kill count of enemy wanzers.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Ganpuru - Gunman's Proof (Japan) (Translated).txt",
    "content": "The year is 1880. Two meteors fell on Earth on a small island near North American Pacific Coast. In the middle of the island there is a small town governed by a sheriff. At first, the town's inhabitants didn't pay attention to the meteors. But then, strange things started happening. Monsters attacked people, and left on the victims' bodies a mysterious crest with one word: demiseed. One day you, a young boy who lives in the town, are contacted by two aliens who came in a miniature space ship. One of the aliens introduces himself as Zero, the Space Sheriff, and explains that an intergalactic criminal named Demi has escaped from justice and is hiding somewhere on the island, being the cause of all the troubles lately. Zero then possesses your body, lends you his powers, and commands you on the quest to destroy Demi and to bring peace to your island and to the alien world alike!\n\nThe game is an action/adventure with slight RPG elements (buying and upgrading weapons, etc.) set in Wild West. While featuring traditional dungeon-crawling and many enemies to dispose of in real time combat, the game doesn't equip you with standard medieval swords, but with pistols, shotgun, machine gun, and even a flamethrower. Your weapons have infinite ammo. You can duck to avoid the alien monsters' fire, and perform special attacks with various types of weapons.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Gemfire (USA).txt",
    "content": "Koei made an incursion into the fantasy worlds of magic with this game.\n\nSix magicians, each trapped inside a magical gem, are liberated from the crown Gemfire by Princess Robyn, daughter of the tyrannical ruler of Ishmeria, King Eselred.  Fleeing across the length and breadth of the island nation, they each choose a leader from the greatest noble houses as their champion to topple Eselred and bring peace to Ishmeria. \n\nPlayers select one of these noblemen and seek to unite all the provinces under their banner through a combination of warfare and diplomacy.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Genghis Khan II - Clan of the Gray Wolf (USA).txt",
    "content": "As in the first part you could participate in two conquests: Mongol conquest and world conquest. In the first you must unite all the little tribes of the country. The world conquest is more complex: You must use all your senses to make the world as you wish. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Go for it! Goemon - The Twinkling Journey - The Reason I became a Dancer (Japan) (Translated).txt",
    "content": "Fourth title in the Ganbare Goemon series of platform/adventure games which cast you as the heroic Goemon and his gang of wacky adventurers as he fights evil all over Japan. This sequel however, takes the action to outer space as the gang attempts to rescue Goemon Impact (Goemon's giant mecha) from a strange planet. \n \nThe game is based around a stage-select hub from which you select which character you want to play as and then attempt to clear the game's many side scrolling stages in standard action platformer fashion, navigating the obstacles and defeating all enemies you run into with your weapons. Since each one of Goemon's allies got stranded on a different planet, you must take control of each one of them in order to clear the stages and recover the special ability unique to each character that must be later put to use to release Goemon Impact. As in other games of the series there are also loads of mini-games and unique gameplay sequences triggered in boss fights, bonus stages and special situations. These involve shooter sequences, racing & sport games and other assorted diversions.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Go for it! Goemon 2 - The Strange General McGuinness (Japan) (Translated).txt",
    "content": "As you may have guessed from the number 2 in the title, this is the second SNES game in the popular blend of the adventure and jump and run genres which is the Goemon series. Again, you (and your partner, in 2 player mode) control Goemon, his friend Ebisu-Maru and, new to the bunch, robot Sasuke, through loads of action stages and villages. Another new feature comes with 3D boss fights, featuring the giant mech type robot called \"Goemon Impact\". \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Go for it! Goemon 3 - The Mecha Leg Hold of Jurokube Shishi (Japan) (Translated).txt",
    "content": "Third title in the Ganbare Goemon series of platform/adventure games which cast you as the heroic Goemon as he attempts to save feudal Japan from all sorts of wacky evildoers. This time around, a time-travelling machine threatens all of Japan and thus Goemon and co. must jump into the future to stop the machine.\n\nThe game alternates between a top-down world map view in which your characters explore the gameworld and side-scrolling stages in which the main action lies. As in most games of the series there are also loads of mini-games and unique gameplay sequences such as maneuvering Goemon's giant mecha.\n\nThe game continues the tradition of bizarre humor unique to the series, you can play as either Goemon or any of his 3 companions, Ebisumaru, Sasuke or Yae with each sporting unique weapons and abilities and also with their own dialogue options and cutscenes, which feature sitcom-like pre-recorded laughs for added wackiness. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Gokujou Parodius (Japan).txt",
    "content": "Konami's Gradius and space-shooter parody series continues with this second installment.  Gameplay is similar to the Gradius series in that you control a ship that can move anywhere on the screen while the screen itself scrolls from left to right. Enemies appear in waves and destroying all the fighters in a single wave releases power-ups which may be used to choose your ships upgrade. The Upgrade bar too is lifted from Gradius, however each character has different names and functions for their upgrades.\n\nIn Gokujyou Parodius, you are now able to now choose from 11 different characters... many of whom appear from other Konami games. They include:\n\n1. Vic Viper: a ship from Gradius\n\n2. Takosuke: the \"octopus\" of the previous Parodius game, and also seen in at least one Goemon\n\n3. Twinbee: making his appearance from the Twinbee side scrolling games, Twinbee is a squat round robot with a jetpack and a disproportionately big punching glove\n\n4. Pentaro: the original \"joke character\", Pentaro made an appearence in a previous Gradius title as a flying penguin. However he does star in his own games as well, Konami's Penguin Adventure\n\n5. Hikaru: Hikaru is a girl in a tight fighting \"bunny suit\" who is riding on top of a missile\n\n6. Mambo: Mambo is a strange looking fish with two horns on the top of his head and on his underside\n\n7. Michael: some kind of fat angel pig. He has wings and a golden halo over his head\n\n8. Koitsu: A blue stick man riding on a surfboard. He's probably one of the more 'normal' characters\n\n9. Goemon: star of the Goemon series of games. Goemon is a ninja warrior equipped with wooden pipes. He flies around in a superman pose for his appearance in Parodius\n\n10. Dracula: star of Konami's Kid Dracula, this white haired squat character retains his vampiric abilities including that of being able to change into a bat\n\n11. Upa: a flying baby. Upa is actually from a Konami game by the name of  Bokutte Upa but is probably just more recognizable as \"the flying baby\" of this crazy shooter\n\nIn addition to your player-character, the levels themselves will be full of a strange mix of Konami references, bright colors and the just plain zany. it's not uncommon to have to fly your ship underneath a woman's legs for example or chased by a giant walrus or having enemies shooting cute pink hearts at you.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Goof Troop (USA).txt",
    "content": "Goofy and his son Max were enjoying a peaceful day of fishing, when Keelhaul Pete absconds with Pete and PJ. \n\nNow it's up to Goofy and Max to travel to Spoonerville Island and venture through the jungle to rescue their friends. As either character, you'll take on an army of surly swashbucklers as you dodge exploding cannon balls and search dank dungeons on your way to the final showdown with Keelhaul Pete.\n\nAlong the way, you'll have to dig for treasure and solve puzzles to find the keys that will allow you to enter the pirate's hideout and face Pete.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Gradius III (USA).txt",
    "content": "Gradius III is the third game in Konami's long-running space shooter series, which also includes Life Force and Nemesis. As with most Gradius titles, you control the highly advanced Vic Viper space fighter against hordes of foes. Weapons can be selected from pre-arranged loadouts or you can create your own custom loadout. The game can be played by a single player, or by two players in alternating turns. The game offers three levels of difficulty.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Great Circus Mystery Starring Mickey & Minnie, The (USA).txt",
    "content": "Starring Mickey and Minnie Mouse, the two plan to spend the day at the Circus only to find that it's deserted. Believing that someone is responsible, you must dress up in different outfits such as Safari and Western, as you try to find clues to solve the mystery behind the disappereance of the performers, including your pals Donald Duck and Pluto.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Hagane - The Final Conflict (USA).txt",
    "content": "The Fuma clan protects the Holy Grail which is said to possess the power to destroy the world. When the Koma clan attacks and steals the Holy Grail, only one ninja survives. Transformed into a cyborg, it is his task to retrieve the Holy Grail and save the world.\n\nHagane is an action-oriented platformer, featuring five stages, divided into several sub-stages, filled with lots of enemies, jumping puzzles, mid- and endbosses. The titular main character can perform double jumps, jump off walls, use four different weapons,  slide over the ground, somersault to dodge attacks and use several different special attacks.\n\nWeapons include: a short sword, a chain, small bombs and throwing knives. Bombs and knives have limited ammunition that can be restored by picking up the right items dropped by defeated enemies.\n\nPressing and holding the shoulder buttons will cause Hagane to somersault and jump across the screen. This movement goes through three phases, pressing the jump or attack button during any of these phases lets Hagane perform different special attacks, such as flaming punches, kicks or backflips. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Hammer Lock Wrestling (USA).txt",
    "content": "Hammerlock Wrestling is Jaleco's take on wrestling with a style geared towards Saturday Night Slam Masters.  The player can choose from 12 fictional wrestlers and compete in four different modes of play.  There is also 60 different moves to choose from as well as unique finishers for each wrestler.\n\nThe Exhibition mode allows up to four different players to compete either against each other in singles match or in tag team format.  Champion League Match is a round robin-type tournament with six different wrestlers competing for the league championship.  Tournament is the standard tournament format with eight different wrestlers involved and Top Ranking Match where the player must battle through the other eleven wrestlers and defeat each one to become champion.\n\nThe game is divided into three different screens at times.  The middle part shows the current action happening in the ring while the top and bottom parts of the screen are used for close-ups of action sequences such as power moves, illegal moves and finishing maneuvers.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Harley's Humongous Adventure (USA).txt",
    "content": "Harley is a hip, young scientist who happens to have an IQ the size of Mt. Rushmore. While experimenting with a shrinking machine, something goes terribly wrong--the machine explodes and Harley is now the size of a bug! Harley has to find the missing pieces of his machine and reassemble it in order to return to his regular size. You'll guide him through all kinds of crazy capers, commandeering a tank, parachuting, using a jet pack, and fighting a giant rat, that will lead him to the parts he needs. When you're the size of an insect everything looks humongous, but even normal-sized people will agree that Harley's adventure is humongous.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Harvest Moon (USA).txt",
    "content": "Ever wanted to live life on a farm, with nothing but the sun, the fresh scent of your crops, the muddy fields underneath, and cows and chickens to keep you company? Well, you're in luck, because you have just inherited your grandfather's ranch, but it's in a terrible state of disrepair! What ever can you do?\n\nYou're going to do like the farmers do; roll up your sleeves, get down in that dirt, fix that farm up and make it the best farm anyone has ever seen! It sure gets lonely on that farm...but not to worry! There are plenty of girls in the village, and if you treat them right and manage to win their love, you've got yourself a wife!\n\nSo let's go, farmer! You've got 2 years to make a name for yourself on that farm! Work hard, and the rewards will be great!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Humans, The (Europe).txt",
    "content": "Your job in this action puzzler is to help prehistoric man to evolve by helping them discover tools, the wheel, weapons, or even fire. Each level in the game will have a given task to help in this, and you are allotted a number of characters who must accomplish the task. The player can switch from person to person while moving the characters around each scrolling puzzle, and teamwork is essential to success.  \n\nTasks can include finding objects (like a spear) on the screen, or trying to reach a specific destination which may require the use of objects you have discovered so far. Each level has a time limit, when time runs out the level can be restarted. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/HyperZone (USA).txt",
    "content": "A 3D shooter similar to Space Harrier. Control different futuristic flying vehicles and blast your way through numerous enemies and obstacles. If your ship is getting too fast, you can use the brakes, however flying too slow damages your ship. Apart from the standard weapons, most ships have a special attack that can be charged by holding down the fire button. The action takes place on set tracks; leaving those tacks will cause heavy damage to your ship. You can repair your ship by flying over certain areas. At the end of end of each level, a boss has to be defeated.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Illusion of Gaia (USA).txt",
    "content": "Will is a young boy whose father disappeared long time ago. Now Will lives in a small town with his grandparents. He possesses unusual abilities of pushing and pulling things without touching them. One day, he finds in his house a girl, who soon turns out to be the princess Kara. Kara's father, king Edward, wants her to marry a mysterious person called the Jackal. Kara asks Will to help her to escape the palace, and soon they both get involved in a string of mystery and conspiracies...\n\nThe game is somewhat similar to the famous Legend of Zelda games, also having a \"save the princess\" story, and employing real-time combat. Will can also use his special abilities to solve simple environmental puzzles. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Indiana Jones' Greatest Adventures (USA).txt",
    "content": "Indiana Jones gets the Super Star Wars treatment for SNES. The title consists of platform levels from the first three Indy films: Raiders of the Lost Ark, Temple of Doom, and Last Crusade. Players get to use Indy's trademark whip, as well as guns, grenades, and his fists to get through the game. \n\nIndiana Jones Greatest Adventures also features special levels such as running from the giant boulder (Raiders), the Mine Cart chase (Temple of Doom), flying a biplane (Last Crusade), and fighting a Nazi commander on a tank heading off a cliff (Last Crusade). \n\nThe game is highlighted by selections from the John Williams score, and includes sound effects, digitized speech, and image captures during cutscenes.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Inindo - Way of the Ninja (USA).txt",
    "content": "1581, Japan. Fearing a rebellion and striving to conquer the entire country, the warlock Nobunaga orders to attack the Iga ninja clan. The ninjas bravely defend their village, but, being vastly outnumbered, are mercilessly slain by Nobunaga's men. Only one survived: you, the hero of the game. Shortly before the assault you were sent to a nearby village to warn the elder of Nobunaga's attack. However, the other village is also destroyed by Nobunaga's army. You swear to avenge his crime. But for now, you are just an inexperienced young men, and are \"wanted\" by Nobunaga's men and ruthless bounty hunters. Will you be able to unite Japan in the ultimate struggle against Nobunaga?nn\"Inindo: Way of the Ninja\" is a console-style RPG with a touch of strategy. You navigate your hero on the world map, visit towns, and descend into dungeons. The battles are turn-based and are viewed from a third-person perspective, like in Final Fantasy games.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Inspector Gadget (USA).txt",
    "content": "Inspector Gadget is on yet another mission against the evil Doctor Claw and his army of M.A.D. (Mean And Dirty) agents.  This time it's personal because Doctor Claw has captured Gadget's niece, Penny.  With the help of his trusty dog, Brain, and his suit full of special gadgets, Inspector Gadget must save Penny and defeat Doctor Claw and his minions!\n\nGadget will start in a haunted castle in England, and from there, he will travel to many places around the world while pursuing Doctor Claw. On the way, he will be confronted by Doctor Claw's agents, and the only way to get by them is to use his gadgets and items against them.\n\nGadget can attack his enemies by using his punch (up, left right) and kicks which he is already equipped with.  \n\nSeveral items he picked up can be used as weapons: \n\nBombs - throw at enemies\n\nRed Propellers - to be used against aerial enemies \n\nOffensive Arrow - shoot at enemies \n\nLittle Inspector Gadgets - little robots that will run at and damage enemies.\n\nIf Gadget gets hit, he will lose his overcoat, leaving him in his boxers! In this state, he will lose a life if he gets hit again.  To prevent this from happening, pick up an extra overcoat that he can change into.\n\nOther items include: \n\nHands - comes up from Gadget's hat and will grasp onto rings\n\nSuction cups - shoot at walls and have Gadget climb up them\n\nHats - used as energy source for certain gadgets \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/International Superstar Soccer Deluxe (USA).txt",
    "content": "This is the sequel to International Superstar Soccer, Konami's saga of soccer games. This Deluxe version was published first to the SNES, then the Mega Drive and Playstation.\n\nISS Deluxe has realistic animations and player sprites. You can compete with 36 national teams with recognizable celebrity players (like Valderrama, Baggio, Ravanelli, Petkov...), but their names are fictitious. You can choose too from 16 formations and 8 strategies to win.\n\nThe competitions available are: International Cup, World Series (League), Scenario Mode and customizable mini-cups/leagues.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Jikkyou Oshaberi Parodius (Japan).txt",
    "content": "The third in the Paroidus series, it's the same gameplay and zaniness that substantiated the first two games. Gameplay itself is a copy (a parody rather) of Konami's famous Gradius series in that the screen scrolls from left to right (most times) and you maneuver around the screen destroying waves of enemies and avoiding obstacles. Unlike previous Parodius titles, this game contains a difficulty adjustment option, allowing the player to make things easier... or harder. Also unique to this parodius title is a bit of japanese digital voice that shouts out various things at you while you play. Survival throughout the level earns you a boss fight, which frequently includes some of the strangest characters in the game. Make no mistake, this *is* Gradius,  but with all sorts of strange graphics, music and references to other Konami games... So in other words, it's Parodius!\n\nThere are now more power-ups than ever including the standard power-up (red, used to upgrade weapons), the shield power-up (blue) and a variety of different coloured bells. Green Bells will make you huge on the screen, Yellow Bells are worth points (points in turn are worth extra lives),  Blue Bells are \"big bombs\" that clear the screen of enemies/shots and can be saved until you need them, White Bells will give your character a megaphone that will shout out japanese phrases, the characters of the phrases themselves can be used to damage enemies (the power of words!), The Red Bell stockpiles you with three point-defense lasers... only one of which can be activated at a time and disappear after a short while. Finally the purple bell will clear the screen of all but the strongest enemies... and will turn them into power-ups.\n\nThis time around there are 16 different characters to chose from and the power-ups and weapons that they use are more unique than ever. Several familiar \"faces\" return and they've brought along friends to share in the party:\nVic Viper: The \"gradius ship\" appears once again in this gradius parody, equipped with it's traditional gradius weapons\n2. Lord British: The \"other\" Gradius ship and arguably the more famous of the two. Lord British has weapons similar to Vic but quite different also.Missiles and shields work differently for instance. And Lord British uses a Ripple gun instead of a double shot.\n3. Pentaro: It just wouldn't be a Parodius game if Pentaro wasn't involved. Originally from Konami's Penguin Adventure, Pentaro retains the same abilities from previous Parodius games... however his Potion weapon may now hit multiple enemies and his normal weapon shots explode against obstacles\n4. Hanako: Also from Penguin Adventure, Hanako the penguin is Pentaro's girlfriend. While Pentaro is blue, she is the red penguin. She plays nearly identical to Pentaro with the exception of her S. Bomb weapon\n5. Twinbee: Twinbee, from the Twinbee games is another returning Parodius star. Unfortunately he hasn't been upgraded since previous games, so his weapons are nearly identical; Punching Glove Rocket and all...\n6. Winbee: Winbee, also from Twinbee is red and has moves identical to Twinbee, except for one difference... when she has 3 Options available, she can power them up to harm enemies that touch them.\n7. Tako: Again, it just wouldn't be a parodius game without a flying octopus. And here he is, still wearing a baseball cap, but otherwise unchanged from previous Parodius games.\n8. Belial: A yellow female octopus with a bow in her hair, she is identical to Tako with the exception of her Missile and Double weapons... which are instead identical to the Vic Viper.\n9. Soitsu: A stickman (now green) surfing aboard a paper airplane, Soitsu plays similar to Koitsu from the previous game, aside from his colour. His laser weapon is able to charge up to deliver more power and he drops little stickmen onto the ground which occasionally dance around rather than attacking. Additionally he has an \"upgrade power\" (S. Power) that make all his other abilities stronger\n10. Doitsu: Similar to Soitsu but with a Double Laser ability. He is an orange stickman riding on a paper airplane and no \"upgrade\" power, using normal options instead\n11. Upa: Upa aka The Flying Baby is back from the previous Parodius game (as well as his original game, Bokutte Upa) and plays nearly the same. Instead of a shield, he has a Mega Crush power that damages all on-screen enemies... and also has an \"Upgrade Power\" in the form of Grade Up that makes his other abilities stronger.\n12. Rupa: Another flying baby (presumably also from Bokutte Upa), Rupa plays similar tot Upa but with a Multi Spread gun which fires missiles in multiple directions (with each upgrade) and a S.Vulcan gun which automatically aims towards enemies.\n13. Mike: A cute little kitten who happens to to have a very powerful wave weapon which can travel through obstacles and enemies. Additionally he has a multiple bomb ability which requires his \"upgrade ability\" (Grade Up) to get really powerful\n14. Rani: Another cute kitten (this one rolled onto his bottom facing forward) with very power weaponry. Some of the highlights include a Reflect weapon wherein the shots bounce off of obstacles. Another is the S laser which travels forward but then homes in Up or Down to hit the enemy. And finally, Rani's missile weapon is two homing bells. Rani also has an \"upgrade ability\" in the form of Grade Up, however it only upgrades the Reflect Shot.\n15. Memim: One of the fairy characters, Memim is a female flying girl with standard female bikini clothing. She carries some unique missile weapons however, whose direction is determined by Memim's current location on the screen when fired.\n16. Sue: The other fairy with tight clothing, Sue is unique in that her weapons are upgraded/displayed in a different order from everybody else's in the game. For instance her Option is the 4th weapon on the list rather than the 6th... requiring less power-ups to activate it. However aside from that... all of her weapons are the exact same as the Vic Viper's.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Jim Lee's WildC.A.T.S - Covert-Action-Teams (USA).txt",
    "content": "The only thing stopping the immortal Helspont from taking over the earth is a group of high-powered heroes known as the WILDC.A.T.S! Each member of the team wields incredible power-when united, the results are spectacular! Players assume the roles of: Spartan, cyborg and team leader, Maul, massive cross-breed warrior, and Warblade, metamorphosing hand-to-hand combat expert! If mankind has one hope, it's the WILDC.A.T.S!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Joe & Mac (USA).txt",
    "content": "Back in the distant past (way back - like when \"rock and roll\" was just rock and fast food was dinner you couldn't catch), lived two cave dudes named Joe and Mac. Whether it was dinosaur demolition or pterodactyl hang-glidin', life for the boys was pretty cool. \n \nCool, that is, until a bogus bunch of neanderthal nerds crashed their village and scared off all the cave-babes. Now the cave-babes are out there - SOMEWHERE, lost and reeeeally lonely... so what are you waitin' for? It's up to Joe and Mac to get 'em back.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Joe & Mac 2 - Lost in the Tropics (USA).txt",
    "content": "This sequel puts you back into the roles of the cavemen, Joe and Mac. This time, a caveman named Gork has stolen the crown belonging to the Chief of Kali Village, and it's up to you to retrieve it by using the 7 Rainbow Stones you will collect on your journey.\n\nAlong the way, you will fight dinosaurs, cavemen, and other prehistoric enemies as your travel through the jungle, or through the ice and snow, or even through a volcanic wasteland. Along the way, you can pick up upgrades for your club, or pick up projectiles from eating certain health-recovery items. In some levels, you'll ride in a stone cart, trying to hope over gaps and avoid enemies as you try to reach the end.\n\nImproving on the original's platformer/brawler co-op gameplay, this game adds adventure and role-playing game elements that create a more involving experience compared to the first game. You can now collect coins in the levels to purchase items from Tiki Village, such as meat to recover your health, or even remodel your hut back at your home village. The game also uses a password system to track your progress. The game also shifts to an overhead map so you can wander to whichever level you wish, and return to completed levels to earn more money or power-ups. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Jungle Book, The (USA).txt",
    "content": "Based on the famous animated movie, Walt Disney's The Jungle Book is a platform game where you control Mowgli, the boy who was raised by wild animals deep in the jungles. Your goal is to find the human village so you may you join your kin once again. \n\nMowgli is an athletic individual, and can jump, run, swing on vines or climb them without any problems. Most of the animals he comes upon, however, are inexplicably hostile, so he must defend himself with a variety of thrown weapons, such as bananas and boomerangs. \n\nTo complete each level, Mowgli must collect a number of crystals (how many - it depends on the difficulty levels) within a time limit. A compass in the corner of the screen helps him by showing the direction where the nearest crystal is. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Jungle Strike (USA).txt",
    "content": "Some time after Operation Desert Strike, Ibn Kilbaba, son of Kilbaba S.R, threatens to annihilate America. After his father was killed, the people who were under his control, sent his son running off, along with his father's money and nuclear weapons program. Kilbaba, more ruthless than his father, longs for revenge of his father's death and decides to shed the blood of those who killed him, the Americans. Already armed, Kilbaba hires Carlos Ortega to help him set up his Nuclear Weapons program, deep in South America. Carlos Ortega, the world's most notorious druglord, also yearns to seek revenge. With his own private army, armed with the most hi-tech weapons, he's ready to fight America at all costs. \n\nBecause of this threat, you're hired again to battle these two characters, following their paths in the jungles of South America. Armed with the Commache, numerous other vehicles, and destructive weapons, you must take out their private army. Blow up the enemy with your hellfires, hydras, chain guns. Use the watercraft to launch mines at enemy ships. Pull off a drive-by on the enemy with guns on the side. Take out the evil duo and forever rid this threat.....in the jungle!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Jurassic Park (USA) (Rev 1).txt",
    "content": "The SNES game based on the film Jurassic Park is an action title that combines top-down and first-person perspectives.\n\nPlaying as Dr. Alan Grant, the player's ultimate goal is to escape the Jurassic Park island. To reach that goal, several other tasks must be completed, including restoring power to the park and destroying a Velociraptor nest. \n\nThe large game world is seen from a top-down view and can be freely explored. Some areas are not accessible from the beginning, however. To enter them, keycards must be found or some special goal be completed, like rebooting the computer system and using it to open certain gates. Dr. Grant can defend himself against the many free-roaming dinosaurs with a variety of weapons, including an electroshock gun, a shotgun, rocket launcher, gas grenade launcher and bola gun. All weapons except the electro gun require ammo to work. A radar at the bottom of the screen helps in detecting approaching dinosaurs, but will only work once the park's motion detectors have been activated.\n\nUpon entering one of the park's buildings, the game view switches to a scrolling first person perspective, reminiscent of early first person shooters like Wolfenstein 3D. Just like outside, dinosaurs lurk in the corridors, and the same guns as in the overworld map can be used to destroy them. Many buildings consist of several floors, with elevators connecting them. Some rooms are pitch black and can only be entered when in possession of night vision goggles.\n\nThe game supports the SNES mouse for the first-person sections and the computer system interface.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Ken Griffey Jr.'s Winning Run (USA).txt",
    "content": "Ken Griffey Jr.'s Winning Run is a licensed arcade baseball  game featuring MLB's own Ken Griffey Jr. Released in 1996, it contains all 28 MLB teams and logos from that time, with rosters containing fictitious names for the players (Ken Griffey Jr being the only real player in the game).\n\nNext to exhibition games, there are different game modes to compete in. In the MLB Challenge, players start with a weak team and go against every major MLB club to go up the rankings. There is also a complete World Series, All-Star games and the MLB League. In the league modes up to eight players can choose a team and play a season of 26, 52 or 162 games. Between matches players can change the line-up and rotation, and trade away players.\n\nGameplay is fairly tradition, with fielding, pitching, batting and baserunning. Next to fastball and curveballs, there are six different pitches such as Super Fast, Screwball, Super Curve, Slider, Change Up and Knuckleball. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Kid Klown in Crazy Chase (USA).txt",
    "content": "You play as a clown, trying to finish the level while avoiding Blackjack's booby traps.\n\nTo successfully finish each level, you'll need to beat the fuse. What is the fuse? At the start of each level, there is a bomb fuse at the same location as you are, you must get to the end of the level faster than it does in order to prevent the big bomb from going off. In addition, you'll also need to find all 4 card symbols before you can finish. If you don't, you'll get to go to the beginning of the level and have another try.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Killer Instinct (USA) (Rev 1).txt",
    "content": "In the distant future, a monopolistic and technological corporation called Ultratech organizes a fighting tournament known as \"Killer Instinct\". Many fighters answer the challenge to participate, including several of Ultratech's experimental warriors.  To increase the tournament's challenge, Ultratech utilizes a technology that can create bridges between alternate dimensions, releasing a creature known as Eyedol.  Eyedol is a two-headed ancient warrior that was imprisoned along with his bitter rival, Gargos. Some warriors enter the tournament to seek glory or escape.  Other fighters are attempting to bring an end to Ultratech's corruption.  \n\nKiller Instinct is a Rare developed fighting game published by Nintendo (and distributed in the arcades by Midway).  Killer Instinct (or \"KI\" among its fanbase) is a 2D fighting game that features 3D rendered sprite based graphics. Players choose from 10 characters: Orchid, Cinder, Jago, Glacius, Fulgore, Riptor, Sabrewulf, Spinal, T.J. Combo, and Thunder.  \n\nKiller Instinct is known for its heavy combo based fighting system, allowing players to pull off moves that land an insane number of hits on their opponent, the highest being the \"Ultra Combo\".  The gameplay is also known for its use of combo breakers, finishing moves and stage fatalities, double energy bars, and dance-music inspired techno soundtrack.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/King Arthur's World (USA).txt",
    "content": "This is a 2D side scrolling strategy game.  You take the role of King Arthur and lead your army into battle against evil.  You'll travel to many worlds including fighting dark knights, underworld orcs, and cloud giants.  One of the few games that is Super NES Mouse capable.\n\nYou are given a certain amount of troops each level.  Passwords are used to save your progress between levels.  The levels have enemies you must thwart, traps you should avoid, and gold to be won.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/King of Demons (Japan) (Translated).txt",
    "content": "The King of Dragons is a fantasy themed side-scrolling beat'em up. There are five different characters to choose from: a fighter, a cleric, an elf, a wizard and a dwarf. All characters have different strengths and weaknesses in speed, attack power and magic. After choosing an appropriate character, the player has to fight his way through numerous short levels guarded by an equally high number of bosses; gaining better weapons and shields/magic in the process. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/King of Dragons (USA).txt",
    "content": "The King of Dragons is a fantasy themed side-scrolling beat'em up. There are five different characters to choose from: a fighter, a cleric, an elf, a wizard and a dwarf. All characters have different strengths and weaknesses in speed, attack power and magic. After choosing an appropriate character, the player has to fight his way through numerous short levels guarded by an equally high number of bosses; gaining better weapons and shields/magic in the process. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/King of the Monsters (USA).txt",
    "content": "King of the Monsters is a two player (or one player vs. computer) fighting game, in which the players take control of two gargantuan monsters (like Godzillas) and battle it out in different city locations.\n\nThe city gets gradually destroyed as the two creatures fight it out. The players can also interact with the scenery by picking up boats and such, to use as weapons against the other player.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/King of the Monsters 2 (USA).txt",
    "content": "The object of King of the Monsters 2 is similar to its predecessor. Choose from three monsters which include a large lizard, a large robotic ape, and a huge mutant human. Then walk through each city, making sure to destroy everything in site, including planes, buildings, and other creatures. When smashed, some buildings reveal power-ups that make your character more powerful. At the end of each city, you go head-to-head with the boss creature. There are small stages in between where you fight a second monster for bonus points, or you fall from the sky and land underwater where you try to collect points and power-ups while falling. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Kirby Super Star (USA).txt",
    "content": "The game is actually a set of seven main games: Spring Breeze, Dynablade, Gourmet Race, The Great Cave Offensive are unlocked at first, and later Metaknight's Revenge, Milky Way Wishes and The Arena become available, as well as a couple of minor minigames. \nThese are all typical Kirby platformers, each one with its own set of levels and different gameplay. In most of them you can consume monsters and learn their special abilities, but in Milky Way Wishes abilities are instead collected in a manner similar to Metroid. Offensive Cave features levels with various obstacles, hidden treasures and some elementary lever-pulling kind of puzzle solving. Metaknight's Revenge is the only game on the cartridge with a (fairly strict) timer. The Arena is a \"boss rush\" mode, asking players to defeat every boss in the game with limited health refills and on one life. \nKirby Super Star is best known for its two-player cooperative play option, which has given it a reputation as a party game.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Kirby's Avalanche (USA).txt",
    "content": "The First Annual Dream Land's Avalanche Competition is about to get under way, and as Kirby and a host of characters from the Kirby series, you can join the tournament and become Avalanche king.\n\nAvalanche is similar to Puyo Puyo, and has you stacking colored blobs similar in a way to Tetris. When a certain amount of one color is stacked, an explosion occurs and the screen clears of those blobs, which then appear in the other players screen (either the CPU or a second player). When your screen is cleared before the other player, you move onto the next round, and so on until the final boss. The winner of that match is then crowned the Avalanche king. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Kirby's Dream Course (USA).txt",
    "content": "Kirby's Dream Course is an innovative SNES game featuring everyone's favourite pink blob, Kirby. After his adventures in Dream Land we find him in this mini golf game where Kirby himself is the ball, and you must guide him around each hole using the sort of bar system that you see in most golf games. Where this game differs, however, is in the fact that you need to eliminate all on-screen enemies before you can guide Kirby into the hole and complete it. As per usual in golf games, the more strokes it takes you to complete the whole, the lower your score - so make sure you aim Kirby just right!\n\nYou'll find eight courses and a total of sixty-four holes in the game, not including the final showdown with King Dedede, as well as an action-packed two-player mode.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Kirby's Dream Land 3 (USA).txt",
    "content": "That mean old King Dedede is at it again! He's causing his mischief and Dreamland's in trouble! Kirby, the resident hero of Dreamland, sets out to teach Dedede a lesson, this time with the help of many of his good friends!\n\nBut wait! Something's wrong! Dedede doesn't seem to be himself...\n\nLooks like Kirby has to stop Dedede and find out what is wrong with him! It almost seems like something's controlling him... \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Knights of the Round (USA).txt",
    "content": "In Knights of the Round, play the role of one of three knights from the Arthurian legends. The three characters are Sir Lancelot, Sir Percival, and of course King Arthur. \n\nThe story tells of a man who pulled the mighty sword Excalibur from a rock which no one else could achieve. This feat signified that he should be king of the Britons and lead them to peace. The trouble is there is mass chaos in the land and the only way Arthur can stop it is to find the holy grail which has been hidden for over a thousand years. Aurthur is joined by Percival and Lancelot on his quest to find the grail. \n\nThe gameplay involves the player to scroll along the screen fighting of enemies with a sword or axe depending on the character. The player can also block and parry with opponents which is done by a simple button press. There are also character development elements in the game where collecting points by killing enemies and picking up gold increase the character's attack and speed.  Character's armour and weapons also change when they gain experience.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Legend (USA).txt",
    "content": "Legend is a side-scrolling Beat' em Up set in a fantasy world. You have to rid the kingdom of Sellech of the king's evil son Clovius, who wants to conquer the kingdom by harnessing the power of the imprisoned soul of Beldor, who once ruled over Sellech as a despot.\n\nTo complete your quest, you must fight your way through numerous enemies using different combinations of slashes and kicks. You cannot perform any throws, but there are different magic attacks and a special attack. The special attack is a ranged attack that consumes a certain amount of energy, whereas the different spells use up magic bags that can be found throughout the game and damage every enemy on screen. Defeated enemies drop different kinds of items such as magic bags , food to replenish your health, money and keys that are used to open treasure chests in some of the bonus-games that take place in-between battles. Naturally, at the end of each stage, a powerful boss is waiting to be defeated.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Legend of Zelda, The - A Link to the Past (USA).txt",
    "content": "Venture back to Hyrule and an age of magic and heroes. The predecessors of Link and Zelda face monsters on the march when a menacing magician takes over the kingdom. Only you can prevent his evil plot from shattering the land of Hyrule. In your quest, you'll venture into twisting mazes, dungeons, palaces and shadowy forests. Test your mettle with mighty swords and magical weapons. Or heft a boulder and hurl it at your enemies. If the going gets tough, dive into a river - you can swim to escape! Learn the powerful spells, locate magical artifacts and solve the mysteries of the evil magician and the hidden realm of Hyrule.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Legend of the Mystical Ninja, The (USA).txt",
    "content": "Goemon (Kid Ying) and Ebisu-Maru (Dr. Yang) are enjoying themselves at home, when they hear about strange spirits sighted at the temple and taking control of the other villagers. Concerned, that a new evil has appeared, the two set out to confront it at the temple. This is just the beginning of a new adventure that will take them Goemon and his partner all across Japan; into moutain villages, amusement parks, castle fortresses and more!\n\nPlayers control either Goemon or his partner Ebisu-Maru (or both, in 2 player mode). They sequentially travel through adventure-type villages and side-scrolling jump and run action stages. In the overhead-view villages, enemies must be defeated in order to earn money and other items (which include a weapon-enhancing lucky cat and mystical scrolls). The player is able to attack with their primary weapon and jump. Throwing weapons can also be used, which consume money for each one thrown. Attacking innocent villagers will cause the player to lose money. Money can also be gained (or lost) by visiting one of the numerous mini games, often in houses: which include mazes, whack-a-mole, the lottery, dice, a 3D labyrinth and a game trivia quiz show. Other businesses such as shops, resturants, inns and judo training can also be visited.\n\nAt the end of each village is an \"action area\" which changes the game in a complete side-scroller. One or both players can enter this place, filled with obstacles, traps, enemies and a boss creature. In addition to the regular moves used in town, players also gain the ability to unleash one of four special attacks for each character (if bought beforehand at the judo training center). These consume the scrolls collected in order to use. Additionally, in a 2 player game, characters can ride piggy-back on one another, to avoid getting stuck by a scrolling screen.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Liberty or Death (USA).txt",
    "content": "STORY\nThe European Wars against Spain and France have been costly to the British Empire. In order to gain additional funds for the war effort, the Crown raise taxes from the New World colonies without representation. This act compels the New World colonies to protest and boycott against British rule. By 1775, the Crown alarmed by the protests, boycotts and politically instability in the New World sends troops to subdue any rebellious efforts by the New World colonists. This threatening approach provokes the Thirteen Colonies to revolt. Thus starts the War for Independence in the New World (American Revolutionary War).\n\nGAMEPLAY\nChoosing Sides\nIn Liberty or Death, you partake in the American Revolutionary War, either as the \"rebels\" - the American Continental Army or as the \"Crown\" - the British Royal Army.\n\nChoosing either one of the nations will prompt you to choose the leading Commander-in-Chief:\n\nThe Continental Army: Charles Lee, Artemas Ward or George Washington.\nThe British Royal Army: Henry Clinton, Thomas Gage or William Howe.\n\nRevolutionary Politics\nEach turn you will have to balance your treasury for the war effort. Money is provided by each state. The more states that support your cause, the more money will flow in your coffers. Money is spent in paying wages, strengthening the fleet and recruiting new regiments.\n\nHere, if you have a sufficient fleet, you can also command your Navy officer to \"control the seas\" which is conducting a blockade and privateering against enemy ships. This may result in seized goods that will be added to your treasury. \n\nThe American Revolutionary War in Liberty or Death included everyone except the American Indians: [1] Revolutionary Militia: American supporters but not yet fully supportive of Continental Army (not under your full control) [2] Loyalist Militia: Militia supportive to the Crown [3] French Army: The French will support the American cause after a formal alliance is held. [4] Spanish Army: The Spaniards will support the American cause after a formal alliance is held.\n\nRevolutionary Combat\nThe Top-down turned based combat introduces units available in the Revolutionary War: Infantry, Guerrilla, Cavalry and Artillery (Engineers). Combat near shores may also be joined by Naval units: Fleet and Fires Ships. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Lion King, The (USA).txt",
    "content": "Young Simba just can't wait to be king. His father is the current King of the Savannah and the young prince is able to frolic the lands at will; jumping on and around other subjects of this animal kingdom. When Simba's father, King Mufasa, is killed and his evil brother Scar takes over the kingdom, Simba is banished from the lands of his birthright and has to grow up fast, honing his skills, for the day of his return.\n\nThe Lion King, based on the famous Disney movie, is a platform game where you control Simba - initially as a young cub, and later as an adult lion. The plot of the game follows the plot of the movie. Each of the levels represents a part of the movie. \n\nAs young Simba, you can fight various beasts, such as lizards, by jumping on them. You can also roar to scare some creatures into submission, though every time you roar, you have to wait for your \"roar meter\" to charge. \n\nAs an adult lion, you can still roar and jump, but now you fight enemies by slashing at them with your claws (if you're skillful enough, you can also grab them and toss them off the screen). \n\nThe game features no in-game save function, and it needs to be replayed from the beginning every time.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Live A Live (Japan) (Translated).txt",
    "content": "In \"Live a Live\", you control seven main characters and play through seven different stories set in seven different time periods: prehistoric age, medieval Europe, feudal Japan, a futuristic world with robots and weird machines, etc. Those stories appear to have no common points, yet after completing all of them, you'll see they are in fact connected - the worlds of all those characters are threatened by the same ultimate evil force.\n\nThe combat features many innovations compared to traditional console RPGs: your position on the battle field is important, and certain techniques can be used only from certain positions, and enemy attacks also affect only specific parts of the field. Out of the seven chapters, some have more battle-oriented gameplay, while others are more devoted to puzzle-solving and information-gathering.\n\nThe game is one of the least known Squaresoft products, and was never released outside of Japan.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Lord of Darkness (USA).txt",
    "content": "Lord of Darkness, known in Japan as Busho Fuun Roku, is the fourth game in the Nobunaga series (but only the third one to have been localized in English). The story of Nobunaga takes place during the Japanese civil war of the 16th century. In a wartime strategy game, 15 different warlords are represented across several territories.\n\nOne to eight human players can play, controlling different leaders and factions. Gameplay is done in one of two scenarios; the beginning of the civil war in 1555 or Nobunaga surrounded by his enemies in 1571. Management of population, supplies and military are the gameplay and successful manipulation of these numbers in the right combination to attack and defend against hostile intentions is what will bring your forces to victory. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Lost Vikings 2 (USA).txt",
    "content": "Their lost is your game. \n \nThe lost boys are back: Erik the Swift, Baelog the Fierce and Olaf the Stout. This action strategy is not for the lame of brain. In their last adventure, the trio was trying to escape the evil alien captor Tomator. Now, armed with all new high tech weaponry the boys heisted from Tomator, they set out to find the time machine that will land them back home. The vikes escape together or not at all. So, it's your challenge to complete each of the levels with all three characters alive an kick'n! Plug in, boot up and fight! Norse by Norsewest.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Lost Vikings, The (USA).txt",
    "content": "Three Vikings, Eric the Swift, Olaf the Stout and Baleog the Fierce, were kidnapped by the alien Tomator, the evil Croutonian ruler, who is collecting unique life forms to display in his gallery. The three Vikings will have to combine their unique skills to defeat Tomator, as well as a vast array of aliens, robots, giant snails, big lizards and more.\n\nThe Lost Vikings is a side-scrolling platform puzzle game with a twist. Instead of one character who can jump, run, shoot, collect items, flip switches and so on, there are three different characters, each with his own skills. Eric the Swift can jump, run and bash through walls with his tough helmet. Olaf the Stout has a shield which can block attacks, function as an air glider or as a step to stand on. Baleog the Fierce can shoot things with his arrows (including switches) or kill things with his sword. The player has to use the three Vikings as a team if he wants to get past the increasingly difficult levels and puzzles.\n\nThe player controls one Viking at a time, but can switch between them at any point. The Vikings have limited space in their inventory which they can use to keep various items. Each Viking has three health points, and if he loses them all from confrontations with dangers, he dies (some threats kill instantly), and the level must be restarted.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Lucky Luke (Europe) (En,Fr,De,Es).txt",
    "content": "Based on the famous comics series about good cowboy Lucky Luke.\n\nIn the game you as Lucky Luke have to arrest four Dalton brothers  Averell, William, Jack, and Joe. On your mission you will progress from level to level shooting bad cowboys, jail-breakers, and bad Indians with your revolver; collecting bullets, dynamites, sheriff stars, and other useful items; running, jumping, ducking, and climbing. The locations vary from Forts, Towns, and Jails to Mines, Train, and Saloon with Ghosts. On every level you have to complete different submissions to progress  either to free a Bank Director, or to collect Three Nuggets for Miner to obtain a Nitroglycerine, or to build a Totem for Apaches, etc. At the end of some levels you confront the big boss, it is often the one of Daltons.\n\nDifferent arcade sequences between levels allow you to chase the Dalton brothers or train riding your faithful horse Jolly; to run away from Tornado; and to ride on the raft. \n\nBonus level arcade sequences represent your wrestling challenge with Jolly, bottles shooting, or revolver's barrel roulette.\n\nTo access the one of the three certain parts of the game you may enter password.\n\nThe game was made in French/English/German/Spanish.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Lufia & the Fortress of Doom (USA).txt",
    "content": "The hero Maxim and his group defeat the Sinistrals on Mt. Doom (as portrayed in Lufia II), and all is peaceful.  With such a great peace, the defense forces of the world become lax.  One hundred years later attacks begin taking place, supposedly by the Sinistrals.  It's up to the descendant of the hero, and his childhood friend Lufia, to form a new band of champions to save the world.\n     Gameplay is fairly standard for RPGs, with turn-based battling by way of a menu of icons, and random battles.  There's also a higher-than-normal emphasis on puzzles within dungeons.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Lufia II - Rise of the Sinistrals (USA).txt",
    "content": "Lufia II is an RPG with many puzzle elements thrown in. In this game, the prequel to Lufia I, you are Maxim, a monster hunter. During your journey, you will find new party members, explore and conquer various dungeons, and solve many puzzles. \nLufia II was an innovative game in many regards. It made extensive use of puzzles in its dungeon layouts. It also featured \"Capsule Monsters\" which would fight alongside your party in battle. They would evolve when fed weapons, armor, or special fruits. You could also gamble away your money in minigames at the casinos found in various towns. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Madden NFL '94 (USA).txt",
    "content": "Madden NFL '94 is the third in the Madden series of football games for the SNES. It features 80 teams -- 28 teams from the 1993 season, 38 Super Bowl teams from 1966-1991, 12 All Star franchise teams since 1950, and two \"All-Madden\" teams: one for the 1993 season and one from a 20-year time span. You can play these teams in a regular exhibition game or sudden death overtime game, or take the 1993 teams through an entire season. You can also enter the playoffs with the 1993 teams, the Super Bowl champions, or the All Star franchise teams. Unlike many other sports games, saving a season is done by password rather than by storing the data into a saved game.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Magic Sword (USA).txt",
    "content": "As the hero, you must climb up a monster-ridden tower to defeat Drokkmar, master of the Blackorb. To do this, you must defeat his army that stands in your way with whatever weapon you are carrying. Health is decreased by coming into contact with various monsters, attacks, traps, and the passage of time. It is increased by finding food. Every certain amount of points, a \"Food Fairy\" appears and drops off food as well.\n\nThroughout your journey, you can smash open chests to find treasure and artifacts. Some of these artifacts can be recovered that alter gameplay, such as providing more damage or increased magical power. Also throughout your journey, you can collect keys, which are used to free imprisoned allies, who not only help you defeat monsters, but also leave you an item that will help you on your quest. Only one person can join you at a time.\n\nAs you progress through the tower, you will be granted new magical weapons after each boss you defeat. The weapons are affected by a \"magic bar\" that charges over time. When this bar is fully charged, the weapon has a powerful ranged attack, but when not charged only a close attack is produced. A magical staff will grant increased range attack ability. A magical blast may be generated by jumping and attacking, but doing this costs health.\n\nThere are multiple paths in the game, and two separate endings. Hidden doors can be used to skip levels when found - usually by attacking a wall or a particular spot.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Magical Pop'n (Japan) (Translated).txt",
    "content": "The kingdom of Toaru prosperous and peaceful place that's famous for its magic.  Within Toaru castle lies the Magic Gem which legend says can give the person who holds it great magical powers.  Because of this, it is sealed inside the castle to prevent the gem from landing in the wrong hands. \n\nOne night, a dark figure and his army of monsters invades the castle and steals the gem.  Armed with a sword and her magic powers, the Princess Toaru sets off to retrieve the gem and save the world.\n\nMagical Pop'n let's you play a young, energetic little princess who is simply called...Princess.  The game starts off with Princess chasing after a floating bad guy off a balcony and into town. \n\nPrincess has two type of weapons: her sword and  her magic powers. \n\nWhen using magic, Princess will consume star powers.  Different types of magic requires a different number of stars.  Stars can be collected throughout the game and you can also get stars after defeating a foe.  In the first stage you will only have access to Princess' magic beam powers which shoots small beams of laser at enemies.  Later, you will receive the ice, fire and other powers.\n\nThe sword can only be used to perform close range slashing against enemies. But it does not cost any stars.\n\nIn each stage, Princess will be confronted with a number of enemies that she must fight off to advance.  There are many mini-bosses and at the end of a stage, you will have to fight the main boss.\n\nPrincess' health is indicated by the number of hearts she has in her health meter.  There are various items that will help refill the meter: Candy refills half a heart, A slice of cake refills a whole heart and a birthday cake will refill the entire meter.\n\nYou will be taken to the game over screen if you lose all your lives.   But, no worries, there's an unlimited number of continues. There is no save feature in the game.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Magical Quest Starring Mickey Mouse, The (USA) (Rev 1).txt",
    "content": "This was the first Mickey Mouse game for Super NES, featuring a traditional platform gameplay and colorful Disney-like graphics.\n\nMickey's mission is to save his dog Pluto, who's been kidnapped and kept inside emperor Pete's castle, in a magical land, guarded by mysterious creatures. \n\nThe originality of the game lies on the possibility of wearing different costumes to incorporate different characters, all taken from old Disney cartoons. Each one has a special ability. As a wizard, Mickey has magical powers; as a fireman, the mouse can deal with fire; and, as a climber, he can reach the top of high platforms.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Marvel Super Heroes in War of the Gems (USA).txt",
    "content": "Marvel Super Heroes in War of the Gems is a side-scrolling platformer/beat 'em up based on the Infinity Gauntlet storyline from the comics.  Adam Warlock calls on the heroes to recover the 6 Infinity Gems before they are used for evil.\n\nYou may choose ones of five heroes: Spider-Man, Hulk, Captain America, Iron Man and Wolverine.  Each one has different stats and abilities.  (i.e. Spider-Man is agile. Hulk is strong, Iron Man can double-jump with his rocket boots, etc.)  Initially you can choose a training area in Avenger headquarters or four levels.  As you complete levels, most open up.  Each hero can be equipped with gems to boost their abilities in each section.  These must be obtained by finding them in the levels.\n\nGameplay is fairly similar to X-Men-Mutant Apocalypse.  Combat is all on a 2D plane.  Each hero has basic jumps and attacks and special moves that can be executed with button combinations like quarter-rolls.  Enemies include various villains from the Marvel Universe and evil doubles of various Marvel heroes.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Mask, The (USA).txt",
    "content": "The Mask is based on the movie with the same name. The story follows poor guy Stanley Ipkiss who finds a mysterious mask and is given mysterious powers from it..\n\nAs in the movie, Stanley (aka The Mask) has some funny weapons, like the Guns, the Horn, the Hammer and the ability to transform into a big Tornado. He battles through levels inspired by the movie, including his apartment, the city streets, the bank, the park, the jail, and the night club for the final showdown.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Maui Mallard in Cold Shadow (USA).txt",
    "content": "Disney's Donald Duck takes the starring role in this sidescrolling platform game.  As the detective Maui Mallard, he's on the trail of a long lost Idol, which has recently vanished.  Early on, Maui can also switch between his normal self and Ninja Maui, and with all the creepy voodoo enemies he'll encounter throughout his adventure, he's going to need all the help he can get.\n\nAs previously mentioned, there are two personalities to Maui, and as a result, two different sets of controls.  Normal Maui carries a bug gun, which can fire a variety of different insect ammo, from basic bugs, to the more powerful lightning and fire bugs.  It's also possible for Maui to combine bugs to pack a more powerful blast at his enemies.\n\nOnce Maui starts to find Yin-Yang coins, he'll be able to transform into Ninja Maui.  Ninja Maui has lightning-quick reflexes, and wields a bo staff.  In addition to being handy for whacking enemies, Ninja Maui can also climb between walls by jumping and propping the staff between the walls at the height of his jump.  He can also hook onto duck heads and swing from them to reach areas he normally couldn't.  You'll need to constantly find Yin-Yang coins to fuel your Ninja persona, otherwise you'll run out and transform back to Maui Mallard. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Mega Man 7 (USA).txt",
    "content": "At long last, Mega Man had finally manage to beat the evil Dr. Wily! With this defeat, Wily was thrown in jail, seemingly for good. The world would no longer be subject to his madness.\n\nBut remember, Dr. Wily is mad, but he's not stupid. He had a backup plan...and all he had to do was just wait...\n\n6 months had passed, and somewhere from deep within Wily's abandoned lab, 4 hidden capsules activated and opened. His backup plan was in action...he had hidden 4 new Wily Robots that would spring him out of jail so he could continue his mad reign.\n\nWhen Mega Man hears the word that Wily was busting out of prison, he rushes onto the scene, only to encounter a strange robot he had never seen before named Bass. Bass tells Mega Man to back off, that he would stop Wily, and that Mega Man was no longer needed.\n\nThink that's gonna stop Mega Man? No way! Mega Man takes off to put a stop to Dr. Wily and find out exactly whose side Bass is on...\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Mega Man Soccer (USA).txt",
    "content": "Dr. Wily, angered at being foiled once again decides to send his robots to the soccer field. Dr. Light immediately responds by forming a soccer team of Mega Mans to counter Dr. Wily's latest scheme.\n\nMega Man Soccer is an overhead view soccer game featuring characters from the Mega Man series. Players begin by selecting either Exhibition, Tournament, League or Capcom Championship modes. Depending on the mode, a team must be formed using either all of one type of robot, or a mixture of different types assigned to different positions on the field. In any case, each soccer team has 8 players on the field including the goalie. The goal of each team is to score on the net of the opposing team, earning points to win the game. The action follows the ball as it is tossed around the field from player to player. Once a player's team member has the ball they can choose to pass it to another teammate, shoot the ball straight ahead or perform a clearing kick (if the goalie). If the player does not have the ball, they are given control of the nearest player to the ball and can slide tackles or shoulder tackles to try to gain possession. Each type of robot has a special move that can be initiated.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Mega Man X (USA) (Rev 1).txt",
    "content": "Mega Man X is a robot designed by Dr. Light to choose his own path in life. Years after he is created, Dr. Cain finds X and mimics his design to create a race of such robots called reploids. When the sigma virus infects these reploids, causing them to commit acts of evil, it is up to Mega Man X and his partner Zero (who is quite powerful, contrary to what his name implies) to stop it.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Mega Man X2 (USA).txt",
    "content": "Sigma, the leader of the Maverick army, was destroyed when he underestimated his opponent: a lone warrior, awakened into a time he never knew...X.\n\n6 months had passed, and X rose to the rank of leader of the Maverick Hunters. His first task was to eliminate the last of the Mavericks. But as he began his assignment, a mysterious group of Reploids calling themselves the X-Hunters appeared with a message to X: the remains of his fallen comrade, Zero, were in the hands of the X-Hunters, and they planned on resurrecting Zero to fight alongside them and for their fallen leader, Sigma.\n\nX must now stop the X-Hunters and rescue Zero, and once again prevent Sigma from rising back into ultimate power.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Mega Man X3 (USA).txt",
    "content": "A Reploid scientist named Dr. Doppler begins creation of a new city for Reploids, which will bring a new era of peace to the Reploids and humans. But something goes terribly wrong, and now Mavericks have begun to appear everywhere! It's up to X and Zero to find out who is behind this Maverick revolt and bring them down for good!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Metal Combat - Falcon's Revenge (USA).txt",
    "content": "Following the events of Battle Clash, the Battle Game Chiefs had been defeated. But the world did not return to peace and instead new Chiefs and new machines rose up to rule the world. Like before, the Chiefs use giant robots known as Standing Tanks (STs). Seeing the world in trouble, the hero pilots who had defeated the Battle Chiefs decide to once again enter the Battle Game using an improved version of their ST, the Falcon. The truth behind the Battle Game will take the Falcon deep into space...\n\nMetal Combat: Falcon's Revenge is a first person shooter designed for the Super Scope Light Gun. Gameplay is identical to Battle Clash. The player takes the role of the gunner of the giant robot, movement is handled automatically by the game, scrolling the screen. Players must keep the enemy robot in the gunsights and blast away at different parts of it, while also intercepting enemy missiles and counter-attacks. All robots have a weak point that will increase the damage done to them. Power-ups such as Neutron Beams and Plasma Bombs can be picked up following the completion of certain stages, and equipped at the beginning of combat. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Metal Marines (USA).txt",
    "content": "The Antimatter Cold War has left Earth ruined as the stockpiled AM weapons of various nations were triggered in a chain effect, vaporizing large portions of the Earth. The once great continents have been drastically changed into thousands of tiny islands and various cities have washed into the oceans.  During this turmoil,  Zorgeuf the Great rushes to conquer the bewildered world along with a troop of commanders and declares the Earth Empire. The only hope to defeat him lies from without Earth, as the Colonial Forces send a command carrier from the major orbital base. With so many armies gone, the ground infantry unit has been replaced by the Metal Marine, a fifty foot armored robot that can be sent into battle for attack or defense. From their respective Command Center, each side in the conflict will need to direct the placement of facilities on the ground to defend against enemy attack, manage resources and successfully strike the enemy.\n\nMetal Marines is an isometric strategy game. Controlling one side of a conflict, the player must wage a campaign across several islands to defeat Zorgeuf and his lieutenants. The player controls logistics of the base to ensure that there are the necessary assets to wage war. On each map, the player places three underground command bases, if all of these are destroyed the battle is lost.  The player must manage the resources of their money to construct new buildings or upgrade existing facilities on the map. Different buildings include Energy Plants, Factories, Economic Centers, Radar systems, Anti-Aircraft missiles, fake buildings and fake HQ bases, mine fields, gun pods, missile launchers, metal marine hangers and even ICBMs.  At any time, the player may order an attack and choose which assets to fire at the opponent. Missiles, Metal Marines carriers and ICBMs all use different levels of fuel. Metal Marines once deployed in an area will automatically fire rifles at nearby targets or engage even closer targets in melee attacks. Gunpods, while stationary, will also fire on nearby enemies. Metal Marines are largely autonomous but can be manually controlled to a minor degree (directional) by the player.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Metal Warriors (USA).txt",
    "content": "Get deployed in your own giant mech and battle through nine linear levels against the evil Dark Axis forces. Eject and switch robots, piloting one of the six \"Battledroid\" suits; but watch out because there are no save games and no continue codes.\n\nFor the best of Metal Warriors, grab a friend for some head-to-head combat in the PvP mode. The variety of robots and levels means the matchups stay surprising and interesting.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Mickey Mania - The Timeless Adventures of Mickey Mouse (USA).txt",
    "content": "Mickey Mouse gets a chance to go down memory lane and walk through the timeless adventures he has lived. Mickey Mania is a platformer where all the levels are based on Mickey's most famous cartoons. The levels range about 75 years, starting off with \"Steamboat Willie\" and going all the way to \"The Prince and the Pauper\".\n\nThe gameplay consists mostly of jumping and marble throwing at enemies, with an occasional puzzle element. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Mickey's Ultimate Challenge (USA).txt",
    "content": "One night, as Mickey (or Minnie) lay in bed reading a book of fairy tales, he started to wonder how it would be to live in a far off land, in a magic castle. As he fell asleep, he woke up in the Kingdom of Beanwick, which is constantly tormented by earthquakes. Then, he offers his help to solve the mystery behind those earthquakes.\n\nMickey's Ultimate Challenge is a puzzle game in which the player chooses either Mickey or Minnie to play with. They'll find five characters from the Disney's universe in the kingdom, and will be prompted to help them in several tasks.\n\nEach task is a different puzzle, given by a specific character. Daisy, for instance, will ask help to clean the castle's paintings hanging on a wall. The task is in fact a memory game, where Mickey or Minnie must clean the pictures matching pairs. After completing one task, they'll receive a gift.\n\nAfter completing all tasks, Mickey or Minnie must trade the gifts they won with the right characters. For instance, after finishing Goofy's task, they will receive his hammer. The player must then guess who among the other characters would like to receive that hammer.\n\nGiving the right items to the right characters will allow Mickey or Minnie access to the last puzzle and character.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Might and Magic II (Europe).txt",
    "content": "The Sequel to the successful Might and Magic I, it boasted better graphics, a larger world, but still pretty much the same game engine and presentation. Embark on a glorious journey then save the world of CRON and yourself.\n\nA balanced party is a necessity in this game. There are several locations and items that are restricted to certain genders, alignments, or races. A party made up of Good Human Males won't get you very far. Time plays a large role in this game. Time travel is a part of it, but on a more basic level, you will find that characters age as the game goes on. If you wait too long, your characters' statistics will change to reflect their aging. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Might and Magic III - Isles of Terra (USA).txt",
    "content": "The third installment of the roleplaying series, with a multi-faceted plot full of twists and turns. Ease of  use was central to the gameplay and interface, and the plot included piles of new twists and turns.\n\nLead a party of adventurers to rendezvous with the legendary wizard Corak. From dark moldy dungeons, through corridors of hewn stone and timber, and onward to the lofty frozen peaks of Terra you will uncover the mysteries that surround the exotic islands in the Great Sea. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Mighty Morphin Power Rangers (USA).txt",
    "content": "This is a one-on-one fighting game for one or two players. \n\nSingle players pick a Ranger (Red, Pink, Blue, Yellow, Black, or the unlockable Green) and take him or her through a series of battles against Rita's monsters. After one normal battle, the monster grows very large, and then it is time to take out the MegaZord.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Mighty Morphin Power Rangers - The Fighting Edition (USA).txt",
    "content": "Mighty Morphin Power Rangers: The Fighting Edition is a game directly based on the world-known television series. In this game, you can choice among 8 playable characters: the Power Rangers' Zords (Thunder Megazord, Mega Tigerzord, Ninja Megazord, Shogun Megazord) or some of their known villains (Lipsyncher, Silver Horns, Goldar, Lord Zedd). The title offers 3 game modes: Story Mode (1-Player only), Fighting Mode (2-Player) and Trial Mode (a survival mode for 1-Player only).\n\nDuring Story Mode, the goal is to defeat all the 4 Zords, the 4 villains up to Lord Zedd and last, but not least, Ivan Ooze. In this mode, you can opt by the Thunder Megazord (formed by the 5 original Rangers) or by the Mega Tigerzord (formed in conjunction with the White Ranger). The Fighting Mode is an traditional 2-Player head-to-head combat, where you can choose any of the 4 Zords or even the 4 villains. Trial Mode is a Endurance-like option, and the main goal is to win as many battles as possible using only 1 health bar (that will be partially replenished after each battle).\n\nAs well as many fighting games, you can take advantage of a Power Bar (here, it fills automatically): if you execute a Super Move when this bar is flashing, it will be cause more damage, besides increasing 1 level. Once you having reached its maximum status, it's possible to execute power-up versions of Special Moves or even unleash high-damage blows (Super Moves). \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Mighty Morphin Power Rangers - The Movie (USA).txt",
    "content": "This game is loosely based off of the movie of the same name, where the player can take control of either the Yellow, Black, Pink, Blue, Red or White Ranger in a side-scrolling beat-em-up in an attempt to stop the evil Ivan Ooze who is trying to control the universe.\n\nThere are six different levels to play in each with their own standard obstacles and enemies, mid-level bosses and of course end bosses that range from Mordant, Lord Zedd to Ivan Ooze himself.  There are no weapons that can be used, instead the player must rely on kicks and punches to dispatch enemies and pick up health items left behind.\n\nAdditionally, the Yellow, Black, Pink Rangers are extremely fast and can jump into higher areas but are more weaker than Blue, Red, White Rangers who are much stronger, but lack the speed and jumping abilities of the other Rangers.  Players can refill their health by picking up heart icons and power icons to increase their morphing meter.  Once filled, the morphing meter will increase the Rangers power, attack capabilities, speed and jumping abilities. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Mobile Suit Gundam Wing - Endless Duel (Japan) (Translated).txt",
    "content": "It is the year After Colony 195, and war between the Space Colonies and Earth has begun. To give the colonies an edge, they send 5 young soldiers, trained to perfection, to earth in the most powerful of Mobile Suits-Gundams. With their arrival, the tide of the war changes as they battle against the Earth forces and the Colonies of their origin.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Monopoly (USA) (Rev 1).txt",
    "content": "This time, a Monopoly game on your computer, as good as it knows to be in your reality. Every move of yours can be in 3D animation, or off if you don't want to see animations. There can be up to 6 players at once, and it can be played over the Internet. Music is in midi format, and the sound quality is at the wav format. Roll, spin, and don't miss to give us a grin.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Mortal Kombat (USA) (Rev 1).txt",
    "content": "Five Hundred years ago, an ancient and well respected Shaolin fighting tournament, held every 50 years, was corrupted by an evil and elderly sorcerer by the name of Shang Tsung.  Shang was accompanied by Prince Goro, a warrior of the Shokan race (a four armed half-human/half-dragon). Knowing that if ten tournaments in a row were won by the Outworld champion, the Earth Realm would be conquered by evil and fall into darkness, Shang entered Goro in the tournament and had him defeat the great Kung Lao. Goro has been  reigning supreme as the undefeated fighting champion for five hundred years now. As the last tournament required draws near, Raiden, Thunder God and protector of the Earth Realm, enacts a plan to tip the scales in the humans favor, Seven fighters step into the arena on Shang Tsung's mysterious island: Shaolin warrior Liu Kang, Special Forces operative Sonya Blade, the mercenary thug Kano, fame-seeking actor Johnny Cage, the ice wielding Lin Kuei warrior Sub-Zero and his undead adversary Scorpion, and Raiden himself.\n\nMortal Kombat is a side-scrolling 1 on 1 fighting game. Fighting is set as one on one kombat, allowing each player to perform a variety of punches, kicks, and special moves in order to defeat their opponent.  When the opponent faces their second round loss, the winner can perform a finishing move called a \"Fatality\" on the loser.  The Fatality is a move unique to each fighter that graphically kills the loser in a blood-soaked finale.\n\nMortal Kombat began its life as a 2-player arcade title. It is notable for its use of digitized actors to represent the game's fighters, as well as its use of copious amounts of blood during gameplay.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Mortal Kombat II (USA) (Rev 1).txt",
    "content": "The Mortal Kombat fighters, plus several new ones, return for a tournament held by the evil Shang Tsung of the Outworld. The action is one-on-one as before, and famed for its high level of violence and blood (other than the sanitised Nintendo version). There are 5 difficulty levels and optional credits, as well as the usual two player mode including same character duels.\n\nTo win the main tournament, the player must beat each of the other human players, before taking on Shang Tsung, Kintaro and finally Shao Kahn. Players have a range of punches and kicks available, as well as flying kicks, uppercuts, roundhouses, and the special moves, which vary for each player. These include throws, uppercuts, long-distance bullets, bicycle kicks and a teleport feature.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Musya - The Classic Japanese Tale of Horror (USA).txt",
    "content": "Shizuka holds a talisman that has locked away the Evil One in the Abyss. Recently, a guard of the Evil One has taken Shizuka away from her village along with her talisman. Now it is up to the pikeman, Imoto, to save her and seal away the Evil One.\n\nGameplay has Imoto going through various stages defeating enemies and stage bosses with his spear. Imoto can both thrust and spin his spear to attack enemies. He can also use 5 different magic spells, such as Thunder and Flame, which kill all the enemies on the screen.  Imoto may hold up to four scrolls of each of the five spells. Used spells can be replenished by finding items throughout each stage.\n\nThe stages included are Tengumura Cavern, Catacombs, Palace of Hate, Cave of Darkness, Catacombs of Akuma, Cursed Palace, and the Watery Prison. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Mystery Dungeon 2 - Shiren the Wanderer (Japan) (Translated).txt",
    "content": "The legend of the Golden Condor... from village to village and  from town to town, everybody speak of it - somewhere, beyond forests and mountains, there lies an idyllic Golden Land, the land of eternal happiness. Many adventurers have tried to find their way to the mysterious land of the Golden Condor, but how many of them have survived the impassable mountain paths, the dark forests and caves, and the vicious monsters? You are the wanderer Shiren, and the goal of your life is to find the Golden Land. Together with your best buddy Koppa, a talking weasel, you decide to venture deep into the dungeons that lead to the land, and to try your luck there.\n\nFurai no Shiren (The Wanderer Shiren) is a roguelike, hack-and-slash game with randomly generated dungeon areas, items, and monsters. Despite being named Fushigi no Dungeon 2 it has no relation to the storyline or characters of the first game in the series, it does however share the same style of gameplay. The movement is turn-based. You visit towns and villages where you can buy and sell supplies. The dungeons are full of various traps and monsters, and sometimes non-playable characters you can talk to, some of which can join you on your quest. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/NBA Jam - Tournament Edition (USA).txt",
    "content": "This game lets you play two-on-two arcade basketball with players from all the NBA teams. Gameplay is fast and action-packed, with few rules, no fouls, and deliberately unrealistic jamming. Players are rated on eight ability categories, from steals and blocks, to dunks and 3-pointers.\n\nUp to four human players can take part, each always controlling a single player for their team, and AI for missing players. This allows for four players to face each other in teams of two, or for two players to team up against a third player with a CPU team-mate.\n\nThe Tournament Edition ups each team's roster to three players, and allows for substitutions between quarters. Shoving players now results in injuries, which lower a player's stats; encouraging you to sub them out and let them recover. Aside from the usual secret characters and cheat modes, the T.E. also includes four new additions you can individually enable from the special options menu:\n\n1. \"Hot Spots\" are randomized zones on the court that reward extra points (up to a 9-point shot!) for making a basket while standing within them.\n\nPowerup icons appear randomly, and convey temporary arcade-like benefits when picked up. Some examples are instant \"on-fire,\" enhanced 3-point accuracy, monster dunks from anywhere on the court, or a bomb that knocks all other players to the ground.\n\n\"Juice Mode\" increases the speed of the game up to 4x.\n\n\"Tournament Mode\" disables all other modes, special characters, and cheats, and challenges you to defeat all the NBA teams to unlock extra players (2 extra players for almost every team). Winning Tournament Mode also unlocks a higher CPU difficulty level. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/NHL '94 (USA).txt",
    "content": "After establishing themselves in the virtual rinks, EA combined both NHL and NHLPA licenses in NHL '94, allowing them to feature all 26 real teams (including both expansion teams) and players of the new NHL season for the first time in the series.\n\nAside from the licenses, the gameplay for this edition sees for the first time the inclusion of the devastating one-timer shot, but to keep forwards (literally) in check, defenders also feature harder body checks, with new animations. For an additional challenge, players can also choose to control the goalkeeper manually. A popular feature in previous editions, fighting is completely removed from the game. Game modes include exhibition games (or \"regular season\" in-game), playoffs (best of one or best of seven) and an all new shoot-out mode. The main options remain basically the same couple since the establishment of the series - period length (5, 10 or 20 minutes), line changes (off, manual or the new automatic mode) and penalties. (off, on, on but no offsides). \n\nWhile there are some minor differences between platforms (Genesis  features record keeping for users and the MegaCD version has more stat screens, CD quality audio backdrops and the usual highlight clips here and there), only the PC version released at the same time features complete season action.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/New Horizons (USA).txt",
    "content": " In the first Uncharted Waters game, it was the 15th century and the New World was discovered. Now in New Horizons, it is the early 16th century and the age of exploration and sea trade is underway. Players choose from any one of six adventurers (scenarios), each with their own distinctive but intertwining plot, to embark on a quest of sailing, seamanship and exploration.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Ninjawarriors (USA).txt",
    "content": "The land is under the grip of a tyrant named Benglar, who is able to brainwash those he captures. Using this ability he has taken over the military forces and now appears unstoppable. However, resistance forces lead by Mulk have been developing a new weapon: Cybernetic Special Forces with the ability to think, dubbed the Ninja Warriors. Untested, these machines are given the orders to assassinate Benglar...\n\nNinja Warriors plays as a side scrolling beat 'em up, and is a single player adaptation of The Ninja Warriors arcade game. Players can choose from 3 different Ninja Warriors: Ninja, Kunoichi or Kamaitachi. The characters play differently, but share some common controls. Each can attack, jump, grab the enemy, block attacks or unleash a special attack on the entire screen. This special attack charges up gradually and can be reset by being knocked to the ground. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Nobunaga's Ambition (USA).txt",
    "content": "In the 16th century, Japan's Sengoku period divided the nation into numerous feudal states, each ruled by a daimyo. Many dreamt of conquering the land, becoming the Shogun and ruling the entire country. One of those daimyos was the ambitious Nobunaga Oda, a merciless ruler and a renowned strategist. Players take on the role of Nobunaga Oda or one of many other daimyos to try to conquer Japan. \n \nNobunaga's Ambition is a turn-based strategy game which can be played in different modes.  Players begin by selecting either a 17 regions scenario or a larger 50 scenario. Then, the player must select a daimyo, each of which is rated attributes in several categories; Age, Health, Ambition, Luck, Charm and IQ. As the game progresses, these values change depending on events in the game. The age value represents a time limit of sorts, as an elderly daimyo becomes increasingly likely to die of old age or sickness.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Nosferatu (USA).txt",
    "content": "Nosferatu, a feared vampire; no one have ever seen him and survived to tell.\nAt night, he awakens to suck blood from his poor victims.\n\nThe evil has to be stopped! A young man rides to the dungeon to kill Nosferatu and rescue his loved one.\n\nIf you have played Prince of Persia you will easily learn the rules for this game.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Ogre Battle - The March of the Black Queen (USA).txt",
    "content": "Lead the rebellion and lead your army to reclaim your land from the evil Zenobian Empire in this real-time strategy game. Free towns and collect items and tarot cards to increase your strength, as well as recruit allies to join you in your crusade. But when you finally win the day, will you be a benevolent leader, or an become an evil despot yourself? You must decide. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/On the Ball (USA).txt",
    "content": "There's a kind of knick-knack you may find in dusty games rooms, a maze through which you navigate a marble by subtly tilting the board, dancing with gravity and momentum, deftly rolling your sphere out of dead ends and around the obstacles posed by holes in the board. Marble Madness explores this theme in a fudged 3-D perspective, Cloud Kingdoms in a flat 2-D one -- both by directly influencing the actions of the ball.  The game takes a different approach toward a similar end; instead of moving the ball around the board, you move the board around the ball.\n\nThat's right; from the get-go, gravity pulls ever down, down, down on your ball toward the bottom of your screen regardless of board orientation; the task of the player is to rotate the board now clockwise, now counter-clockwise, to further a timely and unobstructed path beneath the ball in its progress toward each level's goal before the timer ticks down to zero.  The game might as well have been named \"inertia.\"  Many obstacles can be avoided, but some must be engaged head-on: a certain momentum, if not terminal velocity, must be achieved to break through crumbling brick barriers; other obstacles toggle on and off like traffic lights, demanding not only speed but timing.  Some influence the ball's direction, and in addition to merely delaying the ball's progress, touching some impediments incurs an additional time penalty -- conversely, some blocks bestow time bonuses, if you can afford the ever-diminishing time needed to take the scenic detour and collect them.\n\nIt may seem like a transparent attempt to cobble together a game around a technical demo of the SNES' Mode 7 on-the-fly graphics-rotation capabilities, but Taito actually cooked up this kooky game interface two years earlier for an arcade release of this game.\n\n(Now if only someone could explain the \"Camel\" part - referencing the Japanese title.)\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Operation Logic Bomb - The Ultimate Search & Destroy (USA).txt",
    "content": "At a secret lab developing technology in interdimensional physics, some kind of accident has occurred. Suddenly all contact is lost with the facility and the power shut down. The dimensional fabric surrounding the facility seems weak and strange monsters have been sighted. Concerned, an unknown agency preps a cybernetic soldier and his weapons to investigate...\n\nPlaying as the bionic soldier, this game is a top-down shooter. The player must blast their way through enemy forces and the activate various switches to progress. Accessing computer memory banks throughout the facility will reveal footage of the accident and give some idea of all it happened. Additionally, dimensional holes have opened up all around the levels allowing monsters to appear and making certain paths, walls and technologies inaccessible until the area has been stabilized.\n\nThe soldier uses a main weapon and a secondary weapon to progress, both of which can be cycled at any time and upgraded to new weapons found in the area.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Out of This World (USA).txt",
    "content": "You play Lester, a young physics professor, who suddenly finds himself in a strange alien world after a lightning struck during his particle experiment. Now he must fight for his life, first with his bare hands, then with a gun he finds. But what gives him courage is that he is not alone. One of the aliens, who together with him escapes from the prison, helps him on his dangerous quest. Friendship can overcome all the obstacles.\n\nOut of This World is an action adventure game, where the adventuring element is concealed behind what looks like a typical platform shooter. The gameplay is based mainly on physical and environmental puzzles. There is no on-screen interface, and no in-game dialogue. Each enemy requires a different strategy, and often there is only one way to solve the problem. Typically, enemies will be defeated through the use of a gun you find near the beginning of the game; the gun can be used to create a shield from behind which you can safely fire. \n\nThe game is divided into levels, each one of which can be accessed by typing a code you learn after having completed the level. If you die (which is often) you restart the level anew. The game features vector graphics and animated cut scenes. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/P.T.O. - Pacific Theater of Operations (USA).txt",
    "content": "P.T.O is another military sim from KOEI.  In this game you can choose to be either Japan or the Allies.  By managing your fleets and ordering new warships you can control many different sides of the conflict.  (ship development, Base defense, Fleet arrangement, Direct battle control, Economic decisions)  There are many different options of play in PTO, you can choose to play from one of many different famous battles or you can play the campaign.  You can control one side or both.  There are also limited controls on victory conditions.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/P.T.O. II - Pacific Theater of Operations (USA).txt",
    "content": "P.T.O. II: Pacific Theater of Operations is a turn-based strategy game. The second episode of the series, this one builds on the strengths of the first, adding three big new scenarios and seven shorter ones. All battles take place once again during the Second World War conflict and more precisely in the Pacific Ocean. As in the previous episode, you will have to manage your entire army and annihilate the enemy forces. Note that once again, you can play with a second player.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Pac-Man 2 - The New Adventures (USA).txt",
    "content": "Join Pac-Man in a side scrolling adventure where you must guide him through Pac-Land, solving puzzles and finding objects in order to defeat the evil Ghost Witch of Nentor. You don't control Pac-Man himself, as you must show him where to go and what to look for, while using the slingshot to knock over and find items or open doors and defeat bad guys before Pac-Man bumps into them. You can collect items you find along the paths from Pac-Man's house in the inventory and use them for a later day. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Paladin's Quest (USA).txt",
    "content": "The world of Lennus is a world of legends and wonders and is divided into two continents; Naskuot, the northern continent and Saskuot, the southern continent. Thirteen years ago a strange disaster befell this world and killed many people. Upon the ruins of a great city and sealing back a great evil, a school of magic was built. Young Chezni is a student of that school of magic, striving to become a great spiritualist and control the elements. Meanwhile, a dictator to the south, Zaygos has conquered the entire continent and seeks to conquer the other half of the world. One day, after class Chezni is dared by a fellow classmate to enter and explore the forbidden tower that sits outside the school of magic. Entering the tower, Chezni will soon learn of the machine, Dal Gren that has been sleeping there for 10,000 years. What consequences will his actions have?\n\nPaladin's Quest is a 1-player RPG where the player moves around the world and in locations using an overhead view with up to four members in the party. Randomly encountered monsters engage in a first-person view battle mode that is played using turn-based commands to each player. Along with weapons, magic is available and uses the character's own hitpoints to command. There is no healing magic and no healing items, rather some characters have \"bottles\", one type of which can restore HP and these can be filled (nine uses per bottle) at most towns. Each character has a different profieciency in one of eight different elements, which may be combined to produce additional spells. New element usage can sometimes be learned by main characters in temples.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Parodius (Europe).txt",
    "content": "This is mostly the parody of Gradius (Nemesis on some systems), with some flavor from other shoot-em-ups, like Twinbee. The series is available on numerous platforms.\n\nThe game is a right-to-left scrolling shoot-em-up. You can choose from 4 different flying creatures, with different weapons. You must finish 7 stages, each having a boss at the end. You may start at either one, but must complete every level to advance to the final stage.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Phalanx (USA).txt",
    "content": "A futuristic shooter, Phalanx is the name of the prototype starfighter flown by Wink Baufield, a genetically enhanced pilot. It is sent to protect and reclaim Delia IV, a planet in the Andromeda galaxy, which has been colonized by humans for interstellar research purposes. However, an unknown and powerful alien force has overtaken the planet, the military defenses have been completely overwhelmed, and all hope rests on the Phalanx.\n\nYou fly through eight levels, first through various locations in Delia IV, and then you invade the aliens themselves. Like most shooters, you can upgrade your weapons by picking up bonus items dropped by enemy craft.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Phantom 2040 (USA).txt",
    "content": "The cartoon mini-series: Phantom 2040, right here. It is the aforementioned year, 2040, and the city of Metropia is in total chaos. \n\nCrime, smuggling and terrorism are escalating. The debase company, Maximum Inc., has invented biotechnology that is threatening to mess about with nature - causing animal extinction and ecosystem adulteration. Evil company owner, Rebicca Madison, would like to rule Metropia and the world.\n\nIn comes Kit Walker, the 24th Phantom, following the proud but secret footsteps of his ancestors. This 18 year old has to fight his way to get things right, or end trying.\n\nThe game has many twist and turns in its plot, and a multitude of endings.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Pilotwings (USA).txt",
    "content": "Fly a selection of aircraft (including training vehicles, fighter planes and helicopters) through a range of training programs and missions. The more training you complete, the better the chance that you will complete the even bigger missions. Try your hand at landing, taking off, party tricks, fly through bad weather and shoot down targets.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Pinocchio (USA).txt",
    "content": "Journey through as Geppetto, the carpenter's live wooden puppet, Pinocchio, as he did in his Disney animated film - which itself was based on a children's novel.\n\nHave Pinocchio run, jump and twist-kick through all the familiar places, including the inside of a whale, and do good deeds enough to become the real human boy he's always wanted to be.\n\nA standard Disney platformer.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Plok (USA).txt",
    "content": "At one day, Plok awakes to find out that his flag has been stolen. He spots it on a neighboring island and travels there to get it back. However, as he returns to his home, he realizes that all flags on his island have been replaced with flea-flags. This is only the beginning of his problems though, and he has to face many more challenges before the end of the game.\n\nPlok has to jump and fight his way through numerous levels, trying to find the exit or fulfilling certain missions such as killing a set number of fleas. Plok can perform two different jumps, a normal jump and a higher spinning jump. He can attack his enemies by throwing his limbs at them. Collecting presents will temporarily equip him with different weapons, or transform him into all sorts of vehicles such as a helicopter or a U.F.O.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Pocky & Rocky (USA).txt",
    "content": "This is a single player or two player simultaneous game.  It has wonderful \"Super Deformed\" type graphics set in ancient Japan and an above average difficulty.\n\nYou play as the Princess Pocky and her Racoon Rocky.  Run through each level beating the enemies and you'll face a goofy boss at the end.  Beat him and you're on to the next level.\n\nYou fight and shoot your way through numerous levels based on temples and shrines.  Pocky shoot playing cards and Rocky shoot leaves for long range attacks.  For short range Pocky uses a rod and Rocky his tail.\n\nPocky also has a spin attack and Rocky can freeze into a invulnerable statue. (Think Tanuki Mario)\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Pocky & Rocky 2 (USA).txt",
    "content": "The sequel to Pocky & Rocky brings back the cooperative shooter action to the SNES with enhanced gameplay mechanics. Princess Luna has been kidnapped by a gang of evil demons and its up to Shinto priestess Pocky and her raccoon buddy Rocky to rescue her.\n\nAs in the previous game, the gameplay involves taking control of either character to clear stage after stage of enemies in classic top-down shooter manner by blasting them with your magic cards or other collectable unique powers. New for the sequel is the ability to play with optional AI-controlled partners that add team-up special moves required to beat certain bosses as well as unique abilities that take the game in different directions (opening locks, or digging to get to the underworld sections of each stage for instance).\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Pop'n TwinBee (Europe).txt",
    "content": "As the other games in the series Pop'n Twinbee is a vertically-scrolling arcade shooter in which you and a friend get behind the controls of Twinbee and Winbee, the cutest starfighters ever created, and try to clear stage after stage of enemies with your weapons. Being a console original instead of a port, Pop'n features a number of additions to the gameplay mechanics, including an energy bar, eight difficulty levels and a handicap feature when playing with a friend (which makes most enemies target one fighter instead of the other). \n \nThe upgrade system remains consistent with the series's: you shoot colored bells which give different power-ups when collected, including multiple shots, \"options\" and shield energy. Also when correctly powered-up both fighters can join and perform powerful team-up moves.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Pop'n TwinBee - Rainbow Bell Adventures (Europe).txt",
    "content": "You play as either Twinbee, Gwinbee or Winbee. Cooperative play is also available. In this mode the second player takes control over one of the two characters left. Either way your task is to find and defeat the evil Dr. Warmon who tries to enslave the islands of Dunburi.\n\nTo deal with the many villains Dr. Warmon throws at you, you need to collect colored bells. Depending on the color of the bell you can use different attacks like a laser (blue bells) or a lash (orange bells). But even without the bells you're not defenseless. Your standard-attacks include a shock wave and the ability to fly. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Populous (USA).txt",
    "content": "You play a god, gaming against other gods in a celestial game of conquest.  To win, you must help your chosen people take over the world and wipe out the vermin who worship that other god.\n\nEach god starts out with a single human, dumped into the middle of the wilderness.  Sometimes there is inhabitable land in sight, sometimes not.  To get win, you must change the landscape, creating flat land for your followers to build on.  The more followers you have you have, the more powerful you will be, so take care of them. Build as fast as you can, because the other god is doing the same.\n\nWhen you have enough followers, you can make the leader of your people into a hero.  He will then go around the land you have built, literally taking strength from the people into himself, and working his way toward the enemy.  When he gets there, he will engage in holy warfare upon your enemy's people.  He will burn; he will kill.  And he won't stop until they're all dead... or he is.\n\nBut you don't have to let your people have all the fun; the god's have other tools as well.  You can drown your enemies one at a time with your land lowering powers.  Submerge their towns in swamps. Raise a volcano in the middle of their best farmland.  Even better, you can flood the land and drain all the people who didn't build on high-ground. \n\nAnd when you win, you'll have 500 more worlds to conquer.  A god's play is just never done.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Populous II - Trials of the Olympian Gods (Europe).txt",
    "content": "Populous II continues the \"god game\" genre pioneered by Bullfrog's classic Populous.  In PII, you're an unproven immortal who must fight your way through an entire pantheon of Greek gods, each with his or her own strategy and attacks, and ultimately enter into a showdown with Zeus himself.\n\nThe gameplay mechanics are similar to Populous, but PII features a wider array of spells, digitized sound, and high-resolution graphics to give the spell effects extra punch.  Multiplayer is supported via serial link and dial-up. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Prehistorik Man (USA) (En,Fr,Es).txt",
    "content": "In Prehistorik Man, the player takes control of a neanderthal who is on a quest to travel through various levels, collecting food items to get his village ready for the fast approaching fall feast.  Along the way, the player will encounter an assortment of enemies ranging from spiders, giant rats and even the mighty T-Rex.\n\nThere are five levels in all and the player can upgrade their weapons to axes and mallets throughout the game as well as acquire a hang glider, giving the player the advantage of flight and covering long distances.  The main goal of the game is to vanquish enemies, collect food items, and face a boss at the end of each level.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Push-Over (USA).txt",
    "content": "You're playing a small ant that is willing to help a friend in rather inconvenient situation. Apparently, your friend, doggie, likes to eat cookies that has his picture on their box, and he got himself so carried away that he lost the balance, and a bag of cookies fell deep down into an ant-hill. Now, you're goin' in, in a mission of solving puzzles, and retrieving the cookies for your friend.\n\nNow, this ant-hill is a bit different from the ones you saw, and especially from the one you live in. It's path is filled up with boulders, and all the gates, and you must travel the quest to find the cookies. After each different place inside, you'll fins a small bag of cookie, and bring it back to your friend doggie.\n\nThe main quest consists of you carrying your-size boulders, and placing them in a well imagined line, so when you push the exact one, all must fall, and the one that marks the end must fall the last, or the door will stay shut permanently. Beside we know that ants are very easy, and can live almost every fall, you cannot practice that, so if you jusp from a little bit too high position, don't expect much, but to retry the level.\n\nEvery block, or boulder in a game has a different markings. Like for example, the yellow ones are bricks you can push, and they will just as easily fall, and push, or not, the brick in front of it. The red ones will do the opposite, you cannot push them, and if the yellow, or any other brick hits it, it'll continue falling back to the other side. Some bricks explode when you push them, or other brick hits them, and that way they leave the hole, so your brick can continue spining, or yet again, not. Some spin without stop, 'til they hit some other brick that can fall, some replaces the spaces, like building a bridge on that place, some go high and when hit the top, they stick to it, and push, or not, the brick in front of them. Anyway, that's the game basics.\n\nEach level gives you the new code/password, so you can continue from the position where you ended each time you type that code. Perspective of your ant is like in any other platform game, and you control it with arrow keys, or joystick. But beware, the time is clicking, so you'll have to solve each level in a hurry. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Putty Squad (Europe).txt",
    "content": "In this sequel to Putty, the Wizard's peoples have invaded Putty land, and it's up to you to head to the Wizard city of Klud and free your many POWs. The gameplay has less of a puzzle element than the original, and is more of a standard platform game - to whatever extent a game in which you can become an all-conquering Terminator Putty, must face pups throwing grenades at you, and can use Uncle Ted to play a tune to distract enemies can be seen as a 'standard' example of anything.\n\nYou take control of the same amorphous blob as before, which has the ability to 'stretch' left and right (using this as a weapon which kills on contact) and to stretch upwards to make jumping easier. He can also explode himself and absorb other objects, even becoming them physically to gain an advantage.\n\nThere are stars littered around the level, and collecting these upgrades Putty's abilities, starting with a super punch for 10 stars, going up to the Terminator ability for 40. \n\nThe pups from the previous game are no longer on your side, and are out to get you. These have all manner of abilities - shooting mortar bombs at you, paradropping towards you, and even flying a helicopter.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/R-Type III (USA).txt",
    "content": "UNDER A NEW BYDO THREAT, EARTH RETALIATES It was believed on Earth that the deadly BYDO Empire had been destroyed--but now they've returned, as nasty as ever. Their ships and armies are more powerful than before, and Earth will surely be conquered unless the new R-90 ship can destroy them. Powered with engines that launch it into different dimensions, and armed with the Round, Shadow, and Cyclone Forces, R-90 has what it takes to wipe out the BYDO threat. Then, the BYDO mother ship must be found and destroyed to entirely erase the species from our galaxy.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Radical Rex (USA).txt",
    "content": "Radical Rex is a fire-breathing Tyrannosaurus on a skateboard who has to save the dinosaur race under the spell of an evil creature. The game consists of 10 levels set in the prehistoric age. Radical Rex can use a skateboard or glide down hills, jump, kick and breath fire. Tougher enemies need multiple hits and when burnt Rex needs to kick them once more to destroy them or use his scream (hits everything on the screen). While playing Rex collects eggs, health, power-ups for his fire breath and scream refills. Checkpoints are shown as torches that need to be charged with fire. After each level, there is a Bomberman-like sequence to earn an extra continue. Enemies include flies, turtles, toads and all kinds of dinosaurs.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Rampart (USA).txt",
    "content": "Tetris meets shoot-'em-up, Rampart was originally a one or two-player arcade game combining strategy and artillery action. Build your castle from Tetris-style pieces, place your cannons, bombard the enemy, try to repair, do it all over again. Later arcade revisions incorporated 3-player,  and the PC conversion does as well, making it a faithful, entertaining classic for multiple players on the same PC.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Rendering Ranger R2 (Japan) (En).txt",
    "content": "Multidirectionally scrolling action shooter. The main character runs through science fiction scenarios blasting away everything that moves. Starting with only a single shot,  5 different upgradable weapon systems can be collected as extras. Upon death, the last activated system loses one increment of its current upgrade status, but can be refueled by additional extras collected. Every weapon has also a massive 'smart' bomb feature, wiping out mostly everything on screen at once if invoked. There are also some R-Type style space shooter levels thrown in for good measurement. Very arcady with tons of action. Several boss monsters per level. Level progress is saved via password feature. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Riddick Bowe Boxing (USA).txt",
    "content": "Riddick Bowe Boxing is another one of the many boxing games released at the time, but with subtle differences. The HUD contains damage and energy meters along with a miniature ring up the top of the screen, useful to see the player's position in the ring so as not to get backed into a corner real easily.\n\nPlayers can compete in the standard, 1-Player v. CPU, 1-Player v. 2-Player or even a career mode, where there are four preset fighters to choose from along with an option to create customers boxers. The career starts out at position #25 in the ranking and players slowly work up the ladder, going to the gym in between bouts to build up stats to eventually take on \"Big Daddy\" himself, Riddick Bowe.\n\nThe game is practically a copy of Evander Holyfield's Real Deal Boxing, save for the graphics style and the included fighters.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/RoboCop versus The Terminator (USA).txt",
    "content": "In the future, human soldiers of John Conner's resistance force against the machines are fighting a losing war against Skynet and it's robot forces. Discovering that one of the foundation technologies for Skynet is the cybernetics technology used in the creation of Robocop. One of the resistances' soldiers, Flo is sent back in time before the Rise of the Machines to destroy Robocop and stop Skynet from being built. However Skynet learns of the time travel attempt and sends Terminators to stop Flo.\n\nIn the game you control Robocop who may move across the screen, jump, fire and exchange weapons. Robocop starts with the Auto-9 which has unlimited ammunition... other weapons may be more powerful but contain limited ammo. Beginning the game on a mission of law enforcement, you soon meet up with Flo and must engage in battle against Terminators, the forces of OCP and several obstacles \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Robotrek (USA).txt",
    "content": "There exists a prosperous town named Rococo built on all the latest modern conveniences. Living in Rococo is a famous inventor, Dr. Akihabara and his son. All is peaceful until suddenly a group known as \"Hackers\" appear and begin causing trouble. The Hackers and their robotic monsters take part in robberies, vandalism and destruction around the world. Dr. Akihabara leaves on a voyage determined to thwart the Hackers plan, leaving his son behind in Rococo. As strange things begin to happen in and around Rococo, Akihabara's son decides to investigate.  Idolizing his father and also wishing to grow up to be an inventor, he builds himself a robotic fighting machine and sets out on his Robotrek...\n\nRobotrek a fantasy RPG with sci-fi and steampunk elements. Player's take the role of Akihabara's son, living in his lab at Rococo. The majority of the game is an overhead view, traveling through areas, talking to people and using items. Early on in the game, the player will learn how to create a robot in the laboratory and will use this this robot in a side-view battle mode to combat monsters and gain experience. The robots can be upgraded and equipped with different types of weapons, both found and invented. The player can have a total of three different robots to choose to send to battle, which allows customization strategies for certain situations and enemies.\n\nAkihabara's son will also need to think up new inventions to thwart the challenges in front of him. He gets the ideas for these inventions from talking to people or witnessing events which cause a lightbulb to go off above his head. New items then become available for production in the lab. Also, many existing items including his own inventions can be combined properly in the lab to create new items and weapons. Items no longer wanted can often be turned into scrap which sometimes is also able to be combined.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Rock N' Roll Racing (USA).txt",
    "content": "Rock 'n Roll Racing is an arcade combat racing game. Combat plays a heavy role in the game, as each car has a frontal weapon, such as a laser or missile, and a drop weapon, such as spikes or mines. As you complete races, you get more money to upgrade your car.\n\nThe soundtrack features \"Born to Be Wild,\" \"Bad to the Bone,\" \"The Peter Gunn Theme,\" \"Highway Star\" and \"Paranoid.\" \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Rockman & Forte (Japan) (Translated).txt",
    "content": "The mighty robot King has taken over Dr. Wily's base, invaded the Robot Museum, and stolen 100 CDs containing secret robot plans, hoping to create the ultimate unstoppable army of robots! And to make matters worse, he's sent 8 robot masters to prove his new-found power!\n\nMega Man is the only one who can stop him...or so he thought! Bass, Dr. Wily's greatest creation and Mega Man's sworn rival, is actually fighting ALONGSIDE Mega Man for once! Of course, it's only to prove that he's the strongest robot ever made, and he'll do it by smashing King's army of mechanical maniacs!\n\nNow, Mega Man and Bass are heading out to get back all of the CD's that King stole. Run, jump, slide, dash, and blast your way through to destroy this new menace!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Rocky Rodent (USA).txt",
    "content": "Mafia member Don Garcia has kidnapped Melody, the daughter of the owner of the Rose Restaurant. Rocky Rodent agrees to rescue her in exchange for an all-you-can-eat meal.\n\nIn order to find Melody, Rocky Rodent has to complete a number of fast-paced, side-scrolling platformer levels. While he can also defeat enemies by jumping on them, his most important weapons are four different hairstyles: His first hairstyle allows him to skewer and throw his enemies, destroy porous blocks as well as cling to and jump up certain ledges. A mohawk can be thrown at enemies like a boomerang or thrown into certain walls, from where it serves as a trampoline. Braids can be used as a grappling hook and a corkscrew-like haircut lets him bounce on his head to jump higher than normal. When Rocky is attacked by an enemy, he looses his current haircut. If he is attacked while not wearing any special haircut, he looses a live.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Romance of the Three Kingdoms II (USA).txt",
    "content": "The sequel to Romance of the Three Kingdoms. The game concept is still the same, though they did improve a lot of features that one may consider 'disturbing' from RTK I (e.g. Generals dying easily due to disease, etc.). RTK can be said to be much more 'stable' where players no longer have to worry that much about time length in the game, as the game take a slower time rate to allow the players to build up their forces without much interference. The RTK II gameplay and interface is closely similar to Nobunaga's Ambition II.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Romance of the Three Kingdoms III - Dragon of Destiny (USA).txt",
    "content": "Romance of the Three Kingdoms III: Dragon of Destiny is another strategy game by Koei. The concept is the same here as in Koei's other wargames: conquer all you can!\n\nIn this case the historical setting is ancient China. The country is under the control of one Emperor, but all of the faction leaders want to be the emperor themselves. You begin with one territory and you must conquer more to win the game. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Romance of the Three Kingdoms IV - Wall of Fire (USA).txt",
    "content": "The Three Kingdoms era of Chinese history is the setting for this strategic war game. Select one of 38 leaders and guide your people to power by military or diplomatic means in an isometrically viewed world. Military tactics such as well-placed taunts and deliberate enemy confusion are on offer. Weaponry includes catapults and automatic-firing crossbows. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Run Saber (USA).txt",
    "content": "In the year 2998, the brilliant Dr. Bruford is experimenting with genetic structures and radiation. He hopes to create new functions in nature that will remove the pollution from the Earth before it is too late. Unfortunately Dr. Bruford's experiments go wrong and genetic monsters are unleashed upon the world. The only thing that can stop these creatures are Dr. Bruford's previous achievement: Genetically enhanced warriors known as the Run Sabers. Two of the Run Sabers, Sheena and Allen are ready to activate.\n\nRun Saber is a side-scrolling platform game similar in gameplay to Strider. Players assume the role of one or both of the Run Saber characters. Choosing either Sheena with her Ice powers or Allen with his Thunder powers, players must defeat mutant monsters. The Run Sabers can move side to side, jump in the air, attack with a sword, climb along walls or roofs, slide across the ground and drop-kick. Additionally, each character has a special move, which damages everything on the screen with either Ice or Lightning, and which can be activated by collecting orb power-ups. Other power-ups include small health, large health, extra life and a larger sword. Players progress through 5 different levels, often encountering powerful boss and miniboss mutant creatures.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/S.O.S - Sink or Swim (USA).txt",
    "content": "Your name is Kevin Codner  rescue mariner extraordinaire, answering the distress call of a sinking cruise liner, the SS Lucifer. You set off in your little submarine and board the ship where a horde of passengers desperately need your keen oversight and \"shipsmarts\".\n\nIn 60 levels you have to rescue as many passengers (dubbed the Dim Passengers) as possible. At the beginning the passengers fall through a tube in the level. Similar to Lemmings you have to find a way for the passengers to the exit of the level. In order to do so, you must blast hindrances such cargo boxes and bulkheads with bombs or, when no bombs are left, reposition the boxes with a crane. There are also conveyor belts in the levels. If the belt moves in the wrong way, the passengers either can't use it or may even be transported to their dooms, being dropped off into water, fire or steam jets. You can usually choose the direction of the belts by pulling a lever.\n\nThere are several types of scenarios that Kevin Codner (you) are faced with throughout the game. Of course the puzzles get progressively more difficult, involving things like patching up cracked pipes to stop a lethal jet of steam from cooking the distressed passengers. You can blast away obstacles and stack crates in creative manners. For instance, you can have them fall onto each other to form a bridge across a gap or to provide shielding from fire. This is usually done by hoisting them onto conveyor belts using a crane.\n\nEach level has a certain \"save limit\", meaning you have to save at least a certain amount of passengers. This again is akin a bit towards Lemmings, and lots of levels have a built-in time limit, represented be water pouring into the compartment, rising ominously. When the water rises high enough, the passengers will get carried along with it, and they can only swim for a short period of time before getting exhausted and drowning, so you'd better be on time with some assistance.\n\nAt the end of each level you receive a password (again, Lemmings-style) so that you may pick up your game from the current level without having to progress through them all from the get-go. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/SWAT Kats - The Radical Squadron (USA).txt",
    "content": "S.W.A.T Kats is a game based on the short lived cartoon series S.W.A.T Kats: Radical Squadron. The series would only last for 2 seasons but built a sort of cult following afterwards.\n\nThe Swat Kats are a trio of mechanics by day, but secretly also a group of superheroes defending their home, MegaKat city, from creatures and evil villians. Swat Kats is essentially a side-scrolling action game. You start off using T-Bone and Razor and guide them through 5 different worlds of action packed excitement. Game levels are based on different episodes of the show. As you progress through the game you can increase your weapon levels and gain new weapons. Mode 7 graphics are featured in some parts of the game. A unique feature to the game is the ability to start on different levels. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Saturday Night Slam Masters (USA).txt",
    "content": "Slam Masters is an arcade conversion of Capcom's wrestling game of the same name.\n\nTen wrestlers with different fighting styles and individual special attacks are available. They are controlled with three buttons; one for jumping, one for attacking and one for pinning. When close to your opponents, you can grab them to perform various moves ranging from ordinary attacks to body slams to throws. Since the action takes place in a ring, it is also possible to climb the turnbuckle or use the ropes to your advantage. You can also leave the ring for a limited amount of time to fight with different weapons that can be found outside the ring.\n\nApart from a standard Single Match mode, the SNES version also features a Battle Royal mode for up to four players. This mode is not available in the Genesis version, which features a Death Match mode that can not be found in the SNES version. A Death Match is a no rules match in which weapons can be used used and the rope is replaced with barbed wire.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Scooby-Doo Mystery (USA).txt",
    "content": "This version is different from it's Genesis counterpart.  While the gameplay is similar (exploring levels to collect clues and solve the mystery), there are four different episodes for this version.  While visiting the Drabwell Ranch, ghost's interrupt the festivities and the gang must find out who is behind the hauntings and why.  Another adventure takes the gang to Deadman's Cove where a ghostly pirate has been scaring off tourists and it is up to Scooby and the Gang to bring it to a halt. The other two mysteries take place at a fun fair and a haunted mansion.\n\nPlayers can use Scooby's unique sniffing ability to find clues. Scooby also consume Scooby Snacks to reduce the fright meter.  Additionally there are a series of mini-games that player can participate in such as \"Wac-A-Monster\" or \"Make a Scooby Sandwich\".  The graphics are faithfully recreated to resemble the long-running Hanna Barbara series.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Secret of Evermore (USA).txt",
    "content": "You start out as a nameless boy and his dog, literally from the town of Podunk.  You chase the dog into an old abandoned mansion, where a scientist lived 30 years ago.  Some of his equipment is still operational, and when your dog chews on it, you're both sent to the strange world of Evermore.  Now you must try to get back.\nThe action-RPG gameplay is very much like Secret of Mana, with a few key changes.  Multiplayer is out.  Rather than three characters, there are just the two.  The equivalent of magic is alchemy, where each effect requires several base ingredients which you gather as you go along.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Secret of Mana (USA).txt",
    "content": "Once upon a time, the power of Mana was used by all people and helped their civilization grow. But as evil forces took control of Mana Fortress, there was no way out but a war which destroyed the Mana-based civilization but eventually brought peace to people. The events of the past became but legends to the new generation of humans. But history repeats itself... One day, a young village boy finds a rusty sword stuck at the bottom of a river. He doesn't know this sword is the famous Mana sword, the one that won so many battles before. By drawing the sword out of the river bottom, the boy unwillingly summons hordes of monsters, and is expelled from his village. A mysterious knight Jema is the only man who helps him and gives him instructions for the future. First, he must repair the sword, and then, with its help, take control of Mana seeds which can be found in eight great castles.\n\n\"Secret of Mana\" is an action RPG, featuring real-time hack-and-slash type of a combat. Like in Quest for Glory games, you have a stamina gauge. The more stamina you have, the more powerful your strike is. You upgrade your weapons and abilities and meet many different types of monsters, while roaming around the country and performing your quests.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Shadowrun (USA).txt",
    "content": "The SNES version of Shadowrun appeared earlier than the Genesis one, and it is an entirely different game, with different story and gameplay, although it is also based on a pen-and-paper RPG of the same name. Your hero, Jake, is attacked by assassins, and appears to be dead. However, a mysterious dog approaches his lifeless body, transforms into a woman, and casts a spell on him... After that Jake wakes up in the morgue. He doesn't know what happened to him, he doesn't even remember his own name. Wandering through the futuristic city, where monorails, computers, and street gangs armed with automatic weapons co-exist with orcs, dwarves, and vampires, you begin to discover the mystery and to learn about the dangers awaiting you around every corner.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Shanghai II - Dragon's Eye (USA).txt",
    "content": "Shanghai II is Activison's follow-up to their first tile matching game.  Players try to remove Mah Jong tiles in pairs from a set pattern.  Shanghai II has 8 different tile sets, 12 patterns based on the animals of the Chinese zodiac, and a layout editor for creating patterns.\n\nIn addition to the standard game, Shanghai II also features \"Dragon's eye\" a 2-player Shanghai varriant.  Players take turns adding and removing tiles from a small field with one player attempting to remove all the tiles and the other trying to position tiles to make this impossible. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Shien's Revenge (USA).txt",
    "content": "Shien and Aska were swift ninjas fighting in a civil war. Having defeated hundreds of enemy soldiers, monsters suddenly appear and kidnap Aska. It is up to Shien to defeat them and rescue Aska from these creatures beyond the Time Gate.\n\nShien's Revenge is a first-person Operation Wolf-style shooter that puts the player in the role of Shien the ninja. Movement is automatically controlled by the game, which scrolls horizontally or vertically. The player must use his weapons, long-range shuriken (throwing stars) and a close-range dagger in order to defeat various enemy ninjas and creatures that appear on the screen. A set of candles indicate the player's life meter. Power-ups such as rapid fire and scrolls can be picked up by defeating enemies. The use of scrolls produces a powerful attack that damages everything on the screen. At the end of each area, the player encounters a boss who must be defeated through the depletion of its life meter.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Shin Megami Tensei (Japan) (Translated).txt",
    "content": "A young man lives together with his mother in Kichijoji, a district in modern Tokyo. One day, he has a strange dream: he is being sucked into another dimension, a strange maze-like structure. A spirit appears in front of him and asks him his name. As he proceeds further, he meets a man who is hanging on a cross, another one who is being tormented by a demon, and a mysterious young woman who is bathing in a pool...\n\n\"Wake up!\" - the voice of his mother cuts through the dream. The young man wakes up and checks his computer. Suddenly, a message arrives: the world is headed towards destruction. Only he who can summon demons through a virtual space will be able to prevent a disaster. What could that mean? The young man goes outside and finds out a murder has occurred in the nearby park. The district must be cut off from the rest of the city until the murderer is found. This was the beginning of the demon summoner's story...\n\n\"Shin Megami Tensei\" is a first-person RPG set in modern-day and futuristic Tokyo. The hero of the game can summon demons, who use a mysterious energy called Magnetite. The demons can fight for you and perform other useful tasks. The first-person combat is turn-based. In the beginning of the game, you can set the statistics of your party members, determining their strength, stamina, intelligence, etc. You'll need to make some crucial decisions during the game, that will also influence the outcome of its events.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Shin Megami Tensei II (Japan) (Translated).txt",
    "content": "Shin Megami Tensei II is a direct sequel to the  first game. The events of this game take place 20 or 30 years after the hero of the first game followed the neutral path, defeated the Asura Lord and the seraph Michael at the Cathedral, and founded a state where followers of both Law and Chaos ideals could live freely. But his reign of freedom doesn't last long. The Mesia faith gains power, expanding the Cathedral into a new enclosed environment named Millenium. The Gaians rise up, but their rebellion is repressed by the Mesians' elite warrior class, the Temple Knights. Some years later, a retired arena fighter Okamoto discovers a man fighting for his life against a demon. He rescues the man, who doesn't even remember his own name, and trains him to fight in the arena so they might both go on to a better living in one of the upper-class areas of Millenium. And thus the new battle for a better future begins...\n\n\"Shin Megami Tensei II\" features all the gameplay innovations of the previous game. You can summon demons, fuse them, make them battle for you, talk to random enemies and receive information from them, etc. The combat is turn-based, and you explore the dungeons from a first-person perspective view.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Sid Meier's Civilization (USA).txt",
    "content": "Sid Meier's Civilization is a turn-based  strategy game.  The game begins in 4000 BC. The player takes on the role of the ruler of a civilization, starting with only one settler unit and one warrior, and attempts to build an empire in competition with one to eleven other civilizations. The game requires a fair amount of micromanagement (although less than any of the simulation games). Along with the larger tasks of exploration, warfare and diplomacy, the player has to make decisions about where to build new cities, which improvements or units to build in each city, which advances in knowledge should be sought (and at what rate), and how to transform the land surrounding the cities for maximum benefit. From time to time the player's towns may be harassed by barbarians, units with no specific nationality and no named leader. These threats only come from unclaimed land or sea, so that over time there are fewer and fewer places from which barbarians will emanate.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Side Pocket (USA).txt",
    "content": "The main objective is to cross different USA cities and reach the predetermined scores to go ahead. But remember: you'll have only 16 balls and every error can be lethal!\n\nThe game also comes with modes for 2 players with two variants: 2P Pocket Game (the traditional mode) and 2P 9-Ball Game, where the premise is to sink 9 balls before the other player makes them first. If you prefer, test your target in Trick Game or even hear your favorite song in Jukebox.\n\nAfter each stage completed (and some luck), a bonus stage will appear, as well as the chance to earn extra balls. You will only need a good target in the parquet block!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/SimAnt - The Electronic Ant Colony (USA).txt",
    "content": "SimAnt explores the detail of the lives of ants, as you take full control of an ant colony. Build up your colony to conquer the other colonies in the yard. Foes include spiders and humans - make their lives a misery by invading their homes. A Quick Game option focuses on battles with other groups of ants, and a full Tutorial mode is provided. Biological detail of real ants is provided, to help make the package more educational. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/SimCity (USA).txt",
    "content": "SimCity sets you as the mayor of a new municipality, with the responsibility of building and maintaining a place where citizens can move to and work and be happy. The first task is to place essentials such as housing, transport links, schools, factories and shops. There are 50 types of these, allowing for homes of all standards and different types of businesses. Make sure to consider which sites are effective for which tasks. Some power sources pollute, others don't but are more expensive. Taxes must be raised to ensure an income, and then portions allocated to public services such as policing and roads. Earthquakes, floods and fires are all emergency situations that must be dealt to contain any damage.\n\nSuccessful mayoring will cause the small village to grow into a town, then a city and finally a metropolis. As the city's size grows so do it's needs. Commercial buildings may suddenly find that they need an airport to expand trade, or housing may find itself changing rapidly as vast amounts of people come and leave.\n\nThe game also includes 8 pre-defined time-limited scenarios, with specific challenges and targets. The environment varies in each game (especially if you have the Terrain Editor add on), and this should affect your choices.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/SimCity 2000 - The Ultimate City Simulator (USA).txt",
    "content": "SimCity 2000 is the successor to the ground breaking city simulation game Sim City. You are once again the mayor, but this time you can fully customize the terrain before building your city. The graphics are isometric, whereas the original had graphics displayed in a top-down fashion.\n\nThis title adds numerous features over the original such as the ability of building \"light\" zones, subways, hospitals, colleges, zoos, and arcos which are actually cities in cities. You can now give names to places, and your city is surrounded by neighboring towns with which you can make trade. Finally, instead of the poll in the first game you now have the option of reading several newspapers to get an idea of your progress.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Skyblazer (USA).txt",
    "content": "Arianna, a young sorceress, has been kidnapped by Ashura. Sky has pledged his life to rescuing her. Sky must venture through many colorful stages and nice background effects.\n\nSkyblazer is a blend of side-scrolling fighting with magical skills. Locating potions to recover energy and gaining magic points to thrash the enemies becomes a major part of the gameplay. Sky can also stick to and climb vertically up walls.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Smash Tennis (Europe).txt",
    "content": "The controls of Smash Tennis work similar to other tennis games and especially Namco's previous tennis game World Court Tennis: the player moves the athlete over the court and presses buttons with the correct timing in order to win the match. This time there is no story mode, but a tournament mode instead. Here the goal is to win the Grand Slam by playing various tournament matches. However. a match only has a single set. There are 20 athletes (both male and female) to choose from which have different advantages and drawbacks.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Soldiers of Fortune (USA).txt",
    "content": "Sixteen levels (in four groups of four) await you in this long-developed Bitmap Brothers title. The basic gameplay is similar to Gauntlet, but in an open air setting, with bridges across rivers and such in the maps. The visuals are in the 'metallic and blue' style the Bitmaps appeared to favor.\n\nThere were 6 characters available in the game, each with different strengths and weaknesses, and different starting prices. In 2-player mode you each chose a character and played co-operatively, but in one-player games you also choose a character for the computer to control, with its Artificial Intelligence allowing it to open doors, pick up power-ups and take on baddies away from the ones occupying your character.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Sonic Blast Man (USA).txt",
    "content": "You take on the role of Sonic Blast Man, a superhero, in this side-scrolling shooter, fighting against various forms of evil. While you have the typical punch, jump, and kick moves, the Sonic Blast Man also has two special power moves: Dynamite Punch and Screw Bomb. You travel through five different stages and fight enemies ranging from local ruffians to robots and even aliens from outer space.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Sonic Blast Man II (USA).txt",
    "content": "Heavy Blast Man is once again trying to take over the Earth.  People are being turned into hideous monsters and being made to serve him. Sonic Blast Man returns along with some new friends, Sonia and Captain Choyear. Together, they battle Heavy Blast Man and his minions to save the Earth from destruction.\n\nYou control one of three characters in this side-scroller, as you fight your way through various levels filled with enemies and bosses. Beat them up with the basic punches and kicks or use your super moves to get out of tight spots.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Soul Blazer (USA).txt",
    "content": "You have been called by the Master to restore life to the Friel empire.  The ruler, King Magridd, struck a deal with the evil Deathtoll - in exchange for the soul of one living being, Deathtoll will give him a piece of gold.  Magridd's greed got the better of him, and, thinking of the millions of souls of every living creature around the world, readily agreed to the deal.  But Magridd himself has since disappeared, and the the land is now devoid of life - instead only filled with Deathtoll's monstrous minions.  Will you be able to save Friel's subjects from their horrible fate?\n\nSoul Blazer is an action RPG in the top-down style of The Legend of Zelda.  Like Zelda, battles are not turn-based - the player directly attacks enemies and dodges them.  As they progress, they also unlock special items which allows them to complete tasks for characters or access special areas (such as the Dream Rod, which transports you into someone's - or something's - dream).  Unlike Zelda, the game has an experience meter, and the player levels up and becomes stronger as they defeat enemies.  The game's unique hook is that there are \"Monster Lairs\" spread all over the land of Friel.  When they destroy all the enemies in a lair, they don't come back, and when they step on the empty lair, it restores part of the game world, bringing back anything from plants, to animals, to people, to buildings and more.  Each restored soul helps in some way - for example, the player can climb regrown ivy to reach new areas, reunite families by bringing back husband and wife, rebuild cities by restoring architects, and talk to characters to complete even more quests.\n\nThe player's main goal is to find six Stones, which allow them to gain access to the World of Evil, where Deathtoll resides.  These stones are guarded by key characters in different parts of the world, usually the rulers, who require the player to defeat a boss character to rescue them.  While most of the game allows them to progress in a linear fashion, there are certain souls that can only be restored by killing monsters that can't be harmed with their earlier weapons.  The player will need to find special weaponry and then backtrack to previous areas to rescue these souls.  It's also advisable to revisit previous locations, as certain characters may have new sidequests to complete which can reward them with new items to make them even stronger.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Space Megaforce (USA).txt",
    "content": "Compile's Aleste series lands on the SNES with the appropriately named Super Aleste. Taking the role of a lone starfighter pilot, you are tasked with destroying an evil alien armada in standard 2D shooter fashion. And while you may be alone, you certainly won't be underpowered, with eight different types of weapons, each having six power-up levels for a grand total of 48 firing modes (not counting bomb power-ups) Super Aleste boasts one of the largest arsenals in 2D shooter history.\n\nGameplay is single-player only with 3 difficulty levels. Also included is a short campaign with different levels that plays mostly like a \"survival\" mode with the objective being to outlast the time limit and rack the most points. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Spanky's Quest (USA).txt",
    "content": "Spanky's Quest is a game about a monkey who decides to go on a picnic.  While on his way through the forest he see's a witch in the sky and out of nowhere bricks begin to make a tower around the area Spanky is in.  The witch challenges Spanky to come to the final tower and she will free him but before she flies away she turns the fruits in his knapsack into living fruit monsters.  Unknowingly, she drops a magic ball which agrees to help Spanky out on his quest.\n\nThe object of the game is to get through all six of the towers which consist of 10 levels as well as a boss battle.  In order to proceed to the next level, you must acquire the amount of keys the locked door requires.  Keys are found lying around until a monster picks them up in which case you must use your ball on them to get it.  The ball has for different attacks: baseball, soccer ball, volleyball and basketball.  In order to attain a stronger ball, the ball must be bounced on Spankey's head.  Spanky also gets different hats which give him a specific power until he loses it or the level ends.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Sparkster (USA).txt",
    "content": "Sparkster is a 2D side-scrolling platformer starring the eponymous hero who previously appeared in Rocket Knight Adventures. It is very different from the contemporary Genesis title Sparkster, as it does not continue the story from the first game and has completely different levels, enemies and gameplay mechanics. In that way it can be considered a spin-off in the series. The introduction merely shows how an elderly man captures a girl and takes her into his airship. At that point Sparkster appears and he decides to chase them.\n\nSparkster is a rodent carrying a rocket pack on his back. He can move around, duck, jump and hang from branches or rails. His regular attack is a sword slash that sends out a circular projectile. Through the L and R buttons he can dash left and right in a circle of fire. Keeping the attack button pressed powers up a rocket meter. When full, different types or actions can be performed: dashing left, right or up to cover a large distance, ricocheting off walls in a diagonal motion, or a stationary attack.\n\nThe game consists of nine levels of which the last two can only be accessed on higher difficulty levels. Sparkster collects diamonds for points, defeats all types of robot enemies and collects apples to restore his heart meter near the top of the screen. Most of the game consists of regular platforming gameplay, with a few diversions where Sparkster rides a robot bird, or is shown from a top-down view flying in the air like a vertically-scrolling shooter. All levels have a level boss along with a large number of mid-level bosses. The game supports a password system.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Speed Racer (USA).txt",
    "content": "This game is a take on the classic Anime cartoon series, Speed Racer.  You play as Speed, an aspiring race car driver with his trusty car, The Mach 5, along with his GO team, out to travel the world and win every international grand prix on the circuit.\n\nAlong the way, you fight off the infamous villains of the series, out to stop Speed by any means necessary, even capturing his girlfriend, Trixie.  There are seven levels in all and in between racing levels you'll be on foot in a side-scroll style adventure, fighting off thugs and gangsters, collecting power ups to help you out, including green flags in order to keep your health up (not kidding about that).\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Spider-Man - Venom - Maximum Carnage (USA).txt",
    "content": "Loosely based on the comic book series, the story opens as Carnage breaks out of the insane asylum and wreaks mayhem. Spiderman immediately acknowledges the new job at hand and sets out to stop him.\n\nYou start off with Spidey but in certain parts you get to choose between him and Venom, which takes you through an alternate routes. The gameplay is your standard beat-em-up, the regular punching and jump-kicking, with the addition of the all important webbing - ie web swinging, web shield etc. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Spindizzy Worlds (USA).txt",
    "content": "On it's most basic level, Spindizzy Worlds is, like its predecessor, similar to Marble Madness. Controlling GERALD, you must move through the isometrically viewed landscape (largely flick-screen on the ST). There are two skill levels; the harder one features more of the precarious ledges and falls of Spindizzy. Each one takes you to a different matrix of levels, which can be played in different orders and each consist of 10 screens, with a bonus level at the end.\n\nYou have limited energy, which can be recharged by collecting crystals. Fuel is limited, and is reduced by contact with hazards - generating a replacement GERALD takes time. There are many gates which are opened by running into spaces of the same colour. There are also aliens to avoid, and most movement is along thin slippery ledges with heavily inertia-based controls.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Star Fox (USA) (Rev 2).txt",
    "content": "This is the first SNES title using the Super FX chip; you are flying ace Fox McCloud, who with his trusted wingmen and his powerful Arwing starfighter, must rid the Lylat System of the evil that surrounds it. Wave after wave of enemies will fly towards you, and with the advice of your wingmen, you must guide your way through each level and take down as many as you can. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Star Fox 2 (USA, Europe).txt",
    "content": "After his defeat in the original Star Fox, the game's antagonist, Andross, returns to the Lylat system and launches an all-out attack against Corneria, using his new fleet of battleships and giant missiles launched from hidden bases to destroy the planet. General Pepper again calls upon the Star Fox team for help. Armed with new custom Arwings, a Mothership, and two new recruits (Miyu, a lynx, and Fay, a dog), the Star Fox team sets out to defend Corneria by destroying Andross's forces before they can inflict critical damage on the planet. Along the way, Star Fox must also combat giant boss enemies, bases on planets throughout the Lylat system, members of the Star Wolf team and finally Andross himself.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Star Ocean (Japan) (Translated).txt",
    "content": "A young boy named Ratix lives in the town Clatos on a planet with medieval culture, together with his best friends Dorn and Milly. They belong to respectable families of warriors and healers, and excel in battles kills. One day, a letter from a neighbor town arrives. A strange disease has plagued the town and its inhabitants plead the healers of Clatos to help them. Milly's father decides to go, but he himself catches the disease. The young adventurers must save Milly's father and other people at all costs. But in the beginning of their journey, they discover a crashed space ship with people who belong to a much more advanced civilization. People from two different worlds must work together to solve the grand mystery...\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Street Fighter Alpha 2 (USA).txt",
    "content": "Another Street Fighter sequel (this time for Street Fighter Alpha) adds even more to the classic fighting series.\n\nNew characters in this version include Gen (a wise kung-fu master), Rolento (who you may remember from another Capcom classic, Final Fight) and Sakura, a young school girl who follows her hero Ryu so close, she has the same type of moves. Dhalsim and Zangief also return to the fight with some news moves.\n\nThe other major difference is the loss of chain-combos and the gain of a custom combo system. Once you reach the required level (which is 1 at the least) you can execute a custom combo by combining any of the buttons (which there are 6 in total) or any of the special attacks (fireballs, etc.)\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Street Fighter II Turbo (USA) (Rev 1).txt",
    "content": "Choose from twelve street fighters from around the world, skilled in a variety of martial arts -- for instance, a character named E.Honda is a sumo wrestler from Japan, while Ken is a master of Tae Kwon Do from the United States. Journey to different countries to defeat other fighters, eventually leading up to a battle with evil man M.Bison. Besides the standard punches and kicks, each character can also execute special moves, such as energy projectiles or lightning-fast kicks, for more damage or to create a chain of hit combos. \n\nThis home version is a re-release of the original Street Fighter 2 game with several major improvements: the 'boss' characters (Vega, Balrog, Sagat, and M. Bison) are automatically unlocked for you to play, each character receives some new or upgraded moves and costume colors, and you can select a Turbo speed level which lets you play at a faster speed. It is based on the arcade re-release by the same name which also contained the subtitle \"Hyper Fighting.\" \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Strike Gunner S.T.G (USA).txt",
    "content": "Strike Gunner S.T.G. is a vertical-scrolling jet fighter adventure set in the far-off year of A.D. 2008. The player controls their fighter as the scene unfolds around them, as enemies of air, land, and sea continuously enter the screen in wave after wave of assault. The player(s) begins with a set number of lives, a number which can be added to with good play. Run out, and your mission is over - there are no saves!\n\nBefore each level, the player chooses one special weapon that can be utilized via an often-refilled meter, in addition to their normal guns. But choose wisely, you can only use one special weapon per round, and once used, it will be unavailable to you in later rounds! Play solo or with a human wingman. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Stunt Race FX (USA) (Rev 1).txt",
    "content": "Thanks to an improved version of the SuperFX Chip, Stunt Race FX was the first racing game for the SNES to feature fully polygonal cars and levels, which made it possible for the game to include gradients and obstacles that could not be realized in earlier, \"flat\" racing games.\n\nThe game features four modes of play: \nSpeed Trax is basically an arcade mode where the player has to qualify for each upcoming race by reaching checkpoints while collecting items to restore his damage- and boost-bar. It is divided into a Novice-, Expert-, and Master class, with each class featuring four unique tracks.\nIn Stunt Trax the player has to complete courses filled with obstacles within a certain time limit while trying to collect as many stars as possible.\nBattle Trax is a two player mode taking place on special tracks without any CPU-controlled opponents.\nFinally, Test Run let's the player practice all tracks that have been unlocked.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Sunset Riders (USA).txt",
    "content": "The Wild West...full of the criminal element. Sir Richard Rose, the most despicable face in the criminal lot, has enough power to control the mining facilities, cattle ranches, and trading communities and turn everything to his favor. With that much power, he could literally buy himself the Wild West and control everything!\n\nThe people need help, desperately. And just as things were looking grim, who should ride into town but 4 men who have made a pact: to put down Sir Richard Rose and make the Wild West a free and peaceful place to live.\n\nSteve, Bob, Billy, and Cormano are the Sunset Riders, and they're about to live out the wildest shootout the Wild West has ever seen...\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Super Adventure Island (USA).txt",
    "content": "You are a caveman named Master Higgins. You have a beautiful girlfriend, and you like spending time sunbathing together on high trees and other places on the tropic island Waku-Waku. But all of a sudden, an evil magician turns your wife into a stone! As you begin to realize what happened, a bird grasps you and throws down somewhere on the island. You have to find your way back and to save your girl from the grim reality of petrification...\n\nThis emotional drama turns out to be a rather simple platform game. The short, linear levels are all timed, so you have to hurry up and not to get delayed by the many treasures you might find on your way. You will have a weapon, your old trusty boomerang, which you will be able to upgrade during the game. After a series on levels, you will be invited to a boss battle. The sooner you complete a level, the more bonus points you get.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Super Adventure Island II (USA).txt",
    "content": "Master Higgins finally marries his lovely girlfriend Tina. But out of nowhere, a powerful tropical cyclone destroyed the idyllic mood of their honeymoon. And not only this: it separated the ardent lovers again. After the winds stopped blowing, Tina found herself somewhere on a tropical coast. As for Master Higgins, he went to the king of Waku-Waku and, along with his main quest to save his brand new wife, got an assignment to save also a princess, whom the king was about to marry. Is there a connection between those two events?..\n\nNo, this is not a detective/mystery game, but platform arcade action. What distinguish the game clearly not only from ordinary platformers, but also from the first Super Adventure Island, are its light role-playing and puzzle-solving flavors. You don't have a time limit, but huge levels with many secret sub-levels to find, puzzles to solve, and treasure chests to unlock. You also can have equipment, such as swords, shields, etc. By defeating enemies, you gain health items, money, etc. Your HP is measured by hearts, and it can increase during the game if you find appropriate items. You also encounter random enemies while traveling on a world map.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Super Bomberman (USA).txt",
    "content": "Super Bomberman is the first Bomberman game on the Super NES.  Like most games in the Bomberman series, Super Bomberman features a normal game as well as the famous battle mode.\n\nIn the normal game, Mr. Karat and Dr. Mukk have been terrorizing Diamond City.  You must go from board to board, defeating the bad guys and solving puzzles to move to the next board.\n\nIn battle mode, up to four players go head to head in a battle to the death.  Players can be computer controlled or human controlled via the Super MultiTap.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Super Bomberman 2 (USA).txt",
    "content": "This is the second game in the Bomberman series for the Super Nintendo.  This game is much like the first in gameplay but has new levels and a new story to play though.\n\nThe graphics are slightly different from the first game but in general the game holds most of the same style as the first.  There are a few new features such as colour coded bomb blasts and a few different powerups but other than that the second game is the same as the first.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Super Bomberman 3 (Europe).txt",
    "content": "The third bomberman game in the SNES series.  This game was an overhaul of the entire system of bombermans from before.  Again there are new levels and a new story but there are also a lot of new features.\n\nSuper Bomberman 3 adds in 5 player support using a multitap and the extra controller slot.  The \"revenge\" or \"miso bomber\" feature was introduced in this game.  That is when a player dies they can still throw bombs in from the sidelines in an attempt to swap places with a player that is still alive.  Many new powerups were added in this game including the Kangaroo which in addition to giving a player and extra hit allowed them to have some extra ablity including jumping, laying rows of bombs, and high speed running.\n\nPlayers are also not limited to the traditional Bomberman.  There is a wide selection of different characters that the player can choose from.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Super Bonk (USA).txt",
    "content": "The fourth game in the regular \"Bonk\" caveman series, Bonk is back on his first Super Nintendo outing.\n\nIn this side-scrolling platformer adventure, the gameplay is similar to Bonk 3. Super Bonk allows Bonk to travel through time from his prehistoric levels, the insides of a dinosaur, a version of modern Chinatown, and even the moon!  Along the way, Bonk can find power-ups that can change his form to creatures such as a shooting Bonk crab, a dinosaur form called \"Big Kronk\", find candies that change his size from tiny to huge, travel through transportation tubes, and find multiple bonus levels.\n\nBonk still uses his head to smash his enemies, propeller seeds that allow Bonk to fly, and for the first time, can carry spring flowers on his head in his continuing battle against his arch nemesis, King Drool! \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Super Bowling (USA).txt",
    "content": "Super Bowling is a third-person bowling game. Players may bowl in several different environments, which range from ice ponds to neon-lit Chinese temples. Players can face-off against characters in their home stages, much like a fighting game. If the player wins they can then play on these stages in other play modes.\n\nMulti-player modes are also available, with a number of different variations.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Super Buster Bros. (USA) (Rev 1).txt",
    "content": "The world has come under attack and it is up to you as a Super Buster Brother to ensure that the world is cleared of all bouncing bubbles. Every time you shoot a bubble, it breaks into two smaller ones. But be careful! If a bubble touches you, you're history! Whether you play in the Panic Mode or the Tour Mode, the challenges will keep you on your toes! In the Panic Mode, bubbles large and small pour down for 99 levels of exhilaration. In the Tour Mode, you will travel the world in search of new and explosive bubble bottles. Enjoy the action, but be alert! As you progress through the levels, the game becomes more exciting as the bubbles bounce faster and faster.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Super Castlevania IV (USA).txt",
    "content": "Simon Belmont returns in the first Castlevania title to grace the SNES.  The console may be different, but the setup is very familiar: The place is Transylvania.  The villain is Count Dracula.\n\nBelmont has the classic Castlevania assortment of weapons (the famous whip, daggers, axes, fire bombs, boomerangs) at his disposal, and he gains strength and points by collecting various-sized hearts, coin purses, and pork chops. \n\nLike most Castlevania games, Super Castlevania IV is a 2D side-scrolling action game. However, it is 2D with more depth than ever before. Parallax scrolling and rotating chambers are some of the \"Mode 7\" effects made possible by the SNES hardware.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Super Double Dragon (USA).txt",
    "content": "Billy and Jimmy Lee return for another adventure. This time, fellow martial arts instructor and narcotics investigator, Marian, has disappeared while attempting to infiltrate the ruthless criminal mob known as the Black Shadow Warriors.\n\nOnce again it is up to you (and a friend) to battle your way through a selection of side-scrolling beat 'em up levels to defeat the Shadow Warriors and their leader Duke, and save Marian.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Super Famicom Wars (Japan) (NP) (Translated).txt",
    "content": "Super Famicom Wars is a strategy game where two players each control an army with the goal of destroying one another. Each city controlled by the player generates money which can be used to purchase new units. Each individual unit has unique statistics and is often best used against certain types of enemy units.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Super Ghouls 'N Ghosts (USA).txt",
    "content": "4 years after Arthur saved Princess PrinPrin from the evil demon Loki, a wonderful celebration is about to take place! Arthur and the Princess are engaged, and the wedding is to take place at last! Thousands from around the kingdom have come to witness this joyous event!\n\nBut somewhere in the darkness of the forest lurks a horrible evil...\n\nArthur and PrinPrin are spending a quiet moment locked in embrace, when she is suddenly snatched away by a huge demon! As her screams echo through the night, Arthur rushes from the castle, and pursues the demon to the graveyard, where he is greeted by hundreds of horrible ghouls and monsters!\n\nNow, this time, they've gone too far...Arthur is ready for them... \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Super Mario All-Stars (USA).txt",
    "content": "Super Mario All-Stars is a compilation on Super Nintendo of all the platform games featuring Mario released for Nintendo. It includes : Super Mario Bros. 1, 2 and 3 as well as Super Mario Bros.: The Lost Levels, which was never released in Europe before. More than a simple compilation, the game brings improved graphics and the possibility to save your progress. Nostalgic fans of the first Nintendo console will be pleased.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Super Mario Kart (USA).txt",
    "content": "A collection of Super Mario characters, including Mario, Luigi, Yoshi, Peach, Bowser and Donkey Kong Jr., are out to win the Super Mario Kart championship. Using Mode 7 scaling, the first true kart game on the SNES has you collecting coins to boost your speed while using shells and bananas to stop others on the track. \n\nThere are 4 cups in all to race for, Mushroom Cup, Flower Cup, Star Cup and Special Cup, each with a selection of tracks to race on (based in Bowser's Castle, Super Mario World and more). Plus, a 2 player battle mode is on offer, where the first to pop the three balloons wins.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Super Mario RPG - Legend of the Seven Stars (USA).txt",
    "content": "Super Mario RPG is a console RPG starring none other than Nintendo's popular character Mario. This game starts off like almost every other Mario game, with Bowser kidnapping Princess Toadstool. However, when Mario goes to Bowser's Keep to save her, a giant sword made by the evil Smithy crashes into the castle and sends Mario, the Princess, and Bowser flying to separate parts of the world.\n\nThe game plays much like a traditional RPG: Mario and the members of his party gain experience points by defeating enemies. These experience points can increase the team's maximum number of hit points and flower points (magic points). The battles are also turn-based, but this time there are timed attacks and defenses. Timed attacks allow you to inflict more harm than normal to an enemy. Timed defenses, on the other hand, allow an enemy to inflict less harm than normal. You are only allowed to have three out of five team members on your party at a time. Mario is always in your party, regardless. Your team members can also purchase more weapons and abilities, along with better armor. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Super Mario World (USA).txt",
    "content": "Once again, the evil Bowser has captured Princess Peach (while on a holiday on Yoshi's Island), and it's up to Mario to save her. To aid him in his quest, Mario must use the flying ability of the feather to get him to places hard to reach. But what's even more important is his new friend, the dinosaur Yoshi, who Mario can ride through each level and eat the enemies.\n\nOver 90 levels are on offer, with plenty of Bowser's evil koopas and new characters around each level. Apart from saving Peach, you can also save some of Yoshi's friends, other dinosaurs that each have a special attack. Each level also contains a set of extra items to collect, including dinosaur coins, and break the tape at the end of each level to collect stars, that allow you to open up the bonus games.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Super Mario World 2 - Yoshi's Island (USA) (Rev 1).txt",
    "content": "The events of Yoshi's Island take place in the past. Mario was one of two twin brothers whom the evil Magikoopa Kamek tried to kidnap. Kamek kidnapped one of the brothers, but the second, Mario, fell down on Yoshi's island, where Yoshis live. The Yoshis decided to carry baby Mario and to bring him to his parents. But Kamek has sent troops and hordes of monsters to stop the Yoshis and to kidnap Mario.\n\nIn the game, players control the differently colored Yoshis most of the time. Mario is a helpless baby unless a star that makes him invincible is collected. As a Yoshi, players can swallow enemies to make eggs; these eggs are used for attacking other enemies and activating switches. Yoshi can do a flutter jump to clear large gaps that a regular jump can't. Players can also pound the ground for attacks and also flipping certain switches. Additionally, Yoshis can transform into vehicles, such as a helicopter, submarine, or a train. If Mario is dismounted from a Yoshi, a countdown will start, and Yoshi must catch the baby before Kamek's servants kidnap it. When Mario is invincible, he doesn't ride on Yoshi and is immune to attack. While invincible, Mario can run up certain walls. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Super Metroid (Japan, USA) (En,Ja).txt",
    "content": "Join forces with the power of Samus for a Super Metroid clash! \nTake on the legion of space pirates and take on a new Metroid force as you progress through the underworld of the planet Zebes! It's up to you and Samus to find the larval Metroid before evil forces misuse its energy. \nEvery vicious corner, every hidden passageway on the planet Zebes holds menacing creatures ready for battle... including the horrible Ridley and the giant lizard, Kraid. Use your lethal somersault to make enemies bite the dust. Use an electric beam through the gaps. No one will stop you or Samus. But beware! It seems that Mother Brain is back...\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Super Morph (Europe).txt",
    "content": "Young Morris Rolph has been trapped in limbo due to a malfunction on Dr Krankenpot's new teleport machine (how come characters with German-sounding names in computer games and films are always evil or stupid? Even Darth Vader sounds German.). Now he's been split into his 4 component parts, represented by liquid, gas, a hard ball and a bouncy ball, and he must get through 24 levels (36 on the special A1200 version - mirroring the game's plot-line of improved technology causing more problems for Morris) to retrieve the parts of the machine so it can be rebuilt to bring him back to life. \n \nThe gameplay is vaguely influenced by Lemmings, as the levels are populated by lots of points which can't be crossed in all forms - walls, fires, gaps, thornbushes and suchlike. You get a set number of transformations on each level, although extra ones can be picked up at times, and there are heaters and freezers dotted around which cause transformations in some states. All this is done against a time limit. Like Lemmings 2, you can take on the next level in each of the worlds at any time, so you have to be stuck 4 times before you can't progress.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Super Ninja Boy (USA).txt",
    "content": "One day a spaceship came down from the heavens and into the skies of Chinaland. It began broadcasting an image of peace. Soon Emperor Chin was holding a peace conference with the space ship's leader, Rub-A-Doc. Rub-A-Doc visited with some of the other places in the world before departing to the heavens and leaving the world. All seemed peaceful however there seems to be trouble starting up, strange monsters have been seen throughout Chinaland. Could the increase in monsters be somehow related to the recent visit from Rub-A-Doc? The ninja masters of Mount Edin, Jack and Ryu are sent to investigate...\n\nSuper Ninja Boy is an action RPG for one or two players. In a two player game, each player controls either Jack or Ryu. In a one player game, only Jack appears.A second player may join at any time by visiting a convenience store.\n\nAs mentioned, this game is an RPG and contains familiar RPG elements such as equipping differing kinds of weapons, equipment and gaining levels. The Ninja Boys are treated as a single entity and so these statistics are shared between Jack and Ryu with equal values. Battles with the enemy, either through random encounters or visible on the map is where the action starts. The characters enter a side-scrolling 'battle mode' where they may jump, fight, use their special techniques, items and spells... as well as activate various 'bonuses' on the battlefield by breaking open the bonus boxes. A battle is over and experience points awarded when a pre-determined number of enemies are defeated or the Ninja Boys are defeated.\n\nWhen bosses are encountered, the gameplay changes to a turn-based system. Each turn, commands are given to Jack & Ryu, which include usage of special items and skills accuired during the game, who then perform actions based on those commands. The enemy's turn takes place the same way. The battle ends when one side of the conflict runs out of hitpoints.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Super Off Road (USA).txt",
    "content": "Enter the world of off-road racing as 4 vehicles will face each other, on a series of tracks which are based around flipped and reversed versions of a core selection. Fame, glory and bikini clad women await your victories and the taste of dirt awaits if you fail. Let a computer car beat you and you lose one of your 3 credits.\n\nSuccessful races bring more money, which can be used to soup up their machine. Boosts to top speed, grip and acceleration can be purchased, and your nitro boost must be kept topped up. If you are desperate for upgrades, you can buy into your spare credits\n\nOnly your off-road driving abilities will be enough to pull you to first place in these races. Play alone or with up to 3 other players (depending on the version)  in this conversion of a classic arcade game. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Super Punch-Out!! (USA).txt",
    "content": "Your dreams are finally going to come true! All the years of training...all for that day where you'd finally step into the ring, amidst the roar of the excited crowd, to square off against the best of the best...you tighten your fist and hear your gloves tighten with them...you take a step foward...the door opens before you...and the boxing ring beckons your name!\n\n16 world champs are here, with the same dream as you: to win the WVBA Championship! Welcome to the world of boxing, kid! Give 'em an uppercut or two for your fans!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Super R-Type (USA).txt",
    "content": "A Galactic Battle Begins! The BYDO Empire of mutant extra-terrestrials is back with evil intent and awesome power. You'll feel the heat of their attack as never before with the extra powerful graphics and unbelievable realism of the Super NES. Now the evil Empire is poised to launch a new attack on Earth. Only the revolutionary R-9 stands between these monsters and doom. \n \nAre they invincible? You'll need lightning reflexes, intuitive moves and a big dose of cosmic luck to hold your own! \"R\" you ready? The mutants \"R\" ready for you!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Super Smash T.V. (USA).txt",
    "content": "The year is 1999. The world's most popular television show is Smash T.V., an ultra-violent contest between two armed-to-the-teeth combatants, set loose in a series of deadly arenas that are filled to bursting with hordes of mindless beasts and killer robots. The aim of the game is to blast everything in sight and try to grab more cash and prizes than the other guy. Toaster ovens, VCRs, fancy cars and luxury holidays are there for the taking... for anyone who can survive long enough to enjoy them.\n\nSmash T.V. is an insane shoot-em-up from the brain of Eugene Jarvis, creator of Robotron: 2084. It retains that game's frantic style of play and two-joystick control method, but adds plenty of gore, violence, a hint of satire and that all-important two player mode. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Super Star Wars (USA) (Rev 1).txt",
    "content": "The story of this game is based on Episode IV: A New Hope, the first of the original Star Wars movie trilogy. The player initially controls the movie's main hero, Luke Skywalker, but two more controllable characters join later: the careless captain Han Solo and his Wookie side-kick, Chewbacca. The game generally follows the movie plot, allowing the player to experience some of the most important sequences, such as the search for Obi-Wan Kenobi, rescuing princess Leia, and the final confrontation against Death Star and its TIE Fighters, led by the mysterious Darth Vader. \n \nMost of the game levels follow traditional platform gameplay style. As Luke, Han, or Chewbacca, the player makes his way through the linear levels, fighting enemies, jumping over obstacles, and collecting power-ups. The power-ups include standard health-restoring items, upgrades for the blaster gun , as well as special items that can be used for massive destruction of the enemies.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Super Star Wars - Return of the Jedi (USA) (Rev 1).txt",
    "content": "You select your character from the movie (Luke Skywalker, Han Solo, Princess Leia, or Chewbacca) before each level, as each one has different abilities, and go try to beat levels based on the movie's scenes brandishing lightsabers, blasters or crossbows, etc. depending on your choice of character.\n\nGameplay consists of standard platform action spiced up with some slightly different (gameplay-wise) sequences. Race to Jabba the Hutt's palace in a speeder, fight your way through Jabba the Hutt's minions before killing Jabba himself, control speeder bikes and the Millennium Falcon, and much more. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Super Star Wars - The Empire Strikes Back (USA) (Rev 1).txt",
    "content": "The sequel to  Super Star Wars is, as the name implies, based on Episode V: The Empire Strikes Back, the second of the original  Star Wars movie trilogy. The game features familiar locations and events from the film, such as the ice planet Hoth, the search for Yoda on the jungle planet Dagobah, and the fight against Darth Vader. Several locations are expanded, adding places and boss enemies that did not exist in the movie, and certain key events in the story are omitted or changed. \n\nAs in the previous game, the player is able to control three characters: Luke Skywalker, Han Solo, and Chewbacca. Unlike the first, each character has been given a distinct special move. Chewie spins a path of destruction through enemies, Han has grenades and a powerful slide, and Luke can switch to his lightsaber and block oncoming fire. Gameplay is very similar to the first game, mostly focusing on platforming elements. As before, there are Mode-7 vehicle levels, during which the player is able to pilot a snowspeeder against encroaching Imperial walkers, pilot the Millennium Falcon through the asteroid field, and break through Cloud City's defenses in Luke's X-Wing fighter. \n\nThe game's other major addition is the inclusion of a suite of Force powers for Luke. They are learned by collecting hidden orbs on the Dagobah level, and add a second special bar that depletes with each usage of a Force power. Power-ups include health items, weapon upgrades, screen-clearing detonators, and orbs that restore Luke's Force power. Passwords have also been added, and are given upon completion of each of the game's 25 stages. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Super Street Fighter II (USA) (Rev 1).txt",
    "content": "This is the sequel to the super hit Street Fighter II Turbo and Street Fighter II Championship games for the SNES and Genesis. This port of the arcade game featured all 4 new characters and stages making a total of 16 playable. The game was packed into massive 32Meg and 40Meg cartridges for the SNES and Genesis. Featured many multiplayer modes in addition to the single player mode. There was the returning elimination group battle where you and a group of people played until one person was the champ. The Point Battle where the person with the most points wins. Newer modes included Tournament where you had an 8 man double elimination tournament. Finally the Challenge mode, where you tried to get the most points on a CPU opponent or beat them real fast trying to surpass records.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Super Tennis (USA).txt",
    "content": "The world circuit of tennis awaits you. Select from 20 male and female players, each with their own style of game play (strengths and weaknesses) and play singles, doubles either against or with a human opponent or a CPU controlled player(s) on all the major surfaces (clay, grass & hardcourt).\n\nThe circuit mode is the meat of the game. Here, using a password save system, you play a selection of tournaments all around the world. The more games you play and win, the more points you receive. These points go towards your rank in the world tour rankings. There are 4 major tournaments (as in real life) and many minor tournaments to play.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Super Turrican (USA).txt",
    "content": "Super Turrican is the next generation installment of the famous Turrican Series. Once again it is up to the U.S.S. Freedom Forces to get into their Turrican Assault Suits and drive back the forces of \"The Machine\".\n\nSimilar to it's predecessors, Super Turican features large levels that are crammed with secrets and can be explored freely and in any direction. To get rid of the numerous enemies, Turrican can use three upgradeable shots: A spreadshot, a powerful laser and a rebound that bounces off of walls. Additionally, there is a Freeze-Beam that can be used to temporarily freeze enemies. It is fully rotatable, and therefor also a great help in discovering secret capsules. These capsules contain powerups and can often be used to reach secret areas. Last but not least, Turrican has the ability to transform into an energy wheel (as long as he has enough special energy), which enables him to lay mines and even makes him invincible.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Super Turrican 2 (USA).txt",
    "content": "Super Turrican is back, and once again the USS Freedom Forces have to prevent the evil Machine from harming innocent civilizations. \nThis requires the player to jump and shoot his way through large levels filled with lots of enemies. To get rid of all the enemies, several different weapons can be used, most of which are already familiar to players from previous episodes: a Laser, a Spread-shot, and a(improved) Rebound. There is also the option to go into \"wheel-mode\" for a limited time to become invincible, lay mines and shoot rockets. The Flamethrower is new to the series as well as the Rope, which can be used to climb walls, cling to platforms or pick up out-of-reach items. Much like in side-scrolling shooters, you can now pick up homing missiles as secondary weapons. The biggest difference to previous Turrican-games however, is the fact that in Super Turrican 2 almost half of the levels are strictly linear and don't feature any large secret areas.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Syndicate (USA).txt",
    "content": "In the future, the world is controlled by a handful of global corporations (syndicates).  You are the Marketing director (hit man) for one of these companies.  It is your job to take control away from the competitors.  The job is not one of diplomacy, but one of brute force and physical control.  Advance your way to the top of the corporation by successfully completing your missions and managing the money you make from your territories.\n\nThe gameplay is visually reminiscent of X-Com, with an angled top-down perspective, but it is real time rather than turn based. You have missions ranging from infiltrate and capture, to seek and destroy. In each of these you direct a team of four agents as they move through the world shooting at anything that gets in their way.\n\nYou can upgrade and modify your agents, as well as equip them with tools you have researched or liberated from opposing syndicates.  As you complete missions, you gain more funds to use for purchasing agents or researching upgrades and equipment.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Tactics Ogre - Let Us Cling Together (Japan) (Rev 2) (Translated).txt",
    "content": "Tactics Ogre is a very detailed 3-D isometric turn based war / rpg sim. You start out with a band of troops and build a small army and fight many battles with choices to make in between battles that will determine which one of the 8 possible endings in a non-linear storyline. \n\nYou have the option to recruit characters, control individual equipment of each character, with over 6 male character classes, 6 female character classes, 3 demi-human classes, and more. You can also train at safe locations to advance your army before the next battle / storyline advancement. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Tales of Phantasia (Japan) (Translated).txt",
    "content": "In \"Tales of Phantasia\", you play a young boy named Cless, who lives together with his parents in a quiet village. It was a day like all the others when Cless decided to go hunting with his best friend Chester. Chasing a wild boar, Cless discovered a strange talking tree in the forest who was pleading him for help. But as soon as it stopped speaking, the two friends heard the sound of an alarm. They returned to the village and found it burnt down, and all its inhabitants murdered. Before Cless' mother died in his arms, she told him this terrible massacre had something to do with the pendant she and her husband gave Cless for his birthday... what connection could there be? Cless decides to visit his uncle who lives in another town, but he doesn't realize his journey will take him to much more remote places than that!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Taloon's Great Adventure - Mystery Dungeon (Japan) (Translated).txt",
    "content": "Torneko (aka Taloon) from Dragon Quest IV was a merchant and treasure hunter who always dreamed of owning his own shop. Having defeating the evil along with other heroes, he returned to Endor to work peacefully. Some time has passed and after growing successful in this town, Torneko grew anxious. Hearing rumors one day about a \"Mysterious Dungeon\", Torneko meets with the king to ask permission to set up a new shop, closer to this Mysterious Dungeon. By exploring this cavern and returning safely with the prizes, Torneko hopes to become the most successful merchant in the world.\n\nTorneko No Daibouken is a overhead view game similar to Hack, what might be called a \"dungeon crawl\". Torneko must venture into the mysterious dungeon gathering treasure. He may equip any weapons and shields he finds there, as well as gather up items such as spell scrolls, staffs and herbs with a variety of effect. A variety of enemies, familiar to the Dragon Quest series, await him. If Torneko successfully exits the dungeon, he is able to sell any of the items he has collected. This money then goes to improve the quality of his shop and living quarters. As the game progresses, Torneko is able to store special items in the vault, which he is then able to bring with him on subsequent trips to the dungeon.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Tecmo Super Bowl III - Final Edition (USA).txt",
    "content": "A late entry in what was once the premiere football simulation, TSB III has updated rosters and teams for the 1994-1995 season and is licensed by both the NFL and the Players group.  Features real NFLP players and photos, the real NFL schedule, and weekly standings.  You can change defensive and offensive formations, create your own Pro Bowl, fake punts and field goals, go for the two point conversion, and call audibles.  Updates to the game itself include new cinema screens, superstar mode, free agency system, improved graphics, larger field simulation, passing modes, and improved speech and music.  Horizontal scrolling.  Also features battery back-up. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Teenage Mutant Ninja Turtles - Tournament Fighters (USA).txt",
    "content": "The game features the original 4 turtles from the previous games in the series, as well as other fighters.\n\nThe game is very much in the tradition of the Mortal Kombat or Street Fighter series, pitting you against opponents one at a time. Some fighters (besides the turtles) will be familiar, such as the Rat King, or even Shredder (now called \"Cyber-Shredder\" here).\n\nThough even people familiar with the turtles will see differences in them. They can now, for example, do moves involving projectiles, such as \"fireballs\".\n\nThe game's modes include a story mode, where you can only pick one of the turtles and go on fighting opponents in order to rescue April and Splinter, and a tournament mode, where you fight only for the fame and money. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Teenage Mutant Ninja Turtles IV - Turtles in Time (USA).txt",
    "content": "Doesn't this Shredder dude ever take a break? Now he's gone and kidnapped Channel 6's own reporter babe April O' Neill again, and just as the Ninja Turtles were about to kick his butt, he tore open some kinda time portal thingy and flung them back into the past!\n\nNow Leonardo, Raphael, Donatello, and Michaelangelo have to fight their way through time and tons of Foot Soldiers, mutant wackos, and more in order to save April and slam Shredder's butt all the way to Dimension X! Go, Turtles! Kick some shell and save April! \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Terranigma (Europe).txt",
    "content": "In \"Terranigma\", you play a young boy named Ark. He has grown up in his little village, isolated from the outer world by a stream of lava, and has never seen anything else beside it. One day, he and some other boys hear mysterious voices coming from beyond a door the village elder forbade them to open. Unable to resist their curiosity, the boys open the door, and Ark finds a box with a strange creature inside. By opening the box, Ark damages the balance between two co-existing worlds, and all the village people are turned into stones. Now Ark has to embark on a dangerous journey - to find five Towers, and to seek there the answers to his questions, and to liberate his people from a terrible curse.\n\n\"Terranigma\" is an action game with slight RPG elements. Ark levels up after having completed an important quest or cleared out an area. He can attack enemies with various weapons, using various techniques: pierce, leap, dash, etc. \n\nThe game is closely connected to and often regarded as a part of a trilogy created by Enix, the first two games being Soul Blazer and Illusion of Gaia.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Tetris & Dr. Mario (USA).txt",
    "content": "Two of the most popular puzzle games return, but now together in an exclusive compilation for SNES. The games have a slight graphical update when compared with the original Game Boy and NES games, but the gameplay remains totally faithful to the games released for both platforms.\n\nIn Tetris, the main objective is to pile blocks that will fall down continuously, in order to create a row or \"line\" without spaces. For this collection, the game comes with two bonus options: 2 PLAYER GAME (absent in the NES version) and VS. COM (absent in both versions), with 3 CPU opponents available, each one representing a difficulty level (EASY, MEDIUM, and HARD, respectively).\n\nIn Dr. Mario, the objective is to eliminate all the viruses contained in a big bottle. Dr. Mario (situated in the upper-right side of the screen) will throw capsules with 6 different color combinations (Red-Red, Red-Blue, Yellow-Yellow, Red-Yellow, Blue-Blue and Blue-Yellow) in order to line up at least four viruses or capsules of the same color horizontally or vertically and to make them disappear. In this compilation, the game comes with a bonus option: VS. COM, where you'll face the CPU players: Blue Virus (EASY), Yellow Virus (MEDIUM), and Red Virus (HARD).\n\nFor competitive players in both games, there is Mixed Match, where you and a friend can play Tetris and Dr. Mario like a tournament! Adjust the handicap levels, play time, music, and other settings to balance your different skills. The game order is: TETRIS B-TYPE (clear a certain amount of lines), DR. MARIO (disinfect a predetermined number of viruses) and TETRIS A-TYPE (clear lines until the time expires). At the end of the time limit, the player with the highest score is the winner.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Tetris 2 (USA) (Rev 1).txt",
    "content": "Unlike the original Tetris, Tetris 2 has you clearing the field of blocks in a different way. Each play field starts with different colored dots (in this case black, gray and white), with one of each color flashing. The blocks are made up of the same three colors, and by matching blocks of the same color over the top or to the side of the dot will clear the dot and those blocks from the screen. If you clear a flashing dot, all the corresponding dots of the same color will be cleared. To complete the round just clear the dots, not the blocks themselves.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Tetris Attack (USA) (En,Ja).txt",
    "content": "All is not well on Yoshi's Island! The devious king Bowser has cast a spell on the island's inhabitants, turning them into his mindless slaves. Only Yoshi has escaped its effects, and so he must set off to free his friends, and to defeat Bowser and break the spell.\n\nTetris Attack is a fact-paced action puzzler featuring the colorful cast of characters from Yoshi's Island. A stack of blocks continually rises from the bottom of the screen, and the player controls a cursor which can swap any two blocks horizontally. Make a row or column of three or more and they'll clear, potentially creating combos from new blocks falling to take their place. Combos will send large garbage blocks to your opponent, which must be eliminated by clearing a piece that is touching it, turning it into normal blocks.\n\nThe game offers a story mode against the computer, as well as a 2-player versus mode, an endless mode, a timed mode where a certain number of blocks must be cleared, and a puzzle mode where a set arrangement of blocks must be cleared in a specific number of moves. The game is based on the Japan-only title Panel de Pon.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Tiny Toon Adventures - Buster Busts Loose! (USA).txt",
    "content": "You play Buster Bunny, in a series of levels, featuring characters from the Tiny Toon Adventures cartoon.\n\nMost of the six levels are platform levels, where Buster has a number of attacks to defeat the enemies he faces.  These include kicks and jumps, and a dash ability that lets you slide into enemies to defeat them, and also climb walls.\n\nThe fourth level is an exception, and consists of a game of (American) football, played with a simplified version of the rules.  The idea is simply to get a touchdown, while as usual progressing at least ten yards in four downs.  There are two plays: a running play, where you simply run as far as possible while avoiding the opposing team; and a passing play that starts with a pass that can gain you extra yards, but must be caught.\n\nBetween levels there are bonus games.  You spin a wheel to determine what game you play out of five available. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Tiny Toon Adventures - Wacky Sports Challenge (USA).txt",
    "content": "Tiny Toon Adventures: Wacky Sports Challenge has the player take control of either Buster Bunny, Babs Bunny, Dizzy Devil, or Plucky Duck in a variety of Olympic-type events: ice cream throw, weightlifting, saucer throw, obstacle course, a flying contest called the birdman contest among more.  There are four difficulty settings to choose from (Easy, Normal, Hard and Super) each unlockable through passwords which are represented by Tiny Toons characters.\n\nPlayers can utilize the multitap, which allows four human opponents to face off against each other. The game also features graphics and animations from the TV show, but does not feature any voice overs from the characters. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Top Gear (USA).txt",
    "content": "In the first of three released games for Super NES, players can choose among 4 different cars, each one with different attributes (maximum speed, fuel consumption, boost power and tire grip) to face 32 challenging courses situated in several places around the world as Brazil, USA, France, Japan etc.\n\nIn more longer tracks, players will find a Pit Stop section, where they can enter to replenish the fuel meter (total or partially). The game has a split-screen display for 1 or 2 players. In 1-Player mode, you'll dispute the races against the computer, that has a slightly bigger speed than yours, helping to give a lot more of competitiveness. A password system was included, being possible to stop a current game and resume it later.\n\nThrough the game, players will find several obstacles scattered by the courses, like rows of iron plates or even lots of stones. In order to qualify for the next circuit, it's required to complete it at least in the 5th position, or else the game is over.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Top Gear 2 (USA).txt",
    "content": "This third-person racing game resembles Gremlin's earlier Lotus series, in terms of its general look and feel, right down to the text font used in the game. Your task is to race through 16 countries, each of which features four races, with many real-world circuits recreated in incongruous locations (such as the Monza layout in Ayers Rock, and the old Hockenheim in Vancouver). \n\nThese four-race blocks each represent their own mini-championship, in which you race against 19 cars, needing to finish in the top 10 to continue, and with the top 6 scoring points 10-6-4-3-2-1, and the respective amount of money in thousands. This can be spent on various upgrades, ranging from engine to tires (wet and dry) and from shocks (front, side and rear) to gearboxes. The ideal approach is to buy the more expensive versions ASAP, as you get no saving when upgrading. If you win the four-race championship, you get the next password. \n\nYou get a set amount of nitro boost to use during each race, although bonus nitros, money and instant speed-up token appear on many tracks. Hazards such as puddles, barriers and ramps are also frequent.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Top Gear 3000 (USA).txt",
    "content": "The last game of the Top Gear series for the SNES exceeds ordinary dimensions and goes into outer space. Face the challenges found in 48 exciting tracks and become the best pilot in the entire galaxy! Just like the previous games, Top Gear 3000 comes with a password system that allows the player to continue a game in progress. The upgrade system of Top Gear 2 gained new breath and now comes with newly designed parts: ranging from tires to engines up to atomic turbos! As players travel from one planet to another via spacecraft, they race on various planets in different systems, getting progressively harder. The prize money earned in each race increases as does the price of new car parts... Moreover, the game comes with a versus mode which allows up to 4 players to race simultaneously via splitscreen.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Total Carnage (USA).txt",
    "content": "The war of 1999 left the country of Kookistan in shambles. Naturally, a dictator named General Akhboob took control of the beleagured nation and began creating an army of radioactive mutants. With a virtually impenetrable stronghold, a bunch of hostages, and a legion of mutants under his command, the evil despot will stop at nothing but world domination. Only two men have the courage and idealistic naivete to take on Akhboob and his forces: Captain Carnage and Major Mayhem, also known as the Doomsday Squad.\n\nAs Captain Carnage or Major Mayhem, it is up to you or you and a friend (in simultaneous action) to rescue the hostages while shooting hundreds of mutants bent on your destruction. As you walk and run forward, backward, left, right, and diagonally through 20 battlezones of nonstop action, you'll always have your machine gun by your side. Additional weapons which you can find along the way include grenade launchers, rocket launchers, plasma machine guns, flame throwers, spray-fire rifles, defensive blades, and an assortment of bombs.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Toy Story (USA).txt",
    "content": "This game is based on the movie \"Toy Story\". It sets you as the character of Woody as you jump, swing, and drive to the end of each level. Each level contains familar scenes from the movie. The gameplay consists of the platformsidescrolling kind. You use Woody's pullstring to defeat enemies like sharks, Mr. Potatohead, and Ham. After each level, you are treated to still images from the movie. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Trials of Mana (World) (Rev 1) (Collection of Mana).txt",
    "content": "Trials of Mana is set in the same world as the two previous Mana games (Final Fantasy Adventure, and Secret of Mana). The mysterious power of Mana is also the center of all events in Trials of Mana. Years have passed, and all the destructive powers of Mana have been securely sealed by Mana Swords into eight seeds, all placed in eight different kingdoms. But some people know about those sealed powers, and they don't want to free them for the sake of humanity, but for their own gain - such as the kingdom of Altena, which is slowly freezing and which can be saved only by the legendary powers. \n \nThe game features several plot lines connected to each other by their common background. In the beginning of the game, you are offered to choose a group of three among six different characters of different classes: Duran the Fighter, Angela the Magic User, Lisa the Amazon, Charlotte the Cleric, Kevin the Grappler and Hawkeye the Thief. Each one of them has her/his own background story and dwells in a different land. Gradually, the connections between those different characters become apparent, and the seemingly loose story lines are connected into a whole. \n \nTrials of Mana, like the previous game in the series, is an action RPG with real time combat.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Troddlers (USA).txt",
    "content": "Troddlers is a puzzle game in the vein of Lemmings. The player takes control of an animal-like wizard who can create and remove blocks; these blocks are useful for both jumping onto and redirecting the path of the little Troddlers that you have to direct towards the exit. The tricky bit is that the Troddlers can climb walls and ceilings, following the edge of the world and the exit is often in the middle of the screen or with an obstacle in the way.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/True Lies (USA).txt",
    "content": "Take charge of gun toting Arnie in this top down omni-scrolling action shooter. Arnie takes on the terrorists using a variety of weapons in all the locations from the movie of the same name.\nIn each location you have a mission such as retrieve data or capture a terrorist.This usually involves searching around for your goal while dispatching enemies and trying to minimise civilian casualties. The emphasis is on action and weapons, in particular Arnold's favourites: flame thrower and the uzi. He also has a diving roll to help him dodge the enemies bullets and come back guns blazing..\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Turn and Burn - No-Fly Zone (USA).txt",
    "content": "In Turn and Burn: No-Fly Zone the player gets in the cockpit of the famed F-14 Tomcat and launches into a series of sorties on enemy fighters.  The game is a simulation with real instruments and gauges and authentic weapons such as Sidewinders, Phoenix missiles and the M61A1 Vulcan Cannon to shoot down enemy fighters scattered throughout the stages.  Players also land on their carrier in both daytime and night time missions. The game also features Mode 7 scaling. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Twisted Tales of Spike McFang, The (USA).txt",
    "content": "The Twisted Tales of Spike McFang is an action-rpg starring the titular hero, a young vampire prince who must rescue his parents and save the inhabitants of the Vladamasco Islands from the evil Von Hesler. But is it really his handiwork, or is there someone else controlling him? Unravel the mystery while traveling to various locales, fighting Von Hesler's henchmen and picking up (CPU-controlled) companions along the way.\n\nSpike McFang has three main methods of attack: by striking out with his cape, throwing his hat like a boomerang, or using a magic card. Cards can also heal his health or give his companions extra strength. Spike can also devour the still-beating hearts of his vanquished foes (or the dropped tomatoes of his vanquished foes if you're playing the sanitized North American version) to regain health. There are a total of four different hats that Spike can purchase as upgrades in his battle against animated garlic bulbs, bomb-throwing cats, head-spinning plants and a plethora of other dangerous enemies.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/U.N. Squadron (USA).txt",
    "content": "Side-scrolling shoot-em-up, in a similar style to such games as Gradius, R-Type and Scramble. The aim is to wipe out the enemy, which has gathered around the allied airspace of 'Area 88', in a series of military aircraft-based scenarios.\n You choose one of three unique pilots; Shin Kazama, Micky Schymon or Greg Gates, each with varying abilities at damage repair, weapon handling and flying skill, and engage the enemy over a series of challenging missions. The player starts out with the weakest plane, the F8E Crusader, which can only be armed with a very basic range weapons. But, through completing various missions, enough cash can be raised to purchase higher-quality aircraft. These superior planes are more agile, have improved resilience to damage and have a greater range of fire. Furthermore, the more advanced fighters can be armed with superior special weapons, such as napalm.\n The missions include attacks on sand bases, the nuclear submarine 'Seavet' and enemy supply camps, as well as seeing off groups of airborne 'bandits' who swarm-in on Area 88.\n The enemy is plentiful, and the pace is frantic. Shoot at everything on the screen that moves, and the allied forces might just come out on top......\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Ultima - Runes of Virtue II (USA).txt",
    "content": "Runes Of Virtue 2 is the sequel to Runes Of Virtue for the Game Boy.  Released on the Super NES as well as the Game Boy, Runes Of Virtue 2 maintains the action-RPG gameplay as the original.  In this game, the Black Knight kidnaps Lord Tholden, simply out of boredom.  Lord British sends you, the Avatar, out to recover Tholden and return peace to Brittania.\n\nAs in the first Runes Of Virtue game you have the choice of selecting one of four characters.  And again, there are three modes of difficulty. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Ultima - The Black Gate (USA).txt",
    "content": "The Avatar is once again summoned to the land of Britannia, and this time he has to investigate ritual murders that have occurred in the town of Trinsic. Meanwhile, a new philosophical/social doctrine is spreading through Britannia, promoted by the mysterious Fellowship...\n\nThe story of this version of Ultima VII is essentially the same as in the original PC version. However, the dialogues have been greatly reduced and/or simplified. This applies also to the size of the game's cities and other locations, the amount of items to pick up, interior details, etc.\n\nCombat also underwent significant changes. The battles in this version are action-based; the player has to click on the enemy repeatedly to win. Unlike the PC version with its party management, the Avatar is traveling and fighting solo in this release.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Ultima - The False Prophet (USA).txt",
    "content": "This is the first Ultima game to be created first for the PC and then converted later to other home computer systems rather than the other way around. Because of this, the game is larger and richer in its graphical environment and interactivity.\n\nIn this conclusion to the Second Trilogy, you, the Avatar, are summoned back to save Britannia from the Gargoyles, a strange race of beings who have taken control of the Eight Shrines of Virtue.  Conceived to be evil by the people of Britannia, the Gargoyles are discovered to be struggling for survival against ancient forces you had not imagined. You must help the Gargoyle race by learning their culture, language and vocabulary. Adventure with your companions Iolo, Shamino and Dupre in this gigantic world riddled with monsters and puzzles.\n\nThe game features a top-down interface, animated graphics in vivid colors as well as original music, sound effects and thousands of objects to be manipulated. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Ultimate Mortal Kombat 3 (USA).txt",
    "content": "Ultimate Mortal Kombat 3 combines the best of all the Mortal Kombats into a single cartridge. 23 playable characters are immediately available, such as Reptile, Cyrax, Scorpion, Sub-Zero, Jax, Katana, Sonya, and more. There are two bosses that are unlockable, as well as additional characters.\n\nThere is a variety of new levels, some of which are interactive. Characters can uppercut someone, causing them to hit the ground hard and crash through to the bottom floor, or they can knocked someone off a bridge, landing in a pit of spikes.\n\nPlayers can go against the computer one-on-one, two-on-two, or take part in the 8-fighter tournament.\n\nThe DS version has a wireless one-one-one multiplayer mode and includes the Puzzle Kombat mini-game from Mortal Kombat: Deception.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Uniracers (USA).txt",
    "content": "What do you get if you cross Sonic the Hedgehog with Tony Hawk's Pro Skater?\n\nIt might seem an odd combination, but it describes Uniracers perfectly. One of the more successful releases of the Super Nintendo's twilight era, Uniracers mixes platform-based high-speed racing, with crazy stunts and tricks.\n\nThe basic idea in most levels of the game is simple. Get your unicycle from A to B as quickly as possible, and finish ahead of your opponent. It's like Sonic, but with none of those pesky enemies, pointless power-ups and frustrating obstructions. In fact it doesn't sound like much of a game at all...\n\nHere's the key, though. Tricks performed and landed during the race increase your speed. The better the trick, the greater your increase in speed will be.\n\nAlso, some levels are set in areas designed solely for stunts. Such levels require you to earn as many style points as possible, by doing tricks. These levels are against the clock, and a set points score, rather than an opponent.\n\nUnicycles are stupid and difficult, and yet fun, once you get the hang of them. Much the same could be said about Uniracers... \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Urban Strike (USA).txt",
    "content": "Urban Strike is the third  in EA's long running series of helicopter action games.  An evil genius named H. R. Malone has started a cult and managed to gather millions of followers.  Malone is using his influence and wealth to build a super weapon with which he will overthrow the government.  You will once again suit up and take control of various types of helicopters to stop Malone's evil scheme.\n\nUrban Strike is the first, and only, game in the Strike series to feature non-vehicular combat.  In some levels you will leave your helicopter and proceed on foot.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Utopia - The Creation of a Nation (USA).txt",
    "content": "Utopia takes the Sim City gameplay concept and adds a military element to it. The game is set in the distant future, where your job is nothing less than Colony Administrator for a new settlement on some far-flung planet. Your aim is to provide the highest Quality of Life rating for the colonists. \n\nYou do so by ensuring that there is enough life support, power, housing, employment, police and entertainment to keep the citizens of your colony happy. Hindering your goal are random events such as solar eclipses (which can render your solar panels inactive) and also a different, hostile alien race that inhabits the planets in the many scenarios at offer. \n\nNot only do you have to be a good mayor but you also have to be a good general. Resources must not only be attributed to civilian research but into weapons research, intelligence and the building of tanks and spaceships, if you wish to survive long enough to see your colony flourish into a metropolis. As a rule, you will have built a strong colony before the aliens come, but the final push towards a QOL of 80% or higher can only be achieved once there is no outside threat.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Vegas Stakes (USA).txt",
    "content": "Stake your claim in Vegas and beat the house! Let your inner high roller go wild as you try your luck at five different casino gamesblack jack, slots, poker, craps, and roulette. Start with $1,000 in your pocket and play your way through five casinos, each with a different theme and varying limits. Choose one of four friends to tag along and offer advice when you need it. Further enhancing the experience is the fact that you'll be presented with a slew of interactions with random casino patrons. Be careful though, your choices in these situations could either get you closer to the millions of dollars you're after, or cost you a pile of that hard-earned cash.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Violinist of Hameln, The (Japan) (Translated).txt",
    "content": "In Violinist of Hameln you play the role of Hamel, a sort of wanderer / adventurer whose weapon is a violin. His music can cover enemies in fear, or even control their minds. Hamel and his mascot Oboe arrives at Staccato, a small town attacked by monsters, and drives them away with his power. Impressed, a cute little girl named Flute decides to go with Hamel in order to find and destroy the evil power behind the attacks.\n\nThe game is typical platform. You play as Hamel, and with your violin can shoot musical notes to beat your enemies. However, you count with Flutes aid. Flute follows you (although you can order her to stop and stay), but also can be grabbed and thrown at the enemies (yes, thrown at the enemies). Flute can also collect through all the stages some costumes that, when worn, give her special abilities, such as flying, leaping, breaking walls or even explode and kill all in screen. At the end of each stage, of course, youll find the typical boss, all named as musical instruments. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/WWF Raw (USA).txt",
    "content": "WWF Raw is a professional wrestling game featuring 10 superstars from the World Wrestling Federation.  The wrestlers you can choose from include Bret \"Hit Man\" Hart, Bam Bam Bigelow, 1-2-3 Kid, Diesel, Doink, Lex Luger, Luna Vachon, Owen Hart, Razor Ramon, Shawn Michaels, Undertaker, and Yokozuna.\n\nIn this game, you attempt to pin your opponent to the mat by reducing his power meter until he can fight no more.  There is a large number of moves to perform, including turnbuckle maneuvers and \"illegal\" acts such as hitting your opponent with a metal folding chair.\n\nThis game supports up to 4 simultaneous players, and has the following game modes: One-on-One, Tag Team, Bedlam, Survivor Series, Royal Rumble, Raw Endurance Match, and Rematch.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/WWF Royal Rumble (USA).txt",
    "content": "Control one of twelve World Wrestling Federation stars in a \"no holds barred brawl\" -- in other words, do whatever moves you want, from choke holds, piledrivers, and even chair slams, until your opponent is knocked out. You can even go outside the ring if you like. Several modes of play are available, including one-on-one, tag team (two-on-two), and three-on-three tag team. You can play as the following WWF wresters: Bret Hart, Razor Ramon, Randy Savage, Shawn Michaels, The Undertaker, Tatanka, Mr. Perfect, Crush, Ric Flair, Yokozuna, Ted Dibiase, and Lex Luger.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/WWF WrestleMania - The Arcade Game (USA).txt",
    "content": "WWF Wrestlemania: The Arcade Game merges the personalities and action of the popular WWF TV show characters with a Mortal Kombat-style fighting game. This title features digitized graphics of 8 WWF superstars: Doink, Razor Ramon, Bret \"Hit Man\" Hart, Shawn Michaels, The Undertaker, Yokozuna, Bam Bam Bigelow, and Lex Luger.\n\nAlthough it is a wrestling title, this game is structured a lot like a one-on-one fighter. It is very fast-paced, and features crazy special moves. Also, each match is divided into a series of rounds, much like a fighting game. Instead of each round ending in a KO, each round simply ends when you force the other wrestler(s) to fall by reducing their energy meter. Game modes include single player arcade mode, tournament mode, and vs mode for 1-on-1 multiplayer. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Wario's Woods (USA).txt",
    "content": "Wario's Woods is a puzzle game similar to Tetris or Columns, but with a twist. Instead of directly controlling the monsters and bombs that are falling down, the player controls Toad who has to carry around stacks of monsters and bombs and to combine them in the right way. One bomb plus at least two monsters of the same color have to be combined to make them disappear. If five or more objects are cleared at the same time, a diamond will appear. Destroying the diamond will clear all monsters of the diamond's color. \nThere are four different ways to pick up objects. The A button lets Toad pick up the whole stack that is in front of him, the B button lets him only pick up one object, even if it's in the middle of a stack, the Y button lets him kick a monster or bomb that's in front of him and the X button places him on top of the stack that he is carrying. He can also run up walls and stacks to catch falling objects out of the air or to pick up certain parts of a stack.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/WeaponLord (USA).txt",
    "content": "A barbarian battleground. Seven different warriors, eached armed with a unique weapon set forth on a fighting game quest where they will clash and conflict with one another in this fighting game from Namco. Their ultimate foe is the mysterious Demonlord. An early relative of the popular Soul Calibur series, the main claim to fame of this game is the weapon play. Blocking and combos are present along with special \"frenzies\" of increased attack and death combos. The backgrounds are all hand drawn and meticulously detailed. Each character carries their own storyline with them between arenas, jungles and firey mountains on a quest to oppose the Demonlord.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Where in the World Is Carmen Sandiego (USA) (En,Fr,De,Es,It).txt",
    "content": "You start out as a rookie detective whose job is to track down a crop of thieves stealing the world's most precious treasures. After each assignment briefing, you'll be given a deadline to capture the thief that stole the artifact using clues dealing with your knowledge of geography. \n\nRemake of the original Where in the World is Carmen Sandiego?. Features enhanced VGA graphics, sound effects, and joystick support. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Whirlo (Europe).txt",
    "content": "A platformer title starring Valkyrie's lizard friend Xandra. In the game, which plays as a prequel of the Valkyrie games, you control Xandra as he leaves his enchanted forest in order to get help for his family. This will eventually lead him to meet up with our beloved Valkyrie and mark the beginning of their adventures.\n\nXandra has all the abilities of a standard platformer character, which allow him to jump around and navigate the many obstacles found in the game. Additionally he's armed with a pitchfork which he can use to impale his enemies and stick to some surfaces. Collecting coins allow him to purchase extra lives, but there are no added weapons or spells as in the Valkyrie games.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Whizz (USA).txt",
    "content": "Whizz is one of the few 3D platformers to use an isometric viewpoint. The controls reflect this, with moving the controller to the right actually moving the character down and right, moving it down and right moving the character down directly, and so on. Each level is played out against a time limit, and the paths through the level arent always clear-cut. There are four different types of doors, each of which needs a particular icon to pass (the icons represent the door type, such as ice or bricks, rather than hot water or a key, or anything youd logically expect to clear the path). You can avoid the baddies, which may be the best option, as killing them costs you some energy this reduces the significance of the points system.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Wild Guns (USA).txt",
    "content": "Annie & Clint, two gunslingers, arrive at Carson City and get caught up in a gunfight. It's raining bullets and there are explosions everywhere. After an intense battle they enter the saloon where they dispose of every cowboy in sight while redecorating the interior. Our heroes flee the scene by climbing on the roof, but what's that sound? ... it's a HUGE robot! \nWild Guns is a shooter with a western & Sci Fi theme. Gameplay is somewhat similar to the Time Crisis & House of the Dead games, with the exception that the game isn't played from a first-person perspective but from a third-person perspective. You control your on-screen character as well as the aiming crosshair. Select either Clint or Annie and shoot down tons of enemies while dodging bullets and jumping over incoming rockets. \nAfter the Carson City level, the action continues in Desolation Canyon, an ammunition depot, a gold mine and a armored train . Finally there's a showdown with the big bad guy.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Wild Snake (USA).txt",
    "content": "WildSnake is a puzzle game in which the player must manage falling snakes in a  confined space and keep the snakes from reaching the top of the space. Snakes fall and slither until they reach a resting spot on the floor of the space. A snake will destroy any other snakes of the same color and pattern that it touches with its head on the way down, which often has the chain effect of loosening the pile of snakes so that all the snakes slither into new positions, possibly eliminating even more snakes.\n\nThe game is played against a selection of backgrounds including desert, forest, water, or grass. Further, there are 7 game grids including the standard grid (a tall rectangle), X, plus, flask, Diabolo (an hourglass pattern), T-square, and obstacle (with a number of intermediate blocks).\n\nThe player starts out as a nestling and earns higher and higher distinctions taken from the snake realm (garter snake, water snake, boa, mambo, python, king cobra, etc.) as more snakes are cleared. Also, as the level increases. more types of snake patterns must be handled. Sometimes, there is a flashing red snake that eliminates the first snake it touches. Further, there is occasionally an unstoppable snake that barrels down to the bottom of the space, eliminating all snakes in its path.\n\nThe game can be played with 1 or 2 players in either easy, normal or hard mode. In the single player mode, the player can choose whether the preview showing the next snake will be shown. In 2-player mode, there is always a preview window. In fact, there is a queue of 3 snakes between the 2 player spaces from which the next snake is drawn. As a bonus during competition, multiple snake eliminations by one player result in obstacles appearing in the space of the opposing player. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Wing Commander (USA).txt",
    "content": "The Confederation have been at war with the Kilrathi for the past 20 years, and you're just now joining the Vega campaign. You're a 2nd Lieutenant just out of the Academy, with some good work under your belt. You're posted to Tiger's Claw, the flagship of the Confederation Fleet.  Will you help the Confederation to victory, or go down in infamy? \n\nWing Commander is a space combat simulator interspersed with shipboard dialogs. Onboard the ship, you can save/load game, visit the bar to get the latest gossip, or go on to the next mission briefing, and the 3D space combat part. \n\nThe 3D space combat have you sitting in the cockpit, where you control the craft like roll, turn, up/down, afterburner, as well as fire guns and launch missiles. There are four different crafts on the Confed side, each with different flight characteristics and armament. You will have a wingman on each mission, and you should keep the wingman alive as the wingman will help you if you issue the right orders. You can also taunt the enemy. You'll be fighting several different types of enemy fighters and capital ships, and even combat a few Kilrathi aces. \n\nWhen the mission is complete, land back onboard the ship and get ready for the next one. The campaign tree have both winning and losing paths. \n\nWing Commander featured a hybrid bitmap/3D graphics  engine that allowed even 286's to display detailed 3D graphics to an extent never before possible. With EMS available, it can display even more detailed graphics and in-cockpit animations.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Wing Commander - The Secret Missions (USA).txt",
    "content": "In the first Secret Missions add-on to Wing Commander, the TCS Tiger's Claw responds to a distress call from the Terran colony in the Goddard System. Once they arrive, they find that the colony has been completely destroyed by a new Kilrathi secret weapon, with no survivors. The Tiger's Claw is then ordered to pursue the Kilrathi fleet into their own space and destroy this new weapon - without reinforcements or the ability to resupply...\n\nThe Secret Missions campaign adds 16 new missions to fly. Unlike the main game, there is no branching mission tree - progress is linear. There are also several new ships: a Confederation corvette, Kilrathi and Confederation freighters and of course the Kilrathi dreadnought with the secret weapon itself.\n\nCharacters from the main game can be transferred into the add-on, which also includes a \"Mission Selector\" to fly any of the missions from the original game. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Wizardry V - Heart of the Maelstrom (USA).txt",
    "content": "Despite the defeat of Trebor, Werdna, and L'kbreth, dark times once again threaten the kingdom of Llylgamyn.  So once again a party of adventurers must venture forth to vanquish the evil.\n\nWizardry V represents a complete revision of the gaming system used in the first four installments, with larger mazes, new spells and character classes, and an expanded system for combatting and interacting with creatures.  It is also the first game in the series that allows, but does not require characters imported from a previous scenario. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/X-Kaliber 2097 (USA).txt",
    "content": "The game takes place in the year 2097 A.D. in NEO N.Y. The city is run down and controlled by a warlord named Raptor. Raptor has unleashed an army of ruthless, mutating Morphs upon the city to enforce his brand of order. Only two special forces agents, Slash and Alix do not submit to Raptor's will. Raptor decides to hatch a plan to kidnap Alix, so Slash, and more importantly his magic X-Kaliber sword, will come to him in an attempt to try and rescue her.\n\nThe game consists of two modes. The first modes gameplay consists of side-scrolling action. The player can jump and swing a sword at enemies. The player can also deflect projectiles with the sword. The game also features one on one boss fights that are set up similar to a fighting game. The second mode is a two player duel that is set up like the one on one boss fights but is between two human controlled players.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/X-Men - Mutant Apocalypse (USA).txt",
    "content": "Because of a rise of anti-mutant activity in Genosha, Professor Xavier uses Cerebro to scan the island nation and discovers Apocalypse's presence there. Genosha's government is apparently using Apocalypse to bring their mutant population under control. However, Xavier suspects Apocalypse to follow his own plans and sends five X-Men, Cyclops, Wolverine, Psylocke, Beast and Gambit, to investigate.\n\nX-Men: Mutant Apocalypse combines the gameplay of a side-scrolling brawler like Final Fight with elements of a platformer, that is, players have to fight various enemies and survive the occasional jumping-puzzle. Most levels also feature mid- and end-bosses in form of robots, monsters or known Super-Villains.\n\nEach character has unique abilities and special moves: Cyclops uses his Optic Blast to attack enemies from a distance, Wolverine can climb walls, Psylocke is very agile and the best jumper of the team, Beast can cling to the ceiling while Gambit throws explosive cards at his enemies. Special moves are quite similar to those found in Street Fighter II (Wolverine has a Dragon-Punch-style attack and Gambit's Double Kick is virtually identical to M. Bison's Scissors Kick), and require similar button combinations.\n\nWhile most stages are unique for each character, some can be played with any of the X-Men. Progress is saved via password. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Yoshi's Cookie (USA).txt",
    "content": "Yoshi's Cookie is a tile-matching video game in which the player is given a playing field populated with cookies of several types, arranged in a rectangular grid. The main objective of each level is to clear the playing field of all the cookies. The player mixes and matches the cookies such that entire rows or columns consist only of cookies of the same type. The player controls a cursor on the grid that is used to rotate individual lines in a manner similar to a Rubik's Cube. When a single row or column contains all matching cookies, the row is cleared from the grid. The grid grows in size from cookies entering from the top and right sides of the playing field and a game over occurs when the grid overflows. A sixth cookie type, shaped like Yoshi's head, occasionally appears that acts as a wild card, used to help clear lines of any other cookie.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Young Merlin (USA).txt",
    "content": "After trying to rescue a drowning young woman, the the hero of Young Merlin is drawn into a fantasy world which is threatened by the evil Shadow King. Naturally, it is your job to save this world and also to rescue the aforementioned woman who has been kidnapped by the Shadow King. This is done in typical action adventure fashion: you have to fight enemies using spells that are gathered during the progress of the game as well as solve puzzles and use several objects. What sets Young Merlin apart from other action adventures is the fact that there is no text in the entire game, instead, icons are used to represent conversations, furthermore, the game uses passwords,instead of a battery to record the players progress.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Ys III - Wanderers from Ys (USA).txt",
    "content": "Adol's long time friend, Dogi wishes to return to his home town of Redmont after hearing about strange disturbances that are happening there.  Always looking for an adventure, Adol joins him and soon finds out the cause of this new evil.\n\nYs III breaks away from the \"bumping into enemies\" battle system of the first two games and allows Adol to control his sword in a variety of directions.  As well as changing the battle system, the game is now side scrolling instead of the previous games top-down view. Adol also now has the ability to jump.  Not new to the series is the use of magical rings which give Adol different powering up abilities such as healing and shielding.  The game also uses various key items found along the way to solve minor puzzles and progress the story. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Zombies Ate My Neighbors (USA).txt",
    "content": "In the game you are a male or female protagonist (Zeke or Julia), fighting the vampires, mummies, zombies, etc. on over 50 levels (not including secrets) and saving all of the people you find. There are defined number of neighbors you save on every level. When they are free then \"Exit\" door opens and you jump on next level.The levels differ from mall and grocery store to beaches and football fields. Using different weapons such as bazooka or water gun you have to kill the bosses such as huge babies, dragons or ants at the end of levels. You can play the game with two players cooperatively. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Nintendo SNES-SFC/text/Zoop (USA).txt",
    "content": "Fast-paced action-puzzle game where the player eliminates colored shapes that are approaching his alter ego, another colored shape, before they reach the top, ala Tetris.\n\nIn order to eliminate the other shapes, you must point your piece at it and 'fire'. If the shape is the same color as your piece, the shape is eliminated, as well as all of the shapes of the same color behind it, until your piece hits a piece of a different color. If the shape is of a different color, or it is hit when collecting a line of similar shapes, your piece exchanges colors with the shape.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Game Gear/text/Arena (USA, Europe).txt",
    "content": "In the year 2026, a corrupt government has used a television broadcasting company called Astralnet Broadcasting Company to secretly control the population and keep them brainwashed.  During these times a group of pro-democratic rebels, led by Guy Freelander, has obtained a secret taped meeting between top government officials and ABC directors discussing their diabolical plans.  Convinced that if they play the tape through ABC's broadcasting, they can convince the repressed population to rise up against the current regime.  The only problem that stands in their way is the way to the broadcasting center, a death trap nicknamed the maze.\n\nThe player takes control of Guy Freelander and must transverse this maze, with 20 levels and 100 different rooms in total, using a standard gun and a knife to take out security guards, androids, mutants and must avoid various pitfalls and traps scattered in these rooms.  The view of the game is isometric and has a password feature to allow players to pick up and return to the previous room they were in without having to replay the previous levels.  There are no life bars, instead the player can take four hits before their character dies with five lives.  After losing these five lives, the game will be over.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Game Gear/text/Ax Battler - A Legend of Golden Axe (USA, Europe, Brazil) (En).txt",
    "content": "Use your wits and your razor sharp sword to recapture the Golden Axe from the diabolical Death Adder. Defeat skeletons and giant bats in dark, deep chasms and caves. And summon Earth, Thunder and Fire Magic to fight gargoyles that come to life before your eyes!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Game Gear/text/Baku Baku (USA).txt",
    "content": "The Minister approaches the King to tell him that his only daughter, the Princess, wants a new pet. But the King says she already has too many, and she can't take care of so many animals. Thus the Minister purposes a contest of skill and daring to select the Royal Zookeeper. Master Piggy then sends his pupil, Polly, to participate in the contest.\n\nBaku Baku Animal is a variation on the very often copied Tetris type of game. The game has three different play modes: practice, normal and hard. It also can be played by two players against each other (except for the Master System version).\n\nThe objective is to pair animal heads with their respective food. If a rabbit head comes falling, you must make it fall on a pile of carrot tiles, dog heads with bones, panda heads with bamboos and monkey heads with bananas. There is a bonus item, the \"BB coin\", which will appear from times to times, and remove piled tiles from the playfield. Removed tiles will be sent to the opponent's playfield all at once, increasing the difficulty of the task. Polly will face several contestants, and she'll win when her opponents get their playfield piled to the top.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Game Gear/text/Coca-Cola Kid (Japan) (Translated).txt",
    "content": "Coca Cola Kid is platformer starring the eponymous mascot of the Coca Cola company in the 90s. On his way through the levels, the kid can make use of a skateboard, but has to continue by foot if knocked off. Enemies can be defeated by kicks and flying kicks, energy is -not surprisingly- restored by collecting cans of a certain soft drink.\n\nThe game was released in Japan only.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Game Gear/text/Crystal Warriors (USA, Europe).txt",
    "content": "The continent of Tyramus has lived in peace for almost a century, thanks to the four elemental crystals of the kingdom of Arliel. However, peace is threatened by the invading armies of the Jyn Empire, led by Emperor Grym, who wants to use the four crystals to rule over Tyramus. Fortunately, Princess Iris can escape with one of the crystals and now the player has to protect her and the crystal and somehow find a way to drive back the hordes of Jyn.\n\nGameplay in Crystal Warriors is quite similar to Shining Force. The player fights in turn-based battles controlling different characters like fighters, healers, rangers and mages, all with different strengths and skills. Whenever two units engage in battle, they enter a duel mode lasting for up to two turns. In this mode the player can choose between four commands: \"battle\" (attack), \"retreat\", \"spell\" and \"monster\". While the first three commands are quite self-explanatory, the \"monster\" command is interesting. Whenever a non-human enemy is defeated, it can be tamed and be used in battles. While most monsters do not have many HP they can serve as good attackers for physically weak characters or take some hits in order to protect his master.\nIn-between battles the player can visit towns to rest, buy weapons and spells or recruit new party members.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Game Gear/text/Defenders of Oasis (USA, Europe).txt",
    "content": "A long, long time ago, the legendary king Jamseed defeated the evil Ahriman, the spirit of darkness. But just before, Ahriman managed to send into the world his most horrifying servant: the dragon Zahhark. Years have passed, Zahhark was defeated by the descendants of Jamseed, but its own descendants continued menacing the kingdom of Shanadar. Many generations later, you, the young Prince of Shanadar, has to confront the evil. Zahhark's offsprings plan to destroy the kingdom, and the Prince must first seek aid in a neighboring country, accompanied by a beautiful Princess, by the Genie from a lamp, and other friends.\n\nThis is a traditional Japanese-style RPG. You control the Prince and his party members, visiting various locations, buying and finding items, and fighting random enemies and bosses in a turn-based combat viewed from first-person perspective.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Game Gear/text/Factory Panic (Europe, Brazil) (En).txt",
    "content": "Mister Greede, a corrupt tycoon and factory owner, deprives the local citizens of the goods they need and deserve. Thats why you have infiltrated his factory. Now you must manipulate the conveyor belts skillfully to deliver the correct product to the right person waiting outside, but you have only a limited amount of time. Unfortunately, thugs with bats or even guns patrol the factory. Your only weapon against these security guards is a battle cry that temporarily stuns them, but not for too long.\n\nFactory Panic consists of four rounds, and each round consists of eight stages. Before a stage starts, the game tells you how many people are waiting in line and what product they are waiting for. Rounds one and three are played in Switch Mode: step on different switches to rotate associated sections of the conveyor belt. If you get off the switch, the section rotates back to its initial position. One switch may affect more than one section. Since you can only step on one switch at a time, you have to bustle quite a bit in later stages. Rounds two and four are played in Bridge Mode: remove and install small bridges between the belts to control the flow of products.\n\nIf a person gets an unwanted product, the time remaining on the timer will decrease. Sometimes, the belt carries special items, e.g. a megaphone that makes your scream attack more powerful, or a weight that can be placed on a switch.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Game Gear/text/GG Aleste (Japan) (En).txt",
    "content": "In the first installment of the Aleste series for the GG, you play as Ellinor Waisen, the daughter of the original Aleste pilot Ray Waisen.\nAs usual, your task is to exterminate level upon level of nasties with your space ship. The usual Aleste powerup systems remains fairly intact. You still have powerup pods which release P capsules for upgrading your main weapon. On the other hand, secondary weapon upgrades are no longer released from ground bases, but from another type of flying pods. When you start out, your secondary weapon is a laser, which can later be replaced with powerups ranging from split fire to napalm rockets and target seeking power balls. Both primary and secondary weapons are in constant use, since only button 2 is used for firing both weapons at once. Due to the smaller screen estate of the Game Gear, the sprites are larger and the playfield more constrained, for which the game compensates somewhat by introducing multidirectionally scrolling sections.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Game Gear/text/Gunstar Heroes (Japan).txt",
    "content": "Chaos has broken out on the planet Gunstar-9!!\n\nThe mad Colonel Red has discovered four crystals that imprison a deadly being known as GoldenSilver, and plans on unleashing it onto the population of the planet! He must be stopped! Enter...the Gunstar Heroes, Red and Blue!\n\nUnleash some mad blasting action onto the Colonel's army and don't let him bring GoldenSilver to life!! The fate of Gunstar-9 is in your hands!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Game Gear/text/Legend of Illusion Starring Mickey Mouse (USA, Europe).txt",
    "content": "Once upon a mouse, there was a kingdom that was ruled by the selfish king Pete. One day, a terrible shadow crept over the kingdom, threatening the lives of its inhabitants. The king's adviser said the only way to stop the shadow would be for the king himself to travel out and to seek the cure. But the cowardly king Pete preferred to stay in the castle, and sent a simple laundry boy named Mickey instead! \n\nAs Mickey Mouse, you will travel through various levels in this platform game. Mickey shoots an unlimited amount of little balls on the enemies, can jump, climb on stairs, hang on ropes, and perform other tricks. Mickey can also pick up items and put them in another place, for example to access a higher level or to break a treasure chest open.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Game Gear/text/Lunar - Sanposuru Gakuen (Japan) (Translated).txt",
    "content": "This is a side-story, set in the same world as the famous Lunar RPGs:  Silver Star and  Eternal Blue. The town of Burg is populated by harvesters, and you take control of two girls, Ellie and Lena. One day, they are sent to the island of Ien where they should study magic, and there begins their adventure.\n\nThe game is a traditional Japanese-style RPG. You navigate your party through a top-down world, visiting towns and hostile areas. Enemy encounters are random, the battles are turn-based and are viewed from first-person perspective.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Game Gear/text/Magical Puzzle Popils (World) (En,Ja).txt",
    "content": "Magical Puzzle Popils is a single screen platform puzzle game. The object in each round is to go through the labyrinth until the player reaches the princess (or the princess reaches the player). The player can break blocks, climb ladders, go through portals. There are also hazards to avoid, like red spikes and enemies.\n\nBreaking blocks is the most important gameplay element. Breaking a block causes the column of blocks above it to fall one place down. The player must use this block breaking ability to change the labyrinth and create a way to the princess. \n\nThe short introduction sequence shows the back story: A beautiful princess fell in love with you! And you fell in love with her too... The wizard of forest \"Popil\" shut her in his labyrinth. Please save her! \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Game Gear/text/Mega Man (USA).txt",
    "content": "The insane scientist, Dr. Wily, has created an army of evil robots, and is using them to take over the world!  A robot called Rock volunteers to be converted into a fighting robot, Mega Man.  As Mega Man, he takes on Dr. Wily and his powerful robots.\n\nThe Game Gear version of Mega Man is an original game created by developer Freestyle, using Mega Man 4 and Mega Man 5 for the NES as its basis.  Mega Man is able to perform his slide that was introduced in Mega Man 3, as well as call his dog, Rush, for assistance.  He can also charge up his buster for a more powerful shot.\n\nPlayers can initially select any stage from a choice of four: Stone Man, Napalm Man, Bright Man and Star Man.  After defeating these four bosses, players progress to Dr. Cossack's fortress, which contains Wave Man and Toad Man as its bosses.  After they are defeated, it's off to the final confrontation with Dr. Wily himself.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Game Gear/text/Mighty Morphin Power Rangers (USA, Europe).txt",
    "content": "This is a one-on-one fighting game for one or two players. \n\nSingle players pick a Ranger (Red, Pink, Blue, Yellow, Black, or the unlockable Green) and take him or her through a series of battles against Rita's monsters. After one normal battle, the monster grows very large, and then it is time to take out the MegaZord.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Game Gear/text/Ninja Gaiden (USA, Europe, Brazil) (En).txt",
    "content": "Ninja Gaiden begins with a cinematic animation in which 2 ninjas duel to the death; one goes down. It is revealed that the doomed ninja is the father of Ryu Hayabusa. When Ryu learns of this, he embarks on a quest to find out who killed his father and why. This quest takes him to America to find an archaeologist with whom Ryu's father was working. From there, Ryu becomes embroiled in an evil, supernatural conspiracy involving a villain named Jaquio who has plans to use an ancient castle and some relics to unleash a terrifying evil upon the world.\n\nNinja Gaiden is a side scrolling game where Ryu the ninja can run, jump, and slash with his ninja sword. He can also attach to any vertical surface. Powerups are littered throughout the landscape that allow Ryu to toss fireballs and ninja stars, and perform other feats.\n\nRyu will battle through urban city settings, forests, jungles, snow covered castles, underground railroads, and ancient castles. A major feature in Ninja Gaiden are the cinematic scenes -- sometimes fullscreen -- through which the storyline unfolds.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Game Gear/text/Panzer Dragoon Mini (Japan).txt",
    "content": "Panzer Dragoon Mini is the Japan-only 8-bit version of Sega's popular 32-bit rail shooter, but due to (massive) hardware limitations, the game has more in common with other classic Sega game, Space Harrier. Taking further away from the original games, there is no rider and the game lacks any plotline.\nThe player starts by choosing one of three dragons, and from there must shoot at incoming enemies (although for most time, just avoiding incoming fire is an easier way to progress in the game). At the end of the level (each with two bosses), a password appears and allows the game to be resumed later.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Game Gear/text/Phantasy Star Adventure (Japan) (Translated).txt",
    "content": "You are an agent of Paseo on Motavia. One day, in December 1268 A.W, you received a letter at base. The sender was Ken Miller. He was a scientist as well as an old friend of yours. He had immigrated to Dezolis to conduct his research years ago.  These were the contents of the letter: \"How are you?  I have succeeded in the discovery of the century. You must come and see it.\"\n\nYou travel to the planet Dezolis and visit a town called Carsonville. There, you find out that Dr. Miller has invented a machine that can make human beings immensely powerful. The problem is, Dr. Miller is kidnapped, along with his invention. With the help of his sister Laila you have to solve this mystery.\n\nThis game is a Japanese-style adventure game set in the Phantasy Star universe. You interact with the game world by choosing available options such as \"See\", \"Talk\", \"Move\", etc. There are a few puzzles to solve, but the largest part of the game is dedicated to exploration and dialogue with the characters.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Game Gear/text/Phantasy Star Gaiden (Japan) (Translated).txt",
    "content": "Long ago, the evil Cablon ravaged the Copto planet, a light year away of the Algol system. When he was defeated, he was sealed on a planet discovered by Alis, the heroine of the first \"Phantasy Star\", a planet that was also known as Alisland. In this gaiden (side-story) set in Phantasy Star universe, you play the role of two young people from the village Tedo - Alec and Mina. One day, Mina finds an old artifact. While wondering what that could be, the young people learn that Alec' father was attacked and kidnapped by bandits. Determined to find him, the two heroes embark on a dangerous journey that will eventually lead them much further than they suspect. \n\nPhantasy Star Gaiden plays pretty much like any other Phantasy Star starting with the second game: both towns and dungeons are in top-down view, the turn-based battles are viewed from first-person perspective. The gameplay is standard console-style RPG: you should fight random enemies, gain experience and gold, buy better equipment, visit many towns and dungeons, etc.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Game Gear/text/Power Strike II (Japan, Europe) (En).txt",
    "content": "Power Strike II is an Action game, developed by Compile and published by Sega, which was released in Europe in 1994.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Game Gear/text/Ristar (World).txt",
    "content": "An evil tyrant with a silly name (Greedy) has arisen to control a solar system full of sentient beings. He Corrupts the leaders of each world and thereby enslaves the populace. He has sent his minions in the disguise of planet natives into the worlds to enforce his rule...\n\nA lush forest planet, the last planet in the tyrants agenda manages to send a call of help to the solar systems ancient hero before being over run. However Greedy even has managed to remove the great hero. Yet he did not count on the interference of the hero's sun... Ristar!\n\nYou control Ristar in his attempt to liberate the solar system. You will stretch his arms to grab enemies and summarily head-but them. Your long limbs will be used to climb various surfaces. Being a star adds even more to the unique gameplay, already chock-full of action and puzzles.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Game Gear/text/Royal Stone (Japan) (Translated).txt",
    "content": "Royal Stone: Hirakareshi Toki no Tobira is a strategy RPG for the Sega Game Gear and a sequel to Crystal Warriors. The game follows the story of Eva, a former knight from Martalia, exiled from her kingdom for betraying the trust of the people and turning against her own team.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Game Gear/text/Shining Force - The Sword of Hajya (USA).txt",
    "content": "This is not a sequel to the game  Shining Force: The Legacy of Great Intention for Genesis, but a sequel to a  Shining Force Gaiden, which was released only in Japan.\n\nAfter a prolonged war, the kingdoms of Cypress and Gardiana decided to join forces fighting the evil empire of Iom. Nick, the Prince of Cypress, that was conquered by Iom, had his hand turned into stone during the last battle, and therefore cannot wield his legendary Sword of Hajya. Nevertheless, he tries to recruit people who would help him to gain his kingdom back.\n\nThe game is a strategy RPG. You command a large party composed of several units, and most of the game is spent in battles. The turn-based battles occupy the entire location; during your turn, you command your troops to move around and to attack. Your main heroes gain levels in a RPG fashion. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Game Gear/text/Shining Force Gaiden - Final Conflict (Japan) (Translated).txt",
    "content": "One of the three gaiden (side-story) Shining Force games for GameGear. The events of the game take place in a time period between the first and the second mainstream Shining Force games. After Max, the leader of the first Shining Force, defeated the Dark Dragon, peace was restored to the world. However, the sorceress Mishaela took control over the forces of evil. Pursuing her, Max' comrades got injured and were forced to quit. Upon returning back to their hometown, they found out Mishaela has already taken the Elder hostage. Lead by the young warrior Ian, the Force has to find Max and to defeat Mishaela.\n\nThe game is a strategy RPG with gameplay similar to other Shining Force games. You control a large party of warriors (you can choose the characters yourself from many available). The game consists mainly of large strategic turn-based battles, in which you navigate your characters around and attack the enemies physically, or cast area-based spells.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Game Gear/text/Shinobi (World) (Rev A).txt",
    "content": "As with the original games, Shinobi for the GG (the first portable member of the franchise) is a action side-scroller in which you take the role of an elemental ninja seeking revenge, your task to clear several stages filled with evil ninja and other assorted enemies.\n\nNew to this release is the MegaMan-like ability to select which stage (all also unique for this release) to play in any sequence.  Each stage contains a fellow elemental ninja held prisoner, who gets released once you complete the level.  You can then switch between available ninja mid-stage to take advantage of their unique abilities (green ninja double jumps, blue ninja has a grappling hook, yellow ninja walks on water, etc.) which become a necessity to successfully complete all the levels.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Game Gear/text/Shinobi II - The Silent Fury (World).txt",
    "content": "The second Shinobi game for the Game Gear, its a 2D side-scrolling platform game with basic strategy elements. You have to rescue the four elemental ninjas and their corresponding crystal. When you rescue a ninja they join up with you and you can switch to them. Each ninja has a different power and ability which must be used in order to progress through the game. The first four levels can be played in whichever order you want, when both the ninja and crystal have been recovered from all the levels the final level is unlocked. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Game Gear/text/Sonic Chaos (USA, Europe, Brazil) (En).txt",
    "content": "Join Sonic & Tails in another adventure to defeat the evil Dr. Robotnik. It's a robot smashing, tail burning good time. Oh and BTW this gamegear game is the japanese version, the equivalent English version is Sonic the Hedgehog Chaos\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Game Gear/text/Sonic Drift (Japan) (En).txt",
    "content": "Sonic Drift is a Sonic the Hedgehog racing game. The evil Dr. Robotnik has stolen the chaos emeralds and you have to win them back in a racing tournament. In Sonic Drift, you can play as Sonic, Tails, Amy, or Robotnik. Sonic Drift can also be found on Sonic Adventure DX and Sega Mega Collection Plus. There are six levels in each game and three different  tournaments, totaling 18 levels.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Game Gear/text/Sonic Drift 2 (World).txt",
    "content": "Sonic Drift 2 is the sequel to Sonic Drift, also on the Game Gear and the first in the series to be released outside Japan. One of the new things in the sequel is a lag boost system, which means that anyone who is behind gets a boost to catch up again. This keeps the action in the game. Another new thing is that the gadgets touched while racing do not come into effect immediately. They need to be triggered manually by pressing up on the D-pad.\n\nThere are 3 GPs to compete in and each GP has 6 tracks. The names of the GPs are:\n\n1. Purple Chaos GP\n2. White Chaos GP\n3. Blue Chaos GP\n\nRacing skills can be improved in the Free Run mode on any of the tracks, or, with a Gear-to-Gear cable and a spare copy of the game, direct competition against another human player in the versus mode.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Game Gear/text/Sonic The Hedgehog (Japan, Europe, Brazil) (En) (Rev 1).txt",
    "content": "SEGA's mascot Sonic the Hedgehog made his debut in a famous Genesis title, but Sega's 8-bit systems got their own version of the platformer, featuring the same story and gameplay style, but different levels. To stop the evil Dr. Robotnik, Sonic must traverse six zones consisting of three levels each. Most of the zones are based on those in the original game, but some are entirely new. Enemies and power-ups are mostly the same as well. Sonic can pick up golden rings for protection (when hit, he simply loses all of his rings instead of a life) and bonuses: 100 rings gain Sonic an extra life, and 50 remaining rings at the end of a level allow access to pinball-themed special stages full of bumpers and springs. The final level of a zone is always a boss fight against Robotnik. Sonic should also collect the six Chaos Emeralds to keep them from falling into Robotnik's hands. In a departure from the original game, these are not hidden in the special stages but somewhere in the regular levels.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Game Gear/text/Sonic The Hedgehog - Triple Trouble (USA, Europe, Brazil) (En).txt",
    "content": "Dr. Robotnik has stolen all the Chaos Emeralds, yet again, but when the experiment for his new weapon goes wrong, the Emeralds get scattered across the island. While Sonic & Tails are out searching for them, Robotnik finds the yellow emerald and convinces Knuckles the Echidna that Sonic wants to steal all the other Emeralds. While all this is happening, Nack the Weasel seizes his chance to take the emeralds for himself while everyone else is pre-occupied. Now it's a 4-way race to retrieve the emeralds.\n\nThe gameplay is like the other Sonic titles, but this is only available on the Game Gear. The player can choose to play as Sonic or Tails (who can fly), and you're trying to reach the Chaos Emeralds before anyone else. A change from other Sonic games is that when hit, all rings are not lost, only a set amount (3050 depending on the level) is lost. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Game Gear/text/Sonic The Hedgehog 2 (World).txt",
    "content": "Coming back from the vacation Sonic took after foiling the plans of Dr Robotnik, he finds that Tails and all his other animal friends are missing. Sonic finds a letter waiting for him, that reads:\n\n\"Dear Sonic,\n\nRobotnik is back, and he's captured all the animals on the island! He is holding me in a place called the Crystal Egg. In order to free me, you have to find and bring the six Chaos Emeralds.\n\nRobotnik made me write this. He says he's waiting for you, and he's created six really nasty robots in order to 'get rid of you once and for all.' I don't know what he has planned, but Sonic, please be careful!\n\nSincerely, Tails.\"\n\nThat being more that enough motivation for him, Sonic races out to defeat Robotnik again.\n\nThe master system version is totally different than the Sonic 2 for Genesis. Tails obviously doesn't accompany you, like he can in the Genesis release. Sonic can also not do his infamous buzzsaw roll by simply ducking and pressing jump.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Game Gear/text/Streets of Rage 2 (World).txt",
    "content": "After Axel Stone, Blaze Fielding and Adam Hunter destroyed the evil Syndicate leader, Mr. X, the city became a peaceful place to live, and each one of them followed their own paths. One year later, after their reunion, Adam's brother Sammy returned from school to find their apartment in a mess, and Adam nowhere to be seen, and after calling his two friends, one of them notices a photo of Adam chained to a wall, next to someone they knew very well - Mr. X, who returned to turn the peaceful city once again into a war zone. Now, Axel, Blaze, Sammy, and Axel's good friend Max, a pro wrestler, must head out to stop Mr. X once again...hopefully for good...\n\nStreets of Rage 2 differs from the previous title in several ways. There are changes in both graphics (characters now are bigger, more detailed and with more animation frames, and scenarios are less grainy) and gameplay (the rocket move was replaced by a special move that doubles in offense and defense along several new moves), along other new features such as life bars (and names) for all enemies and the radically different new characters.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Game Gear/text/Super Columns (USA, Europe).txt",
    "content": "Super Columns is an updated version of Columns with more options of play, but with the same setup, maneuvering falling blocks into groups of three or more to eliminate them from the screen.  Along with a Versus mode there is also a Story mode as well.\n\nAn evil sorcerer by the name of Surhand has stolen a mystical amulet which brings peace and serenity to the land of Phoenicia and hopes to use it to bring death and destruction to the land.  The player must battle their way through his four guards in a series of best two-out-of-three games of Columns in order to face off against Surhand and bring peace back to the land.\n\nThe Flash Mode also returns to this version as well as the new Endless Mode where the main objective is to score as many points as possible before the timer runs out.  There are also special columns throughout these modes such as Glitter Columns which eliminates all blocks of the same color on the screen at once as well as Stone Block Columns which can only be eliminated through magic power-ups that can be obtained by eliminating the base blocks.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Game Gear/text/Sylvan Tale (Japan) (Translated).txt",
    "content": "In \"Sylvan Tale\", you play a young warrior who strolls in the forest and suddenly notices a mysterious glowing object. He touches the object, and gets teleported to the land of Verda. A mysterious voice talk to him, saying that he has to visit six fortresses scattered across the land, and to retrieve six magic droplets, which is the only way to save the inhabitants of Verda from perishing.\n\nThis is an action adventure with RPG elements. You wander around the world, visiting towns and descending into dungeons, fighting enemies in real-time combat and getting various items (for healing, HP-increasing, etc.). As the game progresses, you will also collect items that can be used to transform into various creatures with different abilities. As a mole you can dig and destroy certain stones, as a merman you can swim, as a turtle you can use your shell as protection, as a mouse you can go through mouse holes and manipulate certain magnetic stones, and as a bird you can fly and dodge attacks.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Game Gear/text/Tails Adventure (World) (En,Ja).txt",
    "content": "Before Tails met Sonic the Hedgehog he lived on Cocoa Island, a place that isn't on the map. It's an island pulled up by the Chaos Emeralds. Suddenly, while relaxing, Tails hears an explosion that seems like it's coming from inside the island. A Flicky tells Tails that Battle Kukku has invaded the island. He also tells Tails that Battle Kukku is mining here for the Chaos Emeralds, to obtain it's power. Tails gears up and heads for his quest to find the machine parts to build his weapon to defeat the evil Battle Kukku. There are however major plot differences between the Japanese and the western release. In the US and European version of the game it tells the story how Sonic and Tails decide to go separate ways for a while. Tails finds an unknown island and decides to dub it Tails Island. While resting there, a large explosion occurs and a Flicky tells him birds are invading the island.\n\nUnlike the other games in the series, this spin-off is less of a traditional platformer, but has a much slower pace with rpg elements and a focus on puzzle-solving. Tails can walk, jump, fly (momentarily), hang on ledges and throw bombs. He starts with ten health points that can be replenished with rings, but the amount can be extended to 99 by collecting chaos emeralds. In the twelve stages Tails can collect up to 26 items. Per level however, he is only allowed to bring along four and this adds a tactical dimension. One of the most vital tools is the Remote Robot that can squeeze through small areas that Tails cannot reach. Underwater he changes into the small submarine Sea Fox.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Master System/text/Action Fighter (USA, Europe, Brazil) (Rev 1).txt",
    "content": "This is a top down vertically scrolling shooter, in which you start off as a motorbike. You are quite vulnerable to attack at first, but power ups come in the form of a Sega van which you have to dock with. The first time you dock you get double fire, the second time gives you a rocket, the third gives a rear force field and the fourth invulnerablility.\n\nBy destroying cars and bikes that appear on your way, you can collect A-F letters. Collecting A through to D allows you change into a sportscar which is less vulnerable to attack, but not as nimble. Collect all the letters in order to be able to transform into a high tech plane. This is the final stage of one of the five missions. Only the high tech plane can guide you to your destination in which your main target is hiding.\n\nThere is also time limit in which you have to complete the mission. It is advisable to transform into the high tech plane as fast as it is possible.\n\nPicking up flags gives you bonus points with 10,000 points gaining you an extra life.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Master System/text/Aladdin (Europe, Brazil) (En).txt",
    "content": "Sega's 8-bit systems received a unique adaptation of Disney's 1992 animated film Aladdin.\n\nLike other versions, it is a side-scrolling action game. The player controls Aladdin, making his way through a variety of locations, including the streets of Agrabah, the Cave of Wonders, the Sultan's palace and more. Gameplay takes several different forms: some levels are chases, where Aladdin runs automatically, but must be made to jump over chasms or rolling rocks and barrels, evade falling objects and avoid getting caught by a guard. Other levels are platforming affairs: Aladdin must run, jump and climb, find keys or switches to open doors while searching for the exit. Rocks can be collected and be thrown to dispatch enemies or hit buttons otherwise out of reach. Finally, there are also several magic carpet rides in the game, in which the level scrolls automatically and the player must make sure to avoid any obstacles in the way. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Master System/text/Alex Kidd in Miracle World (World) (Sega Ages).txt",
    "content": "Many centuries ago, on the planet Aries, there lived a boy called Alex Kidd. For seven years, he lived on Mt. Eternal studying Shellcore, an ancient art that makes one strong enough to break rocks into pieces. As he was leaving the mountain one day to travel to his spiritual homeland, a dying man told him that the peaceful city of Radactian was in grave danger. Before taking his last breath, the man gave Alex a piece of a map and a medallion made of Sun Stone.\n\nThere are eleven locations in which Alex must explore, each of them has its own unique dangers. In each location, Alex can collect bags of coins, which can be used to buy items at the shop and are used to help Alex get through each location (eg: motorcycle, peticopter, power bracelet, etc.) There are also traps that Alex must avoid like the ghost that chases him. He can also collect the Telepathy Ball that will help him read people's minds.\n\nLater, Alex learns that in order to save Radactian from destruction, he must first defeat Janken the Great, Emperor of the planet Janbarik (he got his name from his expertise at the game of Janken -- or what people call \"scissors, paper, stone\" in the Western World. Janken has sent his henceman all over Radactian to prepare the game for Alex as he passes by them. In order to get past them, Alex must win three times at Janken. If he loses, he is turned to stone and vanished from Radactian forever. Later on in the game, Alex must play with the same henceman, but only this time, when Alex wins, they decide to play dirty.\n\nAlex uses his fists to wipe out some of Janken's enemies such as birds, sea horses, bats, monkeys, frogs, and a few others. If his quest to save Radactian from the evil hands of Janken becomes difficult, he can instead use the power bracelet to perform the \"Shocking Waves of Destruction\", an ancient trick in the art of Shellcore.\n\nBefore Alex comes face-to-face with Janken, he should rescue his brother, Egle, from imprisonment, and get the letter and two medallions.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Master System/text/Alex Kidd in Shinobi World (USA, Europe, Brazil).txt",
    "content": "Alex Kidd continues his adventures in Alex Kidd in Shinobi World, featuring remixes of the music you heard from Shinobi, and featuring the common enemy: Ninjas.\n\nThe Dark Ninja, whom was banished 10,000 years ago, has returned to rule Miracle World. He also takes young Alex's girlfriend and use her as a sacrifice. To help Alex defeat the Dark Ninja and rescue his girlfriend, a god enters Alex's body, causing Alex to become a ninja master.\n\nThere are four rounds, with three levels each, and has Alex travel through locations like office blocks, construction sites, shipyards, and jungles. He must go through each level defeating ninjas and other wildlife. In the last levels, he must defeat bosses including Kabuto, Heli, Robster, and Hanzo. To survive some levels, you must learn the secret jumping technique, described on page eight of the game's instruction manual. You start the game with three lives and are presented with an energy bar with three units, but you'll lose one if an enemy touches you. Furthermore, If you lose all three energy units, you lose a life, and if you lose all three lives, the game is over.\n\nAdditional energy units can be obtained by collecting hearts that can be found by breaking treasure chests. The maximum units you can get is six. From there, the heart is replaced by a mini-Alex. Collect this and you've earned yourself an extra life. You'll get hearts if you have less than six units. \n\nYou can also get weapons like spears and power swords by breaking these treasure cheats. However, if you're lucky, you can obtain a Tornado icon, letting you transform into a tornado while mini-Tornados whirl around the screen, seeking enemies. This allows you to either go left or right so your enemies get sucked in and are knocked out.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Master System/text/Asterix (Europe, Brazil) (En,Fr) (Rev 1).txt",
    "content": "Getafix, the Druid whose potion has kept his village from falling in Caesar's hands, has been kidnapped! Join Asterix and Obelix as they try to rescue the druid and save the village!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Master System/text/Aztec Adventure (World).txt",
    "content": "Aztec Adventure is a traditional action/labyrinth game in which the player assumes the role of Nino, an explorer whose aim is to find the Aztec Paradise.\n\nThe labyrinth is full of Aztec mythology creatures and other ancient Mexican references.\n\nAlthough it is a maze game, the controls are very simple and easy to manage.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Master System/text/Battle Out Run (Europe, Brazil).txt",
    "content": "Battle Out Run is Sega's answer to Taito's Chase H.Q. You drive a red sports car and must apprehend eight target vehicles in selected cities across the USA, including Los Angeles, Chicago, Miami, and New York. You have to do this while avoiding yellow cars and other obstacles. Halfway through the eight stages, you enter a shop that allows you to upgrade your car and get some nitros, as long as you have money, and you will be rewarded if you apprehend the vehicles. This can be done by bumping into them to disable them. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Master System/text/Bomber Raid (World).txt",
    "content": "Fly your plane through five levels, shooting enemy planes, submarines, helicopters, and other enemies along the way, and use your equipped cluster bombs if necessary. You need to destroy a target that is outlined in your mission briefing. You have three lives and limited cluster bombs. To help you along the way, you can shoot a power pod \nto score points, increase your firepower, and gain some help from fellow squadrons.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Master System/text/Buggy Run (Europe, Brazil) (En).txt",
    "content": "Buggy Run is a game that lets players race dune buggies in a championship over 15 possible tracks (plus 4 in 2 player mode) each winning money that can be used for dune buggy upgrades.  There are 4 different modes that can be played in single player mode that includes Race, Vs Com, Freerun, and Battle.\n\nIn the main mode Race the player is given $20,000 starting cash that can be used to upgrade the buggy. The upgradable features of the buggy are Tyres (grip), Engine (speed), Suspension (limits bounce), Steering (cornering), Transmission (performance). All the upgrades cost $10,000 for level 2, $30,000 for level 3, and $50,000 for level 4 however the player doesnt need to get them in order. There are also special upgrades to buy that includes $5000 for a mine (drops behind and if another car hits then it is blown up until reset), $5000 for Nitoro (gives the players car a short speed boost), and $10,000 for extra capacity of special items (starts with 2 slots to a max of 6). Special Items must be used in the order they're placed in the slots.\n\nWithin the race the player will be racing 4 other cars to a race to the chequered flag on an isometric scrolling track. Some hazards on the track are lumps and jumps, bumps, rough road and mud. Appearing on the track are special power-ups that are red or white boost and extra money also a random that selects between the two. The prize money for winning is $30,000, 2nd gets $20,000, 3rd gets $10,000, and last gets $5000 to spend on the upgrades and power-ups between races. There are 3 stages of racing that is beginner, intermediate, and expert that have 5 races each. The player must qualify for the next stage or else it will be game over.\n\nIn Vs Com the player plays the computer one on one on any track of the player's choice. All the upgrades for the buggy for the player and the computer are done though allocating a set number of points to varies upgrades. All the item slots can by used for either the nitoro or mine. \n\nFreerun is a time trial where the player races alone without upgrades on any track against the clock. \n\nBattle mode is where the player picks 3 computer players to battle on a round arena with the objective to knock the opponents off with the last player on the arena winning.\n\nThere is also a two players mode that include Race, 1P vs 2P, and Battle.\n\nIn 2P Race there is $30,000 for both players to upgrade there cars before placing them on a track with a fixed overhead view where they play 2 computer opponents. There are 4 different themes to pick from.\n\n1P vs 2P is just the two players battling it out on one of 4 tracks each with 4 different themes. Buggy upgrades are done though allocating a set number of points.\n\nBattle is the same as single player battle only with 2 players and 2 computers.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Master System/text/California Games (USA, Europe, Brazil).txt",
    "content": "California Games was the original \"Extreme Games\"  what today's generation might call \"X-Games in the sun\".  Players can select sponsors (absent in some versions) and compete in events such as skateboarding, footbag, surfing, roller skating, flying disc (frisbee) and BMX.  The surfing event is ranked by judges, which give a score to help the players improve their routine.\n\nThe Atari versions (2600 and Lynx) of the game omit the flying disc and roller skating events, while the Genesis version omits only the flying disc event.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Master System/text/California Games II (Europe).txt",
    "content": "California Games II is the sequel to the smash hit 1988 game.\n\nThis time you compete in: hang-gliding, jetski, skateboarding, body boarding and snow boarding.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Master System/text/Castle of Illusion Starring Mickey Mouse (USA, Europe, Brazil) (Rev 1).txt",
    "content": "Sega's 8-bit systems received their own version of the Genesis' popular Disney platformer. Story and themes remain the same, but the game has unique levels and slightly different gameplay mechanics.\n\nTo save his girlfriend Minnie from the evil witch Mizrabel, Mickey Mouse must venture into the Castle of Illusion. Crossing six levels (including a magical forest, a toy land and a candy world), he must collect the gems of the rainbow in order to confront and defeat the witch.\n\nEach level features unique obstacles, enemies and a final boss. The enemies can be defeated by jumping on top of them. An alternative way is to pick up objects lying around (like rocks in the forest or blue balls in the toy level) and throwing them at the enemies. Mickey's ability to pick up things and carry them around also leads to puzzle-oriented gameplay. By placing objects in the right spot and jumping off of them, he can get to areas otherwise out of reach. In some levels, he also has to collect keys to open doors. A unique type of object is the treasure chest - by jumping on top of one or throwing it, Mickey gets access to its contents, which might include extra lives, a health power-up or coins to collect for points.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Master System/text/Cyber Shinobi, The (Europe, Brazil).txt",
    "content": "In the previous game, an evil army of villains, known simply as \"Zeed\" , but some of them escaped, however. \n\nTime has passed and it is the year 2XXX where atomic power plants in countries around the world are attacked, and plutonium, which was the equivalent of 100,000 megatons of explosive power, was stolen from these plants. The words \"Cyber Zeed\" was always written at the scene of the crime. Later, the world realized what Cyber Zeed had planned to do: use their nuclear capabilities to terrorize the world. Every nation sent their best forces to stop this threat, but all of them failed. \n\nJoe Musashi came forward to this great evil, and he is required to fight those who rose from the ashes and put an end to this threat.\n\nCyber Shinobi is a one-player game that consists of six rounds. You need to fight ninjas that get in your way using your fists and legs. You can also defeat them using special attacks and ninjitsu. Power-ups can be collected along the way, which will give you more shots, ninjitsu, power, and life. A boss needs to be defeated at the end of the round. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Master System/text/Danan - The Jungle Fighter (Europe, Brazil) (En).txt",
    "content": "Long ago, in the distant land of Moralos, in a time when vast jungles still covered the Earth, an evil presence emerged from its tomb beneath the ground. His name was Gilbas, and he was about to destroy the inhabitants of the land. Aganan, a great warrior, was summoned to save the troubled land and put an end to Gilbas by sealing him in the tome from where it came.\n\nUnfortunately, Gilba was successfully resurrected and another warrior, Danan, was called. His quest is to locate the three sacred objects that Aganan used to defeat Gilbas: \"The Orb of Light\", \"The Amulet of Light\", and \"The Knife of Light\". \n\nThere are about four rounds to complete, and has Danan going through exotic locations defeating enemies such as valkyries, ogres, bees, spiders, and several others. At the end of each round, you come face to face with a boss, which takes quite a number of hits to kill with your sword. Once they are defeated, they are likely to give you one of the objects that you need to defeat Gilbas. More to the story is then revealed.\n\nAssisting you with your journey are three animals: an eagle, a monkey, and some other animal that I am unfamiliar with. To get these animals to help you, however, you will need to collect three of their tokens that are found in yellow chests. These animals are quite useful in dangerous situations. The eagle, for example, can get a hold of you and fly you to safety if more than one type of enemy surrounds you. Anyway, you can get these animals to help you at any place, at any time, as long as you have three of its tokens. Yellow chests can also reveal extra strength, extra time, or extra health.\n\nThe game ends when you run out of time, or when you lose your health, and there are no second chances, unless you manage to find some elixirs, which are rare.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Master System/text/Double Dragon (World).txt",
    "content": "Set in a post-apocalyptic New York, Double Dragon is the story of Billy and Jimmy Lee, twin brothers trained in the fighting style of Sou-Setsu-Ken. Together, they manage a small martial arts training school, teaching their students in self-defense. One day, Billy's girlfriend, Marian, is kidnapped off the street by the \"Black Warriors\", a savage street gang led by a man named Willy. The Black Warriors demand the Lee brothers disclose their martial arts secrets in exchange for Marian's freedom. The Lee brothers set out on a rescue mission to crush the Black Warriors and save Marian.\n\nUsing whatever techniques they have at their disposal, from the basic punches and kicks to the invulnerable elbow strike, as well any weapon that comes into their hands, the Lee brothers must pursue the gang through the city slum, industrial area and the forest before reaching their hideout to confront the big boss, Willy.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Master System/text/Dragon Crystal (Europe, Brazil) (En).txt",
    "content": "Dragon Crystal is a dungeon crawler with RPG elements, along the lines of classics such as Rogue or Nethack. Without relying on a story, the game throws you into a randomly generated world which you should explore carefully - and most importantly, where you must survive! The complex, maze-like levels reveal their structure only after you cover the corresponding map areas. Your goal in each level is to reach a teleporter which will take you to the next one. There are also a lot of random items scattered around - weapons, armor, money, and food. Money allows you to continue the game if you die, food prevents you from starving. The enemies are visible on screen, and you fight them in a fast-paced turn-based combat, moving around and pressing direction arrows to strike with the equipped weapon. You are always accompanied by an egg which will eventually grow up to be a dragon if you have leveled up enough.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Master System/text/Enduro Racer (USA, Europe, Brazil) (En).txt",
    "content": "In this game you play the role of an endurance bike racer. The gameplay involves you racing against the clock to get to the finish line and jumping over ramps. At the end of each race you get points for how many cars or bikes you have overtaken with which you can upgrade your bike.\nThere are various different terrain for you to race on including desert beach and dirt tracks plus a number of things to slow you down or even knock you off of your bike all together. The main idea is to find the best route through each level to shave off valuable seconds in order to over take more cars and bikes.\n\nThe Japanese version of the game has more Tracks than the European and US versions have. Among  them is a snow track which is one of the hardest tracks in the game, because there is a lot of stones on the thin road.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Master System/text/Fantasy Zone (World) (Rev 1).txt",
    "content": "The Fantasy Zone is a solar system consisting of eight brightly colored, fantastic planets. The evil Menons are trying to take over all of the planets in the Fantasy Zone by using misappropriated foreign currency to build their forces. It is the player's job to recover all of the coins and save the solar system! \n\nFantasy Zone is an arcade style shooter for one or two players. The goal is to destroy all of the creatures on each planet and collect as many of the lost coins as possible. At the end of each level is a large enemy that will have to be defeated before moving on to the next world.  At various points in the game, the player will be able to find a parts shop, which allows purchasing improvements for his spaceship, including better weapons and faster engines.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Master System/text/Fantasy Zone II (USA, Europe, Brazil).txt",
    "content": "Fantasy Zone II: The Tears of Opa-Opa is the sequel to Fantasy Zone, in which you control Opa-Opa, a pretty colored ship with wings on its side. You must destroy the large creatures in each world before moving on to the next. Your task becomes difficult by other small creatures that happen to pass by. If you destroy a large creature, they will drop a dollar bill, which you can pick up and use at the shop to buy items and powerful weapons such as laser beams, x-way shots, and big wings. Another way to get money is to shoot certain kinds of enemies all in a row.\n\nMore often than not, some large creatures will reveal a warp gate rather than a dollar bill. You can go through the warp gate to get to another part of the land, and destroy more large creatures. Only one of them will have a warp gate in the form of a 'stop' sign - that is your ticket to the round boss, but you must defeat all large creatures in order to pass through it. Also like in the original can you walk on the ground to avoid approaching enemies, and spend money in the shop to get new weapons (but they only last for a limited time).\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Master System/text/Golden Axe (USA, Europe, Brazil).txt",
    "content": "In the past, a terrible war raged between the Gods, the creators of the world, and the Titans. The Titans were defeated thanks to a super-powerful weapon forged by the Gods, called the Golden Axe. Thanks to this weapon, the Titans were banished, and the Gods bequeathed the Earth to humans. However, one Titan had survived: Death Adder. He seized the Golden Axe and used it to lay waste to the world. He kidnapped the king of Yuria and his daughter and threatened to execute them if the inhabitants did not submit unconditionally. Three heroes, determined to take revenge on Death Adder, set out to find him. \nEach character has a special magical ability that can be charged by kicking small creatures that drop a potion.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Master System/text/Golden Axe Warrior (USA, Europe, Brazil).txt",
    "content": "Golden Axe Warrior is a spin-off of the Golden Axe games, a series of side-scrolling Beat'Em Ups from Sega.\n \nIn ancient times a horde of giants rebelled against the elders and a brutal war ensued. Things looked grave until finally a hero, carrying the Golden Axe, appeared and drove back the giants. Since then, the kingdom of Firewood has been ruled by a family that had mastered the power of the nine crystals to ward off all evil from Firewood. Everyone lived in peace until one of Firewood's ministers betrayed his king and sold the nine crystals to Death Adder, one of the evil giants. Death Adder has hidden the nine crystals in nine dungeons, has unleashed hordes of monsters and is threatening to take over the world. Will there be another hero who can find the Golden Axe and defeat Death Adder?\n\nGameplay in Golden Axe Warrior is very similar to The Legend Of Zelda, meaning you will spend most of your time exploring the large overworld fighting against lots of enemies and looking for the dungeons in which the crystals are hidden. Inside the dungeons you have to fight more enemies, find treasures and keys, solve simple puzzles and defeat the dungeon's boss to get one of the crystals. In order to survive against the large number of enemies, you will be able to find many different weapons and three different spells.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Master System/text/Golvellius - Valley of Doom (USA, Europe, Brazil).txt",
    "content": "In this game, you play Kelesis, a warrior who is sent to seek out Golvellius and rescue the beautiful Princess Rena. But in order to find him, you must defeat seven of his fiercest demons that were sent to stop you. These demons are found in caves throughout the valley floor, but in order to access these caves, you need to defeat some of the wild beasts that are scattered throughout the valley. When you kill these beasts, you will receive some gold, but when you are hit by these beasts, your energy will be lost. Some caves will appear when certain objects are struck with your sword. In some caves,you will find fairies, sorceresses, and wise women who will help you in many ways be increasing gold, giving you life potions, and restoring your energy.\n\nThere is a password save feature in this game. At the beginning of each area, you can enter a cave where a woman tells you what the password is, but if you die in the course of your quest, the password will already be revealed. By entering this password, you will be able to begin the game from the opening of the valley (if you get that far) with all your possessions intact. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Master System/text/Kenseiden (USA, Europe, Brazil).txt",
    "content": "In Kenseiden, you play Hayato, a fearless samurai warrior. You must get back the stolen swords and scrolls, and defeat the evil waiting in the Black Castle!\n\nKenseiden is a one-player game that comprises of sixteen levels. Each of the levels are side-scrolling, with bamboo houses or dank, haunted caves as their backdrop. These levels see Hayato beseigned by ghosts, skeletons, and other spirits of the supernatural. On his side is his curved sword, which he can swish at will against the monsters. If Hayato comes in contact with a monster, he will lose some life.\n\nAt the end of each level, you will have to fight a warlock or one of their henchmen. More often than not, there is a hut with a sealed door, but the door is not unlocked unless a warlock or henceman is defeated. You gain a new special power whenever you recover a scroll from them. These special powers range from high jumping to the ability to whirl your sword around like a windmill.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Master System/text/Land of Illusion Starring Mickey Mouse (Europe, Brazil).txt",
    "content": "Mickey Mouse is reading an interesting book and suddenly find himself in a strange, dreamy village. he is told that a curse has been placed on the village, turning its good magic into bad one. The evil Phantom, who lives in the castle in the clouds, is responsible for that! Mickey decides to help the villagers and to defeat the evil Phantom.\n\nThis is a platform jump-and-run game. There is a time limit to each level. Mickey can jump, duck, climb, and defeat enemies by jumping on them and pressing the down arrow at the same time.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Master System/text/Lord of the Sword (USA, Europe, Brazil).txt",
    "content": "The player is in the role of Landau, a man who must pass three tests in order to gain the crown of the land Baljinya, which for years has been rife with lawlessness and fear, and restore peace to the land. To pass the three tests, Landau must find the Tree of Marill, subdue the Goblin of Balala Valley, and destroy the Statue Of Evil.\n\nLandau is controlled in a 3rd-person side-scrolling view. He can explore the world map (which can be seen by pressing the pause button) freely in a non linear way, but some portions of the map will be available only after defeating certain enemies or getting certain items. The Kingdom of Baljinya has towns and villages where Landau can stop to rest (restoring his health) and gather information from the people. There are also castles which can only be entered after completing certain tasks. Between those villages, towns and castles lie different kinds of terrains, like flatlands, dark forests, mountains and swamps. Those terrains are plagued by different kinds of monsters, some specific of each terrain.\n\nThere are two weapons which can be used by Landau: a sword and a bow. The sword can be used by pressing the button 2 while standing, kneeling or jumping. The bow can be used by pressing the button 1 only when standing or kneeling. Landau cannot walk and attack at the same time. Along his way he'll find new and stronger swords and bows.\n\nLandau has only one life, but the game offers a continue feature which can be used up to 10 times.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Master System/text/Lucky Dime Caper Starring Donald Duck, The (Europe, Brazil).txt",
    "content": "The Lucky Dime Caper is a 2D platform game featuring Donald Duck in search of Uncle Scrooge's lucky dime, stolen by Magica De Spell.\n\nThe game is the 8-bit counterpart for Quack Shot (released only for Sega Genesis), which also features Donald Duck, but the story and gameplay are totally different.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Master System/text/Master of Darkness (Europe, Brazil).txt",
    "content": "Master of Darkness is a Platformer very similar to Castlevania.\n\nYou play as a psychologist trying to defeat Dracula. This requires you to fight your way through several spooky locations such as cemeteries, laboratories, castles or a house of wax dolls. To defeat your enemies, you can use several primary and secondary weapons. Primary weapons are close combat weapons ranging from knifes to rapiers and axes, that differ in range and efficiency. Secondary weapons are long-range weapons (pistols, bombs etc.) with limited ammunition. The game features 5 Rounds divided into 3 stages. At the end of each stage, a boss must be defeated.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Master System/text/Miracle Warriors - Seal of The Dark Lord (USA, Europe, Brazil) (En).txt",
    "content": "In Miracle Warriors: Seal of the Dark Lord, you have been asked to recover the Golden Seal which is being guarded by the Dark Lord Terarin.  You start your quest by yourself, but you must find three other companions who will join you to defeat Terarin. You also must venture through five lands. You will find villages, towns and castles in your travels in these lands. In each, you will find or be able to buy weapons and armor (both for you and your companions), medicine and...clues. You will also find caves, dungeons, and monuments that are scattered. Some you may enter unhindered. Others will be locked...until you find the right person or learn the right spell. \n\nAlso within each land, you will encounter monsters such as evil merchants, Weasly wimps, Unmutaks, Great Lions, Gelfises, Zirods, and many more. Some of these monsters do less damage than others, and  take more damage themselves. You can either attack them yourself using your weapons or spells, or make your companions attack the monsters themselves. When defeated, most monsters will either leave behind some coins, which you can spend to buy stuff at the towns, or some items, which you can also use to defeat monsters.\n\nHowever, not all inhabitants are monsters. You will also meet merchants and travelers who might tell you where to go and what to do. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Master System/text/Ninja Gaiden (Europe, Brazil).txt",
    "content": "The Master System version of Ninja Gaiden is not a port of the well-known NES game, but an entirely new game (this includes both a different story and different levels) developed by SIMS under license from Tecmo.\n\nThe story is also about the original protagonist, the Dragon ninja Ryu Hayabusa, who returns to his clan's village only to find it utterly destroyed and the inhabitants murdered. A single survivor tells Ryu in his last seconds that the Sacred Scroll of Bushido was stolen. With the power of the scroll its owner is mighty enough the gain control of the whole world. Thus Ryu swears to recapture the scroll and the avenge the annihilation of his clan.\n\nThe game is sidescrolling platformer/ beat'em up title and incorporates most of the mechanics from the NES games: Ryu can jump and attack with his Dragon Sword. Furthermore, he can collect different kinds of Ninja Magic (which again vary form the powers in the NES games), from shuriken to fire wheels, which can only be used finitely many times, as the use up energy which again must be collected. However, instead of clinging to walls and climbing them, Ryu can push himself off the wall in this game, which must be applied for instance by jumping and forth between two close walls to get higher and higher.\n\nThe goal of each level is simply to reach the end of the level before the time runs out. Each level is divided into several sections, and at the end of each level is a boss fight. After beating a boss, a cut scene is shown which continues the story about Ryu's quest for the Bushido scroll and his revenge.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Master System/text/Ninja, The (USA, Europe, Brazil) (En).txt",
    "content": "Early in Japan's edo era, circa 1630, peace had continued in the western province of Ohkami until the feudal lord passed away. Gyokuro, an evil emperor, gained power and his oppressive rule caused great hardship to the people, and the princess who opposed him was confined to a dungeon somewhere in the Ohkami castle. Gyokuro has the Ohkami ninja under control at his command. Utilizing various ninjitsu techniques, in addition to the one that transforms them into a wolf, they protect him from the people who are his enemies.\n\nYou play Kazamuru, a great warrior who challenges the clan to a fight in order to rescue the princess. However, he can't rescue the princess unless he finds the five scrolls in the thirteen areas of Ohkami. On his quest, he must defeat various ninjas such as Kuno-ichi and Ninniku, as well as fire-blowing ninjas, slashing ninjas, and footloose ninjas. You'll explore grassy fields, shrines, river banks,  towns, and the castle itself. Some of the steps have varied gameplay. For example, you must avoid boulders in Step 2, must use logs in order to cross a river in Step 5, avoid being trampled on by horses in Step 7, and scale a cliff in Step 9.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Master System/text/OutRun (World).txt",
    "content": "Race across varied terrain in this conversion of one of the most famous arcade racing games. Your Ferrari is at the ready, complete with female passenger, over a series of short tracks.\n\nGameplay is viewed form just above and behind the car, so you can see it. The roads are full of sharp bends and hazards, contact with which can cause the car to roll and lose you time. On each section of track there is a fork in the road, allowing you to choose which direction you go in. You have to complete 5 track sections in total, out of the 15 in the game.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Master System/text/Penguin Land (USA, Europe).txt",
    "content": "Welcome to Penguin Land, where you're going underground to plan more than your next move. Because now with the help of a super advanced battery, you can actually design each game maze as you play and save your maze for more fun later. \n \nHere's the setting. You're aboard a cosmic expedition that's full of action and adventure. And guess who's in command? \n \nThat's right, you're Overbite, commander of a special Penguin Task Force.Your mission: bring fragile eggs back safely to home from a foreign land.Your journey will take you deep into mysterious caverns where dangerous animals await to attack and destroy your eggs. \n \nBut remember, your space ship and crew need you too. So be careful not to \"crack-up\" because you, can't be a hero with \"egg on your face.\"\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Master System/text/Phantasy Star (World) (Sega Ages).txt",
    "content": "Alis is a young girl whose brother Nero was brutally killed by a mysterious man known as Lassic. Nero's last words were: \"Sister, find a warrior named Odin, he can help you to defeat Lassic!\" Now Alis' dangerous adventure begins. Her first task is to find Odin. Then, with help and support from her friends, Alis will have to stop the evil Lassic and save the world...\n\nThis game is the very first installment in the long-lived Phantasy Star series. It is a futuristic RPG that uses a turn-based combat system (viewed from first-person perspective). An unusual feature of this game is that some locations are also viewed from first-person perspective. You can explore those locations by moving forward or backward, and the environments are in pseudo-3D.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Master System/text/Power Strike (USA, Europe, Brazil) (En).txt",
    "content": "The Earth is threatened by mutant plant life and their brainwashed human followers. Only one force can stop the evil vegetables from taking root: Power Strike, the most versatile jet fighter in the world.  Blast the enemy in the air and and on the ground and save the planet from the creeping green menace. \n\nThere are six rounds to complete (three in the mobile version). In each round, numbers (from 1 to 8) can be found on the ground either enclosed by a ring, or in the air carried by a ship. Getting these numbers will upgrade your firepower. Get more of the same number for a maximum upgrade. Unfortunately, whatever the type of firepower you get, you will have a limited supply of ammo, so you need to stock up on the same type of firepower if you get too low. \n\nAt the end of each round, there is an end-of-round boss which involves shooting parts of its base in order to destroy it. Intermediate bosses can be found in the last three rounds (console version only).\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Master System/text/Power Strike II (Europe, Brazil) (En).txt",
    "content": "In the early 1930s, people have lived in poverty since the great depression in 1929. Being laid off from their job, a great amount of pilots became the sky pirates in order to survive. The sea and the sky near Italy have been plundered by them. You earn a living by shooting down these pirates.\n\nPower Strike II is a top-down shooter where you must select which weapon you want to use during the game, and then fight your way through various stages, destroying both air- and ground-based enemies along the way. You can upgrade your weapons by collecting power-ups that can only be found by shooting specific ships. You will need to defeat the end-of-level boss (by destroying parts of it) in order to proceed to the next level.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Master System/text/Psycho Fox (USA, Europe, Brazil).txt",
    "content": "Psycho Fox is a platform game where you play a fox and you must get through seven worlds, consisting of three areas each. At the end of each world, there are one of seven bosses waiting to destroy you, but some of the later bosses are exactly the same as the earlier ones. The title is a bit misleading because you can also play as three other characters including Hippo, Leopard, and Monkey Boy. Each character has their own disadvantages. For example, Hippo is much slower than the other three. However, all the characters share one thing in common: they can use their fists and punch enemies as they approach them. They can also jump on them and keep knocking them in the ground until they disappear off the face of the earth. If they don't make them disappear, they will pop back out again and set out for revenge. Obstacles are scattered through each area, including spikes, cannonballs, esculators, fireballs, and steam.\n\nYou start the game with three lives. Once you touch an enemy, you lose a life. Lose any of your lives, and the game is over. If the game is over, you can continue where you left off. There are several items to find, and these can help you on your quest, and one of these items are eggs. If you break any of these eggs, either the \"switch\" item or the invincibility item is revealed. If you're lucky enough, a white bag is also revealed, but more often than not, one of your enemies can pop out from inside the egg. One egg will reveal a bird which you can carry for the rest of the game. This bird may be nothing but a pest, as it hinders your progress, but you can throw it at enemies to knock them out. It can also be used as a backup, meaning that you can have enemies touching you, but it is the bird that is killed, not you.\n\nThere is little chance that you'll find a white bag inside an egg, unless you go up into a secret area, which can often be found if you jump on springs that are scattered throughout the level. These white bags are useless, until you get to the bonus areas, which are at the end of each area. In these bonus stages, you can place a number of foxes on a path depending on how much white bags you've collected throughout each area.\n\nWhen you complete Psycho Fox, you are treated to a funny ending.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Master System/text/R-Type (World).txt",
    "content": "R-Type is a side scrolling shoot 'em up best known for its extremely tough and strategic gameplay.  You control the R-9 spaceship as it launches a last-ditch effort to repel the evil Bydo empire.\n\nThe R-9 comes equipped as standard with a small gun which can only take down the smallest of enemies without firing several shots. By holding down the fire button, it can be loaded up so as to release a large burst of energy, eliminating all but the strongest enemies in its path. From time to time, pods will come flying in your direction. Upon being shot, they release an upgrade. The first one will invariably be the one called \"The Force\", which is a weapons pod that clings either to the front or the back of your ship, absorbing any enemy bullets or acting as a bumper with which you can fly head-on into them. You can also use it as an offensive weapon by firing it and pulling it back in. Mastering the Force is vital to surviving in R-Type, since it must be used both as protection against bullet clusters, as a remote controlled cannon, and in order to clear the screen from obstacles. Other upgrades give you target-seeking missiles or a bigger main gun. Different gun types, differentiated by their colour, serve different purposes. The blue one sends laser beams bouncing across the screen (good for tunnels), the red one fires straight ahead, and the yellow one follows any walls it may encounter (good for artillery emplacements).\n\nThe stages of R-Type are made in an organic style, certainly inspired by H. R. Giger's artwork for the Alien movies. When it came out, it was considered trend-setting since it broke off from the stereotypical sci-fi mould of other shoot'em'ups. In part, the levels themselves are your enemy, which is exemplified by the fourth, where spider-like creatures weave webs that cover the screen and block your path, or levels with intricate tunnel systems. Still, the levels are best handled with a combination of strategy and reflexes, without the memorisation that is required of R-Type's contemporary rival, Gradius.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Master System/text/Shinobi (USA, Europe, Brazil) (Rev 1).txt",
    "content": "You control a ninja, Shinobi, who must battle his way through each level in search of hostages which must be rescued. You have shurikens, kicks and punches to defend yourself with. As well as the powerful ninja magic which can clear the screen of enemies in one go.\n\nEach level is broken down into smaller scenes and hostages are guarded by big blokes who throw swords. Watch out for gun-toting enemy henchmen and ninjas.\n\nReaching the end of each level will find you battling it out with a boss. These range from 8ft giants to helicopter gunships.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Master System/text/Sonic Chaos (Europe, Brazil).txt",
    "content": "The inhabitants of South Island are in danger! Dr. Robotnik has stolen all the Chaos Emeralds which kept the power balance. Robotnik has thrown the Emeralds in a parallel universe and is keeping the red one. Sonic and Tail must retreive all the Chaos Emeralds before the destruction of South Island.\nThis is the first Game Gear game where you can play either Sonic or Tail. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Master System/text/Sonic Spinball (Europe, Brazil).txt",
    "content": "The evil doctor Robotnik has a new plan to take over the world. He has built a new weapon, the Veg-O-Fortress on Mount Mobius and with it, he is transforming all creatures into robots. Sonic sneaks into the fortress and tries to stop Robotnik.\n\nUse Sonic as a pinball in 4 dangerous levels. Score points, get rings, collect Chaos Emeralds and destroy the boss at the end of each level. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Master System/text/Sonic The Hedgehog (USA, Europe, Brazil).txt",
    "content": "SEGA's mascot Sonic the Hedgehog made his debut in a famous Genesis title, but Sega's 8-bit systems got their own version of the platformer featuring the same story and gameplay style but different levels. To stop the evil Dr. Robotnik, Sonic must traverse six zones consisting of three levels each. Most of the zones are based on the original game, but some are new. Enemies and power-ups are mostly the same as well. Sonic can pick up golden rings for protection (when hit, he simply loses all of his rings instead of a life) and bonuses: 100 rings gain Sonic an extra life, and 50 remaining rings at the end of a level allow access to pinball-themed special stages full of bumpers and springs. The final level of a zone is always a boss fight against Robotnik. Sonic should also collect the six Chaos Emeralds to keep them from falling into Robotnik's hands. In a departure from the original game, these are not hidden in the special stages but somewhere in the regular levels.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Master System/text/Sonic The Hedgehog 2 (Europe, Brazil) (Rev 1).txt",
    "content": "Coming back from the vacation Sonic took after foiling the plans of Dr Robotnik, he finds that Tails and all his other animal friends are missing. Sonic finds a letter waiting for him, that reads:\n\n\"Dear Sonic,\n\nRobotnik is back, and he's captured all the animals on the island! He is holding me in a place called the Crystal Egg. In order to free me, you have to find and bring the six Chaos Emeralds.\n\nRobotnik made me write this. He says he's waiting for you, and he's created six really nasty robots in order to 'get rid of you once and for all.' I don't know what he has planned, but Sonic, please be careful!\n\nSincerely, Tails.\"\n\nThat being more that enough motivation for him, Sonic races out to defeat Robotnik again.\n\nThe master system version is totally different than the Sonic 2 for Genesis. Tails obviously doesn't accompany you, like he can in the Genesis release. Sonic can also not do his infamous buzzsaw roll by simply ducking and pressing jump.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Master System/text/SpellCaster (USA, Europe, Brazil) (En).txt",
    "content": "Kujakuo is based on the comic by the same name, published in Young Jump in the late eighties and drawn by Makoto Ogino. It is a tale of the occult, centred around the buddhist monk Kujaku.\n\nIn this game, Kujaku is sent out by his master, Ajari, to find out what has happened at the nearby temple of Hieizan. Upon arriving, after having fought his way through magical creatures and deadly warriors, he find his comrades slain. One of them, Kubira, is still holding on to his life, and before drawing his last breath, he utters the word \"Izumo\". Ajuri then sends Kujaku to the town of Izumo, where he encounters a deadly enemy of unknown origin.\n\nKujakuo is part adventure game  la Dj vu (or, since this is a Sega game, Hoshi o sagashite), part platform action. To get between the adventure parts, you must pass an action level, as well as a boss fight or two, just as in Cosmic Spacehead.\n\nThe adventure part has you looking at a scenery, with a text box for descriptions and lines, and a set of verbs on the right. Use a cursor to point out specific objects for your verbs.\n\nIn the platform levels, Kujaku can jump and shoot magic bolts. While the usual bolt is small, he can load up before releasing them, R-Type style. Pressing the pause button opens up the spell menu, for accessing more powerful magical spells. New spells can be learned throughout the game. Most spells are offensive, but some grant additional powers such as levitation. Each time a spell is activated, you use up your limited spirit energy. Enemies will, when killed, sometimes drop spheres that will raise your spirit energy, though.\n\nThis game was remade into Spellcaster upon its release in the West.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Master System/text/Wonder Boy (USA, Europe, Brazil) (Rev 1).txt",
    "content": "Just when things were going great with Tom-Tom and his girlfriend Tanya, some thug of a woodland king had to kidnap her and hide her away, and Tom-Tom doesn't have a clue where. That's why he has to explore deep dark forests, cross endless oceans, climb treacherous slopes, survive endless volcanoes, and even walk through clouds. But Tom-Tom will never be totally alone. You see, when he goes through the exotic locations, he has to come face to face with its inhabitants, like bees, spiders, snakes, coal-kids, frogs, bats, snails, coyotes, and octopuses, to name a few. The hatchet is Tom-Tom's only line of defense against these menaces.\n\nThere are ten areas, each containing four rounds each, but the tenth area can't be accessed unless Tom-Tom collects all the dolls during his rescue mission. During his journey, he can break open different eggs that will reveal hatchets, skateboards, mushrooms, milk, and even guardian angels. You can ride the skateboard through each round, as long as you don't collide with an inhabitant. When you complete each round while still riding the skateboard, you'll start the next round still riding it. As you progress through each round, your vitality will start to get low, but it can be increased by getting milk, mushrooms, potato chips,or fruit that appear everywhere you go. As well as the normal eggs, there are also speckled eggs that must be avoided, otherwise the God of Death will be released, and once he follows you, you'll lose vitality much quickly. At the end of every fourth round, there is a king waiting to destroy you with his fireballs or lightning bolts.\n\nThere are also warp-gates, but you don't find them, they find you. You see, warp-gates appear in rounds 1-4 of each area. If you happen to get one fruit, a special item will appear. These special items include handbags, wrist watches, a pair of shoes, a teddy bear, and a bottle of perfume. Another girl will appear and take you up to the clouds where the object is to collect as many hearts as you can without falling down or getting the item again. Once you have collected all the hearts, you can get the item to return to the surface, and more often than not, you'll get further in the round.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Master System/text/Wonder Boy III - The Dragon's Trap (USA, Europe).txt",
    "content": "Wonder Boy III: The Dragon's Trap is a direct sequel to Wonder Boy in Monster Land. When Tom-Tom defeats the MEKA dragon, the wounded beast casts a spell on him, turning him into a Lizard-Man. To regain your original human form, you have to find the Salamander Cross, hidden by the Vampire Dragon in Monster Land.\n\nIn this side-scrolling platform game, you can still buy equipment and items, but unlike its predecessor, it is not divided in sequences of levels. You are allowed to go anywhere, as long as you have the right shape or equipment. During his quest, Tom-Tom has to defeat various dragon bosses. Each win will give you a new shape with new abilities such as flying, swimming, walking on ceilings or clinging to walls, which also give you to access new parts of the world. The possible shapes are Lizard-Man, Mouse-Man, Piranha-Man, Lion-Man and Hawk-Man and the main abilities are defined by attacking power, defense points and charm points (needed for equipment by collecting charm stones). Also, certain blocks can only be destroyed by specific weapons or are only accessible to certain shapes.\n\nThe basic actions consist of attacking and jumping, and in the status screen you can equip swords, shields and armour. Special attacks include fire balls, tornadoes, arrows, boomerangs and thunder strikes. Along the way, you collect keys (only one at all times) and gold left behind by defeated creatures, and you often have to revisit places to access new areas. A password is given at the beginning of each town to continue from there. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Master System/text/Wonder Boy in Monster Land (USA, Europe).txt",
    "content": "Eleven years have gone by since Tom-Tom rescued his girlfriend Tanya from the clutches of the evil King. Word of Tom-Tom's dangerous adventure soon spread throughout Wonder Land. The people were very proud of him and gave Tom-Tom the highest honor of all - the legendary name of Wonder Boy. With the evil King defeated, Wonder Land returned to its peaceful state, and for over one decade, the kingdom was a paradise, and everything and everyone lived happily together. \nEventually, the peace was broken when a ferocious fire-breathing dragon appeared out of nowhere and took over Wonder Land with an army of evil, monsterous henchmen, causing Wonder Land was immediately thrown into utter chaos. The people were quickly taken over and the tranquil and serene kingdom was transformed into a land of demons and devils. Wonder Land was now a Monster Land. Tom-Tom was summoned to set out on a journey, destroy this dragon, and restore peace once again. Tom-Tom is Wonder Land's last hope.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Master System/text/Wonder Boy in Monster World (Europe).txt",
    "content": "\"Monster World was once a peaceful region. Then, the peace was shattered by an invading army of monsters. A young man named Shion vowed to defeat them and make his land peaceful again.\"\n\nWonder Boy In Monster World puts you in control of Shion in his quest to save Monster World from the evil hands of BioMeka.  It controls like your standard platform game - run, jump, and kill enemies.  The game is filled with RPG elements such as talking to townsfolk, collecting money to buy items, upgrading your life, and equipping a variety of armor and weapons - staying very close to the \"Zelda format\".  You can save your game to continue your quest at a later time.\n\nWonder Boy In Monster World is the third game in the Monster World spin-off series.  In Japan the game is called Wonder Boy 5: Monster World 3.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Master System/text/Ys - The Vanished Omens (USA, Europe, Brazil) (En).txt",
    "content": "Once long ago, the Kingdom of Y's fell under a reign of evil. But the Goddesses of Y's saved the Kingdom from ruin. Their feats were written in six magical books and hidden until the time the Goddesses would be needed again. A thousand years later, that time has come. You are Aron, a wanderer. An evil sorcerer named Dark Dekt is planning diabolical magic. And the Seer Sara is desperately looking for a swordsman to help her find the vanished six books of Y's. Now arm yourself and prepare for an adventure into the unknown. Where caverns and towers are filled with creatures and hoards of treasure. Where the strangest people have clues to tell you. Where your skill in combat depends on your reflexes. If you succeed, you'll have the power to call down the Goddesses. Fail, and Dark Dekt will rule the Kingdom under a reign of terror forever!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Master System/text/Zillion (USA, Europe) (Rev 1).txt",
    "content": "Are you ready for the ultimate danger? You're alone, outnumbered and there's no guarantee you'll make it alive. You're J.J. Your objective: secretly infiltrate the underground labyrinth of The Norsa Empire and steal their plans for domination. Armed with the ultra speed and power of the Zillion Laser, your mission is complex. And sheer strength will not win this one alone. You'll need more brains than brawn in this sophisticated operation. So, how will you think your way to victory? With cunning strategy and memory to guide you successfully through the maze which awaits. Where once inside, you'll find the information needed to destroy the Norsas and restore peace forever.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Master System/text/Zillion II - The Tri Formation (World).txt",
    "content": "They're at it again. The dreaded Norsa Empire is back... and stronger than ever before. This time they won't make any mistakes. Others have tried to stop them and all have failed. The evil Baron Ricks knows you are coming. And it's a trap! But you're the galaxy's last hope. Can you do what's never been done before?\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega CD - Sega CD/text/AH3 - Thunderstrike (USA).txt",
    "content": "Thunderhawk is an action game on Mega-CD that gives you control of a combat helicopter in a series of six futuristic campaigns. The original version includes a total of 60 operations with various objectives. Before flying in the sky, the player can adapt the embarked arsenal to suit it. Piloting is technical but accessible, without being as complex as other simulations available in 1993.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega CD - Sega CD/text/Android Assault - The Revenge of Bari-Arm (USA).txt",
    "content": "Launched by the alien planet Zias, an armada of androids has crushed the Earth's conventional space fleet. Desperate and defeated, The United Nations of Earth has no choice but to counterattack with its own living, fighting machine, Bari-Arm. Upgrade weapons to get the awesome firepower of the Thundercracker, Burning Wave and Chase Cannon.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega CD - Sega CD/text/Batman Returns (USA).txt",
    "content": "Batman Returns on Mega-CD is an action game that allows the player to embody the famous batman. The objective of the game is to bring down the insecurity in Gotham City aboard your Batmobile, the Batskiboat (Jet-Ski in the sewers) or directly in single combat.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega CD - Sega CD/text/Dark Wizard (USA).txt",
    "content": "Dark Wizard on Mega CD is a role-playing game that takes the player to the heart of the kingdom of Cheshire, which has fallen into the hands of the Machiavellian Velonese. Play as one of four characters of your choice and restore order and law in a world in perdition. The combat phases are turn-based and each battle won is rewarded with experience points to upgrade the character's characteristics.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega CD - Sega CD/text/Earthworm Jim - Special Edition (USA) (RE).txt",
    "content": "This special edition includes: a password system, a new world & new hidden Areas, a new weapon, over 1000 additional frames of animation. All new CD quality soundtrack, totally new endings in two of the worlds, all the extra cool ideas and special features that Shiny couldn't fit onto the cartridge are on this special edition.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega CD - Sega CD/text/Eternal Champions - Challenge from the Dark Side (USA) (RE).txt",
    "content": "Like the prequel the game follows the same pattern except with what happens next. The following is an exact duplication of the storyline viewed in the \"Access Info\" option on the game's main menu:\n\n\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega CD - Sega CD/text/Final Fight CD (USA).txt",
    "content": "The game is set in the metropolis of Metro City, a town constantly plagued by crime and violence. When the mayor, Mike Haggar, promises to clean up the city, the Mad Gear gang kidnaps his daughter Jessica and warns him not to interfere. Haggar responds going on a battle across the city to free her, bringing along her boyfriend Cody, and the ninjitsu master Guy to assist him. \n \n\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega CD - Sega CD/text/Flink (USA).txt",
    "content": "The Misadventures of Flink is a Jump'n Run set in the fantasy world of Imagica. The evil wizard Wicked Wainwright has captured the four elders and it is up to Flink, a wizard's apprentice, to set them free and defeat Wicked Wainwright.\n\nApart from the usual platformer elements, the game has a unique feature: Flink's ability to create spells. Whenever the game is paused, Flink can combine three ingredients to create a spell. Ingredients can be collected throughout the game. They are usually carried around by a certain type of enemy or hidden in treasure chests. There are ten different spells, the \"recipes\" which are contained in scrolls that are given to Flink by rescued elders or found within certain levels. The spells include different attack spells (for example a demon that accompanies Flink and attacks his enemies), a shield spell, a shrink spell, a quick grow spell that lets certain plants grow so that Flink can reach new areas of a level, magic keys that open locked treasure chests and more. \nCasting spells uses up magic energy that can be replenished by collecting magic bottles or defeating enemies. Similar to the Sonic games, when Flink is hit, he looses all of his magic energy and has only limited time to pick it up again. If he is hit while having no magic energy, he loses a life.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega CD - Sega CD/text/Heart of the Alien - Out of This World Parts I and II (USA) (RE).txt",
    "content": "Heart of the Alien is a cinematic platformer video game developed by Interplay Entertainment and Virgin Interactive and was released by Virgin Interactive in 1994 for the Sega CD exclusively in North America. It is a sequel to Another World and continues the story directly from where the original ended. The game switches the player's role from Another World; this time the player takes control of Buddy, the main character's alien ally from the previous game. \n \nThe story picks up immediately after the end of Another World. Buddy lands the pterodactyl in the ruins of his village, lays Lester down on a cot to rest and walks through the village, thinking of his past. This sequence contains many flashbacks of events that lead up to Buddy's capture and his and Lester's escape from prison. In the game, Buddy is searching for the red-eyed alien responsible for the destruction of his village and the imprisonment of his people. Buddy enters again the prison in search of the red-eyed alien. \n \nNear the end of the game, Lester who wakes back up, helps Buddy out, but then dies in the process. Buddy then goes to find again the red-eyed alien in a fortress. Eventually, he is able to find him and traps him in a cage with a beast that kills him. At the end of the game, Buddy gives Lester's body a ceremonial cremation. It is shown later how Buddy's village is rebuilt with its citizens living again in harmony.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega CD - Sega CD/text/Keio Flying Squadron (USA).txt",
    "content": "Keio Flying Squadron chronicles the adventures of Rami, the little bunny-suited member of the flying squadron tasked with the protection of the \"Special Holy Object\". Unfortunately as the game starts the object in question gets stolen by the evil Dr. Pon, and so Rami jumps atop her trusty dragon in pursuit of Dr. Pon.\n\nThe game plays as a classic 2D shooter with upgradable weapons and option characters, with a distinct cartoonish and family-friendly design.\n\nFeatures 7 levels and 3 difficulty settings.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega CD - Sega CD/text/Lords of Thunder (USA).txt",
    "content": "In the once peaceful land of Mistral, legend holds of a brave knight named Drak who has sealed an evil god named Deoric beneath the six continents of the land. However, peace never lasts. The Garuda Empire has invaded the lands of Mistral, and the six Dark Generals, led by Sornbul, have conquered the continents. Sornbul's ambition is nothing less than to resurrect Deoric and plunge the land into chaos.\n\nDuran, descendant of Drak, is the only one who can stop the Garuda Empire's mad plan, and with the power of Drak's mystic armors, he heads off to stop Sornbul at any cost.\n\nThe six continents of Mistral can be challenged in any order, each of which are filled with hordes of demons and one of Sornbul's Dark Generals. After completing all six continents the player will face Sornbul on the final island. Before a level the player can choose from one of four elemental armors, each with its own bullet spread and unique bomb. The armor's attack can be powered up several levels by finding jewels dropped by enemies. This power level, as well as the armor's health, is reduced when hit. Enemies also drop crystals that are used in a between-level shop to buy additional health, bombs, and continues.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega CD - Sega CD/text/Lunar - Eternal Blue (USA) (RE).txt",
    "content": "Come back to the enchanting world of Lunar! Join Hiro and Ruby 1,000 years after the first adventure, as they work to unlock the secrets of the Blue Spire and the strange young girl they found within it! But be careful! Forces are at work trying to revive the evil Zophar and immerse Lunar in darkness forever! Journey to distant lands in search of the Goddess Althena, who may be the only one powerful enough to stop Zophar. Along the way, you'll meet exciting new characters, fight fully animated monsters, traverse snow-covered peaks, and crawl through slimy dungeons as you work towards the terrifying climax!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega CD - Sega CD/text/Lunar - The Silver Star (USA) (RE).txt",
    "content": "Welcome to the world of Lunar, where dragons yet live and magic is valued above all else. Join Alex, the young adventurer as he begins a quest with his friends to save their land from the crushing advances of the Magic Emperor. Explore dungeons, fight terrifying monsters, and gather information from the locals as you advance toward the explosive confrontation with the Magic Emperor himself! Exciting, menu-driven combat will keep you challenged until the last. And thanks to the storage power of the CD, Lunar contains awesome animation sequences that'll get you involved in the story -- fast! Get ready for the ride of your life...\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega CD - Sega CD/text/Popful Mail (USA) (RE).txt",
    "content": "In this platform action game, you play as a cute bounty hunter known as Popful Mail. While you might think that a cute Anime chick would have no trouble making a living slashing bad guys with her sword, Popful is having a hard time making ends meet.  One day, however, Popful learns about a magician who has gone rogue and has a hefty bounty on his head. So, her adventure begins as Popful fights her way through a new adventure, and makes new friends along the way.\n\nPrimarily this is an action game with very slight RPG elements. As you make your way through the plethora of levels, you will have to collect money from slain foes. You use this money in the shops to buy weapons, armor, health, and so on. Also, this game features interaction with many, many characters through both on-screen dialog and fully animated sequences. Some of these characters become playable as you progress through the game.\n\nThis release has the same story and general gameplay style as the  earlier version, but otherwise was made from scratch, having entirely different graphics, locations, enemies, challenges, etc.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega CD - Sega CD/text/Rise of the Dragon (USA) (Rerelease) (RE).txt",
    "content": "A futuristic adventure game that borrows graphical elements from Blade Runner (in fact, the title character's name is \"Blade Hunter\").  You must find out what is killing--by horrible, spontaneous mutation--inhabitants of the city, before it's too late.  An oriental cult, drugs, and street informants are among the places you find clues.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega CD - Sega CD/text/Road Avenger (USA).txt",
    "content": "Road Avenger dates from the era when interactive movies (e.g. Dragon's Lair, Escape from Cybercity, Time Gal...) with film-quality graphics, but limited player movement, were highly popular.\n\nPlayers assume the role of an angry cop on a wild ride as he pursues a gang of bikers who killed his wife. Players need to race through oncoming traffic, squeeze between trucks, trash motorcycles and steer through lots of explosions. The only thing needed are quick reflexes to follow the instructions on the screen (with an increasing difficulty) in order to keep the animation going.\n\nThe action is shown from a first-person view and fast-paced, while still maintaining smooth and detailed anime drawn graphics.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega CD - Sega CD/text/Road Rash (USA).txt",
    "content": "This is a remake of the original Road Rash from the early nineties. For those who have not played the original, you are competing against thirteen other \"Road Rashers\" who will stop at nothing to win 1st, 2nd, or 3rd place. During the race, you have two options available to you: you can either do your best to cross the finish line, or use your weapon to bring the Rashers to the ground if they are giving you trouble. If you do the latter, your opponents will do the same to you during the next race that takes place. \n\nThere are five circuits to race: The City, The Peninsula, Pacific Highway, Sierra Nevada, and Napa Valley. Some of these circuits are dangerous. As well as the obstacles and traffic that you encounter along the way, there are also cops driving on bikes who will arrest you if you happen to crash or stop your bike near them, and you have to pay a fine in order to get in any more races. Your bike will be wrecked if you crash too many times, and you have to pay for damages, but the amount you have to pay depends on the bike that you are riding. Once you have completed the first five circuits, you have to race them again another four times - but at a much more difficult level. Manage to win all five circuits on all levels, and you win the Road Rash cup.\n\nThere are about five bikes to choose from, which are divided into three groups. Rat, Sport, and Super. You start the first level with a Rat bike, but as you proceed through the levels, it is important to pick bikes from a different bike class.\n\nIf you have no plans to win the Road Rash cup, you can choose the game's Thrash mode. The difference between this and the other mode is that there is no money involved (ie: you are not allowed to buy bikes), and you are competing against fourteen opponents. And if you wreck your bike or you get busted, you have to start all over again. Regardless of the mode you pick, you will always start in the last place.\n\nThe remake also contains FMV movies that usually depict the outcome of the races, as well as limited songs performed by various recording artists, including Soundgarden, Therapy?, Monster Magnet, and Swervedriver. These songs can be changed on-the-fly via the game's options menu.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega CD - Sega CD/text/Secret of Monkey Island, The (USA) (RE).txt",
    "content": "Deep in the Caribbean lies Melee Island, ruled by the beautiful governor Elaine Marley. The cruel pirate LeChuck is deeply in love with her - so deeply that he refuses to accept his own death! As a ghost, he dwells with his undead crew somewhere near the mysterious Monkey Island. You are Guybrush Threepwood, a young man whose only wish is to become a real pirate. At the Scumm Bar you meet three pirates who tell you'll have to complete three difficult tasks in order to be worthy of this title. Could Guybrush ever suspect that while trying to complete those tasks, he will encounter the governor Elaine Marley, fall in love with her, and face the anger of the dreadful ghost pirate LeChuck?! This is when Guybrush' adventure truly begins!\n\nThe Secret of Monkey Island is an adventure game that utilizes the command verb-based SCUMM interface first introduced in  Maniac Mansion: you construct commands for Guybrush by clicking on the appropriate verb, and then clicking on the inventory item or an object in the room you want to interact with. It is the first LucasArts' adventure game in which it is impossible to get irrevocably stuck or to die. The branching dialogue system, where you choose one of the available responses while talking to people, allows you to talk to characters in different ways without fearing a wrong choice. There are plenty of inventory-based puzzles to solve, and even \"insult swordfighting\" to participate in, where Guybrush has to prove his wit is as sharp as his sword!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega CD - Sega CD/text/Shining Force CD (USA) (5R, 6R).txt",
    "content": "This is a compilation of two strategy RPG titles from Shining Force titles:  Shining Force Gaiden (the original version released in Japan only), and its sequel, known outside of Japan as  Shining Force II: The Sword of Hajya, both for GameGear. In those games you control Nick, the Prince of Cypress. In the first game his task is to rescue Arni, the princess of Gardiana; in the second game, he has to conquer his kingdom back, that was captured by the evil empire of Iom. The re-release includes re-mastered graphics and higher quality music.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega CD - Sega CD/text/Silpheed (USA).txt",
    "content": "Silpheed for the Sega CD is a shoot-'em-up sequel to the PC title of the same name. Gameplay is similar: this is basically a 2D shooter with 3D graphics.  You move your ship in a 2D plane that reaches into the screen, kind of like a pinball table. The Sega CD version of Silpheed uses pre-rendered video for the backdrops, and filled polygon graphics for the player ship and enemies. \n\nThe story here is typical for a game of this type. The central computer system controlling the galaxy network has been hacked by terrorists.  The terrorists are using the computer to attack colony planets throughout the system.  You are the Galaxy Union's last resort: you must fight your way across 11 stages to reach Earth, and re-take control of the computer.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega CD - Sega CD/text/Snatcher (USA).txt",
    "content": "A.D. 2047. Neo Kobe City, Japan, a place of madness and decadence... A mysterious Bio-roid life form has appeared. Its true nature and purpose are unknown. Is it some country's secret weapon, or an alien from another world? They slay their victims and take their place, earning them the nickname \"SNATCHERS.\" A new police division - J.U.N.K.E.R.s - has been formed. They are trained specifically to combat the SNATCHERS. The fate of mankind hangs in the balance. The war between the SNATCHERS and J.U.N.K.E.R.s has begun!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega CD - Sega CD/text/Sonic CD (USA) (RE125).txt",
    "content": "This is a standard Sonic the Hedgehog side-scrolling action game. Dr. Robotnik has taken over the Little Planet, captured Amy, and created Metal Sonic with the goal of collecting all the Time Stones to be able to manipulate time and conquer the world.  It is up to Sonic to stop him, by rushing through levels set in different time periods, collecting Time Stones.\n\nSonic CD has features that take advantage of the CD format such as CD audio, video clips, and more levels (over 50 in total).\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega CD - Sega CD/text/SoulStar (USA).txt",
    "content": "Soulstar for the Sega CD/Mega CD is a 3D shoot-'em up that combines several different types of gameplay into one game. Some levels in this game are on a fixed path, similar to Space Harrier or Star Fox. Other levels allow your space craft to hover freely around a 3D environment, and in other levels your craft transforms into a walker robot for close-up attacks.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega CD - Sega CD/text/Terminator, The (USA).txt",
    "content": "Similar to adaptations of The Terminator on other systems, the Sega CD game is a platformer where the player controls Kyle Reese, who travels back in time from the year 2029 to protect Sarah Connor from the unstoppable killing machine known as the Terminator.\n\nThe game consists of 10 levels. Future locations include the post-apocalyptic wasteland of 2029 Los Angeles and the time displacement complex. In the present of 1984, Reese must traverse the streets and rooftops of L.A., as well as the Tech Noir club, the police station, and, for the finale, an automated factory. \n\nReese is armed with a gun with unlimited ammo as well as a limited number of grenades to dispatch the many enemies, including Terminators and HKs in the future and punks in the present. In addition to these, several bosses must also be fought. The boss battles include several encounters with the Terminator, who naturally cannot be completely destroyed until the finale, but must be driven back to keep him from harming Sarah.\n\nBetween levels, the game shows small digitized clips from the film that advance the storyline. The game also features a fully CD-based soundtrack with tracks ranging from heavy rock to electronic tunes.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega CD - Sega CD/text/Vay (USA).txt",
    "content": "Vay is the story of Prince Sandor of Lorath, and his quest to avenge the assassination of his parents and rescue his beloved Lady Elin. On what is to be the day of their wedding, Castle Lorath is assaulted by the Danek, who have been able to partially reconstruct alien mecha technology from a millennium ago. The castle defenses are powerless against the giant robots, and the king and queen are killed in the attack. The invaders steal Elin in the midst of her wedding vows. Prince Sandor, now the king of the realm, sets out to rescue his betrothed, and find a way to defeat the fearsome alien technology.\n\nThe game is a thoroughly \"old-school\" Japanese-style RPG, meaning that the focus of the game is on fighting random enemies in turn-based combat, gaining experience and gold in process, without any additional gimmicks. The characters come with pre-set \"classes\" (wizard, bard, etc.), and learn their own abilities/magic spells automatically as they level up.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Advanced Busterhawk Gleylancer (Japan) (Translated).txt",
    "content": "A side-scrolling sci-fi shooter, Gleylancer casts you as Lucia, a young pilot in the Space Fleet of starfighters that hijacks the experimental Gleylancer fighter to go explore the outer borders of known space in search of her missing father. Along the way Lucia will have to shoot down dozens of enemies in standard shooter fashion, while avoiding destruction and collecting power-ups that extend her ship's energy, upgrade weapons and gather screen-clearing bombs.\n\nThe Gleylancer comes equipped with two hovering satellites that can receive weapon upgrades of their own, and can lock their positions at specific angles to increase your firepower and protect the player from enemy attacks. Features only a single-player campaign with two different endings depending on how the final stages are completed (e.g. if Lucia's father is rescued or not). \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Adventures of Batman & Robin, The (USA).txt",
    "content": "Based on the award-winning TV series, The Adventures of Batman and Robin pits the player against the diabolical Mr. Freeze who wants to free Gotham with a huge ice cannon and his hired help of other Gotham super villains: The Joker, Mad Hatter, and Two-Face. The player can take the role of either Batman or Robin but this choice doesn't make a difference regarding gameplay. \n\nThis is a side-scrolling action game. The player basically walks from left to right while fighting numerous foes in hand-to-hand combat. Weapons which are found during the levels are used to shoot enemies from a greater distance. These weapons can also be upgraded by picking up the corresponding symbols. \n\nThere are overall four areas (one for each villain) with three levels each, including a film studio or the Gotham University. While most stages are typical fighting levels with occasional 3D effects there are also a few flying ones where the player uses the Batwing or a jet pack.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Aero the Acro-Bat (USA).txt",
    "content": "You play as bat Aero, who have to stop the mad scientist Edgar Ektor, who is trying to rid the world of amusement and fun. So you jump through the circus-style levels, using different kinds of machines such as catapults, cannons, bubble machines, platforms, etc., collecting various power-ups such as cheese, soda, keys, clocks, etc. and avoiding lethal obstacles.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Aero the Acro-Bat 2 (USA).txt",
    "content": "In the sequel to Aero the Acro-Bat you have to defeat evil industrialist Edgar Ektor once again. He is back and again with bad ideas, so you -  in the role of Aero - have to find and destroy him before he carries out his diabolical \"Plan B\". Like in the last installment, you have to jump, escape lethal obstacles and progress in time. This game features more moves for Aero, more mechanisms to use and more items to collect.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Air Buster (USA).txt",
    "content": "Air Buster is a fast side-scrolling shooter. The player controls a small craft through different levels with many enemies. Every level ends with a boss and some section speed up the gameplay, offering fast obstacle courses both horizontally and vertically scrolling. Flying orange pods release many power-ups at once, enhancing the ships with new or more powerful lasers, wing men and shields. The player can also hold the fire key to charge a blast that removes all enemy bullets from the screen and deals damage to all enemies. With an unforgiving difficulty, every hit is fatal, but the game can be continued from any points as long as there are lives and credits left. The game can be played with two players cooperatively. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Aladdin (USA).txt",
    "content": "The game from Virgin based on the 1992 animated Disney film is a side-scrolling platformer.\n\nThe player controls Aladdin, who must make his way through several levels based on locations from the movie: from the streets and rooftops of Agrabah, the Cave of Wonders and the Sultan's dungeon to the final confrontation in Grand Vizier Jafar's palace. The Sultan's guards and also animals of the desert want to hinder Aladdin in his way. He can defend himself with his sword or by throwing apples. Next to apples, Aladdin can also collect gems which can be traded for lives and continues with a traveling trader. Finding Genie or Abu icons enables bonus rounds. The Genie bonus round is a game of luck played for apples, gems or extra lives. In Abu's bonus round, the player controls the little monkey who has to catch bonus items that fall from the sky, but without touching any of the unwanted objects like rocks and pots.\n\nThe game's humorous animations were created by Walt Disney Feature Animation. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Alex Kidd in the Enchanted Castle (USA).txt",
    "content": "Alex Kidd, resident of planet Aries, is the brother to the king. One day he comes across a rumor that his long lost father, King Thor, is alive and somewhere on the planet Paperock. \n\nNow Paperock is a place where you have to be good at the game of 'Paper, Rock and Scissors' to get anywhere. With that knowledge you must take control of Alex, guide him through the odd natured, unfriendly planet and help him find his father.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Alien Soldier (USA) (Virtual Console).txt",
    "content": "In the year 2015 the planet Sierra is in the grips of Xi-Tiger's Scarlet terrorists. All hope now lies with Epsilon-Eagle, a fearsome warrior with a lethal arsenal. Armed with all the hardware you can carry, blast, shoot and burn through level after level of incredible cyber-action before confronting the mighty Xi-Tiger.\nVarious weapons to pick up and loads of boss battles. Each boss has it's own weakness, which you must exploit. You can change forms to vary your attack pattern.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Alisia Dragoon (USA).txt",
    "content": "The pace is intense. Enemies come at Alisia from everywhere. And nowhere. Battle hordes of crazed barbarians, mow down mobs of poisonous centipedes, and slay squadrons of winged gargoyles. Blast enemies in waves or one by one with multi-directional, auto-targeting laser fire. \n \nRecruit killer companions like the DragonFrye, Ball O'Fire, Thunder Raven and Boomerang Lizard. Use them to hurl blistering boomerangs, fireballs, and electrical attacks. With Alisia's super-tough fighting skills, fry enemies to a crisp. And prove once and for all that you can go hand-to-hand with evil and come out the champion!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Altered Beast (USA, Europe).txt",
    "content": "In this coin-op conversion, you are a hero raised from the dead by the god Zeus to rescue his daughter Athena. With a scenery inspired by Ancient Greece, you have to fight hordes of undead and demons, with a boss at the end of each level until you meet the god Neff, who holds the girl captive.\n\nThe title refers to your shapeshifting abilities. In this platformer, you can collect spirit balls by defeating two-headed wolves, allowing you to mutate into different beasts such as a werewolf, a dragon, a tiger, a bear and others depending on the version. Each form, tied to a level, comes with special abilities such as flight and powerful attacks, easily superseding the basic set of punches and kicks in your human form.\n\nThe game can be played in singleplayer mode, or in same-screen multiplayer co-op mode.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Arcus Odyssey (USA).txt",
    "content": "Long time ago, an evil sorceress Castomira decided to conquer the world. But a good princess revolted against her, and in a great fight defeated the sorceress. But in order to completely seal the sorceress' powers, the princess had to forge a magic sword. For a long time this sword guarded the peace of the citizens of Arcus. But now the followers of Castomira stole it, and the world is facing a great peril...\n\nThis is a  Gauntlet-like game: lots of action and magic, with items to collects, and many dungeons to free from monsters. The game is also viewed from an isometric perspective, typical for the genre. Choose one of four characters to battle your way through dungeons and castles, or play with a friend in a 2-player mode.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Atomic Runner (USA).txt",
    "content": "One windy day, there was an explosion at a nuclear power station, causing heavy doses of radiation to be poured over many people. One of these people was a young scientist named Chelnov. When he survived the deadly accident, he was possessed with abnormal powers. Having realized this, he decided to act in the cause of justice. He is determined to escape the Eastern Bloc country he called home and run and jump across the world to finish in the US.\n\nWhat distinguishes Chelnov from other platform games is its use of forced scrolling. This occurs when the screen moves continuously from left to right, forcing players to negotiate the game's many obstacles and enemies without controlling Chelnov's speed of progress. Enemies attack from left, right, above, and below, and Chelnov can switch the direction he's facing to attack enemies that are behind him. Some enemies in the game carry different types of weapons and power-ups, and when they are shot at, the power-ups drop to the ground and can be picked up.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Ballz 3D - The Battle of the Ballz (USA, Europe).txt",
    "content": "Ballz is a fighting game, but what makes it uniqe is the fact that your player is made out of balls. The game has a detailed 3D engine with a fixed camera. The game plays like your normal beat 'em up game. This game supports 2 players, 3 difficulties and up to 21 matches. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Battle Mania Daiginjou (Japan, Korea) (Translated).txt",
    "content": "The Trouble Shooters, Mania Otorii and Maria Haneda, are a pair of bounty hunters who will take any job that involves lots of trouble and plenty of shooting. Their last job saw them saving the Crown Prince Denka from the evil military mastermind Don Morguestein, presumably ending his evil plans. However, three days later, Morguestein has returned once more to take revenge upon the Trouble Shooters. Mania and Maria, never wanting to miss out on the action, head off to take care of him once and for all.\n\nBattle Mania Daiginjo is a comical anime-themed scrolling shooter, and the sequel to Trouble Shooter. The player controls the Dirty Pair-esque Mania and Maria simultaneously, with Maria following closely behind Mania, and also able to turn around and fire to the rear. Unlike most shooters, Mania has a health meter which can be replenished via pickups. There are a variety of weapons to choose from at the start of each stage, and during the game, weapons can be powered up. There is also a screen-clearing bomb attack, but it must be allowed to charge back up each time it is used.\n\nThe game includes a standard single-player mode with three difficulty settings. There is also a score attack mode which challenges the player to earn the most points possible in two minutes on a set stage. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Battletech - A Game of Armored Combat (USA).txt",
    "content": "Take control of a Matcat Mech as you fight your way through several level of mechanized mayhem.   Use machine guns, rocket launchers, homing missiles, flame throwers, mines and atomic bombs to defeat the encroaching enemy threat.  The different levels have different terrains, such as snow, ice and swamps which affect the progress of your mech.   You can also kill the littler mechs by stomping on them, which is always fun. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Beyond Oasis (USA).txt",
    "content": "In 'Beyond Oasis' a character by the name of Prince Ali is your protagonist, who wields a golden armlet with the power of fire, water, plant and shadow. You must travel your lands in search of the holder of the silver armlet, which had been hidden for generations. Recently unearthed it holds the power of chaos and destruction. You must stop them before it's too late.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Bio Hazard Battle (USA, Europe).txt",
    "content": "The civilization on the planet Avaron is by far more advanced than that of the Earth. People developed special biogenetical creatures - giant flies, crabs, and other animals. Unfortunately, those monsters rebelled against the Avaronians and threatened to conquer the planet. It is up to you to save the planet Avaron from the invasion!\n\n\"Bio-Hazard Battle\" is a horizontally scrolling space shooter. You can choose one of the four ships, each one having its own attacks. During the game, you can upgrade your ships' weapons by collecting colored balls floating around. You can store up to three different weapons at the same time, executing attacks in different directions. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Blades of Vengeance (USA, Europe).txt",
    "content": "Blades of Vengeance is a platform game incorporating RPG elements and character styling, reminiscent of Gods by The Bitmap Brothers. The Dark Lady has unleashed hordes of monsters who you must slay.\n\nThe player can choose from three main characters - the Huntress, Warrior and Sorcerer, all of which have different abilities. Throughout the game the player has the option to improve their powers by collecting armour and weapons (such as a mace and a crossbow) or by using spells. Each of the 8 levels ends with a boss.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Bonanza Bros. (USA, Europe, Korea) (Rev B).txt",
    "content": "Mobo and Robo Bonanza are enjoying their favorite television show when the picture crackles and a shadowy figure of a mysterious stranger appears on screen. This figure asks them to collect certain items that he has placed inside various buildings to test his security force. If they return the items successfully, Mobo and Robo will be rewarded. The two of them state that they will get the job done in just three minutes. However, little do they know that each building is packed with security guards who will raise the alarm if they are caught red-handed. Fortunately both Mobo and Robo are equipped with bullets that can knock the guards unconscious for a few seconds. An $100 reward will be given out if Mobo and Robo are apprehended.\n\nAs either Mobo or Robo, you must collect all the treasures before leaving the ten buildings and shoot any security guards that get in your way. Remember that you are under a time limit. An in-game map will help you locate the treasures. There is a bonus stage after three buildings, where the object is to collect the gold bars in a limited amount of time without  one of the three spotlights shining on you. If it is possible, hide behind open doors. If you manage to get all the gold bars, 10,000 points is added to your score. There are three of these bonus stages, but each of them varies.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Buck Rogers - Countdown to Doomsday (USA, Europe).txt",
    "content": "It is the year 2456.\n\nHumanity has spread across the terraformed planets and satellites of the solar system. Colonies drift though the upper regions of the Jupiter gas clouds and cities have been carved out of asteroids. Mars, the seat of power among the inner worlds, is home to a powerful, despotic Russo-American Mercantile (RAM). Its goal: The enslavement of the solar system.\n\nBut what of Earth?\n\nThe ancesteral home of mankind now struggles to overcome the devistation of war and pollution. All hope for a return to its former glory lies in a daring band of rebels, the New Earth Organization (NEO) led by Buck Rogers.\n\nNow you and the members of your team can join Buck and his allies to rid the solar system of RAM tyranny! \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Cannon Fodder (Europe).txt",
    "content": "Guide a team of up to four soldiers through 72 levels of combat in this innovative top-down action/strategy hybrid, best thought of as Lemmings crossed with Commando crossed with Dune 2. The characters are controlled indirectly using the mouse, as you activate each soldier or group of them by highlighting them, click the left button to move them to a particular spot, and the right button for them to fire guns at an enemy. You can also pick up grenades, which can be used to destroy groups of enemies or buildings (by pressing both buttons at once). \n\nEach mission has a specific objective, and some feature vehicles such as tanks to make things easier. Your troops can cross water but can't shoot within it, so finding and controlling bridges is often crucial. You can use the arrangement of trees to find hiding places to shoot from, and should watch out for CPU soldiers also doing so.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Castle of Illusion Starring Mickey Mouse (USA, Europe).txt",
    "content": "This is the first Mickey Mouse game for Sega consoles. In this game the famous Disney character must face the dangers of weird fantasy lands such as an enchanted forest and a toy world. Mickey must rescue his girlfriend Minnie who's been kidnapped by the evil witch Mizrabel.\n\nThe game play follows the traditional 2D hop 'n' bop platform style in both 8-bit and 16-bit versions. Apart from the story and the music, which is the same, all the rest (including controls, moves, stages and, obviously, graphics), are totally different.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Castlevania - Bloodlines (USA).txt",
    "content": "In the year 1917, evil had threatened to rise up again in Transylvania. A young lady named Elizabeth Bartley, who was tried as a witch and killed centuries before, was planning to resurrect the Prince of Darkness, Count Dracula, once again. \n \nThe latest of the Belmont lineage, John Morris, and his friend Eric Lecarde, must now travel across Europe to the Palace of Versailles in France, where Bartley is planning the resurrection. And in their way stands Dracula's strongest followers yet...\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Columns III (USA).txt",
    "content": "Third game in the Columns series. In this fast-paced puzzle mayhem, your goal is to arrange three or more jewels of the same colour horizontally, vertically or diagonally to remove them from the playing screen. While the jewels are falling, you can change the order of their colours. In the Arcade, Versus, and Time Trial modes, you can test your skills against an opponent, a clock, or a specific task such as removing a particular jewel. New features include a rising bar that can be used to annoy opponents and magical items that have strategic value to alter the outcome mid-game. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Combat Cars (USA, Europe).txt",
    "content": "Combat Cars is a racing game in which the player not only competes with other cars, trying to outrun them, but also uses all kinds of weapons and gadgets to damage their opponents. In the beginning of the game, the player can choose one of the eight available characters. Each character has his/her own strengths and weaknesses (speed, car handling, etc.), as well as unique weapons. The weapons include a simple gun, glue spots they can leave to trap other cars, homing missile, and others. There are 24 different tracks available in the game. The player must complete them in a linear fashion, and once they run out of time, the game is over.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Comix Zone (USA).txt",
    "content": "Sketch Turner was a starving comic book artist, living with his pet rat Roadkill... that is until a lightning storm mysteriously brought his cartoon villain, Mortus, to life and imprisoned Sketch within the pages of his own comic book. Now trapped in the world that he himself created, but someone else is now drawing, Sketch must battle through the pages of his own comic book, and past his own creations, to a final battle with Mortus. Perhaps one of his own creations, General Alissa Cyan might be able to help...\n\nComix Zone is a side-scrolling fighting game with a difference, you're inside of a comic book and you yourself know it. Smash enemies into the sides of frames, rip through the paper to unleash a super move and otherwise wreck havoc throughout the limitations of the graphic novel. Sketch himself can jump, attack and use various items that he finds along the comic book, including his rat friend, Roadkill. Button combinations can be used to unleash powerful techniques.\n\nThe game progresses linear through each page of the comic book, however secret paths and alternate routes through the story can be discovered. At the end of each level, Sketch receives a super hero rating for how well he's progressing.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Contra - Hard Corps (USA, Korea).txt",
    "content": "While the original arcade games, as well as a few computer conversions under the Gryzor title, were released unchanged in Europe, subsequent console installments of the Contra were released under the Probotector title in Europe.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Crusader of Centy (USA).txt",
    "content": "Before the time of plants and animals, the earth was completely dark, and inhabited by things we now call 'monsters'. When some voice said 'Let There Be Light' , many monsters died because they could not live in this new light world. Not all died however; some of them hid in caves, and grew stronger. Now, they want to return to the world, and in these days you live your life.\n\nOn your fourteenth birthday you are given your deceased father's sword and shield. Now you are considered ready for the trials and maybe, just maybe, you can become a hero yourself. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Cyborg Justice (USA, Europe).txt",
    "content": "You are a member of the Galatic Unity Agency on routine patrol in deep space when your patrol ship is damaged after accidently passing through a meteor storm and starts to lose control, smashing into a nearby planet and blacking out.  The next thing you remember you are rummaging through scrap metal and welding together steel to make parts for weapons. You have become a cyborg slave in a munitions factory for the Cydrek Federation, a twisted machine with a human brain, unable to comprehend your situation, clouded by cybernetic programming until one day your human side finally starts to break through.  You remember everything and realize that the Cydrek Federation is building an army to take on the G.U.A. and you must stop it. You must take on the entire Federation using your new cybernetic body and stop them from taking over the universe.\n\nYou can build up to 216 different combinations of cyborg body parts to rip, tear and burn your opponents in submission, even using the destroyed parts of your downed foes and putting them onto your body. You can also play in Arcade mode in which you take on wave after wave after wave of opponents until your cyborg is finally destroyed or even play co-op with a buddy.  The game features up to five levels from the plants surface, the Cydrek Command Center even a futuristic jungle.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/DEcapAttack (USA, Europe, Korea).txt",
    "content": "In this game you play as Chuck D. Head, the product of a mad, but benevolent, scientist.  Chuck looks a lot like a mummy, except he is missing an important part: a head.  Fortunately, he is equipped with a set of eyes and a weird punching appendage in the middle of his chest. \n\nChuck's weird features come in handy when, one day, this evil guy named Max D. Cap emerges from the underworld.  Max quickly takes over our world, and only Chuck can stop him.\n\nThe gameplay in Decapattack is of the side-scrolling platformer variety.  You play through several colorful worlds, collect useful power up potions, and deliver a beat down to the ugly bosses.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Dahna - Goddess' Birth (Japan) (Translated).txt",
    "content": "\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Desert Strike - Return to the Gulf (USA, Europe).txt",
    "content": "The first game in the Strike series. A year after the Gulf War, a self styled General named Kilbaba (Muababa in the GBA version) takes over an Arab Emirate and threatens to start WWIII against its enemy in the West, the U.S. The whole world holds their breath as the President chooses you to destroy Kilbaba and his terrorist army before he launches a nuclear attack on the world!\n\nYou must fly an specially designed AH-64A Apache on a series of missions from rescuing MIAs, destroying power plants, to blowing apart SCUD missles! Take out his defenses while trying to find out Kilbaba's plans. Take on the Madman and forever rid this threat....in the desert! \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Devil Crash MD (Japan).txt",
    "content": "Imagine an adventure game in the format of pinball, and you get Dragon's Fury. Your hero is a small silver ball, and your battlefield is a three-tiered pinball machine. Using your ball, you can defeat monsters, rack up points, and enter bonus stages. If you play with enough skill, you can trigger all sorts of point-accumulating bonuses. If you get one billion points, you get to fight the final boss and view the ending to the game.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Devilish - The Next Possession (USA).txt",
    "content": "Genki's first game is a paddle/pong game with a background story. Once upon a time there were a prince and a princess who loved each other. But the evil jealous demon named \"Y\" turn them both into stone paddles. Suddenly, a blue sphere fell from the sky, becoming the ball which the paddles can now push forwards, overcoming obstacles and defeating demons.\n\n\"Devilish\" is different from other paddle games by letting you play with two paddles. The lower one behaves just like a usual paddle - you use it to prevent the ball from dropping down. The upper one can move and turn, allowing you to hit the ball from different angles and from different parts of the screen. You advance through levels by destroying bricks and enemies, going up until the level boss enemy appears.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Dick Tracy (World).txt",
    "content": "This is one of the games based on the Dick Tracy movie. You are Dick Tracy, a police detective who enjoys a peaceful life with his wife. But his wife's father is murdered by a local gangster named Big Boy Caprice, and Dick Tracy is now out for revenge. The game doesn't follow the exact plot of the movie, but simply lets Dick Tracy fight his way through several levels until he faces his archenemy.\n\nThis is a platform shooter/\"beat-'em-up\" game. Plenty of gunmen will attack our hero from all the sides. Dick can only move to the right or to the left. He can use his pistol gun to take out enemies who are in front or behind him. Since he can't approach enemies who attack from the depth of the screen, he can dispose of them using his machine gun. When the enemy is too close, Dick will punch him instead of shooting.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Donald in Maui Mallard (Europe) (Rev A).txt",
    "content": "Disney's Donald Duck takes the starring role in this sidescrolling platform game. As the detective Maui Mallard, he's on the trail of a long lost Idol, which has recently vanished. Early on, Maui can also switch between his normal self and Ninja Maui, and with all the creepy voodoo enemies he'll encounter throughout his adventure, he's going to need all the help he can get.\n\nAs previously mentioned, there are two personalities to Maui, and as a result, two different sets of controls. Normal Maui carries a bug gun, which can fire a variety of different insect ammo, from basic bugs, to the more powerful lightning and fire bugs. It's also possible for Maui to combine bugs to pack a more powerful blast at his enemies.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Dr. Robotnik's Mean Bean Machine (USA).txt",
    "content": "Set on planet Mobius, Dr. Robotnik has hatched a new plan to menace the world and its inhabitants - by kidnapping the citizens of Beanville and turning them into devious robot slaves, the doctor will create an army that will help him rid the planet of music and fun forever. To this end, he has created a giant roboticizing machine called the \"Mean Bean-Steaming Machine\" to use on the jolly bean folk. Putting his plan into motion, Robotnik sends out his henchbots to round up all the unfortunate bean folk and group them together in dark dungeons so they can be sent to the Mean Bean-Steaming Machine. \n \nAssuming the role of Has Bean, the player must now stand up against Robotnik's henchmen by breaking into the dungeons, freeing the bean folk before it is too late, and get through Robotnik's henchbots to the deranged doctor himself and foil his evil plans once and for all.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Dune - The Battle for Arrakis (USA).txt",
    "content": "Westwood Studios' real-time strategy classic Dune II received a major overhaul when ported to the Sega Genesis. While the basic concept remains the same, the game features all-new graphics, streamlined controls, changes to the tech tree as well as completely new levels.\n\nAs in the original game, the player controls the troops of one of three noble Houses, called by the Emperor to mine the Spice Melange on the planet Arrakis, also known as Dune. A series of consecutive battles must be won by mining spice, constructing a base and building units to attack the enemy.\n\nThe rather complex menu-based controls of the original game have been replaced by a context-sensitive cursor system, where a unit reacts according to what is below the cursor - either moving to a destination or attacking an enemy unit, for example.\n\nThe tech tree has been simplified: Among other changes, concrete slabs are only available in the 4x4 size, there is only one type of vehicle factory and the advanced units do not require an IX research center anymore.\n\nFinally, the progression of levels in the console version is strictly linear, as there is no choice of the next map to be played as in the original version. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Dynamite Headdy (USA, Europe).txt",
    "content": "Dynamite Headdy is a platformer... with a difference. You control a little character whose main attack comes from his disembodied head. Yes, years before Rayman appeared, we already had a hero who used detachable appendages to attack his enemies.\n\nRather than the traditional power-ups, Dynamite Headdy enables you to swap your head for different kinds  such as heads that heal you or heads that stick on to walls. You use your head in order to climb up on platforms as well, as you can grab hold of things with it, and on certain stages of the Mega Drive/Genesis version it is used to turn the game into a side-scrolling shooter, as you gain a propeller, jet, or bird head. Basically, Dynamite Headdy is just a traditional platformer at heart.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Earthworm Jim (USA).txt",
    "content": "A crow is chasing a worm named Jim while in outer space Psy-Crow is chasing a renegade ship. The ship's captain has stolen an ultra-high-tech-indestructible-super-space-cyber-suit and Queen Slug-for-a-Butt has ordered Psy-Crow to get it, since it can make her more beautiful than Princess-What's-Her-Name. Psy-Crow blasts the captain and the suit falls to Planet Earth.\n\nBack on earth Jim wonders if he is finally safe when an ultra-high-tech-indestructible-super-space-cyber-suit lands on him. Luckily Jim rests in the neck ring of the suit. Then the space particles begin interacting with Jim, causing a light-speed evolution. Jim soon realizes he is in control of the suit.\n\nJim overhears the Queen's plans for the suit and decides to meet this Princess...\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Earthworm Jim 2 (USA).txt",
    "content": "An ordinary average earthworm named Jim goes about his normal daily life, cruising around avoiding crows and doing other general worm-like things. Jim is suddenly struck by a very large ultra- high- tech- indestructible- super- space- cyber- suit. Through sheer luck, Jim rests safely in the neck ring of the suit. \n\nSuddenly, the ultra-high-tech space particles of the suit begin interacting with Jim's soft wormy flesh. A radical light-speed evolution takes place.\n\nJim soon realizes he is in control of the suit.\n\nGameplay is similar to the first game, with Jim jumping and running through the levels. There are 5 weapons more than the original game to collect. Characters like Princess Whats-Her-Name and Psy-Crow appear.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Ecco the Dolphin (USA, Europe, Korea).txt",
    "content": "Travel through time along with Ecco the dolphin, in the only game that could call itself a \"dolphin simulator\". Indeed, you can do pretty much everything a typical dolphin does, including eating fish, surfacing in order to breathe, using your biological sonar and of course, jumping out of the water to amaze your friends.\n\nThe storyline is actually deeper that one may think by looking at the box illustration. As Ecco, you are the only dolphin who managed to escape from a giant whirlpool which sucked down your entire pod. The five shining stars on your forehead show that you are the chosen one to save them. But that task will be not be an easy one, as you will have to travel through time and space with the Atlantean time machine, and meet the mystical Asterite in order to defeat the Vortex Queen.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/El.Viento (USA).txt",
    "content": "In 1930s New York, a dark cult plans the resurrection of their master, the Dark Prince Hastur, in order to control all of New York and the world. The mob is on their side in this, funding their dark projects and rituals needed to bring their dark master out into their world.\n\nThe only one that can stop them is a young girl named Annet... born of the cursed bloodline of Hastur, yet against his plans. Her only weapon: a mystic boomerang known as El Viento...\n\nAs Annet, you will do battle with the mob, navigating through Sewers, Caves and buildings, collecting bonus items along the way.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Elemental Master (USA).txt",
    "content": "Elemental Master's gameplay is similar to a top-down space shooter (i.e Raptor & Raiden), but what makes it unique is the fact you play as a human instead of space-ship.\n\nThere are different kinds of weapons which you can use. Like other games in the genre you also have tons of strange enemies to destroy.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Eternal Champions (USA).txt",
    "content": "From various time periods of past, present and future, nine fighters killed in an unjust manner find themselves given a second chance for life.  An alien being, known only as the Eternal Champion, brings back the fighters into a competition for one reason: to find one among them worthy of being resurrected, giving them a chance to avert their death and tip the balance between good and evil. \n \nThe fighters range from different eras of Earth's History: Larcen, the cat burglar. Jetta, the circus acrobat. Blade, the futuristic bounty hunter. Midknight, the vampiric bio-chemist. Rax, the cyborg. Shadow, the corporate assassin. Slash, the neanderthal. Trident, a Atlantean warrior. And Xavier, a warlock and alchemist.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Fatal Labyrinth (USA, Europe).txt",
    "content": "Dragonia, the castle of doom, has come upon the world and its minions have stolen the Holy Goblet. Without it, the world will be in darkness forever. You play as Trykaar, who must enter the castle and traverse its thirty levels to retrieve the Holy Goblet. There is no other storyline; its dungeons are generated randomly each time you play, like the Rogue-type games which originated on the PC.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Fire Shark (USA).txt",
    "content": "Fire Shark takes place around a small island in the South Pacific.  It is a continuously-scrolling aerial shooter with a top-down view.  Your World War II era biplane has been modified to shoot lasers and drop powerful bombs. \n\nThere are ten levels in the game in which you will face aerial, aquatic, and ground enemies. They all fire scores of missiles at you in an attempt to knock you from the sky. \n\nIn between levels, your plane will land on a runway for refueling and maintenance.  You will receive bonus points for the number of bombs left in your hold and the number of lightning bolt icons you picked up in the prior level.\n\nThere are also many power-ups available in each level.  Slow-moving blimps contain a power-up icon which is revealed after the zeppelin explodes.  Other icons appear when various other enemies or buildings are destroyed.  These power-ups will float around the screen for several seconds. Grabbing them with your plane earns you a weapon upgrade or bonus points.\n\nThe standard weapons are the bomb and the Wide Shot.  As power-ups are obtained the number of shots per blast can increase up to 16.  The Wide Shot is a comparatively weak weapon that usually requires multiple hits to take an enemy down.\n\nThe Shark Beam is a green laser that fires in a spiral pattern and the strongest weapon of all is the Super Fire.  It will fire continuously while the fire button is held.  Power-ups increase its beam count to 4.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Flashback - The Quest for Identity (USA) (En,Fr).txt",
    "content": "Planet Titan: Brave mutants, robots, anti-matter fields and the primitive inhabitants as you find your way through the jungle. New Washington: First recover your memory, then go undercover to earn money. Finally, buy a false ID if you want to sneak back on Earth. Death Tower: Climb the 8 floors of the Death Tower labyrinth. Avoid the deadly Replicants and win a free ticket to Earth. Earth: Big trouble! The authorities have discovered your false ID and send robot cops to capture you. Paradise Club: You discovered the aliens' plans, but somehow end up being captured and mysteriously transported through space. Planet Morphs: You materialized on their home planet. Now all you have to do is destroy the Morphs and live to tell about it!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Flicky (USA, Europe).txt",
    "content": "The premise of Flicky is dramatically simple: the chick has to face a succession of fixed boards (which form an infinite loop around themselves) full of platforms. The other inhabitants of the board are a variable number of tiny chicks, a kitten called Tiger and an iguana called Iggy. The objective is of course to collect all the chicks and get them to the exit while avoiding Tiger and Iggy. Once taken under your wing, the chicks will follow you in single file. If Tiger or Iggy manage to hit one of the chicks, it will stop following you and you will have to retrieve it. If the two predators catch Flicky, they eat him, simple as that. The only way Flicky can get rid of his feline and reptilian pursuers is by picking up certain items lying around the levels and sending them into Tiger's vibrissae or Iggy's scales.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Gadget Twins (USA).txt",
    "content": "Late one night, the malevolent Thump enters the Gadget Kingdom's castle and steals the Gadget King's gem. The king wakes up the next morning to find that his gem was stolen. The king then summons Bop and Bump to reclaim his stolen possession from Thump.\n\nGameplay consists of flying through six air and water levels: Gadget Bay, Zeppelin Attack, The Lost City, Sub Attack, The Crystal Lake and Thump's World. Although the game continually scrolls throughout its stages, the player can fly in all directions on the screen. Bop and Bump come equipped with a spring glove mechanism that lets the player punch either up, down, right or left, which is used to defeat enemies.\n\nDefeated enemies drop coins. There are also chests littered throughout the stages which contain coins also. These coins can be spent at a shop where the player can purchase upgrades.\n\nThe game also contains bonus stages where the objective is to open all the chests in a limited amount of time.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Gain Ground (USA).txt",
    "content": "Gain Ground is an arcade style action game with a bit of strategy thrown in. The goal is get all of the soldiers to the opposite side of the screen or to kill all of the enemies. Each soldier in the army has a unique specialization, from among 20 types. Each soldier can attack in two different ways, using either a normal weapon or a special weapon. The strategy comes from deciding which soldier would do best in which situation. Some weapons are better at dealing with certain enemies and obstacles than other weapons.\n\nPlayers start with only three soldiers but can encounter other soldiers that can be rescued, by touching them. If the new solider survives long enough to reach the exit, they can be added to the soldier inventory. The number of possible soldier in a player's army is over 30 soldiers. There are 50 stages total, divided into rounds of 10. At the end of each round, players encounter an enemy boss.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Garfield - Caught in the Act (USA, Europe).txt",
    "content": "As lazy cartoon cat Garfield, you're somehow trapped in your TV, that's what happens with too much TV watching. Go and find all remote-control pieces to get out of that box, and check the fridge for a change. The player advances through levels and bonus rounds in his attempt to escape.\n\nUnlike most other platform games of its time, Garfield boasted completely unique art on each of its six levels, both for tile art and character costumes. The levels are inspired by classic movies, but given a Garfield twist, like \"Catsablanca\" and \"The Curse of Cleofartra. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Gauntlet IV (USA, Europe) (En,Ja).txt",
    "content": "This port of the arcade original has some extra modes available. Choose again from Thor the Warrior,  Thyra the Valkyrie,  Merlin the Wizard and Questor the Elf (each with their own advantages/disadvantages) and 1 to 4 players(supports Sega's four-player adapter).\n\nAlongside the standard arcade mode, there are the Quest, Battle and Record modes.\nQuest Mode: Defeat the four towers and solve the mystery of the ancient castle;  weapons can be bought with collected gold from merchants in the main hub area,  where you can also choose which tower to take on next. Experience points are good for increasing your stats.\nBattle Mode: Fight your fellows to the death. Maps can include teleporters/monsters/items etc. Avoid exits(or you'll be out of the round).\nRecord Mode: Arcade mode with some variations such as a password continue,  also you can't die - although points will be lost for every 500 health lost.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/General Chaos (USA, Europe).txt",
    "content": "General Chaos is an arcade-style squad RTS where the player controls a team of five soldiers in a limited battleground, in a classic Red (General Havoc, headquarters in Viceria) vs Blue (General Chaos, in Moronica) all out war. The goal of the game is to push the frontline to the enemy headquarters, by winning individual battles and then beat them in their own capital.\n\nThere are five kinds of soldiers, each with their weapon of choice and range of attack: the Gunner (machine gun, medium range and wide arc), Launcher (rocket launcher, long range), Chucker (grenades that can be thrown over barricades), Scorcher (flame-thrower, close combat) and Blaster (dynamite sticks, close range). Before each battle, players can choose the composition of their team from one out of four choices: Assault team, Brute Force, Commandos (a team of just two soldiers which have different controls) and Demolition.\n\nGameplay is simple to learn, with the A button being used to fire at the nearest enemy, B to move to a the pointer location and C to cycle through soldiers. Using the commando team changes the controls, with the directional pad controlling a soldier directly, with B being used to call the other soldier nearby. While basic commands are simple, the player must deal with things such as distance from target and angle of attack to succeed.\nIf two opposing soldiers face-off during battle, they engage in a brawl (indicated by a cloud of dust). When that happens, the battle stops and the players are in direct control of the soldiers: A punches, B kicks and C blocks. Every downed soldier can can be rescued if there are enough medics available, earned at the end of each battle depending on how well the player did. \n\nUp to four players can play, cooperatively or against each other.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Ghostbusters (USA, Europe).txt",
    "content": "Set after the events of the first movie, Sega's \"Ghostbusters\" follows the further adventures of Peter, Ray and Egon, as the make their way through six cases in an attempt to piece together a mysterious stone tablet.\n\nCompletely different than the Activision title of the same name, the Genesis \"Ghostbusters\" is a side-scrolling platformer that has the boys in gray running through houses, apartments, a burning house and a high-rise for starters as they battle a myriad of ghosts with their proton blasters.  When the Ghostbusters face off against a boss ghost, they have the ability to trap them the traditional way.\n\nPeter, Ray and Egon, each have different abilities, and can purchase weapon and life upgrades from shops throughout the levels.  Other familiar faces make an appearance, as Slimer offers power-ups, and the Stay-Puft Marshmallow Man returns to settle the score from the movie.  \n\nSolve the mystery of the tablet, and the Ghostbusters have to face off against Jenna, the Goddess of Death and Destruction.  Can the boys save New York one more time?\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Ghouls'n Ghosts (Japan, USA).txt",
    "content": "Three years have passed since Arthur defeated the Demon King Astaroth and rescued his beloved Princess Prin-Prin (see Ghosts 'N Goblins). A new villain, the Great Demon King Lucifer (Loki in some versions) has become the new leader of Ghoul Realm. While returning from a journey, Arthur sees the Princess' castle and her village under attack by Lucifer's forces. While rushing towards her beloved knight, the Princess is struck by one of Lucifer's laser beams.\n\nNow, Arthur must venture back to the Lucifer's palace and destroy the demon in order to rescue the Princess' soul and bring her back to life! And it won't matter whether he fights in his shining armor or in his underwear alone...the bravest Knight in the land isn't going to be stopped by some monsters! Although the game starts with graveyard and marsh territory familiar from the first game, later levels are set in a tower, a mass of skeletons, and a castle.\n\nPlayers progress from left to right (from bottom to top in level 3), and have to hack down the aforementioned monsters with a sword. The journey includes ledges, ladders, lava pits and slippery slopes. Different weapons can be collected, by finding suits of armor inside chests. Each of the five stages has its own setting and a final boss. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Golden Axe (World) (Rev A).txt",
    "content": "In the past, a terrible war raged between the Gods, the creators of the world, and the Titans. The Titans were defeated thanks to a super-powerful weapon forged by the Gods, called the Golden Axe. Thanks to this weapon, the Titans were banished, and the Gods bequeathed the Earth to humans. However, one Titan had survived: Death Adder. He seized the Golden Axe and used it to lay waste to the world. He kidnapped the king of Yuria and his daughter and threatened to execute them if the inhabitants did not submit unconditionally. Three heroes, determined to take revenge on Death Adder, set out to find him. \nEach character has a special magical ability that can be charged by kicking small creatures that drop a potion.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Golden Axe II (World).txt",
    "content": "Not long after the malign reign of the Death Adder has ended, another evil rises. The peace of the land has again been threatened, this time by 'Dark Guld', who was supposed to be imprisoned but apparently isn't. He has instead now got his hands on the Golden Axe, and is using it for his own nasty purposes, and with his minions is causing much chaos.\n\nSo once more, Ax-Battler, the fierce barbarian; Tyris-Flare, the fearless Amazon; Gilius Thunderhead, the ferocious dwarf; get up to deal with the oppression, with their might and magic, and recover the Golden Axe.\n\nThe hack and slash gameplay, in a medieval fantasy setting, is essentially the same to that of the previous game. Beat up opponents with melee attacks and collect scrolls to launch magical attacks. Moreover,  players can also ride dragons and other beasts and use their attack capabilities to their advantage.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Golden Axe III (Japan) (En).txt",
    "content": "This 'Prince of Darkness' has taken away the Golden Axe and put an evil curse over all the warriors. However, one of the heroes has their curse relieved and is sent to set things straight - lift curse off others, defeat the villian and return with the Golden Axe.\n\nThe gameplay has been expanded slightly, but is essentially the same hack n' slash as the previous games. New features to the series include new characters, new moves and junction points where you can choose which path to take.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Granada (Japan, USA) (Rev A).txt",
    "content": "In the year 2016, war has broken out in Africa over mining rights to rare metal. Machines of destruction called \"maneuver cepters\" have been developed as the primary force, but recently a mysterious maneuver cepter has appeared in the northern territories. It is known by the name of \"Granada\", and has been destroying the weapons of the factions on both sides. You are this machine's pilot, a man by the name of Leon Todo.\n\nGranada is a free-roaming scrolling shooter. You control the titular maneuver cepter Granada as you make your way through each stage, destroying the enemy's weapons. You have a map that tells you where your targets are on the stage, and once all the targets have been destroyed a large boss enemy appears which must also be destroyed. You are equipped with a standard cannon, as well as a more powerful blaster that will actually push your machine backwards with the recoil. There are also assist pickups which will follow you and reflect any shots you fire at it toward the nearest enemies.\n\nOf special note is the fixed cannon feature. Using this feature, you can hold the direction of fire while still moving freely. The game has nine stages and three difficulty levels.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Great Circus Mystery Starring Mickey & Minnie, The (USA).txt",
    "content": "Starring Mickey and Minnie Mouse, the two plan to spend the day at the Circus only to find that it's deserted. Believing that someone is responsible, you must dress up in different outfits such as Safari and Western, as you try to find clues to solve the mystery behind the disappereance of the performers, including your pals Donald Duck and Pluto.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Greatest Heavyweights (USA).txt",
    "content": "Greatest Heavyweights is a boxing game featuring the ex heavyweight champions Evander Holyfield, Larry Holmes, Joe Frazier, Muhammad Ali, Floyd Patterson, Rocky Marciano, Joe Louis and Jack Dempsey. Their likeness and real fighting style are simulated by the game.\n\nThe game is an enhanced version of Evander Holyfield's \"Real Deal\" Boxing, being also played in a pseudo-3D side view with moving around the ring handled by scrolling the backdrop and moving the ropes. This time, a 2.5D camera is shown at the top of the screen.\n\nThere are three game modes:\n\n1. Exhibition: one or two players can fight a single match.\n\n2. Tournament: one player chooses among the eight heavyweight champs available in a eight-man tournament against the remaining seven.\n\n3. Career: one player creates a character who starts as the #30 of the ranking, fighting his way up against fictional characters. During character creation, players can choose the fighter's color of skin (which now includes some unnatural colors such as green and blue), trunks and hair, haircut, size of body and stats emphasis (power, speed and stamina). Between matches, career mode offers various exercises to assign the boxer to improve his stats. After reaching the #1 in the ranking, the player will be challenged by each one of the eight greatest heavyweight champions.\n\nDuring the fights, besides an energy bar, the fighters have a head and a torso damage meter. This meters are images of their head and torso, which become gradually grey, from top to bottom, as they are hit. If one of these meters becomes totally grey, it will start blinking, warning that it the fighter takes some more punches on that area, he will loose the fight by TKO. Being knocked down tree times in a round also leads to a TKO. During the rounds' breaks, fighters regain strength as the girl with the round sign passes along their sides.\n\nFighters can perform three types of punches: jabs, hooks and uppers, which can be aimed at the opponent's head or torso. Fighters can also taunt their opponents. Each one of the heavyweight champions has his own set of personal taunts. If by some reason the fighters avoid to fight, the spectators will start to hiss at them. To keep the spectators pleased, the fighters must keep punching each other on a regular basis.\n\nThe game plays sensibly faster than Evander Holyfield's, and the character animation is more detailed. There's a replay feature included, and the fights are announced by Michael Buffer's voice.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Growl (USA).txt",
    "content": "In the early part of the 20th century, a group of evil poachers recklessly hunted animals to the point of extinction, including lions, deers, elephants, eagles, and several others.\n\nGrowl is a one-player game, in which you control one of four characters (Gen, Burn, Khan, and Jack) and you must defeat these evil poachers by dealing with them with your fists. However, there are weapons that can be found, including grenades, rocket launchers, whips, swords, guns, and shotguns, which you get once an enemy drops them on the ground, so you can use these weapons against them. If you manage to get one of the guns, you can shoot enemies with a limited supply of ammo. Once the ammo runs out, your only option is to pistol-whip them.\n\nAlso, you can pick up crates and barrels and haul it at enemies to knock them down. Along the way, you'll encounter several cases of animal cruelty, such as two men whipping a lion. Stop the animal cruelty, and the animals will help you in your quest to defeat these evil poachers.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Gunstar Heroes (USA).txt",
    "content": "Chaos has broken out on the planet Gunstar-9!!\n\nThe mad Colonel Red has discovered four crystals that imprison a deadly being known as GoldenSilver, and plans on unleashing it onto the population of the planet! He must be stopped! Enter...the Gunstar Heroes, Red and Blue!\n\nUnleash some mad blasting action onto the Colonel's army and don't let him bring GoldenSilver to life!! The fate of Gunstar-9 is in your hands!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Gynoug (Europe).txt",
    "content": "Gynoug is a horror-themed shoot'em up similar to Thunder Force and other horizontal shooters. But other than most of them where you play a spaceship of some sort, here you play as Wor, a member of the so-called 'Flying men' who look quite similar to angels. \nThe home planet of these people, Iccus, has been taken over by a virus that has mutated into a collection of quite horrible creatures, and every previous attempt to battle them has failed. So now it is Wor's turn to save his home planet and destroy these mutants once and for all! \n \nGynoug consists of 6 levels with no check points, instead you continue right where you died if you have any lifes left. Each level (except the last) has a mid-boss and a large end-boss. There are three types of shots, one that fires in a triangular fashion, one that fires more concentrated in a corridor and a bit to the back and above/below you, and one that fires to the front and back simultaneously. You can power them up in two ways, by shooting more bullets and by strengthening them. Also, feathers can increase your speed like in Gradius.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Haunting Starring Polterguy (USA, Europe).txt",
    "content": "The ghost of a teenager seeks revenge against a snobbish family.  Your job is to scare them out of their house(s).  They can't see you so your only means of scaring them is by possessing various objects throughout the household.  For example, possessing a piece of furniture would cause something to fly out from it and possessing an object would make it come alive in some way or another.  You need to act quickly because you have something called \"ecto\" which acts as the fuel that allows you to roam the real world.  You're awarded more ecto each time a family member exists the room.  The more scares you did, the more ecto you gain.  Losing all ecto sends you to the underworld where you have to regain your ecto to full capacity in order to go back into the real world.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Herzog Zwei (USA, Europe).txt",
    "content": "The premise is that two opposing forces are in combat with one another. Each player controls a jet airplane which zooms across the screen and may turn into a ground based soldier. These ground soldiers can hurt enemy units, but can not affect bases. To take over bases scattered across the map (and ultimately, the enemy base), players must purchase new units and transport them to certain positions. In this way, the player acts more like a transport and management for different types of units rather than a combat character themselves. If the plane is ever destroyed, it restarts at the player's base location. As previously mentioned, a level is complete when either side's base is lost to the opposing forces.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/James Pond - Underwater Agent (USA, Europe).txt",
    "content": "\"James Pond\" is (obviously) a parody on the famous agent 007 stories. You control Pond, a fish-like creature, who has to complete several missions, while making his way through levels full of dangers and hostile creatures. It is not a typical \"jump and run\" game: instead of breezing through large levels, Pond has to complete unique missions for each game area: free hostages, detonate a structure, find keys, etc. It is possible to exit a level only after having completed the objective. Many missions are timed. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/James Pond 3 (USA, Europe).txt",
    "content": "Unlike the  first game of the series, that was a mission-based game, and the  second one, where your character had unique abilities such as observing the whole level and growing to unlimited height, \"James Pond 3\" is a standard jump and run platform game. Pond can run very quickly (by holding down the A button) through large levels, which often contain steep mountain sides and other tricky areas. Once again, he has to oppose the evil scientist Maybe and his minions. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/James Pond II - Codename - Robocod (USA, Europe).txt",
    "content": "In his second adventure James Pond must retrieve the toys Dr Maybe has stolen. Pond has been armed with an Inspector Gadget-style stretch device, which he can use to view higher areas or claw onto ceilings so as to slide across them.\n\nThe gameplay takes place across worlds themed around particular types of toys, such as sporting goods, candy and aircraft. The levels scroll sideways, although a small amount of vertical movement is included. On each level Pond must collect 2 penguins and reach the exit, although there are usually multiple exits and lots of secret areas to explore. After completing each pair of two worlds (each of which has three sub levels), a boss must be faced. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Jurassic Park (USA).txt",
    "content": "This game can be played in two modes, either as Dr. Alan Grant or as a Velociraptor. Playing as each provides the user with an alternative story and level design. The climax of the game mirrored the unused climax of the film, in which Grant must defeat a pair of Velociraptors by causing the Tyrannosaurus rex skeleton in the Visitors Center to collapse on top of them. Grant himself is the final boss in the same location for the raptor storyline: your dinosaur character must cause the bone structure to collapse via specifically placed kicks to cause Grant to flee. A sequel was released using a new game engine and new artwork (with some of the original art as well), entitled Jurassic Park: Rampage Edition. In it, Grant's helicopter (that he just escaped on in the first game) crashes. Now he must deal not only with dinosaurs, but InGen as well. A new raptor must also make it off the island.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Jurassic Park - Rampage Edition (USA, Europe).txt",
    "content": "Jurassic Park: Rampage Edition is the sequel to the first Jurassic Park game on Genesis and mostly looks and plays like the predecessor. It is also a side-scroller.\n\nIn this game you play as Dr. Grant. The big difference with the first game is that there are more enemies to defeat. In addition to the dinosaurs you have to defeat many InGen agents. The reason is that they are trying to recapture dinosaur DNA and eggs to build a new park or an army of dinosaurs. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Kid Chameleon (USA, Europe).txt",
    "content": "Kid Chameleon is a side-scrolling platform game in which the main character has entered a virtual reality game called \"Wild Side\" to free the other kids inside that have been captured (*cuckoo*). He can change his shape into various other forms (hence the \"Chameleon\"). This gives him special abilities which must be used to pass each of the game's 100+ stages.\n\nAn interesting point about Kid Chameleon is that the game has 100+ levels (most of which are very, very difficult) which must be played in sequence AND there is no save feature or password feature - which means completing this game would be a major feat of endurance (and patience).\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Killing Game Show, The (Japan).txt",
    "content": "This is a vertical platformer with horizontal wrap-around. For the entertainment of the futuristic masses, you play a criminal that has been inserted into a mechanical body with the promise that if you succeed in surviving through all the levels (there are many and they are hard), you will be set free.\n   You start each level at the bottom, near pooling liquid which will soon rise, at your immediate peril. Navigate the level from bottom to the exit at the top before the liquid rises and kills you. There are many other foes that fly around, causing you damage and basically annoying you to spit.\n   Most levels must be navigated through a series of keyed gates, doors, or portals. These shaped keys are scattered around the map and must by picked up and used only on the gates they match individually.\n   Twist: You can only carry one special weapon (triple shot, laser beam, or vertical shot) and one tool (key, liquid-freeze, or a red herring) at a time.\n   This game requires a lot of memorization of enemy movement patterns and optimum routes.\n   A unique feature is that when you die, you can watch a replay and take over at any point to continue your game.\n   You can also hit the HELP button at the start of each level to view a map, helping you plan your route.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Krusty's Super Fun House (USA, Europe) (Rev A).txt",
    "content": "Krusty the Clown's Fun House has been overrun by rats.  You must help him to herd the rats into trap machines to clear them out.  In order to do so, Krusty must manipulate his environment to set up pathways so that the rats are headed in the right direction.  Objects that Krusty move around include blocks, fans, and pipe pieces.\n\nThe trap machines are operated by other recognizable Simpson's characters:  Bart, Homer, Sideshow Mel, and Corporal Punishment. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Landstalker (USA).txt",
    "content": "A jovial fantasy yarn, Landstalker is the title that put Climax Entertainment on the map.  Following the exploits of elvish treasure hunter, Nigel, and his pixie friend, Friday, they travel to a distant island to find the long lost treasure of King Nole.\n\nThe game can draw many parallels to the Zelda series, due to the games mostly whimsical style and emphasis on item collecting.  However, Landstalker is more meticulous, moving at a slower and more developed rate, with an abundance of towns and NPCs rounding out the cast. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Langrisser II (Japan) (Rev B) (Translated).txt",
    "content": "\"Langrisser II\" is a sequel to  Warsong (whose original title is Langrisser). The events of the game take place several years after those described in \"Warsong\". Gone is the benevolent kingdom of Baltia, and a new power has risen - the Rayguard Empire, led by Emperor Bernhart and his four generals. Recently, Bernhart ordered his army to attack the neighboring countries, obviously searching for something. This \"something\" might be none else but a legendary evil sword, that makes the one who wields undefeated. It is up to the noble knight Elwin and his friends to stop the Emperor!\n\n\"Langrisser II\" is a strategy RPG. The army is divided into soldier units and generals, who fight alone and who are usually stronger than a whole unit. Before the scenario begins, you must hire soldiers, buy weapons and items, etc. During the battle, if you come into contact with an enemy unit, an automatic battle sequence occurs. You can also cast healing spells on your units or offensive spells to hurt the enemy.\n\nThe major difference between \"Langrisser II\" and its \"remake\",  Der Langrisser for SNES, is the absence of branching storyline in Genesis release.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Legend of Galahad, The (USA, Europe).txt",
    "content": "The titular hero travels through this platform action game, slashing up mutant creatures with a sword and battling the evil Thanatos in hopes to save the life of Princess Lucanna. \n \nThe controls are fairly simple and include jumping, walking or attacking. Collect icons that will help in the enhancement of your armor, gain an extra life and coins to spend in the shop for new weapons. Be sure not to collect any skull icons or else it will call Thanatos' Ethereal Presence where you will have to use Rune Bombs to destroy it. After you complete one of the three worlds, you will be given a password so you can resume later after running out of lives.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Light Crusader (USA).txt",
    "content": "In Light Crusader, you play the role of Sir David, a knight in the service of King Frederick. You are sent to the town Green Row to help your king's brother, King Weeden, to discover what has caused the mysterious disappearance of his town people. You must enter and explore huge dungeons in order to find out about an ancient story that has happened many years ago, and to face evil forces who threaten the land.\n\nLight Crusader is an isometric action/puzzle adventure with RPG elements, along the lines of Landstalker. You can talk to townspeople, buy weapons and items, etc. You spend most of the game in dungeons, which are populated by enemies (whom you fight in real-time combat), and which are full of various types of traps and puzzles. You'll often have to jump to access higher levels or platforms, push switches and other objects to help you advance, and solve various physical puzzles.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Lost Vikings, The (USA) (October, 1995).txt",
    "content": "Three Vikings, Eric the Swift, Olaf the Stout and Baleog the Fierce, were kidnapped by the alien Tomator, the evil Croutonian ruler, who is collecting unique life forms to display in his gallery. The three Vikings will have to combine their unique skills to defeat Tomator, as well as a vast array of aliens, robots, giant snails, big lizards and more.\n\nThe Lost Vikings is a side-scrolling platform puzzle game with a twist. Instead of one character who can jump, run, shoot, collect items, flip switches and so on, there are three different characters, each with his own skills. Eric the Swift can jump, run and bash through walls with his tough helmet. Olaf the Stout has a shield which can block attacks, function as an air glider or as a step to stand on. Baleog the Fierce can shoot things with his arrows (including switches) or kill things with his sword. The player has to use the three Vikings as a team if he wants to get past the increasingly difficult levels and puzzles.\n\nThe player controls one Viking at a time, but can switch between them at any point. The Vikings have limited space in their inventory which they can use to keep various items. Each Viking has three health points, and if he loses them all from confrontations with dangers, he dies (some threats kill instantly), and the level must be restarted.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Lost World, The - Jurassic Park (USA, Europe).txt",
    "content": "The game situates itself on the \"Isla Sorna\" sites of Jurassic Park, a concept originally based on the Steven Spielberg series of movies. You play the role of a bounty hunter trying to catch some prized dinosaurs. This game is not a side scrolling platform game like the other two Jurassic Park games on the Genesis. This is a top-down view game like the SNES version of Jurassic Park, with gameplay similar to The Chaos Engine.\n\nEach of the four Isla Sorna sites contains three missions. Once you have completed the three missions you unlock the boss mission. For a change in the game, the boss missions are 3D look-alike levels. Once the four sites are cleared you get two more final missions to complete the game. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/MUSHA - Metallic Uniframe Super Hybrid Armor (USA).txt",
    "content": "Dire51, a supercomputer crafted to control a space colony, goes rogue and sends its attack robots, led by mech Big Asia., to destroy mankind. A team of fighters in giant mechs try to stop it, but all but one, Ellinor (Terri in the US version), are killed, leaving Ellinor to save humanity from destruction on his own. \n \n\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Marvel Land (USA).txt",
    "content": "In the land of Coni, its inhabitants lived in harmony. At its center lies a mountain called \"Peace\", in which an amusement park known as \"Marvel Land\" resides. This park is well-protected by the Fairies. Later, King Mole became rule of the under dwellers and sent his minions to take over Marvel Land, imprisoning the Fairies inside crystal balls.\n\nA young lad named Talmit is called upon to rescue Wondra the princess, and free the Fairies from King Mole. Marvel Land consists of five worlds with seven stages each, and the game plays in platform style, in which you need to run through the level, killing enemies, and find the exit door. More often than not, you have to go through a bullseye to reach it. If you hit the bullseye at its center, you are awarded more points than you do by hitting it above or below.\n\nYou kill enemies by either jumping on their heads or attacking them with clones, which trail your movement unless you use them to attack enemies or collect food. The clones have a limited life and disappear one by one as you use them. \n\nDuring the game, you can open any treasure chests that you may find along the way, and release power-ups which include boots that make you increase your speed, dragon wings that enable you to jump higher and giving you the ability to glide to a soft landing, and giving you the use of the \"clone\" attack. Hidden throughout the sections are warp doors that can either take your backwards or forwards, anywhere within the park. Each section of a world has you riding a roller coaster, in which you must stay on the cars while avoiding signs and enemies.\n\nThe last section of each world has Talmit going through the castle to reach the end-of-world boss. Unlike other platform games where you must defeat bosses with weapons, you are challenged to various mini-games starting from \"rock, paper, scissors\" through to the Musical Chairs variant. If you win one of the mini-games, you are able to free one of the Fairies, and obtain a crystal ball that you need to defeat King Mole. You then proceed to the Bonus Stage where you must collect shooting stars for points. If you lose a mini-game, you are transported back to the start of the last section.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Master of Monsters (USA).txt",
    "content": "Master of Monsters is a turn-based strategy game in which you choose one of five different wizards and fight the other wizards for domination of the land that stands without a ruler after the master wizard's death. You can play in two campaigns against the computer which requires you to defeat the enemy wizards on all maps and allows you to take all units that have survived a battle into the next one. You can also play all maps individually with up two four human players. In battles, you can summon different monsters and cast spells. Which monsters you can summon and which spells you can use depends on which wizard you have chosen. Your aim in every battle is to defeat all other wizards and thus conquering the land (In the campaigns you only have a limited number of turns to do so). Your wizard and monsters gain experience from fighting and your monsters' abilities differ largely from one-another.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Mazin Saga - Mutant Fighter (USA).txt",
    "content": "The story takes place in 1999 where a Bio-Beast by the name of Godkaiser Hell has reigned supreme over Earth, after a nuclear and biological holocaust has disfigured most of the population and formed an army called the Steelmask Force.  The survivors have fled underground and are constantly attacked by the Bio-Beast horde until one day a scientist by the name of Dr. Kabuto creates a mech, the Mazinger-Z, that can be used against the monsters.  This is where the player takes control of the games protagonist and pilots the suit in an attempt to reclaim the Earth.\n\nThe gameplay is a hack-n-slash game, where the player controls the suit by using the D-pad and using the face buttons to slash at enemy monsters.  There is also a Super Attack that the player can use, but it will decrease their health after each use.  The enemies consist of mutant animals such as dogs and beetles as well as the Bio-Beast soldiers that can range from regular soldiers, female fighters and even ninjas.\n\nThere are five levels in all (Tokyo, Asia, Europe, New York and Egypt) divided into three stages with a mini-boss and a main boss the player must defeat to advance to the next level.  There are also items scattered throughout the levels that will give the player extra points, health refills, an extra life and even a brief stint of invincibility.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Mega Bomberman (USA).txt",
    "content": "Mega Bomberman is a top down strategy game. Control your Bomberman through various levels defeating multiple enemies and plenty of bosses. Each level consist of blocks for exploding and some blocks that don't explode. At times you will need the non-exploding blocks as shelter. The blocks that do explode reveal power-ups and eggs. \n\nThe eggs are the unique twist to this version of Bomberman. When you get a egg, it hatches into a kangaroo. There are multiple kangaroo types, each with their own unique ability. You hop on the back of the kangaroo and utilize it's ability. If you happen to walk into an explosion the kangaroo takes the damage and dies and you continue to live. \n\nAnother unique feature in multiplayer is you can choose your character. Pick one of 9 such as Miner, Tiny, Fat, Cop, Punk(On cover), Lady, Old man, Robot and the original Bomberman.\n\nAfter selecting your character get ready for battle as you are placed in 1 of the 4 corners of the arena. Now just blow your way through the blocks and attack some opponents. Watch out for their bombs and remember to dodge your own. There are also many arena's to choose from. Each arena has it's own twist such as trap doors, an igloo to hide in, conveyor belts and more.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Mega Man - The Wily Wars (USA) (Genesis Mini).txt",
    "content": "Mega Man: Wily Wars is a collection of the first three NES Mega Man titles. It features enhanced graphics and sound as well as the game \"Wily Tower\", a short game that mixes enemies from all three games. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Mega Turrican (USA).txt",
    "content": "After many generations of peace, the Dark Forces have assembled again, and as a member of the USS Freedom Forces, it is your job to defeat them once again. This means you will have to complete numerous large levels always searching for secrets to pick up and enemies to shoot. To do this, you can pick up three different, upgradeable shots: a multiple, a laser and a rebound. You can also go into wheel-mode (as long as you have enough special energy) or use a rope. In wheel-mode, you are invincible and can lay mines or explore previously unreachable areas.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Michael Jackson's Moonwalker (Japan, USA).txt",
    "content": "Michael Jackson's Moonwalker is pretty much based on the Michael Jackson movie. Mr. Big has kidnapped the children and has nasty things in store for them, like drugging them and making them slaves. It's up to Michael to use his powers and save his little friends.\n\nMichael Jackson (MJ) can jump, throw magical stars, and dance to counter his opponents as he looks for the hidden children. Stages come in shape of some of MJ's videos like streets and graveyards.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Midnight Resistance (USA).txt",
    "content": "The Midnight Resistance fighters are up against the awesome powers of mad scientist King Crimson and his Crimson Corps. Crimson has kidnapped your scientist grandfather and five more of your relatives, and aims to put his advanced plans to evil use.\n\nTake control of a Resistance fighter in this scrolling shoot 'em up consisting of nine platform-based levels, each ending with a Boss to defeat. Your enemies appear on foot and in vehicles, and Crimson has also planted machine gun bays en route. \n\nDead enemies release keys, which can be traded in at shop points for weapons. These weapons include machine guns and flamethrowers, for which ammunition must be bought - weapons are discarded when you have no suitable ammo. The control system is unusual - you can shoot in different directions and crawl along low ledges.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Monster World IV (USA) (Genesis Mini).txt",
    "content": "This is a sequel to Wonder Boy 5: Monster World 3. You control Asha, the green-haired girlfriend of Shion, the hero of the previous game. One day, Asha was standing on a cliff near her home village, and suddenly heard a mysterious voice calling for help. She decided to leave the village and to embark on an adventure to discover the identity of this mysterious person.\n\nMonster World 4 is essentially a platform game, with slight RPG/adventure elements (puzzles, treasure, equipment, etc.) Asha can jump, run, attack or defend (by pressing the \"down\" button). She can also use items and equip weapons and armor, talk to people, and open treasure chests. Later in the game, she will also be able to use magic, and a little blue pet animal will assist and help her on her journey. The combat system is very similar to the classical Zelda style. Health and mana points are measured in little hearts, and the more you progress in the game, the more hit points you gain.\n\nThe game was released only in Japan. It is sometimes erroneously called \"Wonder Boy 6\".\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Mortal Kombat (World).txt",
    "content": "Five Hundred years ago, an ancient and well respected Shaolin fighting tournament, held every 50 years, was corrupted by an evil and elderly sorcerer by the name of Shang Tsung.  Shang was accompanied by Prince Goro, a warrior of the Shokan race (a four armed half-human/half-dragon). Knowing that if ten tournaments in a row were won by the Outworld champion, the Earth Realm would be conquered by evil and fall into darkness, Shang entered Goro in the tournament and had him defeat the great Kung Lao. Goro has been  reigning supreme as the undefeated fighting champion for five hundred years now. As the last tournament required draws near, Raiden, Thunder God and protector of the Earth Realm, enacts a plan to tip the scales in the humans favor, Seven fighters step into the arena on Shang Tsung's mysterious island: Shaolin warrior Liu Kang, Special Forces operative Sonya Blade, the mercenary thug Kano, fame-seeking actor Johnny Cage, the ice wielding Lin Kuei warrior Sub-Zero and his undead adversary Scorpion, and Raiden himself.\n\nMortal Kombat is a side-scrolling 1 on 1 fighting game. Fighting is set as one on one kombat, allowing each player to perform a variety of punches, kicks, and special moves in order to defeat their opponent.  When the opponent faces their second round loss, the winner can perform a finishing move called a \"Fatality\" on the loser.  The Fatality is a move unique to each fighter that graphically kills the loser in a blood-soaked finale.\n\nMortal Kombat began its life as a 2-player arcade title. It is notable for its use of digitized actors to represent the game's fighters, as well as its use of copious amounts of blood during gameplay.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Mortal Kombat 3 (USA).txt",
    "content": "Shao Kahn has won. The Earthrealm is no more. In order to revive his Queen Sindel, the emperor Shao Kahn used the Outworld Tournament from Mortal Kombat 2 as a diversion while his Shadow Priests revive his fallen Queen on Earth. Once enacted, the dimensional bridge between the two realms connects, allowing Kahn's extermination squads to invade and destroy Earth, and enslave the population's souls.\n\nA small team of Raiden's \"Chosen Warriors\" survives the attack: Mortal Kombat champion Liu Kang and his ally Kung Lao, Special Forces agents Sonya Blade and Jax, the shaman Nightwolf, the riot cop Stryker, the nomadic Kabal, and former Lin Kuei warrior Sub-Zero, who has gone rogue from his clan. Facing the warriors are the mercenary Kano, cyber-ninjas Smoke, Sektor and Cyrax, Sheeva, a female Shokan, the sorcerer Shang Tsung, and Queen Sindel herself.\n\nMortal Kombat 3 brings new elements to the 2D fighting series: multi-level playfields, \"Dial-A-Combo\" attacks, a \"Run\" button to speed up the battles, and \"Vs.\" codes, which unlock new powers and abilities once both players enter a code sequence in pre-match-up screens. Also included are more stage fatalities and finishing moves as each warrior attempts to go one-on-one with the Centaurian enforcer Motaro, and Shao Kahn himself.\n\nMortal Kombat 3 is the last traditional one-on-one fighting game game in the series to feature motion-captured digitized graphics for its kombatants, and introduces online network play to the PC version.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Mortal Kombat II (World).txt",
    "content": "The Mortal Kombat fighters, plus several new ones, return for a tournament held by the evil Shang Tsung of the Outworld. The action is one-on-one as before, and famed for its high level of violence and blood (other than the sanitised Nintendo version). There are 5 difficulty levels and optional credits, as well as the usual two player mode including same character duels.\n\nTo win the main tournament, the player must beat each of the other human players, before taking on Shang Tsung, Kintaro and finally Shao Kahn. Players have a range of punches and kicks available, as well as flying kicks, uppercuts, roundhouses, and the special moves, which vary for each player. These include throws, uppercuts, long-distance bullets, bicycle kicks and a teleport feature.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Mutant League Football (USA, Europe).txt",
    "content": "Futuristic, intergalactic war disguised as American Football, Mutant League Football was one of the most unique football games ever to hit the gaming market. It's a unique blend of sports and sci-fi, and the actual football is the good ol' smash-mouth kind, literally.\n\nDynamite throwing running backs, blitzing trolls, robots that bleed oil, it's all here. Opposing quarterback connecting on too many passes? Blitz him 'til he's dead. Suspect the ref's been bribed by the other side? Call a Kill Ref audible; it's a 5 yard penalty though. \n\nTake your pick from nineteen teams, including three All-Star teams. There are five difficulty levels and a slow/fast game speed toggle. A tournament mode awaits those who want something more than a quick game versus the computer or a friend.\n\nThere are nineteen different fields to play on, all with there own special quirks. The Hellfield is littered with mines and fire pits to put an end to a careless runner, while The Pen is a slippery sheet of ice.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Mutant League Hockey (USA, Europe).txt",
    "content": "Mutant League Hockey is a violent hockey game in the same series as Mutant League Football.  There are 23 bizarre hockey teams to choose from, with players consisting of zombies, skeletons, trolls, and robots.  The arenas are equally strange, with hidden bottomless pits, mines placed under the ice, spikes, and a \"Demon Net\" that functions as a goalie by chomping up and down and devouring the puck.\nThe game plays similar to normal hockey, except in this game your players can pick up chainsaws, maces, axes, etc. to use against the competition.  It's a bloody game, with opponents exploding into piles of goo (or circuits if they are a robot) when they become too injured.  The player can call special plays, like an exploding puck or jail break and attack the goalie.  The game also has fighting sequences if two players decide to get into a brawl.  \nThe game comes with multiplayer and a playoff series, full stats for your players and instant replays.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Mystical Fighter (USA).txt",
    "content": "A kabuki warrior steps into a time portal to go back to the Shogun dynasty to defeat the evil lord Kabuki. The game is basically a side-scrolling beat-em up game, with the player controlling the kabuki warrior. The player can deliver kicks and punches to hordes of enemy minions throughout each stage. Other moves at the the players disposal are jump kicks, the ability to lift enemies and throw them, and the ability to grab enemies and spin them like a tornado.\nThe player can also use a special magic power that gets charged by picking up scrolls throughout the level. The player can also find life bar refills throughout a stage also.\n\nEach section of a stage must be defeated within a certain time limit. At the end of a stage the player must defeat a boss enemy to advance to the next stage.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/NBA Jam - Tournament Edition (World).txt",
    "content": "This game lets you play two-on-two arcade basketball with players from all the NBA teams. Gameplay is fast and action-packed, with few rules, no fouls, and deliberately unrealistic jamming. Players are rated on eight ability categories, from steals and blocks, to dunks and 3-pointers.\n\nUp to four human players can take part, each always controlling a single player for their team, and AI for missing players. This allows for four players to face each other in teams of two, or for two players to team up against a third player with a CPU team-mate.\n\nThe Tournament Edition ups each team's roster to three players, and allows for substitutions between quarters. Shoving players now results in injuries, which lower a player's stats; encouraging you to sub them out and let them recover. Aside from the usual secret characters and cheat modes, the T.E. also includes four new additions you can individually enable from the special options menu:\n\n1. \"Hot Spots\" are randomized zones on the court that reward extra points (up to a 9-point shot!) for making a basket while standing within them.\n\nPowerup icons appear randomly, and convey temporary arcade-like benefits when picked up. Some examples are instant \"on-fire,\" enhanced 3-point accuracy, monster dunks from anywhere on the court, or a bomb that knocks all other players to the ground.\n\n\"Juice Mode\" increases the speed of the game up to 4x.\n\n\"Tournament Mode\" disables all other modes, special characters, and cheats, and challenges you to defeat all the NBA teams to unlock extra players (2 extra players for almost every team). Winning Tournament Mode also unlocks a higher CPU difficulty level. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Nadia - The Secret of Blue Water (Japan) (Translated).txt",
    "content": "\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Ooze, The (Japan, USA).txt",
    "content": "The Ooze is quite a little known (and bizzarre) game that was released towards the end of the Genesis's lifecycle. The story goes that you are a scientist with an experiment that went wrong resulting in you turning into a puddle of green ooze. You are washed down the sink and must make your way back to the lab (by completing a series of puzzles, etc.) to stop your boss taking over the world.\n\nThe game is played from top-down perspective and you move around the level fighting enemies and solving puzzles. You can pick up more ooze and other items as you go which can help you get through each level.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Out of This World (USA).txt",
    "content": "Out of This World (known as Another World in Europe and Outer World in Japan) is an action-adventure game designed and developed by Eric Chahi which thrusts the player into the role of a red-headed physicist trapped on an alien planet.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/OutRun (USA, Europe).txt",
    "content": "Race across varied terrain in this conversion of one of the most famous arcade racing games. Your Ferrari is at the ready, complete with female passenger, over a series of short tracks.\n\nGameplay is viewed form just above and behind the car, so you can see it. The roads are full of sharp bends and hazards, contact with which can cause the car to roll and lose you time. On each section of track there is a fork in the road, allowing you to choose which direction you go in. You have to complete 5 track sections in total, out of the 15 in the game.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Outlander (USA).txt",
    "content": "Mindscape developed this game hoping to get it licensed as an official Mad Max game, however Warner Bros never made this happen. Anyway, the game closely resembles \"The Road Warrior\" (Mad Max 2). Your objective is to drive your car through the wasteland, trying to survive motorcycle gang members' attacks and to avoid running out of gas.\n\nThe gameplay is a split of two genres: racing and side-scrolling. In the racing parts you have to destroy enemies like motorcycle gang members, gyro-copter captains, red trucks, etc. Your car has a machine-gun installed in its front, and if some guy drives along side of you, a little window pops up, allowing you to shoot them with your shotgun.\n\nAlong the road there are several towns, and every time you pass through one of them, an alarm will warn you. As your gas run low, you have to stop on these towns and refuel your reserves of gas and ammo. When doing so, the game turns to a side-scrolling perspective, as you get out of your car, dealing with your enemies in hand-to-hand combats. In the cities you'll also find new equipment to your car, such as missile launchers, nitro, etc.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Panorama Cotton (Japan) (Translated).txt",
    "content": "The fairy kingdom has long been threatened by the dark witch Wool, the leader of the Dark Undulation. The queen Velvet sent the cute little fairy Silk to seek aid by the red-haired witch Cotton, the only one who could defeat Wool. Cotton agrees under one condition: she will receive some willows as a reward, since willows are her favorite food. Finally, after defeating Wool, Cotton realized that someone poisoned the promised willows, and swears revenge. Accompanied by Silk, she begins to chase the mysterious enemy.\n\n\"Panorama Cotton\" is a pseudo-3D scrolling shooter reminiscent of  Space Harrier, set in an anim-style fantasy world. Various levels scroll \"into the screen\", vertically, horizontally, or diagonally. You can move Cotton over the screen, shooting at oncoming enemies and avoiding obstacles on her way. Cotton can upgrade her weapon to higher levels as you advance in the game, and can also cast magical spells by collecting special items.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Pepenga Pengo (Japan).txt",
    "content": "The Sno-Bees are back! One day in Antarctica, an asteroid crashes into the crystal that protects the penguins, shattering it into many pieces and freeing the Sno-Bees who had been frozen in ice. In order to rescue his people, the blue penguin (along with a pink penguin in two-player mode) goes after the Sno-Bees and to recover the missing pieces of the crystal. The game takes the basic template of the 1982 original and expands on it, offering a greater variety of enemies, various environmental hazards, and power-ups, along with of course updated 16-bit graphics and sound. The goal is still to push blocks and crush enemies. Enemies now appear from generators, which must be destroyed to stop new enemies from appearing, and all enemies must then be eliminated to complete each stage.\n\nIn addition to the main story mode, the game also features a competitive battle mode for up to four players, as well as a conversion of the original arcade game. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Phantasy Star II (USA, Europe) (Rev A).txt",
    "content": "The people on a technically advanced planet Mota make experiments to create biomechanical creatures. But one day, a creature was created that appeared to be dangerous to the humans themselves. No signal came to the capital city from the experimental labs... You, a nameless young man living in Paleo, Mota's capital, are commanded to go to the labs and check the issue. Your friend Nei, a semi-human girl, goes with you, and other brave adventurers join you on what starts with a simple mission but develops into saving the entire world...\n\nThis is the first Phantasy Star game for the Genesis, set in a futuristic world. The turn-based combat allows you to choose between \"fight\", where the characters simply attack physically for one turn, and \"strategy\", where you can choose from several sub-commands, to defend, to use a special technique, or to run from the battle. Instead of magic there are \"techniques\", that require the usage of TP (technique points).\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Phantasy Star III - Generations of Doom (USA, Europe, Korea).txt",
    "content": "A long time ago, a great war between Orakio and Laya devastated the planet. 1000 years later, a young Orakian prince named Rhys decides to marry the beautiful Maya, his heart's chosen one. But during the marriage ceremony, a strange creature appears and kidnaps the bride. Were those the legendary Layans who kidnapped the princess? Whatever the answer might be, Rhys has to find it out on his own. He must find his beloved one...\n\nThis game takes us back to a medieval setting. The battle system is similar to that of its predecessor  Phantasy Star II: you can perform simple attacks and special techniques, which require TP (technique points), in a turn-based combat with random enemy encounters. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Phantasy Star IV (USA).txt",
    "content": "The Algo star system is in troubled times...\n\nMany thousands of years ago, the Algo Star System was a peaceful system. Three planets surrounded the peaceful Algo star and were in perfect harmony: Palma, a lush green planet, where its citizens devoted their lives to arts and the sciences. Motavia, a desert planet, inhabited by humans and native Motavians, and the enigmatic Dezolis, a harsh ice planet, where the citizens were just as unknown as the planet itself. Unfortunately, the harmony and balance was not to last. Palma had exploded, and with it, 90% of the population of Algo died. Motavia had fallen into horrible conditions from the explosion, turning almost into a total wasteland. The Darkness spread its hand over the land...\n\nNow, 1,000 years had passed. Motavia had healed somewhat, and life was beginning to return to the way it once was thousands of years ago. The Hunter's Guild on Motavia helped to keep things steady. But now, a dark evil once thought to be long dead is beginning to stir once again, and the young Hunter, Chaz, is about to begin his ultimate adventure - and all of it started with one simple routine assignment...\n\nThe gameplay of the fourth entry in the  Phantasy Star is similar to that of the  second installment, sharing notable features such as the ability to equip two weapons at once, different healing items for humans and androids, most of the \"techniques\" (equivalent to magic spells in comparable games), etc. As before, leveling up and technique-learning is automatic. There are a few segments in the game with vehicle combat, which mostly follows the same turn-based formula as the regular battles. Side quests are present in form of hunter assignments for Chaz and his friends. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Phantom 2040 (USA).txt",
    "content": "The cartoon mini-series: Phantom 2040, right here. It is the aforementioned year, 2040, and the city of Metropia is in total chaos. \n\nCrime, smuggling and terrorism are escalating. The debase company, Maximum Inc., has invented biotechnology that is threatening to mess about with nature - causing animal extinction and ecosystem adulteration. Evil company owner, Rebicca Madison, would like to rule Metropia and the world.\n\nIn comes Kit Walker, the 24th Phantom, following the proud but secret footsteps of his ancestors. This 18 year old has to fight his way to get things right, or end trying.\n\nThe game has many twist and turns in its plot, and a multitude of endings.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Phelios (USA).txt",
    "content": "Set in the world of Greek mythology, Phelios tells the story of a young prince called Apollo, who sets out to rescue his beloved Artemis who was seized by the demon Typhon while exploring the skies with the winged horse, Pegasus. In Typhon's temple, Artemis gets locked in a dungeon where Medusa turns her into stone.\n\nPhelios consists of seven chapters, and in each, you must defeat Typhon's minions using your sword which can emit fireballs at them. However, holding the fire button down for a few seconds will charge the sword; and upon releasing it, it shoots a larger fireball that does a fair amount of damage. During the game, you collect items that increases your speed and give you more firepower.\n\nAt the end of each chapter, you have to destroy a boss in order to proceed to the next one. Between each chapter, you can watch an intermission that details what is happening at the temple.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Pirates! Gold (USA).txt",
    "content": "As with the original, this is a blend of strategy, action and adventure. Pirates! Gold lets you play the role of a beginning buccaneer in the 17th century Spanish Main, in search of fame and fortune. Each town in this untamed raw region has different surprises and dangers. \n\nHow you acquire stature is up to you; you can make your living through honest trade and the search for hidden treasure, or you can be a little more daring and attack and plunder ships. As you can choose a specific skill to stand out in, the game can vary each time. Sword fighting is played out in side-view action sequences.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Psy-O-Blade (Japan) (Translated).txt",
    "content": "In 21th century, there are three main powers on the Earth. The free world and the communist block carried over from the 20th century; the third power is the New Communist Federation. Since a program of denuclearizing was supported by all those powers, the New Communist Federation developed a devastating non-nuclear weapon: the satellite \"Raiden\". The two other powers competed with the New Communist Federation, developing their own killer satellites, and the danger of total annihilation became once again an issue. Seeing no future for the Earth, humans started to colonize other planets. In 22th century, they sent an experimental ship \"Septemius 1\" to a star six light years far away from the Solar System. The ship's main computer, \"Racoon\", sent a strange message before stopping any communication. You are Keith McDonnell, a seventeen-year-old crew member of the ship \"Septemius 2\" that was sent to investigate the strange disappearance.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Psycho Pinball (Europe) (En,Fr,De,Es,It) (Rev 1).txt",
    "content": "Psycho Pinball is another pinball game in the style first introduced in Pinball Dreams and later popularized in Pinball Fantasies.  \nStandard features of these types of pinball simulations include an animated backglass display, multiple bonuses including a multi-ball, extra ball, etc., and background music that changes based on active specials.\n\nThere are three main tables:\n\n1. The Abyss (Aquatic theme)\nTrick or Treat (Horror theme)\nWild West (Western theme)\n\nAn additional gimmick is a fourth Psycho Pinball table (circus theme) that has bonuses that can launch you to the other three tables, leading to massively high scores (and very long gameplay times).\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Puggsy (USA).txt",
    "content": "Puggsy is a platform game with a combination of action and puzzle-solving elements. You control the the creature Puggsy, who has crash landed on an alien planet and had his spaceship stolen. Your goal is find the spaceship so you can get off the planet and return home.  To do this, you will need to make your way from the start to the exit of numerous levels which take place in a variety of environments. Throughout each level are a variety of objects which you can pick up; on many of the levels you will need to figure out how to use the objects available to you in order to reach the exit. Some objects can used (like a gun or keys), and objects may be thrown, moved around and stacked. Of course, each level will also have a variety of bad guys wandering about which will cost Puggsy one of his lives if he's caught. On your quest there will also be six evil guardians which will need to be defeated before you get your spaceship back!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Pulseman (Japan) (Translated).txt",
    "content": "Pulseman is an electric hero who was created to fight cyber crime. Combat the galaxy gang throughout 7 stages with around 50 levels. Pulseman is best described as a fusion between the gameplay of Sonic the Hedgehog and Mega Man in ways of gameplay.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Punisher, The (USA).txt",
    "content": "Join Frank Castle's crusade for justice and revenge in this port of the arcade beat 'em up. Based on the Marvel comic of the same name, you play as the cold blooded vigilante or his pal Nick Fury (from S.H.I.E.L.D.) with your mission being to tear through the many rackets and underground criminal hotspots to cripple the Kingpin's criminal empire, and finally take down the man himself and bring peace to New York.\n\nThe game plays as a standard side-scrolling beat 'em up with your objective being to clear all stages of enemies by attacking them with your arsenal of attacks or whatever weapons you can find. Features single and 2-player cooperative gameplay.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/QuackShot Starring Donald Duck (World) (Rev A).txt",
    "content": "Donald and his three nephews get their hands on a treasure map and set out to hunt the big prize. Donald travels throughout the world, to places like Egypt, India, South Pole and even Transylvania, while his nephews fly an airplane.\n\nAs a weapon Donald uses plungers that can freeze the enemies or stick to walls which can then be used for climbing. Other wacky weapons are popcorn and bubblegum!\nThis is a steady Disney run-and-jump platformer, with a little puzzle-solving element.\n\nCharacters are mostly based on Disney's cartoon series \"Duck Tales\"\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Ranger X (USA).txt",
    "content": "Ranger X was released fairly late in the lifetime of the megadrive. Coming from an unknown developer it was released with little fanfare and advertising but has become one of the best demonstrations of what the genesis/megadrive is capable of.\n\nThe game is a side scrolling shooter of sorts. You control a large mech (robot) which has a smaller side-kick mech which is a bit like a car. The two can join together providing an alternate shooting mode. Whilst controlling just the main mech however, the player can shoot both forward and back by using different buttons. The mech can also use it's rocket pack to boost off of the ground and hover for a short while. Levels are not necessarily left to right moving (although for the most part they are) and the game is an interesting blend of platform game and shoot-em-up.\n\nThe game features innovative graphics given the hardware limitations - there is a 3D introduction to most levels (remembering that the console had no 3D capability and a tile-based renderer) and some levels use a line-based scrolling effect to give the impression of 3D backgrounds.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Red Zone (USA, Europe).txt",
    "content": "Red Zone is a helicopter action shooter in which you pilot an AH-64B Apache into the heart of enemy territory to thwart the plans of a nuclear armed dictator.  Under threat of global nuclear war the dictator has begun to annex his neighbor countries, with plans to continue his territorial expansion, so three special operatives are covertly sent in with a lone gunship to remove his ability to wage war.\n\nThe majority of the game consists of air-to-ground attack while flying in the Apache, using its hefty loadout of rockets, guided missiles, built-in 30 mm cannon and defensive infrared air-to-air missiles in order to eliminate the hostiles from the air, land and sea.  Fuel drums, repair kits and ammunition depletion are both factors to keep in mind, and careful planning of where the pickups are located so that the chopper is able to stay in the air and is able to keep fighting, elements that are very similar in implementation to the Strike series.  Differences between the games include the fact that as your systems get damaged, your helicopter becomes harder to control and the weapon and radar systems become affected.\n\nInterspersed with the plentiful in-chopper combat, there are numerous mission-oriented sequences in which the occupants of the helicopter disembark and perform missions on-foot inside of buildings.  Each of the three characters have a unique set of weapons, and the player can choose from either of the three to use, so long as none of them have been killed during previous on-foot missions.\n\nRed Zone bears many gameplay similarities to the early entries of the Strike series of games, though while the first three games of that series had a fixed isometric point-of-view, Red Zone has a straight-down POV that rotates along with the helicopter.  Red Zone is also highly reminiscent of Zyrinx's earlier and similarly technologically advanced Genesis game Sub-Terrania, with the most notable similarities being in the relative difficulty of the games, and in the manipulation of the Genesis' hardware into providing visual effects not seen in other games, such as simulated video.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Revenge of Shinobi, The (USA, Europe) (Rev B).txt",
    "content": "You are Musashi, master ninja. You are a mystic warrior, who sees and know all things. You are deadly! Now you must destroy the vicious army of Neo Zeed, or Naoko, their beautiful prisoner, dies!\nAttack with a ninja sword and shurikens! Somersault over fences while hurling deadly knives! Ward off bullets, death stars and junked cars by leaping, twisting and kicking!\nStalk ninjas, musclemen, Kung Fu gangs and armies of machine gunners through 24 treacherous scenes. The Neo Zeed are masters of disguise. But you are Shinobi, a master in the art of stealth. And you have a secret weapon - ninja magic!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Rings of Power (USA, Europe).txt",
    "content": "For a long time, our world was in darkness. The sun shone as always, but our souls were dark and lacked the true enlightenment. Then the holy Nexus arrived, and changed everything. With his Rod of Creation, he blessed the people with the gift of the six Arts. The Red Priests - the people he chose among the others - established an order of the six Guilds. The world entered the era of prosperity. But the evil demon Void stole the Rod of Creation and drove the world to chaos again. In a cosmic battle, Nexus faced Void. None was victorious, and the Rod of Power was broken during the battle. It was divided into eleven rings, known as the Rings of Power. The young sorcerer Buc is now sent on a quest to retrieve those rings, and to unite the Rod of Power that will eventually banish Void forever!\n\n\"Rings of Power\" is quite different from traditional console RPGs gameplay-wise, and is more similar to Western-style games such as  Ultima series. You can freely wander through the huge isometric world, and are not obliged to follow any storyline except the main quest for the eleven rings. You can talk to NPCs about many topics, choose whom to fight, bribe people, etc. There is a day/night cycle which affects the behavior of characters. Unlike most RPGs, there are no weapons and armor in this game. The turn-based combat is entirely dependent on magic spells. On your journey you will encounter characters from several guilds, each proficient in his own type of magic, and make them join your party.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Road Rash (USA, Europe).txt",
    "content": "Road Rash is an aggressive motorcycle racing game where the player assumes the role of a biker who takes part in a series of illegal races across the U.S.A. Starting at the back of the pack the objective is always to finish first on a linear course, overtaking the other bikers. This is achieved by driving very well or by playing it dirty, knocking opponents of their bikes using clubs, crowbars or your bare hands. The other racers fight back in a similar fashion and there are also hazards. All the races take place on the regular road with normal traffic and the cops, as well as occasional oil slicks and stray cows. \n \nBy winning races you can get promoted to a stronger division and earn cash with which you can buy a better bike. Whenever you're knocked off your bike or hit something you will have to run back to your bike and lose valuable time, plus your bike will suffer some damage.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Road Rash 3 (USA, Europe).txt",
    "content": "Following the previous two Road Rash games, the player has conquered the US illegal motorcycle championship. But why settle for that when one can take over the World; racing in the peaceful streets of the UK, dodging the animals in Kenya, blaze through the night in Japan or jump in the hilly circuits in Italy?\n\nKeeping the same spirit of the previous two games, Road Rash 3 adds all new digitized sprites (based on the 32-bit remake released an year earlier), bike upgrades, more weapons and meaner police. Most other aspects of the game remain unchanged: the player starts on the lowest division with a small amount of cash and a slow, hard to handle bike. To get more money (and get a faster bike) the player must beat as many of the other 15 racers to the finish line, using all means possible, even kicking and punching them into knockout. By clearing (finishing on the top three spots) all five races on a level, the player advances to the next, where opponents are faster and tougher, the police is more active and a longer race.\n\nAs for new gameplay elements in the final title in the series released for Sega's 16-bit console, bikes can also be improved by choosing cheaper upgrades (instead of simply buying new ones) such as tires (less skidding), engine (improves acceleration and top speed), suspension (allows better control while landing after jumps) and body (bike takes more hits before turning into smoking metal). Instead on relying on simple motorbike patrols, the police now has helicopters at their disposal (which try to land on the player) and patrol cars, which attempt to block the path of the bike, forcing it to stop or collide to get a bust. To make things easier (or harder), new weapons were added, some of which allow the carrier to stun an opponent for a few seconds, making him the perfect victim for an incoming vehicle. Also new, if the player finishes the race with a weapon, carries it to the next race.\n\nEach track has it's own features: in the UK, cars drive left on a rainy day, in Australia and Kenya animals wander into the road, in Brazil bikers can get themselves a close-encounter with a car on a crossing, in Italy the hills allow a lot of air-time for light and speedy bikes, Germany, where the icy roads and sharp turns make a deadly combination and finally in Japan the race goes during the night under the neon lights. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Road Rash II (USA, Europe) (RR206).txt",
    "content": "A motorcycle racing game with an attitude. You race in varying environments for ever increasing sums of money. With that money you can buy faster and better bikes. There are many objects on the road to watch out for, from cars to rocks to signs, if you hit one you'll go flying and loose valuable time. If you crash too often your bike can get wrecked. You can also attack other racers. The default attack is a punch, but some racers have weapons, which you can steal and use \nagainst them. The police patrol the various courses, so if you're not careful you can get busted. Road Rash II is not just a racing game but also a fighting game.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/RoboCop Versus The Terminator (USA).txt",
    "content": "The Dark Horse comic book crossover of the two famous 80s cyborgs spawned various different game adaptations. RoboCop versus The Terminator on the Genesis is only loosely based on the comic.\n\nThe player controls RoboCop who during his duty of policing the streets of Detroit is lured into a trap by Terminators sent from the future. By uploading himself into the computer network, he becomes the seed from which the malevolent Skynet grows. Years later, in the post-apocalyptic future, RoboCop is reactivated and must help the human resistance by attacking and defeating Skynet once and for all.\n\nThe game is a platformer with heavy shooting elements and consists of 10 levels. Many enemies stand in RoboCop's way and must be destroyed via 8 different weapons. RoboCop begins the game with only a basic pistol, but other weapons can be found, including flame and grenade throwers, laser guns, self-seeking missiles and others. While all guns have unlimited ammo, only two can be carried at the same time and being killed means the currently equipped gun is lost.\n\nThe game is evenly split between present and future levels. Enemies in present Detroit include mostly street punks and other criminal elements while the future is of course populated by deadly machines: Terminators, robotic dogs and spiders and many automated guns. Each level ends with a boss battle, featuring Terminators, heavy tanks and RoboCop's famous adversaries ED-209 and Cain (aka RoboCop 2).\n\nSome levels feature optional goals besides getting to the exit, like freeing hostages or destroying security cameras. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Rocket Knight Adventures (USA).txt",
    "content": "Rocket Knight Adventures is the first side-scrolling action game starring Sparkster.  He lives in the kingdom of Zebulos, and is the bravest of all the Rocket Knights.  One day, an army of pigs comes down to invade the kingdom and capture the princess.  It is up to Sparkster to set things right again.\n\nMost of the gameplay in Rocket Knight Adventures involves using Sparkster's rocket pack and sword.  Sparkster has to fight off many bosses and survive many precarious situations.  The levels are interspersed with a variety of elements, like shooting stages, and giant robot combat.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Rolling Thunder 2 (USA).txt",
    "content": "A follow up to the original rolling thunder, this game is your basic shot-the-bad-guys-and-save-the-world game.\n\nA terrorist group has taken out the world information flow and, as either a guy named Albert Ross or a woman named Leila, you must stop them. You can also get cool weapons that pack more of a punch than your ordinary hand gun.\n\nAlso RT2 is a password supported game, so in other words you get a password at the end of each round so if you loss all your lives, you can continue from the end of that round, very handy.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Rolling Thunder 3 (USA).txt",
    "content": "The events in the third game in the series are synchronous with RT2. At the end of the twentieth century, satellites around the globe are being shot down, disrupting communications. Secret agency Rolling Thunder discovers the organization behind the terror: Geldra. While agents Leila and Albatross are fighting the leader Gimdo (RT2), agent Jay is instructed to bring down Dread, the second-in-command.\n\nThere are many improvements to the gameplay: Jay can shoot while jumping and shoot diagonally upwards with certain weapons. At the beginning of each mission, you can pick a special weapon such as a laser rifle, bazooka, flamethrower or grenades. You have to choose carefully as they cannot be reused in later missions. You can still hide in doorways and recharge your weapons behind special doors. The mission timer from the previous game has been replaced by a sniper that targets you with a crosshair when you don't move fast enough. The brutal difficulty from the previous games has been toned down: there are more life marks at the start and you now resurrect where you died, rather than returning to the last checkpoint. Unlike the previous game, you can only choose one character to play with.\n\nAfter completing a mission, a password is provided to continue playing. There are ten levels in total, with a few hidden areas.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Shadow Dancer - The Secret of Shinobi (World).txt",
    "content": "A.D. 1997, New York City\n\nHaving vanquished the evil crime empire, Neo Zeed, the ninja master Shinobi and his combat ninja skills were not heard from for some time. But a new threat arose, in a reptilian form that lived on vicious instinct alone. The colossal monster moved slowly and quietly, and its attack was relentless. The souls unfortunate enough to survive became hostages, and mass panic swept the streets.\n\nIt remained only for Shinobi to take action. His weapons were stealth and quickness of attack, his only allies facing overwhelming forces. Relying on Ninja weapons and magic, Shinobi fought on, assisted by his faithful dog.\n\nShadow Dancer: The Secret of Shinobi is similar to Shadow Dancer for home computers, and consists of five missions containing three stages each. However, there are a few differences between the two. For example, in this Sega Genesis/Mega Drive exclusive, the stages are different, and you rescue hostages rather than disarm bombs.  Each mission ends up with you fighting a boss, and when you defeat each (except the final one), you also participate in a bonus stage where you must shoot all ninja flying towards you.\n\nSome of the enemies are also quite different. Some of the lizards, which appear in later missions,  leave a \"lizard coin\", which you can collect for bonus lives. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Shadowrun (USA).txt",
    "content": "Welcome to 2050, chummer.\n\nShadowrun is an action RPG of epic proportions. You take on the role of Joshua, a Shadowrunner out to discover who murdered his brother. \n\nAlong the way you get into street brawls, deadly gunfights, run the Matrix, slip into and out of the MegaCorps, explore the wild wilderness and deal with every low-life mage and high-tech cyber Street Samurai in Seattle.\n\nShadowrun was based on the FASA RPG of the same name, and while real-time, modeled every rule from the paper system, from character stats to experience to combat to weapons and equipment.\n\nThe game used an overhead view for physical combat, and a third person \"POV\" when on Matrix runs. It allowed two other characters to join your party either temporarily or \"for life\" however long that may be...\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Shining Force (USA).txt",
    "content": "In a wondrous land perhaps not so far from our world, a strange and terrible series of events took place. The powers of darkness, led by Dark Dragon, fought for control of the world of Rune. Legendary warriors of light fought them with the ancient and modern weapons of the time, and drove Dark Dragon into another dimension. But Dark Dragon vowed that in 1,000 years, he would be able to break through the inter-dimensional barrier, back into this world. \n\nA thousand years of peace and tranquility passed. The people of the world were happy to live their lives in contentment, able to spend time rediscovering the magical and technological wonders destroyed by Dark Dragon and using them to benefit all people. \n\nBut the kingdom of Runefaust has begun a massive attack of the kingdoms of Rune - intending to help Dark Dragon return to this world! A small band of warriors has been sent out on a dangerous journey to fight against the dark forces of Runefaust, and you are the leader. Prepare yourself for the ultimate battle! \n\nShining Force is a strategy/RPG.  As you make your way through the lands of Rune, you will be joined by other warriors who wish to stop the forces of Runefaust.  Each warrior has their own strengths and weaknesses.  As you progress through the game you will also gain new weapons and spells.  Use them wisely to stop Dark Dragon from arising and causing havoc in Rune.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Shining Force II (USA).txt",
    "content": "Shining Force II is a strategy/RPG hybrid with cartoon-like graphics. The game is comprised of two modes: exploration, in which the hero and his companions engage in the role-playing game standard of talking to townspeople, exploring new lands, and furthering the plot; and battle mode, in which the combat is resolved from a tactical point of view, with individual combats being resolved from a close-up view with animated characters.\n\nThe plot consists of such quests as saving a princess from the clutches of demons, rebuilding the hero's hometown, and uniting the various forces of good together against the hero's nemesis. Along the way, the hero will be joined by many characters who seek to aid him in his journey. Several of these characters can only be obtained by completing side quests. In addition, random battles can occur between the programmed scenarios, giving the hero's party a chance to obtain experience and gain levels outside of the set scenarios.\n\nThere are several difficulty levels in the game, selectable when starting a new game. In addition, there is a configuration code that allows cheats to be activated, including the ability to control the enemy units.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Shining in the Darkness (USA, Europe).txt",
    "content": "This is a story-driven console-style RPG, and is the first in the three game Shining series for the Genesis (followed by Shining Force and Shining Force 2). The Kingdom of Thornwood has been invaded by Dark Sol's men, and it is your job to vanquish them. You will need the Arms of Light to do this.\n\nThe game is a first person RPG, with turn-based combat and cartoony graphics. The dialogue is displayed via dialog bubbles appearing above the characters speaking, although the protagonist never speaks. There are no sub-quests - the secrets in the game involve  the location and use of special metal for forging esoteric items. There are about 25 to 30 hours of gameplay to be found here, before the final battle and ending sequence.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Shinobi III - Return of the Ninja Master (USA).txt",
    "content": "Shinobi III involves a ninja named Joe \"Shinobi\" Musashi (you) going and kicking some bad guy butt, in this case his old enemy \"Neo Zeed\".\n\nIn normal Shinobi style, you are presented with side-scrolling playfields which you must slash and shuriken your way through, to meet the end boss of each round. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Skeleton Krew (USA).txt",
    "content": "The game takes place in the year 2062. A baddy named Moribund Kadaver has assumed control of a cryogenics plant near Monstro City. Kadaver is apparently a former mortician who has dabbled in cryogenics ever since he purchased Deadly Enforcement Aggressive Destruction Incorporated, aka DEAD Inc. Now he has the power to unleash mutants called Psykogenix on the population of Monstro City! The Military Ascertainment Department (MAD) has decided to call upon the world's most vicious mercenaries: the Skeleton Krew.\n\nSkeleton Krew has you choosing between three members of the deadly organization: Spine, Joint, and Rib. The object of the game is to make it through four planets on your way to stop Kadaver's nefarious plans.\n\nThe areas include Earth, Mars, Venus and finally the Psykogenesis Planet, where you will infiltrate DEAD HQ. A second player can join in for simultaneous play, and you can continue your game via passwords. Skeleton Krew features three difficulty levels.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Sonic & Knuckles + Sonic The Hedgehog 3 (USA).txt",
    "content": "Dr. Eggman's (AKA Dr. Robotnik's) Death Egg was once again blasted by Sonic, crash-landing on the peak of a volcano on the Floating Island. \nDr. Eggman is still at large, and Sonic can't allow him to get his hands on the Master Emerald and repair the Death Egg. Sonic must also keep Knuckles off his back but Knuckles has problems too. As guardian of the Floating Island and all the Emeralds, Knuckles must do his part to keep the island safe. While they're going the rounds with each other, who will stop Dr. Eggman? \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Sonic Spinball (USA).txt",
    "content": "The evil doctor Robotnik has a new plan to take over the world. He has built a new weapon, the Veg-O-Fortress on Mount Mobius and with it, he is transforming all creatures into robots. Sonic sneaks into the fortress and tries to stop Robotnik.\n\nUse Sonic as a pinball in 4 dangerous levels. Score points, get rings, collect Chaos Emeralds and destroy the boss at the end of each level. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Sonic The Hedgehog (USA, Europe).txt",
    "content": "Sonic the Hedgehog is the first of many games starring Sega's premier rodent Sonic. It's a side scrolling platform game with a difference: speed. Sonic rushes through levels with incredible speed, allowing him to traverse loops and jumps with ease. The evil Dr. Robotnik has captured many of Sonic's animal friends and trapped them inside robots. Sonic can free his friends by destroying the robots with his spin attack. Meanwhile, Dr. Robotnik is trying to control the all-powerful chaos emeralds and Sonic must grab them before he does in the 3D rotating bonus levels. Sonic's weapon is his spin attack; while jumping, Sonic destroys hostile robots by touch. Throughout the platforming levels Sonic collects numerous rings. If Sonic is hit by an enemy, all the rings he's carrying fall out and scatter around; Sonic can quickly grab the rings back before they disappear. If Sonic is hit while not carrying any rings, he dies. Collecting 100 rings gives Sonic an extra life. There is also an invincibility bonus which temporarily protects Sonic from all attacks. The game is divided into several \"zones\", each of them containing three levels. At the end of each zone Sonic confronts Dr. Robotnik in a boss fight. Sonic the Hedgehog is a significant game because it gave Sega it's first real mascot, and established the Genesis as the video game system with \"attitude.\"\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Sonic The Hedgehog 2 (World) (Rev B).txt",
    "content": "Sonic the Hedgehog 2 is a side-scrolling platformer based around speed, and the sequel to Sonic the Hedgehog. Players run through different worlds called \"Zones\", each with a specific theme. There are two Acts in nearly all of the 10 Zones, and at the end of each Zone's last Act is a machine that Robotnik controls, which you must defeat to progress. Sonic and Tails can collect rings which are scattered throughout all of the levels. When the player collects 100 rings they earn an extra life. The rings also act as protection - if Sonic is hurt when he is carrying rings, they scatter everywhere and he is briefly invincible. If he is hit again when he has no rings, he'll lose a life. If the player reaches a continue point lamppost with 50 or more rings, they'll be able to access the Special Stage. In this stage, you must gather a set amount of rings in a halfpipe-like stage before you reach a checkpoint. Complete all the checkpoints and you'll earn one of the seven Chaos Emeralds. The game also includes the ability to play the game co-op with a friend - at any time, a player can plug in a second controller and take over the AI controlled Tails. Tails has infinite lives and the camera remains focused on Sonic, meaning that Tails will not hinder play. Sonic (and Tails) can now also get speed from a standing start by holding down and repeatedly pressing the jump button for a \"Spin Dash\". This is useful when stuck near steep slopes or other areas where you need some momentum. The game also features a 2-player versus mode. This mode is a horizontally split-screen race through levels based on three of the zones in the single player game.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Speedball 2 - Brutal Deluxe (USA).txt",
    "content": "Brutal Deluxe doesn't live up to their name - in fact they're the worst team Speedball has ever seen. As their manager, it is your job to transform their fortunes. As well as the league system, which consists of 2 8-team divisions and challenges you to advance to the top, there are also 2 cup tournaments, one of which is played out over 2 'legs' with the aggregate score deciding who progresses.\n\nYou can play the matches as well, which is the real meat of the game. They consist of 2 90-second periods, and the gameplay is futuristic, fast and frantic, with heavy tackling encouraged to retrieve the ball. Power-ups and tokens appear on the pitch, including ones to make your players extra-tough or freeze the opponents.\n\nThe sides of the pitch each include a score multiplier, which you can run the ball through to increase the value of your scoring - the opposition can sometimes immediately grab the ball and nullify this. There are also 5 stars which are worth 2 points each if you hit them (more if you have the multiplier activated), but these can also be cancelled out by the opposition hitting the same star, and their points values only become set after the half. Next to the stars there are 'portals' which throw the ball out the opposite side of the pitch, in the direction it was going.\n\nYou get money for the results, and by collecting the silver tokens which appear on the pitch at random intervals. Between each match you can spend these either on improving your existing players as far as they can go, or on buying better ones and fitting them into the team. Your original players can only be improved to a certain extent, so remembering where your signed players are and making use of them is important.\n\nA variety of tokens also appear during the match, some of which boost your team's power for a short period of time, and one freezes the opposition. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Splatterhouse 2 (USA).txt",
    "content": "It has been three months since your escape from the Splatterhouse in the first game. Having been unable to save Jennifer, you keep having the recurring dream where she is begging you to come and rescue her. The mask from the Splatterhouse appears and promises that there is still a chance to save her. There is a downside to it, though. Wearing the mask of terror will fill you with feral rage and an insatiable hunger for blood.\n\nHeavily influenced by films such as Evil Dead 2, the game takes you through eight, side-scrolling stages. Rick has a basic set of punches, kicks and flying kicks, but he can pick up additional weapons such as a lead pipes, bones, bombs, a shotgun and a chainsaw for the ultimate bloodfest, while fighting skulls, razor fish and giant demons. A boss, requiring a specific pattern of moves, awaits you at the end of each stage.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Splatterhouse 3 (USA).txt",
    "content": "It has been a while since the escape in Splatterhouse 2 and Rick is slowly regaining his sanity. At night, he is still haunted by nightmares from the place. Rick has married Jennifer and they have a son, David. In the final chapter of this horror trilogy, Rick finds out that an entity called The Evil One has kidnapped his beloved family members. He has no choice but to wear the demon mask with the supernatural powers to save Jennifer and David from the demon-infested Splatterhouse.\n\nThe third title in the series builds upon the gameplay of its predecessors. The game consists of six consecutive levels in a huge mansion. In a race against time, you have to wipe the demons from each room and find the quickest path to the boss area. After clearing a room, you can use an in-game map to decide upon the quickest route. Improvements over the second title include moving between rooms in multiple directions, multiple endings based on your performance, special moves for Rick and crisper graphics.\n\nIt still has a horror theme and maintains the same level of gore and violence. You can collect weapons such as a skull-smashing baseball bat, an ax and cement blocks. If you get knocked down, a ghost will try to snatch your weapon and drop it in another room of the house. Other collectible items include extra lives, health meat or orbs. These orbs build up a power meter. Upon completion, you have the ability to transform into a berserk mutant for a short time. The cutscenes feature real actors who act out the characters.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Steel Empire (USA).txt",
    "content": "The game presents itself as an old-time war film produced by the \"HOT-B Film Corporation\". In the film, the future is the Steel Age, where a military dictatorship called Motorhead enslaved the human population. The only hope for freedom is the Republic of Silverhead, who managed to remain independent, and who alone has the weapons to take out Motorhead. \n \n\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Stormlord (USA).txt",
    "content": "Badh the queen has imposed a terrible vengeance on the land by kidnapping the fairies. To restore things their rightful way, you must rescue them.\n\nAs you progress through the levels of platform-adventure action, you will come across fairies which are rescued by touching them. Enemies include Venus Fly Traps, localized acid rain showers and dragons, which can be avoided or shot in the bonus shoot 'em up sections. You will need help to reach some levels; this comes from Mael Dvin the Eagle. After each level there's a bonus game in which tears must be collected for points.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Streets of Rage (World) (Rev A).txt",
    "content": "Streets of Rage, Sega's answer to Final Fight, follows the story of three young police officers (Adam Hunter, Axel Stone and Blaze Fielding) in a city controlled by a criminal syndicate led by a \"Mr. X\" where crime is rampant, which leads the three heroes to make a pact to leave the force and topple the syndicate by themselves.\n\nGameplay is straightforward and simple. Three buttons are used, one to jump, other to attack and another to perform a range attack from a support police car. Each character has a limited set of moves that include punching and kicking or performing a back attack (if in the open), two grapple moves (depending if holding the opponent in front or by the back), a flying attack, and if playing with another player two additional tag attacks, and different abilities: Adam is slow, but a good jumper and a hard hitter, Axel fast and also a hard hitter, but a lousy jumper and Blaze fast and a good jumper, but weak hitter.\nLevels are in typical arcade side-scroller fashion: move from left to right (with two exceptions), clearing screens from enemies one after another as fast as possible while avoid taking damage with a boss in the end. Some levels feature \"death drops\" where the player must avoid falling, while throwing enemies there at the same time, including a typical elevator level.  Several items are scattered on the ground, from melee weapons and bonus points (and lives or additional police cars) to apples and turkeys (to restore health).\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Streets of Rage 2 (USA).txt",
    "content": "After Axel Stone, Blaze Fielding and Adam Hunter destroyed the evil Syndicate leader, Mr. X, the city became a peaceful place to live, and each one of them followed their own paths. One year later, after their reunion, Adam's brother Sammy returned from school to find their apartment in a mess, and Adam nowhere to be seen, and after calling his two friends, one of them notices a photo of Adam chained to a wall, next to someone they knew very well - Mr. X, who returned to turn the peaceful city once again into a war zone. Now, Axel, Blaze, Sammy, and Axel's good friend Max, a pro wrestler, must head out to stop Mr. X once again...hopefully for good...\n\nStreets of Rage 2 differs from the previous title in several ways. There are changes in both graphics (characters now are bigger, more detailed and with more animation frames, and scenarios are less grainy) and gameplay (the rocket move was replaced by a special move that doubles in offense and defense along several new moves), along other new features such as life bars (and names) for all enemies and the radically different new characters.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Streets of Rage 3 (USA).txt",
    "content": "Streets of Rage 3 aimed to build on the success of its predecessor, so while the style of gameplay and control scheme is largely identical to its predecessors, significant changes were made to the overall structure of the game. Streets of Rage 3 is a faster paced release with longer levels, a more complex plot (which in turn leads to more in-depth scenarios complete with interactive levels and multiple endings) and the return of traps such as pits. Dash and dodge moves were added to each character's arsenal of moves, and weapons can now only be used for a few times before breaking. \n \nChanges to the fighting mechanics allows for the integration of weapons with certain movesets. Team attacks, absent from Streets of Rage 2 but available in the original Streets of Rage, make a return, and are occasionally used by enemies too. Blitz moves, performed while running, have also been altered and are now upgradable over the course of the game (predicated on how many points are earned per level). Death causes a downgrade, however holding the X button before a series of button combinations can give players access to the upgraded moveset at any point in the game, at the expense of the time taken to perform attacks. \n \nEnemies are also smarter with weapons, and some can even steal health upgrades, and there are also several secret playable characters, unlockable after overcoming certain conditions during the game. Special moves also no longer drain the user's health - a separate, automatically regenerating bar is introduced for this purpose.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Strider (USA, Europe).txt",
    "content": "The year is 2089AD. In Russia, the evil Grand Master Meio has begun his insane plot to take over the universe. A lone figure drops from a stealth glider into Meio's base. He is Hiryu, Super A-Class Strider. His mission is to defeat the Grand Master and put an end to his plotting once and for all.\n\nConverted from the classic arcade game, Strider lets you run, jump, perform acrobatics and climb walls and overhangs. You wield a plasma sword, called a Cypher, through 5 levels fighting robots and guards, with mid- and end-level bosses.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Sub-Terrania (USA).txt",
    "content": "Aliens have invaded a vital subterranean mining colony. Use light-speed reflexes and total concentration to fly your prototype fighter through impossible caverns rescuing miners and blast those aliens into the darkest pits of space!\n\nThe game consists of 10 missions. Each mission takes place in a vast cavern, with interesting weather conditions. You must explore it and complete the mission objectives -- usually collecting sub parts, rescuing trapped miners, or destroying giant, epic bosses. You can also explore the levels, but keep an eye on your fuel gauge and beware the many hazards!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Super Fantasy Zone (Europe).txt",
    "content": "The next-gen sequel to Fantasy Zone, Super Fantasy Zone starts as a strange gravitational force appears in the Menon planet, home of the evil Menon empire and thus a new threat looms over the Fantasy Zone. \n\nIn a sudden strike by the Menon forces O-Papa, Opa-Opa's father, is fatally wounded. Thus Opa-Opa once again sets forth to destroy the Menon empire and avenge his father.\n\nGameplay is identical to the previous games, you control Opa-Opa on a freely scrolling 2D game world and you must seek and destroy all the enemy generators in each level in classic arcade shooter fashion and then face a boss fight. Upon successful completion of a level, you get to spend the coins you collected on it at an upgrade shop, fitting your ship with better weapons and upgrades, and then you head out for the next level.\n\nSmall changes in gameplay include the removal of the automatic orientation control as in the Game Gear Fantasy Zone, expanded control mapping that takes advantage of the Mega Drive's extra buttons, and more weapons and items to upgrade your ship with.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Sword of Vermilion (USA, Europe).txt",
    "content": "The cousin of Sega's RPG Phantasy Star II, Sword of Vermilion contains elements from action, adventure, and RPG games in a medieval-fantasy setting.\n\nA third-person, top-down perspective is used to move around towns.  A first-person view is used for overland travel outside of towns.  A third-person sideview perspective (a la Double Dragon or Final Fight) is used for the combat sequences.\n\nThe player is cast in the role of an ordinary young man who discovers that he is really a prince, and the son of the deceased good King Erik.  He is charged with traveling around the land of Excalabria to collect the eight magic Rings of Good, defeating a number of boss enemies on the way to confronting the evil King Tsarkon.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Target Earth (USA).txt",
    "content": "Space shooting game set in the future with Earth under attack by robots.\n\nYou are the pilot of a mech robot which can either walk on planet surfaces or fly in space.  There are two types of levels in the game.  Surface levels take place on planets or moons and allow the mech to run and jump to the end of the level while fighting enemies, as in a side scrolling game.  Space levels have no gravity and allow the mech to move in any direction.  The mech can be equipped with a large assortment of machine guns, lasers, and grenades.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Taz in Escape from Mars (USA).txt",
    "content": "You play as Taz, the famous cartoon-character. Taz is captured by Marvin the Martian and transfered to his intergalactic Zoo! Now it is your job to aid Taz in his great escape from the Zoo-prison and also find a way back home to Earth. To make the escape a little easier, there are items placed here and there, such as cakes which make regain your health. You also find gas tanks, which you can eat and then breath fire.\n\nYou will travel trough the Zoo, and a big wasteland and many other hostile zones with lots of weird enemies and bizarre bosses.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Taz-Mania (World).txt",
    "content": "One evening, Taz's father is telling an intriguing tale. Somewhere on Tazmania is a Lost Valley, and in that valley nests a huge seabird, so huge that one of it's eggs could feed a family for a year! Just think of the omelette one of those could make!\n\nThus Taz becomes fascinated and leaves in search of one of those eggs before his Dad has even finished the story...\n\nTaz can Jump, perform a Spinning Jump and a Spin Attack. Munch roast chickens to replenish life. Gain extra points by moving quickly through the levels - there are six stages and each stage has two rounds.\n\nThere are a few other items and pickups such as:\n\n1. Spring: boings Taz up to high ledges.\n2. Blocks: destructible.\n3. 1-UP: extra life.\n4. Star: invulnerability. Unless you run into a bomb.\n5. Bomb: does what it says on the tin.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Technocop (USA).txt",
    "content": "\"I OPERATE ALONE\" the D.O.A. Punks are out to stop me, but I've got orders to bring them in or drop ?em dead. \n \nTo entice their cooperation, my VMAX TWIN-TURBO Interceptor is equipped with APACHE Side-Mounted cannons and PULSE long-range nuclear torpedoes. \n \nPacking a .95 AutoMag, designed for internal explosion of human targets and a TONARI snare gun. \"I play to win.\" - TECHNOCOP\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Teenage Mutant Ninja Turtles - The Hyperstone Heist (USA).txt",
    "content": "The Turtles' nemesis Shredder has acquired the HyperStone from Dimension X, and is using its powers to shrink down the city buildings. He threatens to take over the world and challenges the Turtles to deny him, and so the turtles head out to beat the guy once more.\n\nA standard Ninja Turtles beat-em-up action game. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Teenage Mutant Ninja Turtles - Tournament Fighters (USA).txt",
    "content": "The game features the original 4 turtles from the previous games in the series, as well as other fighters.\n\nThe game is very much in the tradition of the Mortal Kombat or Street Fighter series, pitting you against opponents one at a time. Some fighters (besides the turtles) will be familiar, such as the Rat King, or even Shredder (now called \"Cyber-Shredder\" here).\n\nThough even people familiar with the turtles will see differences in them. They can now, for example, do moves involving projectiles, such as \"fireballs\".\n\nThe game's modes include a story mode, where you can only pick one of the turtles and go on fighting opponents in order to rescue April and Splinter, and a tournament mode, where you fight only for the fame and money. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/ToeJam & Earl (USA, Europe, Korea).txt",
    "content": "Toejam and Earl are two hip aliens from the planet Funkotron. One day, they are cruisin' their galaxy in the sweet spaceship ride. Unfortunately, Earl wasn't paying enough attention to where he was driving, and ran the ship into an asteroid.  The ship crash landed onto the most bizarre planet in the galaxy: Earth.\n\nToejam and Earl must travel from level to level on Earth and collect the 10 scattered pieces of the ship. But the various Earthlings, such as Nerd Herds, Giant Hamsters, Phantom Ice Cream Trucks and the Bogeyman will make that difficult.\n\nThe power up items that TJ and E can pick up come in the form of wrapped presents. You never really know what a power up is until you open it. What's more, randomized levels and item locations make it a different game every time.\n\nThe game features a dynamic screen splitting - screen joining 2-player mode.\nPlayers start the game close to each other. If one gets away from the other, the screen vertically splits to allow each player to move freely. When players are close again, the screens join together to become one single screen.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/ToeJam & Earl in Panic on Funkotron (USA).txt",
    "content": "The sequel to ToeJam & Earl starts off where the first game ends. The two funky aliens have finally gathered all their rocket parts and left Earth for their home planet Funkotron. Accidentally, some earthlings manage to cling on to their spaceship and come along to Funkotron with them.\n\nBeing responsible for the huge disturbance the humans are causing on their funky planet, the duo set off to clean up the mess.\n\nThe earthlings come in all sorts of surprising forms, kids running around, construction workers, tourists, and the regular wierdos. You can choose either character, or have two players play out together, as you hit the earthlings with special jars that suck them in, so they cud be transported back to Earth.\n\nYou meet other Funkotron inhabitants and interact with them, things like helping them find stuff or ringing their doorbell and running away! All these people will help you in getting the job done and preventing Funkotron from losing its funky-ness. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Toki - Going Ape Spit (USA, Europe).txt",
    "content": "The hero of the game is a young jungle-man named Toki. One day the evil wizard Dr. Stark kidnaps his girlfriend Wanda. When Toki tries to save her, he is turned into a monkey! Now Toki has to find Dr. Stark in his palace, to rescue Wanda, and to become a human being again!\n\nIt is a platform game with a lot of various levels: jungle, underwater, volcanic caves, on the ice... Toki's only weapons are spitting on the enemies or jumping on them and crashing them. There are many possibilities to upgrade his spitting \"weapon\";  for example, if he finds an upgrade, he can spit fireballs. \n\nThis game is ported from an older arcade version.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Toy Story (USA).txt",
    "content": "This game is based on the movie \"Toy Story\". It sets you as the character of Woody as you jump, swing, and drive to the end of each level. Each level contains familar scenes from the movie. The gameplay consists of the platformsidescrolling kind. You use Woody's pullstring to defeat enemies like sharks, Mr. Potatohead, and Ham. After each level, you are treated to still images from the movie. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Trouble Shooter (USA).txt",
    "content": "King Frederick's son and heir to the throne, Prince Eldon, has been kidnapped by Blackball, an evil military weapons genius.  Just as international disaster seems imminent, Colonel Patch calls in the \"Trouble Shooter\" to take care of Blackball and his evil robot minions.  Play as Madison and her faithful sidekick Crystal in this action side-scrolling adventure which takes you through 5 levels of Blackball's domain to the very mastermind himself.  Will Madison be able to defeat Blackball and rescue Prince Eldon in time?\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Truxton (World).txt",
    "content": "Truxton is one of the earlier 2D scrolling shoot-em-ups. Originally an arcade game, the Genesis/Megadrive version was the only home port of the game released in the United States of America and Europe (and is fairly rare to find). The game was released as \"Tatsujin\" on the PC Engine in Japan as well.\n\nThe game features the usual vertical scrolling backdrops, multiple rounds/stages, myriads of enemy fighters, BIG guns and power-ups.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Twinkle Tale (Japan) (Translated).txt",
    "content": "An overhead scrolling fantasy shoot 'em up, Twinkle Tale casts the player in the role of the young witch Saria, in a quest to rid her magical floating island of the evil creatures that have invaded it.\n\nThe game is played from an overhead perspective, with Saria having complete freedom of movement in all directions and with the objective being to clear out all enemies in all 9 stages, looting whatever treasure you can find and defeating each stage's boss.\n\nSaria's offensive weapons come pre-defined as three different spells, which you can freely switch to at any time and level-up by collecting power stars, as well as screen-clearing bombs.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Ultimate Mortal Kombat 3 (USA).txt",
    "content": "Ultimate Mortal Kombat 3 combines the best of all the Mortal Kombats into a single cartridge. 23 playable characters are immediately available, such as Reptile, Cyrax, Scorpion, Sub-Zero, Jax, Katana, Sonya, and more. There are two bosses that are unlockable, as well as additional characters.\n\nThere is a variety of new levels, some of which are interactive. Characters can uppercut someone, causing them to hit the ground hard and crash through to the bottom floor, or they can knocked someone off a bridge, landing in a pit of spikes.\n\nPlayers can go against the computer one-on-one, two-on-two, or take part in the 8-fighter tournament.\n\nThe DS version has a wireless one-one-one multiplayer mode and includes the Puzzle Kombat mini-game from Mortal Kombat: Deception.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Undead Line (Japan) (Translated).txt",
    "content": "Undead Line is a top-down arcade shooter with scrolling screens, like Commando and other games. The player controls a character (from a selection of three on the MSX 2 version) that shoots projectiles at enemy monsters.\n\nThe six levels available are presented in a menu and can be selected and played in any order. There is a boss battle at the end of each one.\n\nChests with power-ups are scattered throughout the levels. They open when shot, and in the Genesis version it is possible to cycle through the available power-ups by keeping firing at them. The power-ups include armor and speed boosts, and several types of projectiles.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Vectorman (USA, Europe).txt",
    "content": "In 2049, the human population of Earth embarks on a migratory voyage to try to colonize other planets. They leave mechanical \"orbots\" to clean up the mess they made on Earth through littering and pollution. Raster, a high-level orbot who watches Earth through a planetwide computer network, is accidentally attached to a working nuclear missile by a lesser orbot and goes insane, becoming an evil dictator named Warhead. He declares himself ruler of Earth, and begins preparing to execute any humans who dare return to their planet. \n \nEnter Vectorman, a humble robot in charge of cleaning up toxic sludge by simply discharging it into the sun. As he lands on Earth after his last trip, he finds chaos and confusion. Because all the other Orbots are controlled by Warhead (Vectorman having not been affected because he was away), Vectorman takes it upon himself to destroy the errant orbot and restore peace to Earth.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Vectorman 2 (USA).txt",
    "content": "This is a sequel to  Vectorman. This time, the super-powerful little robot was attacked while coming back to earth in his spaceship. He falls down on the earth only to discover dark locations full of hostile creatures and to participate in a platformer full of fast and furious action. Fight your enemies, collect photons, jump over obstacles, find weapons, morph into other creatures, and climb walls as the green \"orbot\" Vectorman.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Warsong.txt",
    "content": "Warsong is the only title of a series of famous strategy games, known as Langrisser in Japan, to ever see an official release outside of Japan. It is set in a typical medieval fantasy setting and features traditional turn-based combat. The player controls several generals who can command up to eight different units ranging from ordinary soldiers and archers to more exotic creatures like mermen or lizards.The generals fight alongside their units, however they are much more powerful and are able to use more diverse commands than just moving and attacking, like recovering a small amount of HP or casting spells. Each unit has certain strengths and weaknesses; for example soldiers are good against archers but weak against cavalry etc. Combat is also influenced heavily by terrain types. When two units engage in combat a small animation, similar to those seen in Advance Wars or Fire Emblem, is shown.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Wiz 'N' Liz (USA).txt",
    "content": "Wiz 'n' Liz are magicians. They live on the planet Pum and brew potions and cast spells. They also tend to wabbits. Lots of wabbits. One day, a concoction went awry and sent all the wabbits to distant parts of Pum. Wiz 'n' Liz set off to look for them.\n\nCatch all the wabbits in tons of levels in several difficulty settings. Create magical words and mix ingredients for extra lives, bonus levels and other surprises. Features a password save system so you can take off where you left. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Wonder Boy III - Monster Lair (Japan, Europe).txt",
    "content": "Wonder Boy III: Monster Lair is a quite different game to most of the games in the Wonder Boy series. You play a green-haired dude who must attack the invaders that attempt to collect weapons and use them to destroy the land. The game starts out like a simple platform game, but it's just when Wonder Boy enters the skull further on that the game is transformed into a shoot 'em up, so basically the gameplay consists of action and shooter scenes.\n\nIn the action scenes, your vitality decreases as you make your way towards the skull, but this can be restored by collecting fruit. A wide variety of weapons can be picked up, and not only does these allow you to use the weapons for a limited amount of time, but they also increase your vitality. \n\nIn the shooter scenes, you ride your pink friend as you make your way through the scene. Here, your vitality remains static unless you are hit by an enemy passing by. As usual, there is a boss waiting for you at the end which you must defeat. Every boss changes color to show how much damage has been done to it. You have to defeat some bosses in two stages.\n\nIf your vitality gets low in each scene, you'll lose a life. You can also choose to have Wonder Girl join you, as two players can play the game. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Wonder Boy in Monster World (USA, Europe).txt",
    "content": "\"Monster World was once a peaceful region. Then, the peace was shattered by an invading army of monsters. A young man named Shion vowed to defeat them and make his land peaceful again.\"\n\nWonder Boy In Monster World puts you in control of Shion in his quest to save Monster World from the evil hands of BioMeka.  It controls like your standard platform game - run, jump, and kill enemies.  The game is filled with RPG elements such as talking to townsfolk, collecting money to buy items, upgrading your life, and equipping a variety of armor and weapons - staying very close to the \"Zelda format\".  You can save your game to continue your quest at a later time.\n\nWonder Boy In Monster World is the third game in the Monster World spin-off series.  In Japan the game is called Wonder Boy 5: Monster World 3.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/World of Illusion Starring Mickey Mouse and Donald Duck (USA, Korea).txt",
    "content": "World of Illusion is sort of a follow-up to Castle of Illusion. Mickey Mouse and Donald Duck are taken to a magic world and have to get back home. In order to do that, they can play magical tricks and interact to each other in a 2-player mode. Like other Disney games for SEGA consoles of the same period, the game has cartoon-like graphics and is played as a side-scrolling platformer.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/X-Men 2 - Clone Wars (USA, Europe).txt",
    "content": "This is the second X-Men game from Sega for the Genesis.  This time around, an alien force known as the Phalanx is out to control the earth. The X-Men are our only hope to stop this menace.\n\nThe gameplay of this adventure is similar to side-scrolling action of the previous title.  You have more playable characters this time: Beast, Gambit, Nightcrawler, Psylocke, Wolverine, Cyclops and even Magneto. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sega Mega Drive - Genesis/text/Yu Yu Hakusho - Makyou Toitsusen (Japan) (Translated).txt",
    "content": "Yusuke Urameshi and his friends are invited to a tournament by Makyou Toitsusen, a mysterious martial arts society. In this tournament they are gonna face again some demons who fought them in the past, and decide who are the strongest.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Ace Combat 2 (USA).txt",
    "content": "Ace Combat 2 is the sequel to Namco's PSX combat flight simulator Air Combat. Ace Combat 2 puts you back in the cockpit as a mercenary pilot out to foil a world-threatening terrorist plot. You'll proceed through 30 missions in which your success will allow you to buy weapon upgrades, parts and other gimmicks just like in the original. \n\nThe game offers sharper graphics and sounds, more planes and options, dual shock support as well as adding analog joystick support.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Ace Combat 3 - Electrosphere (USA).txt",
    "content": "In Ace Combat 3: Electrosphere the player takes the place of an ace fighter pilot who works for an organization called \"UPEO\" and has to accomplish various missions, e.g. taking out a special aircraft carrier or taking out enemy satellite systems in orbit around earth. The player can earn ratings from A to D: the higher the rating, the higher the chance that the player can acquire new kinds of planes. The game has many environments which range from normal aerial missions to stratospheric missions and even outer space missions. A special catch is that the player often has to make decisions during missions which influence the overall storyline. There is also an autopilot feature which can be used to land or reach a destination.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Alone in the Dark - The New Nightmare (USA).txt",
    "content": "Alone in the Dark: The New Nightmare is the fourth entry in the Alone in the Dark series, continuing the story set up by the previous installments. Charles Fisk has gone missing on Shadow Island and is presumed dead. His good friend, private investigator Edward Carnby, has chartered a plane to Shadow Island to investigate the disappearance of his friend and discover what the island's owner, Obed Morton, is planning. Ailene Cedrac, an ethnology Professor at Boston University, also has an interest in the island -- she believes that her long lost father is located there. Driven by intrigue as well as a desire for closure, both Cedrac and Carnby fly to the island on Halloween night.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Alundra (USA) (Rev 1).txt",
    "content": "Alundra is a boy who can step into other people's dreams. His own dreams tell him to go to the village Inoa. The ship on which Alundra is coming to the village goes down, but Alundra himself is washed up on a beach near the village. There, a blacksmith Jess takes care of him and treats him like his own son. But Alundra, stepping into the dreams of the village people, understands there's a danger somewhere. The people have horrible nightmares, and only Alundra can find out what they mean... \n \nAlundra is an action role playing game (RPG) somewhat similar to the famous Zelda games. It uses real-time combat and has a lot of physical and environmental puzzles. A big part of the game is spent in dungeons, where the player has to solve puzzles in order to proceed.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Alundra 2 - A New Legend Begins (USA).txt",
    "content": "In the distant lands of the Vanilla Kingdom; a mysterious being has appeared in the Doru region, who is able to change the evolution of the animal kingdom at will, forcing a magical evolution. The consequences of this are terrible: it transforms living beings into evil mechanical beings. In this situation, Flint appears; a young boy, orphaned due to the death of his parents at the hands of the pirates, whom he persues without rest; although he will have to abandon this obsession when he is forced to confront the mysterious being, Mephisto.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Bishi Bashi Special (Europe).txt",
    "content": "Bishi Bashi Special is a compilation (and conversion) of the Konami arcade titles Bishi Bashi Champ, Super Bishi Bashi Champ and Handle Champ.\n\nGameplay is made up of tons of mini games, all of which use a simple 3-button interface that mimics the arcade originals. The mini games encompass a wide variety of button-mashing, timing and button combination games. The games themselves can be anything from making hamburgers, throwing a pie down a church aisle to balancing a car on a floating narrow gravel road and much more.\n\nThe game can be played alone, vs a computer player or play up to eight people using a multi-tap and three controllers.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Blood Omen - Legacy of Kain (USA).txt",
    "content": "Blood Omen is a top-down game where the player controls the vampiric Kain. As a vampire, Kain is able to withstand sunlight, but is harmed by water. However, he is able to obtain several cursed abilities and spells such as being able to transform into a bat, wolf and even a cloud mist respectively, as well as learning the ability to disguise himself from creatures of weaker mind. Kain is also fixated on murder and is a master of several ways to kill and destroy his opponents. As the enemies are slain in front of him, Kain may drink their blood to restore his health, which is always trickling away, representative of his insatiable craving. To aid in the slaughter of his enemies, Kain may equip different weapons and armor, each with its own unique properties.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Bloody Roar (USA).txt",
    "content": "BLOODY ROAR pits eight fighters with unique \"Spirit Animals\" against each other. Don't just beat your opponents; pummel them into the ground by using combo after combo, or transforming into the character's \"Spirit Animal,\" which might be a killer rabbit, gorilla, fox, or something else, entirely. See the moment of victory with instant replays that show the blow that put the loser down for good. Every fighter is involved in the tournament for his or her own reasons, and you can play as each of the characters to learn those reasons. With all of the action in BLOODY ROAR, the beast in you just might come out.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Bloody Roar II (USA).txt",
    "content": "Bloody Roar is back with this sequel. Among the new and improved features are seven new characters (along with four original fighters) complete with new moves and looks. Like the original, each character has an inner-beast; Yugo morphs into a ravenous wolf and the vampire-like Jenny turns into a bat. There are nine initially selectable characters with two more waiting to be found. \n   The Arcade mode offers a no-frills competition against the computerized AI. If players get bored with the Arcade mode, a second player can join in the action or select the Versus option -- a two-player brawl. Survival mode tests to see how many opponents a player can beat without getting knocked out. In the Story mode, the real draw of Bloody Roar II, each character comes with his or her own unique scenario. By winning rounds, the story unfurls and resolves after the final conflict.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Brave Fencer Musashi (USA).txt",
    "content": "Brave Fencer Musashi is an action role-playing video game developed and published by Square in 1998 for the PlayStation home console. The game involves real-time sword-based combat in a 3D environment; it also features segments of voiced over dialogue and role-playing game elements such as a day-night cycle and resting to restore energy. \n \nThe story follows Musashi, a young swordsman who is summoned to a parallel world to defend Allucanet Kingdom from the Thirstquencher Empire. He searches for the Five Scrolls, which can enhance the powers of his sword, while interacting with people from Allucanet and a nearby village.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Breath of Fire III (USA).txt",
    "content": "Set free by the the workers of Dauna Mine, Ryu of the Brood learns to both understand his power, and to understand the history of his extinct kind. By both utilizing Ryu's unique power and the abilities of those whom assist him, players will uncover the history of the Brood, learn more about the characters, and the very reason why the Brood were wiped out. \n \nPlayers control Ryu and his allies on their journey, each of Ryu's friends have abilities only they can use, and they will have to work together to make their way through the obstacles and enemies that they encounter; creativity is key to your success in this game! \n \nRyu eventually is able to utilize his power of the Brood, allowing him to ascend into various dragon-like forms. This is done using a gene-splicing system that dictates what sort of form Ryu will take.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Breath of Fire IV (USA).txt",
    "content": "Nina, the princess of Wyndia, and Cray, chieftain of the cat-like Woren tribe, are searching for Cray's relatives who disappeared under mysterious circumstances during a diplomatic mission. Flying through the sky on their sandflier, Nina and Cray are attacked by a worm shaped dragon. With their vehicle damaged, Nina returns to the city to find parts, bumping into a naked young boy named Ryu along the way, who is unsure of where he is. At the very same time, Nina is again attacked by a dragon. Confused by the strange events taking place, Nina agrees to help the young boy. Meanwhile, the ancient Emperor Fou Lu awakens from his slumber in his tomb. His plan is to return to the world of human, conquer it anew, and impose his iron rule on it... \nThis fourth installment of the Breath of Fire series is a fairly traditional Japanese-style RPG, with turn-based combat, party management, linear story progression, and other characteristic elements of the genre.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Bushido Blade (USA).txt",
    "content": "The Bushido code of honor governs the actions of the Samurai and sets a code of ethics for use in fighting. Sometime in the 20th century, a group of Narukagami ninja, each proficient in a different style, find themselves in a battle to regain their honor in the fighting ring. \n    Bushido Blade is a unique fighting game, in that Square did away with health bars, special meters, and other traditional gimmicks and allowed for battles to be won with a single hit. This realism made the game a fan favorite among certain groups. \n    Players select from among six ninja, each of a different fighting style and attributes. Players also choose equipment from among eight weapons, including Japanese swords, European blades, naginata and a sledgehammer.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Bushido Blade 2 (USA).txt",
    "content": "Two samurai families who date back over eight hundred years have been feuding ever since the Gempei War, where the Kagami family sided with the Minamoto and ensured themselves a victory over their rivals, the Sue. Over the centuries since, the two families evolved into ninja clans, but their hatred of each other never faded. Now, in the 20th century, the Shainto, descendants of the Sue, are in a position to bring vengeance on the Narukagami.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/CTR - Crash Team Racing (USA).txt",
    "content": "It's a multi-player kart racing game starring your favorite bandicoot CRASH and a host of his friends...and foes! The stakes are high and the competition is fierce. Ready...Set...GO!!!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Castlevania - Symphony of the Night (USA).txt",
    "content": "As a descendant of Dracula, you must end the vampire bloodline. Can you rid the world of this unspeakable terror? Uncover the mystery of Castlevania and challenge an adventure as legendary as its name. Over 140 different enemies, bosses, and ghastly creatures. Awesome magical spells - transform into a bat, a wolf, or etheral mist. Hidden weapons, secrets, and characters...the largest Castlevania ever!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Chou Jikuu Yousai Macross - Ai Oboete Imasu ka (Japan).txt",
    "content": "Macross was a very popular mecha show made in the 1980s. It is better known in the states as Robotech. Macross, do you remember love is based on the movie version of the show. It is a compressed version made in the 1990. \n The game had a solid mix of 2D and 3D action and special effects that added depth to its gameplay, and lastly it was released on 2 CDs as it contained footage and sounds of the movie. The footage contained new scenes that showed Hikaru Ichijyo and his fellow pilots still on Earth flying on their way to the SDF-1 Macross which made a space fold jump just in time before the Zentradi's massive attack reached them. There are also several completely re-animated scenes, and some scenes that have been done completely with computer animation, such as the transformation of the SDF-1. \n\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Chrono Cross (USA).txt",
    "content": "Chrono Cross is a sequel to the SNES RPG  Chrono Trigger.\n\nThe main character is Serge, a young boy from a fishing village. One day, while strolling on the sea shore with his sweetheart, Serge suddenly disappears. He comes back to senses several moments later. Everything seems just the same as it was before, but when Serge visits his home village, nobody recognizes him. He hears from people that he has been dead for ten years. Serge begins to realize that he is now in a parallel world. His first and only wish is to find a way to return home, but, in order to do that, he must understand what has caused the existence of parallel words, allowing inter-dimensional travel. His quest will also reveal to him the truth about his own existence, and connect the seemingly unrelated plot of Chrono Cross to that of Chrono Trigger.\n\nChrono Cross is a Japanese RPG with turn-based battles. There are no random battles; enemies are always visible on screen. There are also no character levels in the game; instead, characters get better stats directly after each battle. During battles, Serge and his party members can perform three kinds of attacks: weak, medium, and strong. Strong attacks tend to miss more frequently. Magical spells are equipped by each character like items, and can be cast only as many times as they are equipped. Actions in battle deplete a certain amount of stamina, which recovers as other characters act. \n\nChrono Cross features many recruitable characters (up to 40, but not all of them can be recruited in one play-through), several different endings, and the ability to play the game again with the same stats and items from the previous play.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Civilization II (USA).txt",
    "content": "Re-write history with Civilization II as you lead your people to the promised land of peace and harmony with neighbouring cultures. That's one theory anyway, though what usually happens is that the Chinese whisper of international diplomacy means that the message gets distorted in transmission. \nYou start Civilization II as leader of a puny tribe of people, eking out a subsistence-level existence in a time where log fires are considered hi-tech. Using your leadership and strategy skills, you must explore your world, expand your empire and ensure the survival of your way of life in what can turn out to be a pretty dog-eat-dog world. \nAs time passes and your success builds you will form new alliances, make new enemies, discover new technologies and systems of government . . .all with the aim of ensuring the persistence of your civilisation. Noble aims which will sometimes mean brinkmanship, double-dealing and back-stabbing, but it's for the greater good, and all that.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Colin McRae Rally 2.0 (Europe) (En,Fr,De,Es,It) (Rev 2).txt",
    "content": "Colin McRae Rally 2.0 is a racing video game developed and published by Codemasters for PlayStation. It is the second game in the Colin McRae Rally series. You get to race in locations around the world, over 60 stages in eight different countries. Battle your way towards winning the championship. You can choose from many real life car models, and tune them up to match the conditions! The game realistically simulates all road types, weather conditions, and the physics of car handling create an authentic rally experience. The locations and the cars are all real!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Colony Wars (USA).txt",
    "content": "Since 3095, the Earth Empire has spread throughout the universe, taking what it wants and destroying the rest - all in the name of sustaining life on Earth.  To the Empire, expansion is of the utmost importance, even above famine, drought and death.\n\nThe League of Free Worlds exists to offer resistance and hope to the plundered outlying colonies.  After a key victory, it is shown that the Empire's Navy can be harmed and the ranks of the League begin to swell.\n\nColony Wars is a combat fighter game set in space.  You, as the player, join as a recruit in the League's fleet.  Missions take place in various fighters, from a 1st person view inside the cockpit, or a 3rd person view from behind your ship. Ships have separate meters for shields and armor, and the player must cycle between weapons designed specifically to damage each. At the most basic, purple lasers must drain a target's shields, followed by switching to red lasers to destroy them.\n\nThe game features advanced lighting and particle effects for the Playstation, as well as a basic simulation of Newtonian physics. Thrusters are only active for as long as the accelerate button is held down. The player can burst fire their thrusters and drift, allowing for some advanced maneuvers. The campaign also features multiple endings and branching missions/storylines, based on your performance in the previous operations.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Colony Wars - Red Sun (USA).txt",
    "content": "Colony Wars: Red Sun (called Colony Wars III: Red Sun in North America) is a space combat simulator video game for the PlayStation developed and released by Psygnosis in 2000. Other two episodes were released beforehand, namely Colony Wars in 1997 and Colony Wars: Vengeance in 1998. \n \nInstead of being a starfighter pilot for the League of Free Worlds or the Colonial Navy, the player now assumes the role of a civilian miner-turned-mercenary.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Colony Wars - Vengeance (USA).txt",
    "content": "Colony Wars: Vengeance is a space combat simulator video game developed and released by Psygnosis for the PlayStation in 1998, and sequel to the original Colony Wars, released the previous year. In it, players complete space combat missions using preselected starfighters equipped with various weapons. The game features multiple paths of missions and outcomes, depending on the player's performance. \n \nThe game retains the win-lose scenario styling of its predecessor, only now the player controls a pilot, Mertens, who has enlisted in the Colonial Navy.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Crash Bandicoot (USA).txt",
    "content": "Crash Bandicoot, a heroic, agile and mutated marsupial who must save his girlfriend Tawna. The main antagonist is Doctor Neo Cortex, a mad scientist who was often ridiculed by the scientific community for his outlandish (but nearly workable) theories and is now motivated to prove his tormentors wrong by creating a mutated army of beasts to conquer the world. Cortex's henchman is Doctor Nitrus Brio, the insecure creator of the Evolvo-Ray. Crash's love interest is Tawna, a female bandicoot about to undergo experimentation by the Doctors. Helping Crash in his journey is an ancient witch doctor spirit named Aku Aku, who has scattered masks of himself throughout the islands to grant Crash special powers. The boss characters of the game include Papu Papu, the obese and short-tempered chief of the native village; Ripper Roo, a demented kangaroo with razor-sharp toenails; Koala Kong, a muscular but unintelligent koala; and Pinstripe Potoroo, the tommy gun-wielding bodyguard of Doctor Cortex.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Crash Bandicoot - Warped (USA).txt",
    "content": "After defeating Dr. Neo Cortex, Crash and his sister, Coco, take a well-deserved vacation. However, their friend, Aku Aku, has a bad feeling, and as usual, he is right. Aku's evil twin, Uka Uka, was the person behind all of Dr. Cortex's schemes. Now Uka and Cortex have hatched a plot to gain control of the powerful crystals they desire. The have hired Dr. N. Tropy to create a time machine, which will allow Uka and Cortex to go back and take the crystals without interference. Take control of Crash and Coco as they travel through 30 levels across five time periods in an effort to stop Uka and Cortex. Use a motorcycle, plane, bazooka, and a baby T-rex to help Crash survive, or destroy the bad guys by using new moves like the super belly flop or the double jump. Will Crash and Coco be able to save the world? Play CRASH BANDICOOT: Warped and find out.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Crash Bandicoot 2 - Cortex Strikes Back (USA).txt",
    "content": "After his defeat, Dr. Neo Cortex discovers the crystals that keep the world in balance. However, something is wrong: some of the crystals are missing. When the planets align, the chaotic flux created by the event will destroy the world. Cortex devises a plan to save the world by creating the Cortex Vortex. \n To help him save the world Cortex recruits his nemesis, Crash Bandicoot, to help him find the crystals. Take control of Crash as he travels to exotic locales like a space station, a waterfall, and Antarctica in 34 levels of running, jumping, and spinning action. \n Advance through the levels in any order you wish thanks to the level hub system. Will Crash be able to find all of the crystals? Can Dr. Cortex be trusted or is all of this an elaborate ruse? Play CRASH BANDICOOT 2: Cortex Strikes Back and find out. \n Features: \n * 34 levels with hidden areas and bonus levels \n * New moves and combo attacks \n * New interactive characters and enemies \n * Variety of challenging puzzles and mini-games\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/CyberSled (USA).txt",
    "content": "The year is 2067, and the world, though prosperous and populated by huge cities, is in a state of decay. In this dark future, one-on-one Tank Duels (to the death) are the spectator sport of choice, and you are a contestant. You can choose between six different tanks, each of them varying in speed, shield strength, weapon power, and maneuverability. \n    Once you have chosen your tank, you must drive it around an obstacle-ridden, flat-surfaced arena, hiding behind barriers, and shooting your machine guns and heat-seeking missiles at an opposing tank. You can play against the computer or challenge a friend in head-to-head split-screen action. In the one-player mode, if you destroy the enemy tank, you win the round and advance to the next stage. If your tank loses all of its shield strength, the computer wins and the game is over. If you're playing with the timer on, the tank with the highest level of shield strength when the time runs out wins the battle. \n \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Darkstalkers 3 (USA).txt",
    "content": "This is the 3rd in the Darkstalkers series (the 2nd, Night Warriors: Darkstalkers' Revenge, was published only for the Sega Saturn in the US.)  It plays much the same as the first, but features better animation, more playable characters, and a deeper storyline.\n\nJedah, the \"Lord of Vampire\", has summoned all of the Night Warriors to his realm to be assimilated into his being.  Of course, this serves as a great excuse to have more one-on-one fights...\n\nPlay as Jedah, B. B. Hood, Q-Bee, Lilith, Demitri, Morrigan, Anakaris, Victor, L. Raptor, Hsien-Ko, J. Talbain, Felicia, Rikuo, Sasquatch, Bishamon, Donovan, Pyron or Huitzil, and conquer the enemy.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Dave Mirra Freestyle BMX - Maximum Remix (USA).txt",
    "content": "Tony Hawk proved the skating games can work to great effect. Now Dave Mirra is here to prove that BMX is here to stay, thanks to the boys at Acclaim Entertainment. Choose from all of the current crop of BMX champs, including 10 times world champion Dave Mirra, Ryan Nyquist, Joey Garcia, Shaun Butler & heaps more, and ride your way through 12 highly detailed environments, with vert ramps, huge jumps and track racing. Multiplayer gaming is also thrown in, allowing two players to go head-to-head in a game of B-M-X (a unique variation of the HORSE basketball game). All this plus official sponsors clothing, bikes and advertising boards plus a huge soundtrack featuring Cypress Hill, Deftones and more.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Devil Dice (USA).txt",
    "content": "Using Devils to wipe out rows of dice, play one-to-one challenges or take on four friends in a frenetic battle for survival in this devilishly fiendish multi-player puzzle game.\n\nChoice of 4 different game modes: race against the clock, attempt increasingly challenging puzzles, team up with a friend or battle to be the sole survivor.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Die Hard Trilogy (USA).txt",
    "content": "Die Hard Trilogy is split into three games, each game representing one of the movies, obviously.  \n\nDie Hard 1 is a third person shooter in a style similar to Tomb Raider.  You are John McClane and must fight through twenty floors of terrorists in the Nakatomi Plaza.  The game has an invisible wall effect which allows you to see John even in small hallways.\n\nDie Hard 2 is a first person rail shooter in the vein of Virtua Cop or Mad Dog McCree.  Once again you take the role of John  McClane firing upon terrorists who happen to be ransacking the Washington/Dulles Airport in search of a South American dictator and druglord.\n\nDie Hard 3 is a fast-paced taxi racer through the city.  John must this time speed through New York City defusing bombs and ramming evildoers off the road behind the wheel of a cab.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Digimon World (USA).txt",
    "content": "It is your goal to roam the dangerous countryside with your trained Digimon battling other lost Digimon. A victorious battle permits them to return home to the abandoned File Island. The main one-player mode on Digimon World is where the mysterious story unfolds as you raise your immature Digimon. Digimon are dependant on you for happiness, food, and parental guidance to guide their behavior (similar to the popular Tamagotchi toy).\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Digimon World 2 (USA).txt",
    "content": "Digimon World 2the second game in the Digimon World series brings us to an all-new world in which we must raise digimon to fight off the evil trying to invade. In the previous Digimon World, you played as a young boy who was called to the Digital World in order to save the digimon from a terrible fate and had a partner digimon which needed your care. In this second game, your role is that of a new Guard Tamer who's destined to protect the Digital city, and the Digital world. Now you can fight in all new 3-on-3 battles. There is now a way for you to raise your digimon party to higher levels, and digivolve them to the new 'mega' level, unseen in the previous game (where 'ultimate' level was the limit). The new DNA-Digivolving gives you even further ways to gain new and more powerful digimon.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Digimon World 3 (USA).txt",
    "content": "Digimon World 3 is an RPG that follows the adventures of Junior and his two friends as they take part in MMORPG called Digimon Online. Upon starting, the player will select a trio of Digimon from three initial sets. Once in the world of Digimon Online however, the three friends are informed that the system is in dire need of repairs and that they'll stay until the repairs are complete. \nFeaturing a top-down isometric perspective, players must explore the online world and battling other \"tamers\" while learning more about the hackers that have invaded the game. \nThe 3D Battles are turn-based, and features use of items and special techniques. Keeping with the Anime on which it is based, Digimon are also able to Digivolve into more powerful creatures during battle. \nAs your Digimon take damage, a blast meter gradually fills. When full, it allows the creature to Blast Digivolve, imbuing it with an increase in attack level. Tamers can also merge two Digimon using the DNA Digivolve ability, which will yield an all-new Digimon who performs a powerful attack before disappearing. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Dino Crisis (USA) (Rev 1).txt",
    "content": "An abandoned research complex on a remote jungle island, a team of special forces operatives, a horde of vicious velociraptors, and one big, mean Tyrannosaurus rex constitute the setting and cast of Dino Crisis, the latest masterpiece from the makers of Resident Evil. \n Dr. Edward Kirk is supposed to be dead. Three years ago while working to establish a new type of energy technology code-named Third Energy, an experiment went awry and terminated the brilliant scientist's life -- or so it was thought. It was recently learned, however, that Dr. Kirk is very much alive and continuing his work at a Borginia Republic research facility on Ibis Island. \n In order to investigate the situation, an elite special forces team including agents Regina, Gail and Rick was sent. The three expected another routine mission, but what they got was an all-out fight for their lives against an enemy they surely had never been trained to face -- dinosaurs! \n Luckily, Regina isn't restricted to limited firepower, as she'll come across shotguns, dart guns, and other weapons throughout the island. To gain access to the keys, code disks, and ID cards necessary for continued exploration, Regina must solve a variety of puzzles. \n Dino Crisis has three possible endings with a great deal of secrets becoming available after each has been viewed. These include new weapons, new costumes, and a \"Wipe Out\" mode in which you must defeat a certain number of dinosaurs within a designated time period.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Dino Crisis 2 (USA).txt",
    "content": "Dino Crisis 2 is a third-person shooter video game for the Sony PlayStation, published by Capcom in North America, released on September 13, 2000 and publish by Virgin Interactive in Europe, release on November 4, 2000. It was developed by Capcom Production Studio 4. The game is the sequel to Dino Crisis and was followed by Dino Crisis 3 in 2003 and was ported to Microsoft Windows that same year. \n The story follows the events of the last game, where Regina is now on another mission involving a facility located close to the fictional Edward City, where a major anomaly has caused the whole island to be transported back in time to the era of the dinosaurs, along with all the human inhabitants. Regina is sent on a rescue mission with her new ally Dylan Morton, who has a strange connection to the events on the island. The player's control switches between Regina and Dylan at specific points in the game. \n \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Disruptor (USA).txt",
    "content": "As a soldier in the world-renowned LightStormer Corps., your main objective is to clean up the universe...but it's getting pretty hairy out there! Mutated humans, space marines and aliens have decimated scientific research parties on Mars, threatened Earth and infiltrated various space stations -- the LightStormer Corps. aren't taking this situation lightly. \n The government has a top-secret plan: Psionic power. Implanted into your brain, these psychic powers significantly enhance your mental abilities; you can mentally heal yourself, drain energy, shock deadly organisms and blast a group of baddies to smithereens! Use these powers in moderation, however -- they consume vital Psionic points.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Dragon Warrior VII (USA).txt",
    "content": "In \"Dragon Warrior VII\", you are a 16 year old son of a fisherman living on a small island called Estard. There is nothing else on the planet beside this island and the vast ocean surrounding it. One day, you and two friends make a discovery and realize the the world was once much more than Estard Island. So what caused it to disappear? In order to find that out, you travel to the past, where you hope to solve the mystery and to restore the present world the way it was before.\n\n\"Dragon Warrior VII\" shares with its  predecessor the job system: you can assign character classes (\"jobs\") to your party members, and learn many different abilities, depending on the job you have chosen. The game maintains the traditional style of the series, including strictly medieval setting and first-person turn-based combat.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Driver - You Are the Wheelman (USA) (Rev 1).txt",
    "content": "As Tanner, you're going undercover to be the wheelman for a crime syndicate in order to break open a big case. On the way, you'll eliminate competition, drive getaway cars, scare some people silly, evade plenty of police, dodge bad guys, smash through a few windows, save your love interest, and much more through four cities (Miami, San Francisco, Los Angeles, and New York). \n \nPerform authentic manuevers like donuts, 180 spin, 360 spin, reverse 180 spin, and more as you cut through alley ways, across sidewalks and parks, smash park benches and and drive over traffic cones. Many different cars to try (most you'll recognize). Will you save the day?\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Ehrgeiz - God Bless the Ring (USA).txt",
    "content": "An ancient weapon of unknown origin was found in a German castle some fifty years ago. Since it was obviously something of value, it was decided that it would be awarded to the best fighter in the world. After all, who would appreciate a weapon more than an experienced fighter? Eleven of the world's finest combatants (including Cloud Strife, Tifa Lockhart and Vincent Valentine) have set out to claim this prize. \n The mysterious artifact came to be known as Ehrgeiz, and the tournament that was built around it took on the very same name. Now rumors suggest that the door to a long-forgotten land can be unlocked with this weapon; a land that could reveal the secret of immortality. The tournament has taken on a whole new meaning!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Einhaender (USA).txt",
    "content": "In 2192, a new city, Selene, is built on the moon. Over the years, Selene grows larger, more powerful, and more independent of the Earth - to the point that the moon and Earth battle in a war that winds down without a definite victory for either side. In 2242, war breaks out again - the Earth slowly begins to win... except for the efforts of an experimental Selene technology known as Einhnders: flying machines with a \"hand\" that allows them to change weaponry mid-battle. \n \nOn December 12, 2245, Selene sends down 3 Einhnders in a last attempt to turn the tide of the war. You get to choose the craft to pilot, and it's up to you to battle your way through the Earth's monstrous defenses and win the battle. \n \nThe game is a traditional side-scrolling shooter, with rendered 3D backgrounds and enemies. The atmosphere of the game is very \"industrial\", down to the German industrial music playing in the background (think Einsturzende Neubauten mixed with Lords of Acid). The weapon-switching and claiming is an integral part of the game, as weapons have limited shots. This forces a bit more strategy than the usual button-mashing shooters inspire.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Fighting Force (USA) (Rev 2).txt",
    "content": "Fighting Force is a fighting \"beat-em-up\" which takes place in an interactive city where you can pick up several objects (like trash cans and car tires) and throw them at your enemies which appear on scripted moments. \n\nThough the game advertised very interactive places, they all ended up in rectangular arenas because of an invisible wall which surrounded them. There was no way to walk around freely.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Final Fantasy Anthology - Final Fantasy V (USA) (Rev 1).txt",
    "content": "The Elemental Crystals...the life source of the planet. With them, gentle winds blow, the seas are active, fire burns bright, and the earth is full of life. All seems well in the world, until the wind suddenly stops, the sea begin to grow stagnant, the heat of fire becomes scarce, and the earth begins to wither. King Tycoon, sensing a premonition of evil, hurries off to check on the Wind Crystal, only to witness it destroy itself.\n\nMeanwhile, a young traveler named Butz is camping in a field when a giant meteor strikes the planet. When he heads out to examine the meteor, he is shocked to find a young girl named Lenna, who is the princess of Tycoon, and a old man named Galuf, who is on a critical mission. Later, joined by Faris, a pirate captain, the foursome must travel the land in search of the destructor of the Crystals, and save the planet at any cost!\n\nFinal Fantasy V featured many new gameplay options and tactics, including an improved Job/Ability system (like in Final Fantasy Tactics), the return of the ATB (Active Time Battle) turn system, and all of the classic FF gameplay you've come to know and love!\n\nFinal Fantasy V was released as a stand-alone game in Japan, and again in Final Fantasy Collection. Its U.S. debut was as part of Final Fantasy Anthology. It was also later ported to the Gameboy Advance, adding 4 new Jobs, a new 30-floor dungeon, a bestiary, a music player, the ability to quick save anywhere, a few extra pieces of equipment, and a newly update translation.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Final Fantasy Anthology - Final Fantasy VI (USA) (Rev 1).txt",
    "content": " \nSet in a fantasy world with a technology level equivalent to that of the Second Industrial Revolution, the game's story focuses on a group of rebels as they seek to overthrow an imperial dictatorship. The game features fourteen permanent playable characters, the most of any game in the main series. Final Fantasy VI was the first game in the series to be directed by someone other than producer and series creator Hironobu Sakaguchi; the role was filled instead by Yoshinori Kitase and Hiroyuki Ito. Yoshitaka Amano, a long-time contributor to the Final Fantasy series, returned as the image and character designer, while regular composer Nobuo Uematsu wrote the game's score, which has been released on several soundtrack albums.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Final Fantasy Chronicles - Chrono Trigger (USA) (Rev 1).txt",
    "content": "What begins as a carefree day at the Millennial Fair for a young man named Crono turns into a huge adventure. He will be thrusted into the ultimate trip through time and space, encountering new friends, defeating the forces of evil, and encountering the one who would destroy the flow of time. \nChrono Trigger is a role-playing game, with the usual game mechanics fare. As the characters grow in power, not only their ability scores increase, but they also learn new \"Techs\". \nThe game utilizes the ATB (active time battle) combat system from Final Fantasy game. Apart from normal Techs, it is possible to use Double and Triple Techniques.There are no random battles in the game, as all the enemies are visible on screen, and it's even possible to just pass by them entirely. \nThe game allows you to face your ultimate adversary at different points of time, which leads to several different endings.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Final Fantasy Chronicles - Final Fantasy IV (USA) (Rev 1).txt",
    "content": "This classic adventure includes 18 towns and castles, dozens of magical spells, and hundreds of monsters, weapons, and items to help players on their quests. The game features the astounding music, challenging adventures, and interesting storyline that are the hallmarks of the Final Fantasy franchise\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Final Fantasy IX (USA) (Rev 1).txt",
    "content": "Corruption -- the root of all evil. Alexandria's Queen Brahne was once presented as a noble and caring ruler, who would throw lavish festivals to show appreciation for her supporters. Recently, she became involved in secretive deals with mysterious people. Matters took a turn for the worse when a renegade troupe kidnapped her daughter and changed the fate of a once peaceful world. \n As young Zidane Tribal and his party interrupted a renowned play and kidnapped Princess Garnet Til Alexandros, things began to fall apart. The queen fired cannons and decimated her kingdom in an attempt to prevent the terrorist organization, but her attacks failed and the troupe escaped with their lives intact. \n Princess Garnet wished someone would take her away from her oppressing mother and life; the only world she knew was that of Alexandria and its large metropolitan areas. Zidane Tribal and his troupe had come at the perfect time. An innocent black mage known as Vivi Orunitia and a Pluto Knight named Adelbert Steiner, who was sworn to protect the princess at all costs, were also part of the crusade. \n Although Adelbert Steiner had objections, the characters formed a pact to overthrow Queen Brahne and prevent her harmful attack in the surrounding areas of Alexandria. After the princess was abducted, Brahne hired assailants to create destructive black mage warriors. With a few of her knights and the mages, the queen unleashed a series of unmitigated attacks on neighboring towns -- she would do anything to recapture Princess Garnet. \n But what are the queen's true intentions?\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Final Fantasy Origins (USA) (Rev 1).txt",
    "content": "Final Fantasy Origins is a re-release of Final Fantasy and Final Fantasy II. Both games have added CGI cut scenes, updated graphics, and added content. It also includes art galleries of Yoshitaka Amano's illustrations. Final Fantasy II was never released in the USA.\n\nFinal Fantasy is an RPG/adventure came where you choose four characters (from six different character classes). It features turn based combat, kill monsters for gold / experience to advance levels and equipment. \n\nFinal Fantasy II is also similar but has several different aspects. There is no experience system is not based off of killing monsters. The more you use a weapon/armor the more proficient you get at it. It also features a keyword system. During a conversion some words can be memorized then you can ask NPCs keywords to further the plot, get more information, etc.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Final Fantasy Tactics (USA).txt",
    "content": "Final Fantasy Tactics is a tactical role-playing game developed and published by Square (now Square Enix) for the Sony PlayStation video game console. It is the first game of the Final Fantasy Tactics series and was released in Japan in June 1997 and in the United States in January 1998. The game combines thematic elements of the Final Fantasy video game series with a game engine and battle system unlike those previously seen in the franchise. In contrast to other 32-bit era Final Fantasy titles, Final Fantasy Tactics uses a 3D, isometric, rotatable playing field, with bitmap sprite characters.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Final Fantasy VII (USA).txt",
    "content": "Set in a dystopian world, Final Fantasy VII's story centers on mercenary Cloud Strife who joins with several others to stop the megacorporation Shinra, which is draining the life of the planet to use as an energy source. As the story progresses, the situation escalates and Cloud and his allies face Sephiroth, the game's main antagonist.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Final Fantasy VIII (USA).txt",
    "content": "A member of an elite military team, Squall is forced into a conflict beyond imagination.  To survive, he must contend with a desperate rival, a powerful sorceress, and his own mysterious dreams. \n \n* Realistic, detailed characters and background graphics enhanced by a breathtaking musical score \n* An epic story based on the theme of love, set in a massive new world \n* New Junction System allows characters to be customized with powerful magic spells drawn from enemies \n* Nearly an hour of stunning motion-captured CG cinemas seamlessly integrated into gameplay\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Front Mission 2 (Japan) (Translated).txt",
    "content": "The player assumes the role of an OCU Wanzer squad in 22nd century Aroldesh. One night while on routine patrol, the OCU base is infiltrated and attacked. Civil war is now loosed upon the nation of Aroldesh as a coup d'etat is staged.  \n\nFront Mission 2 is the first 3D title in the strategy/RPG series and the first to hit the Playstation. An isometric view is used to navigate your Wanzers (mech) on the battlefield.  When the player engages an enemy the view switches to a 3rd-person perspective which shows the results of the battle. Between missions you can upgrade your Wanzer and talk with NPCs who will move the story forward. The game features over 30 missions and dozens of skills and weapons to outfit your crew with.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Front Mission 3 (USA).txt",
    "content": "Front Mission 3 is the third main entry and the fifth entry overall in the Front Mission series. Like other Front Mission titles, Front Mission 3 is part of a serialized storyline that follows the stories of various characters and their struggles involving mecha known as wanzers. \nWhile it is a tactical role-playing game, there is a stronger emphasis on role-playing elements as opposed to strategic elements in Front Mission 3. The game progresses in a linear manner: watch cut-scene events, complete missions, set up wanzers during intermissions, and sortie for the next mission. The player travels to locations on a world map. As the player progresses through the plot, new locations are revealed on the world map. Towns and cities act as intermission points where the player can organize and set up their units for the upcoming mission. New to Front Mission 3 is the Double Feature Scenario - this allows the player to experience two different scenarios that exist independently of one another within the game's storyline. In other words, the player can play through two stories; while they may share common events and environments, the stories are largely unique and in essence are fully-fledged games.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Future Cop - L.A.P.D. (USA).txt",
    "content": "The city of Los Angeles has a few more problems than usual in 2100 A.D. You see, the future hasn't been exactly kind to urban life and now gangs have overrun the already bleak neighborhoods. Is there any hope? There is as long as you enforce the law! \n Command a powerful Tactical Assault & Combat X-1 mech walker (that can also transform into a sleek hovercraft) and battle through 12 levels, each culminating in a showdown with a large boss character. Fortunately for you, fourteen different weapons are available to help you teach \"crime doesn't pay.\" Feeling a little lonely? If so, a friend can join the action in cooperative play!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/G-Police (USA).txt",
    "content": "After a violent interstellar resource war, mega-corporations seize power from the remnants of Earth's governments and lead humanity's way into the colonization of space. The last vestige of central authority is in the form of the G-Police (Government Police); an independent agency tasked with keeping order in the colonies. You play as rookie Jeff Slater - a former military pilot going undercover at the G-Police squadron on Callisto, in the hopes of finding the truth behind your sister's sudden death.\n\nG-Police is an arcade-style helicopter shooter set inside the colony domes on Callisto. You pilot a futuristic close-air-support gunship, and are tasked with engaging ground and air enemies as you uncover a sinister corporate plot. Your ship can hover and turn in a VTOL mode, fire weapons outfitted before each mission, and lock on to objects in the world to both track enemies and scan suspicious cargo. Missions require you to navigate through the skyscrapers and billboards of the various city districts, and complete a number of objectives updated through radio contact with headquarters.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/G. Darius (USA).txt",
    "content": "G-Darius revolves around a conflict between the humanoids of Amnelia and cyborg/chimera biovessels known as the \"Thiima\" (meant to mean simply \"bringers of death\"). The Thiima had been aroused by the Amnelian army's use of the weapon A.N. (All-Nothing) to annihilate the world Blazar, whom Amnelia had been at war with over jurisdiction over the moon Mahsah. Determined to protect their existence, and long ago programmed to protect the universe from just such threats as A.N., the Thiima swarmed on Amnelia. Although the armed forces were badly ravaged, Amnelian scientists and engineers were able to make use of both A.N. and reverse engineered Thiiman technology/life systems to create the Silver Hawk fighters. Ultimately, two pilots \"Sameluck Raida and Lutia Feen\" are chosen to perform a decisive attack on the main Thiima base: Kazumn, a satellite of the planet Darius.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Gauntlet Legends (USA).txt",
    "content": "\"Wizard is about to die.\" \n Wait just a minute -- we all know that good wizards never die, they just teleport to another dimension! Such is the case with Gauntlet Legends, the 1998 Arcade update to the original 1985 coin-op game that featured four-player simultaneous action set within a fantasy setting. The four character classes (warrior, wizard, valkyrie and archer) have returned in full 3D, but this time they have a few friends! Yet before you can use the new characters, you'll have to first find them during the course of play.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Ghost in the Shell (USA).txt",
    "content": "3rd person action game based on the Ghost in the Shell original comic by Masamune Shirow rather than Mamoru Oshi's film. You take the role of a new member in Kusanagi's anti-terrorist squad and get to accomplish missions on your Fuchikoma, (a spider-like AI equiped tank) thanks to which you can jump, stick to walls and ceilings and shoot the hell out of terrorists, all from a 1st or 3rd person point of view. As the missions procede a plot starts to surface concerning a giant skyscrapper, the Aereopolis II, which will eventually be solved after 12 single player missions. Other features include a training sequence, 3D stereo sound and wide anamorphic screen mode for 16x9 TVs.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Gradius Gaiden (Japan) (Rev 1).txt",
    "content": "Evil lurks out there in the universe and only you, aboard your trusty Vic Viper starfighter, can put an end to it. Gradius Gaiden is yet another shooter in the Gradius series.\n\nGameplay consists of moving your fighter across side-scrolling stages shooting everything in sight and avoiding enemy fire, with your objective being to reach the end and defeat the stage boss to move on. You can collect power-ups which fills your power-up bards and which can then be triggered at any time for a specific effect depending on what bar is active at the moment. \n\nThe game uses 2D graphics with some polygonal elements and features 2-player co-op gameplay as well as the option to select from four starfighters to take into battle.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Gran Turismo (USA) (Rev 1).txt",
    "content": "Gran Turismo is fundamentally based on the racing simulator genre. The player must maneuver an automobile to compete against artificially intelligent drivers on various race tracks. The game uses two different modes: Arcade Mode and Simulation Mode (Gran Turismo Mode in PAL and Japanese versions). In the arcade mode, the player can freely choose the courses and vehicles they wish to use. Winning races unlocks additional cars and courses. \n \nHowever, simulation mode requires the player to earn different levels of driver's licenses in order to qualify for events, and earn credits(money), trophies and prize cars by winning race championships. Winning one particular championship also unlocks a video and a few additional demonstration tracks. Money earned by winning championships can be used to purchase additional vehicles, and for parts and tuning of all vehicles. \n \nGran Turismo features 180 cars and 11 race tracks (as well as reversed versions). Two Honda del Sol cars from 1995 were included in the Japanese version, but were removed from the North American and European versions. They can be found in the North American version's code (and are unlockable via a GameShark cheat device). In addition to the hidden del Sols, there is also a 1967 Chevrolet Corvette and a 1998 Mazda Roadster exclusive to Arcade mode. The Corvette and Roadster can also be accessed via GameShark.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Gran Turismo 2 (USA) (Arcade Mode) (Rev 1).txt",
    "content": "Gran Turismo 2 is fundamentally based on the racing game genre. The player must maneuver an automobile to compete against artificially intelligent drivers on various race tracks. The game uses two different modes: arcade and simulation. In the arcade mode, the player can freely choose the courses and vehicles they wish to use. However, the simulation mode requires the player to earn driver's licenses, pay for vehicles, and earn trophies in order to unlock new courses. Gran Turismo 2 features nearly 650 automobiles and 27 racing tracks.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Gran Turismo 2 (USA) (Simulation Mode) (Rev 2).txt",
    "content": "Gran Turismo 2 is fundamentally based on the racing game genre. The player must maneuver an automobile to compete against artificially intelligent drivers on various race tracks. The game uses two different modes: arcade and simulation. In the arcade mode, the player can freely choose the courses and vehicles they wish to use. However, the simulation mode requires the player to earn driver's licenses, pay for vehicles, and earn trophies in order to unlock new courses. Gran Turismo 2 features nearly 650 automobiles and 27 racing tracks.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Grandia (USA).txt",
    "content": "Grandia is a Japanese-style console RPG, with big-eyed anime style characters, that was first released on the Sega Saturn in 1997.  It centers around the story of a young hero named Justin who possesses a mysterious artifact known as the 'Spirit Stone'.  The story takes Justin and friends (who range from a bratty eight year-old to a noble knight and a thief with a short fuse) through distant towns and abandoned ruins of a forgotten civilization (and even the occasional military base) in a search for adventure and secrets long hidden from the world. Grandia makes use of FMV cut-scenes to advance the story.\n\nThe characters are represented by 2D sprites which are moved around over 3D backgrounds in towns and dungeons.  Combat is initiated by coming into contact with enemies on the screen, rather than through random battles.  Combat itself occurs in pseudo-real-time, using an 'IP Gauge' to determine when a character takes action. Striking at the right time or with the right ability can even delay or cancel an enemy's turn.\n\nThe characters in the game gradually advance in level as they gain experience points for killing monsters. Characters also gain experience based on the weapon (e.g. sword, mace, whip, etc.) or magic (e.g. fire, water, etc.) that they use, powering up their spells and learning new ones from continuous usage.  There are a large number of spells, weapons, and other items to use throughout the game.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Gundam Battle Assault (USA).txt",
    "content": "This game is the follow-up to Gundam: The Battle Master. Heero Yuy, the pilot of a Mobile Suit Wing Gundam is on a mission to destroy the remaining enemy Mobile Suits, who are under the command of Treize Khushrenada, in order to stop a war from starting. In the story mode, Heero can pilot any of the available mobile suits to do battle with his enemies. Each suit has its own set of special moves and a super attack. Some of the weapon based special attacks use ammunition which can eventually run out. The super attack can only be used 3 times during each fight. Each suit also has thrusters that can be used to fly in the air a bit. On the defensive side, players can dodge attacks by sidestepping and also can utilize a beam shield which can be used to protect the player from projectile attacks. Mobile suits come with 3 life bars total and fights are decided by trying to deplete all the life bars of an enemy mobile suit.\n\nThe game also contains a 2 player versus mode. \n\nOptions allow the player to choose their difficulty level and also let them set the timer during a match to either on or off.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Gundam Battle Assault 2 (USA).txt",
    "content": "Gundam Battle Assault 2 is an one-on-one fighting game, based on the popular anime series \"Mobile Suit Gundam\" and its various offshoots. You can play as the titular Gundams (giant walking robots) from a wide variety of series. The game features standard fighting game mechanics, with punches, kicks and a variety of combo moves that can be executed by each Gundam. Note that the Mobile Suits aren't as mobile as humans, and thus the fighters' movements are slower and their maneuverability is worse than in most fighting games. \n\nThe game has several playing modes, which must be unlocked by using different Mobile Suits on the various difficulty levels. The available modes are: street mode, story mode, versus (a single duel where you can choose your opponent), two time attack modes (where you must defeat either 8 regular enemies or 4 boss enemies as fast as possible) and survival (defeat as many enemies as possible; fight until you beat all of them, or until one of them beats you.)\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Harmful Park (Japan) (Translated).txt",
    "content": "Harmful Park was only released on the Playstation in Japan by a small company named Sky Think Systems. It's your standard 2D side-scrolling shooter, except set in a bizarre amusement park. As the (relatively lengthy) introduction tells you, an evil scientist has taken over Heartful Park and is using it for nefarious purposes. One of his colleagues aims to stop him, but she's old to do it herself. So, she commands her two slacker daughters to save the day, equipping them with some kind of flying motorcycle armed to the teeth with strange weapons.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Harvest Moon - Back to Nature (USA).txt",
    "content": "As an Child you visited your Grandfathers ranch when vacation plans fell trough. Return to the farm that holds fond childhood memories and rejuvenate its long neglected fields. Tend to your livestock and interact with over 50 characters. As you struggle to make the farm something your grandfather would be proud of, one nagging question remains: What ever happened to the little girl that you knew a decade ago?\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Heart of Darkness (USA).txt",
    "content": "The eternally delayed Heart of Darkness has finally made its way to the PlayStation gaming console! One day, as Andy was in the park with his dog Whiskey, strange things started to happen. Almost in an instant, a vortex to some undiscovered realm opened up and sucked the poor doggie in. Determined to get his pooch back, Andy hopped in a homemade flying contraption and set off on a journey; where he was going, he did not know. \n On his way to this unknown world, Andy was met with some resistance and crash-landed into a wall of pure granite. Upon meeting up with a creepy monster, it was easy to see things were not kosher; this Land of Darkness has been overrun by horrific shadow monsters working in service of the Master of Darkness. It is the player's objective to ultimately destroy this evil nemesis, save Whiskey, and return home with both lives in tact.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Hermie Hopperhead - Scrap Panic (Japan).txt",
    "content": "Hermie Hopperhead: Scrap Panic is a 2D platformer that takes inspiration from the classic Sonic and Mario games. Hermie Hopperhead is a young city kid with weird-looking red hair that sticks out in all directions. While waiting for his girlfriend, Trish, he happens to spot an egg with arms and legs come leaping out of a nearby garbage can. The bipedal egg coaxes him to come with it, and Hermie is lead into another world called Egg World. The world's resident villain, Mad Migo, is trying to take over this world of innocent egg people. What's worse, the evil Migo has taken Hermie's girlfriend, Trish, hostage. It is now up to Hermie to put a stop to Mad Migo's plans and rescue his girlfriend. \n\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Hogs of War (USA).txt",
    "content": "Hogs of War is a turn-based tactics video game developed by Infogrames Studios and published by Infogrames Europe. The game is set in a First World War-era where anthropomorphic pigs engage in combat. Play proceeds in a turn-based fashion, with 3D graphics, vehicles, a career-based single-player mode, and voice-over work (both narration and for characters) by British comedian Rik Mayall.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/In Cold Blood (USA).txt",
    "content": "In Cold Blood is adventure and infiltration on Playstation. Seven of the nine missions offered are in fact flashbacks. As John Cord, an MI6 agent with amnesia, you must avoid guards and cameras, defeat security systems and discover the identity of the person who betrayed you.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Incredible Crisis (USA).txt",
    "content": "Incredible Crisis follows the stories of four members of a Japanese family on their grandmother's birthday. As each family member goes through a seemingly normal day, things start to go wrong -- very wrong. Players will be able to live out this family's hair-raising experiences by playing a series of mini-games. \n At its core, Incredible Crisis is a collection of mini-games strung together in order to advance the plot. Games range from a beatmania-style of timed gameplay (where certain buttons are pressed during certain beats) to shooting down airplanes, attacking UFOs, and even a certain \"massage\" level that is so analogous to a sexual experience that if gamers only heard the instructions and game mechanics, they would swear they were playing a game rated A for adult.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Jade Cocoon - Story of the Tamamayu (USA).txt",
    "content": "Jade Cocoon is the story of Levant, a young man who lives in the town of Syrus. You guide the silent protagonist on his quest to follow in his presumably dead father's footsteps to become a cocoon master. To do this, he must marry a Na'gi woman, and is betrothed to a girl named Mahbu (voiced by Michelle Ruff). On the day of a large festival in Syrus, the village is attacked by demons known as the Onibubu, which cause many villagers to fall into a deep slumber. An elderly Nagi woman, Garai, repels the Onibubu using Nagi magic before their curse affects everyone.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Jet Moto (USA).txt",
    "content": "Developed by SingleTrac, Jet Moto blends futuristic motocross racing with hazard ridden tracks. Rather than using traditional cars or motorcycles, these vehicles are a cross between jet skis and hovercrafts. With turbo-charged engines, these bikes can tread water, perform dangerous aerial flips and catch serious air. There are 20 vehicles/characters in all, each with varying acceleration times, weight, suspension (lift) and handling capabilities. \n While there's only a handful of tracks readily available, there are nine in all -- the latter courses will be unlocked by doing well in tournaments. Spanning the globe, tracks are set throughout snowy mountains and ice, massive cliffs, murky swamps and vibrant beaches. Located throughout each course are magnetic pillars in which you can grapple and handle turns in a more sufficient manner.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Jet Moto 2 - Championship Edition (USA).txt",
    "content": "Jet Moto 2 (known as Jet Moto '98 in Japan) was released exclusively for the PlayStation video game console in 1997. The game became downloadable from the Playstation Network in January, 2008. The selectable amount of characters for this game was halved in comparison to the first game, with ten characters available at the beginning of the game and one unlockable character. Track amounts were greatly increased, however, with ten new tracks, and unlockable tracks from the original game. Tracks are more varied this time with each level containing a unique theme rather than the shared themes of the original game.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Jet Moto 3 (USA).txt",
    "content": "The third entry in the Jet Moto series once again places you in the driving seat of a futuristic hoverbike, racing at breakneck speed in a truly extreme sport. While a Jet Moto hoverbike might look like a jet ski, it is capable of far more: it travels across land as well as water and can use a magnetic grapple to make extremely tight turns. During a race, drivers must skillfully time jumps, dodge obstacles, and contend with some feisty opponents who won't hesitate to bump you into a tree or maybe even knock you off a cliff.\n\nJet Moto 3 offers ten different riders and 19 tracks across the wide open ocean, over mountainous terrain, and through cityscapes. As with the earlier games, two people can still race in a split-screen mode.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Jumping Flash! (USA).txt",
    "content": "What would the video game industry be without mad, evil scientists such as Baron Aloha that want to take over the world? We'd have fewer games, that's for sure! Anyway, if this guy carries out his plans, the whole universe will suffer under his menacing wrath. Fortunately, help is on the way. Yes, a giant mechanical rabbit, aptly named Robbit, is here to save the day. And of course, you are Robbit and must go around the world of Jumping Flash! collecting the missing \"jetpods\" and stop Baron Aloha. \n Jumping Flash! is a first person shooter set in a graphically stunning 3D universe. To stop Aloha, you must tackle and hop (well, you ARE a big mechanical bunny) your way through 6 worlds divided into 18 different levels, pick up various special weapons, blast little critters that try to get in your way and find the missing jetpods.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Jumping Flash! 2 (USA).txt",
    "content": "After being defeated by the good-natured Robbit, the diabolical Baron Aloha has retreated to his private island, Little Muu. Along with his army of MuuMuu creatures, he figured he was finally safe from his arch-nemesis. He figured wrong... \n One day, Baron was visited by the planet-sized monster known as Kaptain Kabuki. This behemoth roams the galaxies and bottles up planets for his collection; kind of like ships-in-a-bottle. Baron may be an evil bad guy with a chemical imbalance, but he is no fool! He quickly got the heck out of dodge and made an ironic call for help; he called Robbit!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Kartia - The Word of Fate (USA).txt",
    "content": "A turn-based, strategy RPG, Kartia presents players with two disparate, yet intersecting storylines: one as the shrine warrior, Lacryma Christi; the other as Toxa Classico, an arrogant knight. Having selected a character, players embark on a journey spanning 18 chapters, each of which is preceded by pertinent dialogue and FMV scenes, the former accompanied by character portraits from Yoshitaka Amano (best known for his work on the Final Fantasy series). The titular Kartia represents the lifeblood of the world of Rebus, as it is from this that almost anything can be created. Prior to and during each skirmish, Kartia can be used to fashion spells, equipment, and phantoms by assembling the various elements each entity requires.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Kitchen Panic (Japan).txt",
    "content": "Incredibly cute platformer in which you play a little brown thing, hopping along through giant kitchen levels filled with gushing tap water, stacks of dishes, vicious serrated knives and tin cans, valuable vegetables, dangerous soap bubbles and so forth. \n The gameplay gimmick here is spin: during a jump you can press up or down to start your character to spinning forward or back. Then when next you press Jump, he'll either launch himself way straight up (backspin) or a long way forward (front spin). \n And of course there's plenty of call to use the spin jumps\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Klonoa - Door to Phantomile (USA).txt",
    "content": "Klonoa: Door to Phantomile is a side-scrolling platform game viewed from a \"2.5D\" perspective. The player moves the protagonist, Klonoa, along a path in a two-dimensional fashion, but the game is rendered in three dimensions. This allows the path followed to curve and for the player to interact with objects outside of the path. The game is divided into levels called \"Visions\", where the player progresses by following a path with defeatable computer-controlled enemies and puzzles that must be solved. At the end of some levels, the player must defeat a boss - a powerful enemy. \n\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Koudelka (USA).txt",
    "content": "The premise behind Koudelka takes place in Aberyswyth, Wales at a monastery known as Nementon Abbey. Found in a remote location, the abbey was built as a place of worship, learning and teaching; it was a place where scholars found peace. \n As time went by, Nementon Abbey was turned into a prison and it's inhabitants were confined to suffer and die. This practice continued for many years until the facility was purchased by Patrick Heyworth, a wealthy criminal who turned the once peaceful monastery into a refuge for vagrants and law-breakers. After Heyworth took control over the building, rumors of horror and great riches echoed throughout the world; the rumors lured many thieves, none of which returned to their homes. \n Forward to Halloween 1898 -- present day. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/LSD - Dream Emulator (Japan) (Translated).txt",
    "content": "In LSD the player navigates through a psychedelic dream world. The idea is simply to walk around and explore things in a dream environment. There are many strange environments in this world, and one way to travel through them is by foot. However, if the player bumps into walls or other objects in the game, they will be transported to another environment instantaneously through a system called \"linking\". Bumping into people, animals, or special objects usually results in a stranger dream. \n \nEach dream can last up to 10 minutes, after which the player will 'wake up', when the screen fades away and the player is sent back to the game's initial menu. However, if the player falls off a cliff or into a hole in the dream, then the player will wake up immediately. There is a graph that appears at the end of each dream that keeps track of the player's state of mind; the states are Upper, Downer, Static and Dynamic, as referring to the environments and the general feel of the dream the player just went through. Past states may have effects on later dreams.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Legacy of Kain - Soul Reaver (USA).txt",
    "content": "1500 years after Blood Omen: Legacy of Kain, the vampire Kain's decision at the end of that game has finally defeated the human kingdoms and brought the world of Nosgoth under his control. Ruling from a castle built on the Pillars of Nosgoth, Kain has established an empire of six vampire clans, each ruled by a lieutenant, the sons of Kain. Raziel was one such lieutenant, but lost his position through the \"insolence\" of receiving a new evolutionary \"dark gift\", the growth of feathery wings, before his master had acquired it. Fearing that Raziel might one day surpass him, Kain tears off Raziel's wings in a fit of range and banishes him into the Abyss.  There, Raziel is lost in time, died and his body consumed. The Elder God recovers Raziel's soul and rebuilds the broken body, not as a living vampire, but as a strange new creature of the underworld. Swearing revenge on Kain, Raziel now phases seamlessly between Nosgoth and it's underworld, using his new powers to become a terrible reaver of souls...\n\nSoul Reaver is a 3rd person action-adventure title that follows Raziel on his quest to purge the land of vampires and take revenge on Kain and his brothers, leaders of the six clans. The player controls the game from behind Raziel's shoulder, moving him in any direction, climbing, attacking, jumping and using specific abilities. Raziel's can grip onto the edge of ledges and his torn wings allow him to glide gently downwards. Raziel can shift through the \"material\" world into the \"spectral\" realm at will... but must find specific locations in order to shift back. The two realms mirror one another, with distortions which give access to new areas and platforms. Existing in the material world drains Raziel's life energy at a constant rate.  Throughout the game, energy is recovered by consuming the souls of defeated enemies. If Raziel is able to defeat one of his brothers, he will additionally gain a new ability (\"dark gift\") upon drinking it's soul. Examples include: the ability to swim, file telekinetic projectiles or the ability to phase through locked gates. Raziel can arm himself with a variety of weapons including spears, daggers, swords, axes, as well as attacking enemies barehanded. Eventually, Raziel will also come across Kain's personal sword (named the Soul Reaver), and will use it to create a powerful energy blade weapon.\n\nThe world is left open to Raziel, he can return to areas previously completed and explore the world of Nosgoth at will. Access to certain areas however sometimes  requires the use of gained specific abilities. Many of the puzzles the player will need to solve in this quest are \"block puzzles\", requiring the placement of certain large structures (usually square blocks), either to activate switches or to build access to out-of-reach areas.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Legend of Dragoon, The (USA).txt",
    "content": "Ten thousand years ago the Legend was born. The Divine Tree's mystical powers were said to have given birth to all life. The 105th race born of the Tree was the mighty Dragons. The 106th was the human race and the 107th was the Winglies. Peace and tranquility reigned throughout the land, but suddenly a violent uprising occurred, led by the Winglies, who enslaved humanity. To counter this, the humans acquired the Dragons' spiritual forces and defeated their nemeses, which led to eventual harmony between all. However, the prophecy has only begun as the past and future are about to collide... \n In Sony's role-playing game, The Legend of Dragoon for the PlayStation, you'll travel across the land searching for clues and discovering new enemies as well as friends you can add to your party. Up to three members per party can fight at once, in an interface that Final Fantasy fans may find familiar, the difference being that you can become a Dragoon with supernatural powers taken from the souls of Dragons. Animals will attack you from nowhere while other creatures and even human opponents will specifically seek and destroy. \n Each warrior has his or her own weapons and magic, with the ability to retreat a fight based on chance. Experience points will add up and each member of the party will gain a level as their hit points increase. The combat technique known as Dragoon Additions -- shown as SP (Spirit Power) -- measures a Dragoon's ability to fight. When your character approaches an enemy upon initiating an attack, a rectangular grid targets the enemy before your weapon is swung. If you press it in time for the outer rectangle to close in, matching the center rectangle, you'll be able to hit your target and continue to get in several more hits depending on how fast and accurate you are executing the button sequence. \n Magical attacks draw their power from the Elements such as water, fire, wind, earth, darkness and light, thunder, and non-elemental. Using the opposite of an enemy's element will inflict the most damage. The game also consists of another unique fighting technique that is more commonly used: the Multi-Attack. It allows one to inflict more damage than normal. When it is used, the X button appears onscreen and you must rapidly tap the X button to increase the power of the attack to over 100 percent. If you do nothing, you will only inflict a small amount of damage. There is also the interactive counterattack which, if not properly done, will cut off the rest of your combos and damage your fighter as a result. \n Arm yourself with a variety of weapons such as swords, spears, bows and arrows, axes and hammers. Protect yourself with body armor, helmets and boots. Other items like bracelets, amulets or stones carry with them magical powers to enhance attacks or deflect the damage of an attack. Although your journey begins with only basic weapons, others can be purchased from merchants or found in chests. Changing and upgrading weapons for the entire party can be done via the in-game menu, however some weapons are specialized for particular warriors. There are also items that can heal or wage war and they too are won in battle, found in chests, or purchased from merchants. \n Although you start out as Dart, a brave and loyal warrior swordsman sworn to avenge his parents' death by the Black Monster, other party members you'll run into have their own unique story to tell. Saving the game is done wherever you find Save Points; the only requirement is that you must have at least two blocks of memory available on a memory card. This one-player game is also analog and vibration compatible and comes on four CDs.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Legend of Legaia (USA).txt",
    "content": "After creating a massive world with vast oceans, landscapes and an infinite universe, God instituted human beings to keep his creation in order. Upon realization that man was mortally flawed with weaknesses and feelings, he created a mysterious force known as the Seru; these stone objects would aid humans in decisions and day to day functions. Worn as an apparel item, they granted the wearer many strengths and abilities ranging from the movement of heavy objects to flying capabilities. Thus, human life was made easier -- the Seru would forever obey their masters. \n And then the Mist arrived. \n Filled with destructive means and hatred, the Mist covered the human's cultivated lands and destroyed a seemingly eternal bond with the Seru. Instead of loyally helping their masters, the mysterious stones turned against the humans; they became maniacal tools of evil, controlling minds and ruining innocent lives. The human existence was reduced tremendously with few survivors fleeing to uncharted territories. Perhaps the Mist wouldn't find them wherever they ran.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Legend of Mana (USA).txt",
    "content": "A twinkling consciousness became a star that sparkled in the night and banished the darkness. The Mana Goddess acquired consciousness by gazing into the light of that sun. She made FaDiel, a great land, but so far an empty one.\n\nIn Legend of Mana you control a hero or heroine traveling over the land of FaDiel. The game features a land creation system, allowing you to create new locations and story elements by placing mysterious artifacts. Those ancient artifacts are repositories of the lands long-forgotten memories and the many events that once took place there. As the game advances, you will receive more artifacts and find out more about the land. At home you can raise pet monsters and create powerful golems, forge mighty weapons or refine musical instruments. On your adventures you can meet various interesting characters and fight against gruesome monsters.\n\nThe game is extremely non-linear in terms of gameplay. You can explore areas in any order and play through 67 related scenarios. Eventually you will resurrect the Mana Tree and discover the Legend of Mana.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Lunar - Silver Star Story Complete (USA).txt",
    "content": "Alex, a young boy from a small humble town, enters a life of adventure and intrigue after being chosen as the heir-apparent to the title of \"Dragonmaster\", guardian of the forces of the planet. With the help of his expanding band of companions, Alex must pass the trials set by ancient dragons to claim his place in history, and stop a powerful sorcerer and former hero, Ghaleon, from controlling the world.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Lunar 2 - Eternal Blue Complete (USA).txt",
    "content": "Set one thousand years after the events of The Silver Star, the game follows the adventure of Hiro, a young explorer and adventurer who meets Lucia, visitor from the far-away Blue Star, becoming entangled in her mission to stop Zophar, an evil, all-powerful being, from destroying the world.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/MDK (USA).txt",
    "content": "MDK is a 3rd person action/shooter game in which the objective is to basically shoot everything that moves in six massive cities, each with their own sublevels. Because the world is being invaded by aliens, it is up to you and your sidekick Bones to stop the invasion and single handedly save Earth. In order to do so, you must make good use of your special suit, which allows you to do all kinds of things. \n The super-suit comes equipped with many features you'll need to utilize in your journey, such as the sniper helmet. This allows you to zoom in on unsuspecting enemies and fire off shots with pinpoint accuracy. There is also a built in parachute (a ribbon-like device) that enables you to glide between different platforms as well as drop down on intruders. \n Your suit comes equipped with a chain gun that has an infinite supply of ammunition. You can also pick up special items, like a miniature nuclear bomb and powerful upgrades for your chaingun. In addition to running around and shooting, there are also special means of transportation including a surfboard-like jet and a bomber plane that is used to call in air strikes.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Magic Carpet (USA) (En,Fr,De,Es,Sv).txt",
    "content": "Magic Carpet is a conversion of a classic PC game that was also released for the Saturn console. \n   Magic Carpet is a very original title. Flying on a carpet itself is original in video games,but the concept and story line make this one of a kind. \n   Collect magical powers by shooting the balls (mana) floating around the world and make them your color (white). Then, let your hot air balloons pick them up and bring them to your castle before the other wizards get to your mana and change it to their own color. That's the main thing of the game. \n   All of the 13 different beasts that fly or walk around in each of the worlds contain a certain amount of mana, and when destroyed, it's released. You complete a world (there's about 75 of them!) when a certain amount of mana has been stored in your castle. \n   A really interesting aspect of mana is that you can access more spells the more you get,there are 20 different spells that can be found in the game.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Mat Hoffman's Pro BMX (USA).txt",
    "content": "Following in the tradition of the Tony Hawk Pro Skater series comes Mat Hoffman's Pro BMX. Choose from eight different professional BMX players and go from course to course accomplishing goals and trick points. \n Mat Hoffman's Pro BMX uses the same game engine seen in Tony Hawk Pro Skater, and has many of the gameplay elements have been retained. The dynamic camera always tracks your BMX rider from behind and switches to an aerial view when performing high jumps on half pipes. Collect magazine covers in each varied level (varying from city parks to warehouses) in order to unlock new levels. Players will have to execute high jumps and perform crazy tricks in the air and by railing metal bars and buildings in order to gain trick points. Enough trick points will allow you to unlock new levels. \n The soundtrack on Mat Hoffman's Pro BMX is also sure to appeal to almost any gamer, as a wide variety of song types have been covered, from rock to hip hop. Groups on the soundtrack include Outkast, Jurassic 5, Dead Prez, Deltron 3030 and Static-X.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Medal of Honor (USA).txt",
    "content": "FIGHT WWII FOR THE FIRST TIME \n \nTomorrow is D-Day. Tonight you land behind enemy lines. The tide of the war is in your hands. Your are an elite Special Forces agent sent to execute covert operations, search and rescue missions, and commando raids. Fight to win the Medal of Honor in the only game that lets you take on Nazis in WWII.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Medal of Honor - Underground (USA).txt",
    "content": "The year is 1940, and the conquering force of the Third Reich has invaded France. Nazi Germany has marched into Paris and claimed the once proud nation as its own in its further quest for domination of Europe. The allied forces won't be coming to liberate France any time soon, as they have their hands full protecting Great Britain. The perception that the French have simply let Hitler walk into their country without a fight has not endeared the rest of the war-torn world to the cause. \n As a young woman named Manon Batiste, you will be thrust into the world of intrigue and violence that is World War II doing all you can to save your beloved homeland by joining the OSS and traveling the world as a member of the French Underground, taking out Gestapo thugs and the SS so that you might become a seasoned veteran and aid in the ultimate liberation of your nation.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/MediEvil (USA).txt",
    "content": "The Evil Wizard Zarok has returned from the dead to wreak havoc on a peaceful land, and it is up to the centuries-dead hero, Sir Daniel Fortesque, to rise from his grave and defeat the very nemesis that put him in that grave.  Wander the land, destroying Zarok's undead minions; collect chalices to grant him more powerful weapons; solve puzzles in order to defeat the evil wizard and restore peace to the land -- so Daniel can go back to his eternal slumber.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Mega Man 8 (USA).txt",
    "content": "Mega Man 8 (Rockman 8 Metal Heroes in Japan) begins as the robotic hero Mega Man is called to investigate a mysterious energy reading coming from a recent meteor crash on an island. Mega Man discovers that his arch nemesis Dr. Wily has beaten him there and immediately retreats with the energy source. Mega Man is charged with stopping Wily's evil plans to use the energy, as well as discover the purpose of a mysterious, alien robot found at the crashsite.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Mega Man Legends (USA).txt",
    "content": "THE BLUE BOMBER BLASTS INTO A WHOLE NEW DIMENSION \n \nMega Man blasts his way into the third dimension in an amazing new adventure. Mega Man Legends combines the best of classic Mega Man action with enormous bosses, a riveting storyline, and all the depth of the hottest RPG. \n \nExplore vast 3-D worlds in your quest to find the treasure of all treasures, the Mother Lode. You'll love the new 3-D graphics, deadly weapons, and non-stop action... unless of course, you're a boss.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Mega Man Legends 2 (USA).txt",
    "content": "Mega Man, Roll, and all your favorites are back in an entirely new 3-D adventure! Far away, in an isolated wasteland, a mysterious girl and an infamous treasure have been discovered. It's the legendary \"Sealed Key,\" rumored to unlock an even greater mystery known as the Great Legacy. What power does the Great Legacy hold? Now, a race unfolds as Mega Man and his friends embark on a journey which will alter their destinies forever.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Mega Man X4 (USA).txt",
    "content": "It is the year 21XX, following years after the Doppler rebellion and the revelation of the Maverick Virus, a new global Reploid military force, apty-named Repliforce, was founded to combat the ongoing Maverick attacks and uprisings. However, humans quickly began to fear and distrust Repliforce's military power and their methods of fighting Mavericks proved to be very destructive with little disregard for human life. One day, the floating city Sky Lagoon was under attack by Mavericks and Repliforce arrived on the scene after the city has crash landed on the ground, where one of their leaders, Colonel, was being ordered by the Maverick Hunters X and Zero to lower his weapons for questioning as suspects for the incident. Out of pride and contempt towards human government, Colonel refused to comply, and following the accusations behind the Sky Lagoon incident, the Repliforce General decided stage a coup d'tat, seeking to create a new utopia just for Reploids. Repliforce were then labeled as Mavericks by the government, thus the Maverick Hunters must fight against their former allies and stop their coup.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Mega Man X5 (USA).txt",
    "content": "Years after the Reploid Wars, all seems peaceful in the world. But peace was not meant to last forever. When the \"Eurasia\" space colony is attacked by an unknown virus, the call goes out! X and Zero are called back into action to help destroy the colony, which is now on a collision course with Earth, and is expected to collide into the planet in only 16 hours! At the same time, guess who decides to show up once again...give you a hint: his name is a Greek letter.\n\nWith all new features like advanced Maverick AI, bigger, more challenging stages, new gameplay features like ducking and swinging on vines and ropes, this is set to be the most insane mission X and Zero have ever had to face!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Mega Man X6 (USA) (Rev 1).txt",
    "content": "Three weeks after the Eurasia space colony incident, the Earth's surface was severely damaged and humans were forced to flee underground to escape from the planet's severe pollution, and Zero is still missing, presumed to be dead. Reploids were sent in to terraform the land in an attempt to make the planet habitable for humans once more, however, a Reploid and former colleague of Alia named Gate discovered something unusual amidst the ruins of Earth  a piece of Zero's DNA. After examining Zero's DNA, Gate became mad with power and an outbreak of bizarre Mavericks occurred. Weeks passed, Isoc, a Reploid scientist and an associate of Gate, announced to the people that a new phenomenon known as \"Nightmare\" has quickly spread throughout the world, causing Reploids to hallucinate and eventually destroy themselves. Isoc suspects the cause of the outbreak is none other than Zero who been spreading the phenomenon as he goes, much to X's anger and confusion. Isoc rallies Reploids throughout the world to aid the Nightmare Investigators, led by the powerful High-Max, at key locations to track down the source of this new phenomenon as well as Zero. X, along with the Maverick Hunters, must confront the Nightmare Investigators as they try to solve the mystery behind the Nightmare Phenomenon and clear Zero's name.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Metal Gear Solid (USA) (Rev 1).txt",
    "content": "Renegade special forces unit FOXHOUND has taken over Shadow Moses Island in Alaska's Fox Archipelago - publicly a nuclear weapons disposal facility but in truth a top secret weapons development site and home to Metal Gear REX. \n \nWith the help of the genetically engineered Next Generation Special Forces, Liquid Snake has seized the facility, taken hostages and hijacked REX, demanding the US Government give them One Billion Dollars and the remains of legendary soldier Big Boss. \n \nReturning from retirement, former FOXHOUND operative Solid Snake has been tasked with infiltrating the island on a solo mission to free the hostages and stop his former unit before they can launch a nuclear attack.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Misadventures of Tron Bonne, The (USA).txt",
    "content": "Rather than focusing on the heroic protagonists of Mega Man Legends series, the game follows series anti-hero Tron Bonne, sister of the criminal Bonne family of air pirates. The Japanese counterpart included PocketStation support whereas the North American and European version did not. With a limited production run, the game is one of the rarest PlayStation games\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Mobile Suit Gundam - Char's Counterattack (Japan).txt",
    "content": "The year is 0092. Advances in human technology have transformed the world. Mankind has built colonies in which they reside. But with peace comes-Doubt, disbelief, and eventually war. A group of colonies (similar to Axis) Have named them Zion. Fearing Zion, they have built \" Mobile Suits\", giant \nRobots capable of destroying anything in their path. Fortunately, they were used for good.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Mr. Driller (USA).txt",
    "content": "Mr Driller is a real-time puzzle game that relies solely on quick-thinking and a bit of planning. Gameplay is a combination of Tetris and Boulder Dash: You have to drill down through multi-colored blocks to reach the bottom while avoiding the consequences of reckless drilling (blocks may fall on you and crush you).\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Mr. Driller G (Japan).txt",
    "content": "'Action' The Driller family! 4 people, 1 animal and 1 machine give a great show around the world and universe. And what is the uproar this time!?nnThis great title packs the fun of the drilling action series 'Mr. Driller', in which you have to collect air capsules as you evade falling blocks and aim for the underground goal.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Ms. Pac-Man Maze Madness (USA) (Rev 1).txt",
    "content": "Pac-Land is protected by the four gems of virtue: Generosity, Truth, Wisdom, and Courage. These four gems are scattered in the four Wonders of Pac-Land, mystical regions separated from Pac-Land by mysterious force fields. The gems are in place to keep darkness and chaos from falling on Pac-Land. \n Recently, someone has invaded the Enchanted Castle, kidnapping the princess and turning it into a haunted house. Professor Pac believes that whoever is responsible for that attack is planning to attack the rest of the four Wonders. Therefore, he has created a device that allows for someone to pass through the force field separating Pac-Land from the wonders. With this device you, Ms. Pac-Man, must recover the four gems and save Pac-Land. \n Ms. Pac-Man: Maze Madness is a 3D isometric view action puzzle game. You play as Ms. Pac-Man and must navigate the mazes while avoiding the monsters. Every time a monster touches or hits you part of your health bar is lost, and if you lose your entire health bar the game is over. If you eat a power dot you will be invincible for a short period of time, and can even eat the monsters. \n The game is composed of a series of theme levels, with each level having four gold stars to collect. You can collect a gold star by completing the level, eating all of the dots in the level, eating all seven hidden fruit in the level, or completing the level's time trial. These stars can then be used to unlock the game's secrets. The original Ms. Pac-Man arcade game is also included on the disc.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/NanoTek Warrior (USA).txt",
    "content": "Nanotek Warrior is probably based (or at least inspired) in the classic Spectrum (and other 8 bits platforms) game Eliminator released and development by Hewson Consultants Ltd. \n In the 23rd century, nanotechnology does man?s bidding. Anything from curing disease to feeding the worlds population has been taken care of by these tiny wondrous nanobots. But what happens when they become self-aware and decided to destroy their oppressors? To save the human race from extinction by its own creation, you are put in control of a new breed of nano war machine designed to fight (and win) this war. Enter NanoTek Warrior. \n A ground-based shoot-em-up by design, the game employs the use of jumping, banking, and strafing as you move forward through 3D tube-like levels. The game is seem from a third-person perspective behind the ship. Some areas place you outside and some inside, but the majority of the game takes place rotating around tubes. This gameplay only differs slightly in boss levels, that allow you to rotate around a central point with no forward motion. \n You can obtain different power-ups including special weapons, health bonuses and extra lives as you play through the game?s 9 levels. Each level is divided into 2 stages, one on tubes and a boss fight afterwards.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/No One Can Stop Mr. Domino (USA).txt",
    "content": "No one can stop Mr. Domino! Get ready for some seriously addictive action in this wild style 3D-strategy puzzle game. Move out fast to keep those dominoes toppling! If you don't, the Dreaded Domino Effect will take hold and you will never want to stop! So go ahead. Try and stop Mr. Domino.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Oddworld - Abe's Exoddus (USA).txt",
    "content": "Those nasty Glukons are at it again, intent on oppressing the loveable Mudokons any way they can. Last time, the meanies were manufacturing Mudokon jerky. Now, they've officially taken genocide too far, by forcing blind Mudokons into slave labor to dig up the bones of their fellow deceased. It so happens, by the way, that Mudokon bones add just the right kick to a favorite Glukon recipe, Soulstorm Brew. \n Who's gonna save the day? Our unlikely hero Abe, of course. You remember Abe: that blue-green, loincloth-wearing, six foot-tall Fraggle with chronic digestive problems? Yep, he would have been content to rest on his laurels after rescuing ninety-nine of his Mudokon buddies from extermination in Oddworld: Abe's Oddysee, but a group of disgruntled ghosts elected good ol' Abe to avenge their deaths.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Oddworld - Abe's Oddysee (USA) (Rev 2).txt",
    "content": "Abe's Oddysee begins with the eponymous protagonist as a prisoner in RuptureFarms, from which he narrates his story. He and many other Mudokons are slaves to Molluck the Glukkon, the owner of RuptureFarms: \"the biggest meat-processing plant on Oddworld\". Abe is a contented floor-waxer First Class and currently Employee of the Year. \n \nAt the time of the story, the ingredients of the corporation's three major \"Tasty Treats\" (Scrab Cakes, Paramite Pies, and Meech Munchies) are quickly running out, with the Meeches already extinct. While working late, Abe overhears Molluck's plan to use the Mudokon slaves as meat products called \"Mudokon Pops!\", which frightens Abe into escaping from the factory.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Omega Boost (USA).txt",
    "content": "AlphaCore, the world's first sentient cyber-organism, has begun to mistrust its human masters. Slowly, it begins to spread, expanding its capabilities into neighboring systems. By the time the horrified human population discovers its size, AlphaCore controls virtually the entire network. As it defends itself, the humans try to regain control but events suddenly escalate. \n \n \n \n Eventually, AlphaCore declares war on the human population, attacking it with its own unmanned weapons and defense systems. As a result, desperate human scientists construct a time machine -- AlphaCore must be stopped before it achieves sentience! Discovering their plan, the renegade organism steals the time machine and utilizes it to return to the days of the first computer, ENIAC. By integrating its consciousness into ENIAC, AlphaCore hopes to become even more powerful.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/PaRappa the Rapper (USA) (En,Fr,De,Es,It).txt",
    "content": "The rapping pup, PaRappa, dreams of impressing his friend, the beautiful Sunny Funny, and going out on a date with her.  But what he lacks is confidence - help PaRappa rap his way through learning Kung Fu, a driving test, cooking and more, all in order to get the girl.  And remember - You Gotta Believe!\n\nPaRappa the Rapper is a game based on lyrics, music and rhythm.  The game itself is very basic - each stage has a 'teacher', that PaRappa must follow.  You'll see the teacher say some lyrics, and then PaRappa must copy the teacher by pressing the appropriate buttons to repeat those lyrics back.  Rap well, and you'll be able to continue; fudge up the lyrics, and the music will start to distort and the teacher will become displeased.  Continue to mess up and you'll fail the stage.\n\nOf course, the goal is not to copy the teacher, but instead to outperform them - you can do this by improvising in the song's gaps.  Listen to how the song goes, and improvise in time to the music; if you perform well enough, the teacher will step aside, leaving you to freestyle on your own!\n\nThe PSP version of the game is a remake of the PlayStation original.  However, it includes a few upgrades, such as a 16:9 display, sharper graphics, game sharing, multiplayer support of up to four players, and the addition of song remixes, which can be downloaded via the internet onto your Memory Stick Duo.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Panzer Bandit (Japan).txt",
    "content": "The game is a side-scrolling beat 'em up that uses the same engine used in Mad Stalker: Full Metal Force, also for the PlayStation. There is a total of 12 characters, including the four story characters and the eight unlockable bosses. \n \nThe game is controlled with two attack buttons (strong and weak) and the directional pad for moving left, right, crouching, and jumping. Shoulder buttons can also be used to change between foreground and background and can be used to activate the character's special attack. \n \nAn unusual aspect of the game is that if the player stands still during an attack, it is considered a guard. Other features include a combo counter and a guided elemental attack which launches an enemy.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Parasite Eve (USA).txt",
    "content": "An ordinary day in New York for rookie police officer Aya Brea. Christmas Eve is the present day, and you've decided to visit the opera theater. Now this is where the fireworks begin. Suddenly audience members are set on fire, toasted completely, and it appears that the lead vocal is the source of this burning terror. Yet you appear to be immune, and as a police officer you're always on duty, so you must confront the danger.\n\nThere has to be some connection between the two of you, as that seems the only rational explanation. What if mitochondria are a species on its own, more advanced then humankind, and using them only to create environments and civilization for themselves? What if humankind are just hosts? What if mitochondria are the natural enemy of humankind? That would make Aya their natural enemy, so the battle for survival and uncovering the truth has already started.\n\nThe game is played over six days, each day bringing its own quest. Environments range from Central Park and the American Museum of Natural History to a police office and hospital, all of them modeled like realistic places and most of them crawling with bloodthirsty mutant animals. Combat is different from traditional RPGs, as while you still take turns attacking and/or using parasite powers, you'll be able to run across the battlefield and dodge enemy fire or even strike from a better angle or behind. As Aya levels up she will gain access to parasite powers, such as healing or supercharging a bullet with energy. These powers will deplete a recharging energy bar, although the bar will recharge slower the longer combat drags on. Aya will find many guns of various types throughout the game, and every gun can be modified with extra stats, either with special items, or by breaking down another gun to move over its bonus stats or special effects. The same is true for armor Aya finds.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Parasite Eve II (USA).txt",
    "content": "Aya Brea is back in a new game. This time there are fewer RPG elements than the first game, and the game plays more like Resident Evil. Battles are now in real-time, and a new range of weapons are available. Defeating enemies rewards money as well as points used to revive and power-up Aya's suppressed Parasite powers, like healing and igniting foes. Weapons and armor now have fixed stats, but attachments can be swapped in and out of them to modify their properties.\n\nAfter surviving the events of Parasite Eve Aya left her job as a cop and became a member of MIST (Mitochondrion Investigation and Suppression Agency) in order to hunt down the remnant mutants spawned by Eve's awakening. In the year 2000 a new breed of Neo Mitochondrion takes over the Akropolis Tower in downtown LA. Aya is called in and uncovers a secret organization that threatens all humanity.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Persona (USA).txt",
    "content": "Persona 2: Innocent Sin is similar in structure and basic gameplay to its predecessor. Much of the game consists of navigating a party of up to five active combatants through locations in the large city, exploring complex dungeons, and fighting randomly appearing demons in round-based style. Unlike the first game, dungeons are viewed from an angled overhead perspective with rotatable camera. Rather than having the option of using either a melee weapon or a gun, each character is equipped with his or her own specific weapon.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Persona 2 - Eternal Punishment (USA).txt",
    "content": "The follow-up to 1996's Revelations Series: Persona, Persona 2 is a role-playing game pitting high-school teenagers against demons. While investigating the rumor of a curse at the Seven Sister's High School, magazine editor Mary Amano comes face-to-face with a murderer. A mysterious man by the name of Tatsuya Suou saves her, but from this moment on her life is irrevocably changed. \n As with many RPGs, players can gather a party of characters with distinct personalities and attacks. When a random battle begins, the player must first decide upon specific attacks and character turn-order before the fighting begins. Battles will continue until one side is eliminated, although there is also an option to partake in more traditional turn-based battles. Personas, the characters' powerful alter egos, can be used in battle to perform some of the more devastating attacks in the game. That said, not all encounters in the game need to be solved through fisticuffs. \n By using the game's Contact system, players can negotiate with demons and ask them questions. Each character in the party has a different way of negotiating and using the correct negotiator can mean the difference between a successful or failed negotiation. Success will sometimes result in the player receiving money, information, or Tarot Cards -- powerful items that can be used to summon new Personas. \n \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Policenauts (Japan) (Translated).txt",
    "content": "In 2010, mankind has built its first space colony, Beyond Coast. After three years have passed, the founders of the colony feel it needs to be protected, and choose five best policemen of Earth to do that: Gatse Becker from Scotland Yard, the Japanese Sadaoki Tokugawa, Salvatore Toscanini from New York, and two policemen from Los Angeles: Jonathan Ingram, the hero of the game, and his best friend Ed Brown. \n\nOne day, during a routine patrol on Beyond Coast, something happens to Jonathan's space suit. He is sucked into space and is presumed dead. But twenty-five years later, he is miraculously discovered in his life pod... alive. He still looks like a young man, but in reality he is 55 years old.\n\nTrying to forget his past, Jonathan opens an investigation agency on Earth. His ex-wife (who has re-married during those twenty-five years) visits him and asks him to find her missing husband. When she leaves the office, her car explodes, and she dies. Determined to fulfill her final request, Jonathan prepares to re-visit Beyond Coast...\n\nThis unofficial semi-prequel to  Snatcher is a comic book/anime adventure with some shooting sequences. You click on objects and people you interact with, or move a dot around the screen to aim at your enemies during the shooting parts.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Pop'n Tanks! (Japan).txt",
    "content": "Pop 'n Tanks is a tank combat game that strives for the dimunitive and the comic rather than the realistic. The players pilot a mini-tank across a 3D terrain, crushing barricades and shelling other tanks. Tanks may be customized by using a variety of parts, and once configured to the player's preferences, the data may be saved to a Memory Card. \n This is a tank battle game. The player who wins 2 rounds win the match. In order to win a match the player must empty the enemy's energy bar. \n You'll get to battle in all sort of arena with differentterrain ranging from lush forest, down town area, to spooky caves. \n Pop'n Tanks allows you to take control one of many SD tanks into 1 on 1 battle against an opponent. One can play in story mode to face all enenmies in progrssive order or have a quick battle or use your saved tanks in custom battle against a friend. The game has different game modes: \n - TANK WORLD: In this mode you get to create your own tank (based on the default tanks) to customise and compete in the tank world's tank competition. \n - STORY MODE: In which the player choose to play as 1 of eight chracters in a quest to beat all the others. The game characters are: Puel, Bit-Man, Puela, Vokkle, Domina & Hekkle, Ferina, Gunt & Date \n - QUICK BATTLE (Play against an oponent in a split screen mode) \n - CUSTOM BATTLE (2 players only. You get to battle with your customised tank from TANK \nWORLD.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/R-C Stunt Copter (USA).txt",
    "content": "R/C Stunt Copter is a highly realistic simulation of flying a miniature R/C Helicopter that, due to being developed by Shiny Entertainment (the mad men behind MDK and Earthworm Jim),  has a much bigger sense of humor than is necessary for a game of it's genre... \n \nThe following text  is quoted directly from this game's actual manual! \n \n\"Let me make something perfectly clear: You will NEVER beat this game. I think that's important enough for repeating: You will NEVER beat this game. \nI will wait a second while the ramifications of that sink in. \nNow, I know you're sayiong one of these things right now: \na) I can beat any game. \nb) Why the heck would I play a game I can never win? \nc) Whatchu talkin' 'bout Willis?\" \n \nThat text alone should give you a taste of what you're in for...\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/R-Type Delta (USA).txt",
    "content": "The Bydo Empire has returned to Earth with a vengeance. This time, they will not accept defeat so easily. Earth however, is ready for them...\n\nThree R-Class ships: the R-9, the R-13, and the prototype R-X, are your weapons in this war. Choose your ship according to your liking, blast off, and strike the Bydo Empire!\n\nR-Type Delta is the first 2D/3D R-Type game (a la Einhander and Thunder Force V) and is a PlayStation exclusive.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/R4 - Ridge Racer Type 4 (USA).txt",
    "content": "Powering beyond RIDGE and RAGE RACER, high-speed control and advanced dynamics accekerate the rush of a first class victory. \n \n-In-depth Grand Prix Mode \n-Incredible two-player action \n-40+ unique car models with over 300 variations \n-Hyper-evolved graphics for the supreme racing experience\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Rakugaki Showtime (Japan).txt",
    "content": "Rakugaki Showtime you play as a rakugaki (scribble) character, who must fight against other rakugaki characters in a square 3D arena. The fights mainly consist of throwing items at the opposition. However, throwing is not as simple as \"pick up, aim & throw\". In Rakugaki Showtime different \"drives\" can be placed on the thrown items by holding different directions whilst throwing. Holding the direction towards the target will cause a \"Forward Drive Throw\", which is like a faster normal throw, albeit weaker. Holding the direction away from the target will cause you to do a \"Backward Drive Throw\", which will cause your character to throw the item slower and in an arc, but it will cause far more damage.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Rapid Reload (Europe).txt",
    "content": "The object of interest in this game is the mysterious Valkiry Stone. Two treasure hunters, Axel and Ruka, set out to find the stone, but the evil gang known as the Pumpkin Heads wants to find the stone first. \n \nAs either Axel or Ruka, blast your way through six side-scrolling levels against hordes of enemies, facing off against several bosses in each level. You can select from four different weapon effects (normal, bouncing, homing and flamethrower), use smartbombs and a grappling hook.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/RayCrisis - Series Termination (USA).txt",
    "content": "An ambitious and unethical scientist, a secret experiment gone horribly awry, and an artificially intelligent supercomputer gone mad; all the necessary ingredients for the imminent extinction of mankind. You are humanity's last hope, a hotshot pilot given the unenviable task of flying an experimental fighter into the dark heart of the Con-Human Network. Seize the controls of three Wave Rider spacecraft, each equippped with the WR-01 primary weapon array, WR-02 secondary lock-on laser system, and WR-03 single-use weapon for emergency situations. RayCrisis: Series Termination is the final entry in Taito's acclaimed trilogy of shooters, and it bombards your CRT with an abundance of fourth-generation optical stimulation: multilevel scrolling, transparency and lighting effects, and enough polygons to overload your cerebral cortex. Dodge, weave, and blast through two play modes, disintegrating wave after wave of relentless bogeys, to achieve high scores and unlock hidden bonuses. Prepare your senses, reinforce your nerves, and limber your trigger finger - the final assault has begun!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Rayman (USA).txt",
    "content": "Rayman to the rescue! He must free the Electoons, defeat Mr. Dark, save the Great Protoon from its mysterious kidnapper, and restore harmony to the world.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Rayman 2 - The Great Escape (USA) (En,Fr,Es).txt",
    "content": "Rayman 2: The Great Escape is an action-adventure video game developed by Ubi Soft Montpellier. \n \nRayman 2 takes place in a world called the Glade of Dreams, and revolves around its invasion and occupation by an armada of interstellar Robo-Pirates, led by Admiral Razorbeard. Prior to the invasion, the Robo-Pirates destroyed over one hundred planets in the galaxy, with the intention of enslaving their inhabitants. Upon the invasion of the Glade of Dreams, the Robo-Pirates were battled against by Rayman, Globox, and other allies. After some battles, Rayman's capture occurs after the explosion of the Primordial Core. Ly the Fairy telepathically communicates with Rayman explaining the consequences of the damage, with the core's shattering into 1000 Yellow Lums, and the capture of many fighters. Rayman's powers are also lost due to this, and he finds himself captured by the Robo-Pirates at the beginning of the game.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Resident Evil - Director's Cut (USA).txt",
    "content": " After receiving a distress call from the Bravo Team, an elite group from S.T.A.R.S (Special Tactics And Rescue Squad) flew into the desolate Raccoon City. Apparently, the team had uncovered something concerning the Umbrella corporation -- a biotech research company. But then, without warning, the Bravo Team vanished into thin air. \n Upon landing in the small city, the members of S.T.A.R.S began to investigate. They heard some strange noises coming from the surrounding woods and realized the sounds were getting closer. Scared, they took off running and kept on until they came to a large, ominous mansion. Seeking safety they entered, locking the door behind them. Their adventure had just begun.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Resident Evil 2 (USA).txt",
    "content": "Resident Evil 2 takes place two months after the events of the first game and is set in Raccoon City, a Midwestern mountain community whose residents have been turned into zombies by the T-virus, a biological weapon developed by the pharmaceutical company Umbrella. In their escape from the city, the two protagonists Leon S. Kennedy and Claire Redfield encounter other survivors and are confronted by William Birkin, the mutated creator of the even more powerful G-virus. \n Previously confined to an old mansion, the Umbrella corporation's legacy of fatal mutations has spilled over into nearby Raccoon City. The once peaceful town is now overrun with zombies and all manner of genetic mutations. New police recruit Leon Kennedy and Claire Redfield; the sister of STARS agent Chris Redfield, find themselves in the middle of an experiment gone horribly wrong. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Resident Evil 3 - Nemesis (USA).txt",
    "content": "Join Jill Valentine, the heroine and amazing survivor of the notorious disaster at the mansion, as her nightmare continues. After resigning from S.T.A.R.S. Jill now prepares to head out of Raccoon City...but it's not going to be easy. Caught in a town crawling with flesh eating zombies, more than ever she must rely on brute force and cunning to find a way to escape alive. This unique adventure intricately reveals more of Umbrella Corporation's nightmarish plot and picks up just hours before the events from Resident Evil 2. \n \nMore zombies, more terror, and even more evil. \nMore challenging enemies that come back to life at any time. \nFace off against the most terrifying mutations stalking the streets of Raccoon City. \nMore detailed character actions: Try the dodge move to avoid an enemy's attack. \nInteract with the environment like never before: Use background objects defensively. \nA unique new drama which reveals more details of Umbrella Corporation's devious activities from the Resident Evil series.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Rhapsody - A Musical Adventure (USA).txt",
    "content": "Rhapsody: A Musical Adventure is a tactical role-playing game for the PlayStation from Atlus USA and Nippon Ichi Software, the creators of Disgaea, and is part of the Marl Kingdom series. Rhapsody, along with its sequels, are considered musical RPGs, meaning in place of FMV cutscenes, there are musical numbers, complete with vocals. The game is also known for its \"overwhelming cuteness\" and low level of difficulty. Although this may make the game seem geared towards a younger audience, in Japan, the game and series in general has seen much success. \n\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Rival Schools - United by Fate (USA) (Disc 1) (Arcade Disc).txt",
    "content": "What do you get when you cross Street Fighter with a bunch of school kids? You get another classic Capcom beat 'em up. \n\nFeaturing plenty of new faces, and heaps of new moves to work with, this is a full conversion of the arcade game, with the added bonus of a second disk. In this second disk, you get new modes including Lesson (teach yourself new moves), Group (select two to four characters for a group battle), League (choose two to six characters and then fight in a league battle), Tournament (tournament battle with up to eight characters), Cooperate (four-player simultaneous player), one-player game, and a specialized versus mode.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/SaGa Frontier (USA).txt",
    "content": "Saga Frontier is a fantasy / sci-fi anime style RPG. It's set in a huge world (30 zones). You choose one of seven characters to defeat the game and the game stores the data from the chosen character which affect what happens once you play the game with one of the other six characters. The game features a LOT of side quests.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/SaGa Frontier 2 (USA).txt",
    "content": "The sequel to  Saga Frontier, but also to the less known SNES  Romancing SaGa series, \"Saga Frontier 2\" allows you to play the stories of two main characters - a young prince Gustave XIII, who has been exiled from his homeland because he was unable to use the mysterious power of Anima and to become a worthy successor to the throne, and William Knights, a treasure hunter, who strives to find ancient artefacts containing great powers. Their stories are connected to each other, and each story occupies almost a lifetime: the characters grow up and die, new characters are born, etc. \n\n\"Saga Frontier 2\" continues the non-linear gameplay traditions of the SaGa series. You can visit all towns at your wish and at any time, recruit anyone to your party, and freely upgrade your party members by gaining new abilities and distributing them among your characters. You can learn magic spells by collecting artefacts, and combining them to produce more powerful types of magic. Similar to Konami's  Suikoden series, there are three types of combat: one-on-one (duel), turn-based party combat, and strategic army battles.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Sexy Parodius (Japan).txt",
    "content": "Sexy Parodius is the fourth game in the series. As one of the members of Parodius Team, you must stop a lecherous octopus and his army from hoarding a huge treasure mound for their own no-good deeds.  Featuring several classic Parodius cast members (including sexy bunny sisters Hikaru and Akane, Takosuke the Octopus, Koitsu the stickman), newcomers, and tons of classic Parodius scenes.  Plus, there's a few \"extra\" surprises for those who love the trademark wackiness of the series.\n\nThis game was never released outside of Japan.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Silent Bomber (USA).txt",
    "content": "Silent Bomber is an old school style game which takes place in the future.  You play as a character named Jutah Fate, a genetically engineered man created by the government.  You're an expert at using bombs.  You start out being able to set only a few bombs at a time, but eventually you can increase the number by collecting E-Chips.   It's a fast paced game of blowing things up before they blow you up.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Silent Hill (USA).txt",
    "content": "Silent Hill is a 1999 survival horror video game for the PlayStation. The first in a series about a mysterious town of the same name, Silent Hill generated a direct sequel, three indirect sequels, a prequel and a film adaptation. The game was included in Sony's Greatest Hits and Platinum Range of budget titles as a result of strong sales. A reinterpretation of the game was developed for the Wii, PlayStation 2 and PlayStation Portable. \nThe plot focuses on Harry Mason as he searches for his daughter, Cheryl, who has disappeared following a car accident which left Harry unconscious. He finds Silent Hill to be largely abandoned, shrouded in a thick fog, snowing out of season, filled with monsters and being over taken by a hellish otherworld. As Harry scours the town, he begins learning about the history of Silent Hill and stumbles upon a cult ritual undertaken to bring a god to Earth.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Silhouette Mirage (USA).txt",
    "content": "In an apocalyptic future, the Edo computer has gone beserk, dividing the world's inhabitants into two mutant classes, Silhouette and Mirage. Now, the watchguard computer safety system has sent forth the Messenger of Justice to travel to Edo and repair the damage before the world is lost forever. As the Messenger, Shyna Nera Shyna, blast, beat, and bash your way through seven wild and bizarre stages using friendly parasite weapons to aid your advance against wacky enemies, huge fully-animated bosses, and devilishly difficult obstacles. Providing the utmost in playability and replayability, the game wizards at Treasure, the brilliant minds behinds such international hits as Gunstar Heroes™, Dynamite Headdy™, Mischief Makers™, and Guardian Heroes™ have come up with another sure-fire classic that pushes the 2-D capabilities of your PlayStation® game console to its limit, and come up with a hit!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Skullmonkeys (USA).txt",
    "content": "Skullmonkeys is the successor title to The Neverhood, which came out only on PC (and, in Japan, as \"Klaymen Klaymen\" on PSX). The game is an old-school jump and run type of game, with a large number of FMVs. The entire game is molded in clay.\n\nThe player takes control of Klaymen throughout the game in an attempt to put a stop to the main opponent, being Klogg, who wants to destroy Klaymen's homeworld, The Neverhood, via a huge robot called \"Evil Engine No. 9\". He uses an army of extremely dumb skullmonkeys to stop Klaymen in his quest; With the exception of several strange, clay birds, each and every enemy in the game is a monkey. The game features music with lyrics by Terry Scott Taylor.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Sled Storm (USA).txt",
    "content": "Sled Storm is a racing game featuring snowmobiles (referred to as sleds), stunts and fourteen snow-covered courses consisting of slippery slopes, inclement weather and treacherous cliffs. Up to four players can also participate at once, making this title one of the few racing games on the PlayStation (as of 1999) to feature split-screen action with more than two players. Sled Storm also offers two forms of racing for both multi-player and solo competition: Championship and Quick Race.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Speed Punks (USA).txt",
    "content": "Speed Freaks is a fast go-cart game in a cartoony setting, featuring six different characters and twelve different tracks. \n \nThe game can be played in four different single-player modes or in multi-player mode with up to four people. \n \nSeveral different pick-ups and power-ups can be found and used to defeat the rivals on the track, including homing missiles, remote bombs and stealth mode.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Spider-Man (USA).txt",
    "content": "Spider-Man is the first 3D game to star the popular web-slinger.  It is loosely based on Spider-Man: The Animated Series and Spider-Man Unlimited and features some of the voice cast from each and similar character designs.\n\nPeter Parker is attending a demonstration of the reformed Dr. Otto Octavius's new invention when an imposter Spider-Man steals the device.  Spider-Man must work to clear his name and uncover the sinister motives behind the device's theft.\n\nThis game features appearances not only by most major Spider-Man characters, but cameos by numerous other characters from the Marvel Universe, such as the Human Torch, Punisher, Daredevil and Captain America.\n\nSpider-Man's webs are greatly emphasized.  He can use them both for navigational purposes, like swinging or ziplining, and for offensive and defensive combat, such as tying up a villain, coating his fists with web for extra oomph, or building a protective shield.  His web supply is limited though and he must find new cartridges or risk running out.  The wall-crawling powers are also prominently features.  Spider-Man can cling to any wall or ceiling.  This is used for basic environmental navigation and for stealth as there are many sequences where you crawl over the heads of unsuspecting thugs, or drop down and catch them off-guard.\n\nCombat is based around Spider-Man's ability to jump, kick, punch and web.  By combining these with direction and in various combinations, Spider-Man is able to throw objects such as furniture, hurl web balls, yank enemies into melee range and follow up with a flurry of hits, among other things.  There are a number of boss-battles as well, all of which are puzzle-based.\n\nMissions vary from the fairly common fight-your way-to-the-goal or find-the-key-that-unlocks-the-door types to races to catch some or evade them or just trying to avoid the police.\n\nThere are several side goals in addition the main mission including multiple unlockable Spider-Man costumes and numerous hidden comic book covers to find.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Spyro - Year of the Dragon (USA) (Rev 1).txt",
    "content": "Thieves have kidnapped a brood of dragon eggs, while, elsewhere in the Dragon Lands, a gateway to the Forgotten World has been uncovered. Sent to recapture the eggs, Spyro the Dragon, and his best friend Sparx, face a journey into uncharted territory against his most fearsome enemy yet - the Sorceress! All new playable characters, frantic challenges and new exciting worlds to explore - the Year of the Dragon begins here!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Spyro 2 - Ripto's Rage! (USA).txt",
    "content": "Ripto's Rage is the second game in the Spyro the Dragon series, which started with Spyro the Dragon in 1998. The protagonist of the series, Spyro, is placed in the land of Avalar, rather than the Dragon Worlds, where the previous installment was set. A dinosaur-riding sorcerer, known as Ripto, has invaded the world of Avalar, and is wreaking havoc on its citizens with his magic. The player, as Spyro, must travel through the world of Avalar and undo the damage done by Ripto.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Spyro the Dragon (USA).txt",
    "content": "Spyro the Dragon is a platform game developed by Insomniac Games for the PlayStation. It stars the title character, a young purple dragon named Spyro and his dragonfly friend, Sparx, and is the first game in the Spyro the Dragon series. The first game was massively popular at its initial release and Spyro would later become one of the most recognizable, popular and respected gaming icons for the PlayStation gaming console. Spyro's best friend, Sparx the dragonfly, acts like the player's health meter and assists in gathering gems. The various dragons Spyro unfreezes along the way are also key characters in Spyro's progression through the game. Gnasty Gnorc is the main antagonist, who froze all the dragons of the land in crystal.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Star Ocean - The Second Story (USA).txt",
    "content": "Star Ocean: The Second Story is a world of magic, science, space travel and deadly demons! Enter a world where love knows no bounds, the evil is neverending and good can overcome all if the heart is just and true. Featuring three battle modes, the ability to master skills to create items and an emotional level for each of the characters, Enix has pulled out all the stops in their latest (and first) title to be brought to the North American PlayStation. \n Star Ocean: The Second Story tells the stories of Claude C. Kenni, son of Ronixis J. Kenny, and Rena Lanford, a young girl living on the planet Expel. Claude, having recently been commissioned as an Ensign in the Earth Federation, is given his first mission under the supervision of his father. This first mission is to survey the planet Milocinia, where a mysterious energy field appears. Once they arrive, they find an alien ruin, filled with mostly broken machinery. Finding a mysterious device in the center of it, Claude begins to examine it close-up, despite orders to keep away from it. As he approaches, the machine activates, teleporting him to Expel.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Steel Harbinger (USA).txt",
    "content": "In Steel Harbinger, a darkly futuristic running, jumping, 3-D shoot-'em-up, you must guide Miranda through certain areas of Kansas, Las Vegas, San Francisco, Houston, Cape Canaveral, Washington, the Antarctic, an alien planetoid, and the Moon. In each level you'll have specific missions to accomplish such as killing aliens, finding special weapons, saving humans, opening secret rooms, activating defense facilities, and destroying key enemy sites. You can teleport between locations by finding teleport cards and telepads. Access to specific buildings and other restricted areas can be gained with pass cards that you will find hidden throughout the levels. In addition to the standard action, you can also commandeer trucks, hovercraft, floating discs, and tanks.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Street Fighter Alpha 3 (USA).txt",
    "content": "Street Fighter Alpha 3, the third game in the Alpha series, has a total of 31 fighters, the most in the series so far. New characters include old favorites E. Honda, Blanka, Vega, Cammy, T. Hawk, Dee Jay, Juni and Juli. Some of the newest fighters on the block include a former Final Fight character (Cody, who has been in jail since the last Final Fight game, or so his clothing suggests), Karin Kanzuki and Rainbow Mika. \n \nThe major difference between this Alpha and the last two are the new play modes World Tour, Arcade, VS, Training and Entry. \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Suikoden (USA) (Rev 1).txt",
    "content": "Loosely based on the classic medieval Chinese novel \"Water Margins\" (Shuihuzhuan) by Shi Nai'an. The game is a fantasy RPG set in an imaginary universe, its main theme being political struggle. The hero of the game is the young son of Theo McDohl, a general who serves the Scarlet Moon Empire, presently controlling the land of Toran. Through a series of events the hero becomes involved in a rebellion against the Empire, led by an organization known as the Liberation Army. Will the hero find a new home there, will he be able to tear himself away from everything that has been sacred to him, including his own father?\n\nSuikoden is a console-style RPG with several unusual additions. There are three kinds of combat in the game, the most common one being the traditional turn-based party combat (players can have up to six people in their active party). Magic runes can be equipped on the player's characters which allow limited usage of offensive and healing spells. There are also army battles, where the player must control whole units of fighters, archers, magicians, etc., and one-on-one fights.\n\nThe game allows the player to build and customize a castle, which serves as their home base and fortress.108 characters can be recruited in the game, a tribute to 108 Stars Of Destiny in \"Water Margins\". Many of those characters will be available as active party members and participate in battles, while others will act as strategy advisers, or enhance the castle itself in various ways.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Suikoden II (USA).txt",
    "content": "Sequel to the early PlayStation RPG. As a member of the Alliance, a military force only really hinted at in the original, you play the unwitting hero of the game: an orphan who has been raised by a quiet, unassuming battle hero in a seemingly ancient war. Alongside you in the ranks is your best friend Jowy, a boy born of nobility but who has never been able to receive approval in his stubborn father's eyes. As the game begins, you are immediately tossed into a tale of political strife, betrayal and war on a grand scale beyond your scope in the early stages. As the game wears on, the plot will twist, turn and develop in numerous ways that expose the personalities of each of the characters involved. The battle system is turn-based, with the option to equip Runes for special abilities, combine party member attacks to create chain combos or devastating spells, and the option to run the battle in Auto mode.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Super Puzzle Fighter II Turbo (USA).txt",
    "content": "A Tetris-like puzzle game featuring popular characters from many Capcom games.\n\nColored gems fall from the top of the screen in pairs, but this time lining up those of the same color is not enough. To break the gems and punish your opponent with counter gems you have to place a crash gem of the same color next to the gems. If you make a block of gems of the same color they'll fuse, forming a power gem. Breaking a power gem sends more counter gems to your opponent than breaking the same amount of gems in some other configuration. But the ultimate attack is breaking power gems in chain.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Syphon Filter (USA) (Rev 1).txt",
    "content": "Gabriel Logan, one of the government's top covert agents, must neutralize the terrorists that threaten Washington D.C. and destroy a biological weapon that has been built to end the lives of millions of innocent people. \n\nSyphon Filter is an action game played from the 3rd person. Players take the role of Gabiel Logan as well as other CBDC agents. \nTo successfully complete the mission, players must utilize each of the character's skills accordingly. Logan is able to kneel, crouch, walk, roll, climb, jump and run to meet his objectives.\n\nThe action unfolds over thirteen missions that are chock full of dangers, hazards and puzzles.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Syphon Filter 2 (USA).txt",
    "content": "The sequel to the previous year's Syphon Filter, Syphon Filter 2 adds new features such as a two player mode, new locations, new weapons, and more.\n\nThe game compares to Goldeneye on the N64.\nIt's a shooter, but you must also use strategy.  You have a health meter, so it's not a \"one shot and you're dead\" type of game. You must complete missions, or battle it out in a deathmatch with your friends, or enemies.\n\nThe plot is about you having to prevent the sale of the Syphon Filter virus to a terrorist nation.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Syphon Filter 3 (USA).txt",
    "content": "Gabe and Lian are back -- however, this time, \"The Agency\" has put Lian and Gabe on trial for crimes they did not commit while they secretly plot to distribute Syphon Filter, a deadly virus, throughout the population.  And with Gabe and Lian on trial, there would be no one to stop them...\n\nThe game now includes mini-missions that allow you to sharpen your skills.  The basic mini-mission simply takes a map, drops you in, tosses in some enemies and weapons and lets you do the rest.  There is also an improved multiplayer element and tons of new weapons, including an X-Ray sniper rifle and an explosive shotgun.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Tactics Ogre (USA).txt",
    "content": "After generations of war between the various ethnic groups, King Dogare brought peace to the land of Valeria. When the king dies Valeria is split into three different groups, each claiming the throne. You take the role of a young boy as he embarks on a quest to save the land from turmoil and assume the throne. You will have to journey throughout the land and recruit members for an army. Once recruited, the members will gain experience through the turn-based battles.  \n \nUp to 10 party members can participate in any battle. Eventually, the characters can change classes and learn skills that are specific to each class. However, you will have to make sure your party is balanced or you will face certain doom. Will you be able to save the world from chaos in Tactics Ogre?\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Tail Concerto (USA).txt",
    "content": "Tail Concerto is an anime anthropomorphic / furry 3d platform adventure. You play as the character Waffle Ryebread, a police office as you track down and try to arrest the black cat gang.\n\nYou travel in a mech and can travel between the different lands in an airship. You interact with the townsfolk gathering clues and frequently battling the black cat gang (capturing the kittens).\n\nThe game also features anime cut scenes, and voice dialog during important events. This game has a similar feel to the games Mega Man Legends and The Misadventures of Tron Bonne.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Team Buddies (USA).txt",
    "content": "One fine and sunny day in the land that Buddies roam, there was a great and mighty disco in a tent. This tent would bob up and down with the music. All of a sudden, a large, flat, grey, flying THING blocked out the sun (The Great Eclipse) and began to drop crates. These crates were filled with all sorts of goodies such as Uzis and Bazookas. Inevitably, chaos broke out and the buddies became segregated according to color.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Tekken (USA).txt",
    "content": "Tekken is an arcade fighting game franchise created and developed by Namco. Beginning with the original Tekken arcade game released in 1994, the series has received several sequels, as well as various home conversions and spin-off titles released for consoles. The story in each game in the main series documents the events of the fictional martial arts tournament, The King of Iron Fist Tournament, which is hosted by the Mishima Zaibatsu corporation. The prize is typically control of the company, which then allows the winner to host the following tournament. \nThe arcade versions of the game have traditionally used PlayStation based hardware to run the games, and subsequently each Tekken installment was eventually made for its respective PlayStation.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Tekken 2 (USA) (Rev 1).txt",
    "content": "MORE THAN A SEQUEL. THE UNDISPUTED #1 FIGHTING GAME ON THE PLANET. \n \n23 OF THE GREATEST FIGHTERS ON EARTH. \nIncludes new characters, new bosses, each with new ways to inflict multiple ten-hit combos. \n \n23 NEW STAGES. \nMind blowing backgrounds with phenomenal light-sourcing. Jam to 23 new music tracks as you jam an opponents face in the ground. \n \nBRAND NEW 3D ANIMATIONS. \nCinematics at their finest. All-new intro sequence plus animations for each character not found in the arcade version. \n \nTHREE NEW FIGHTING MODES. \nNot available in the original: Survival Mode, Battle Mode & Practice Mode. \n \nMORE MOVES AND MULTIPLE COMBOS. \nNew attack and throw reversals plus new bone-snapping techniques.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Tekken 3 (USA).txt",
    "content": "An ancient evil force has reawakened, attacking in secret and feeding on the souls of mighty warriors. To lure it out of hiding will take the greatest fighting contest the world has ever seen... Tekken 3. Some are fighting for revenge, some for honor, ultimately, all are fighting for their lives and the fate of all mankind.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Tempest X3 (USA).txt",
    "content": "In Tempest X3 for the PlayStation, you control a claw that perches and crawls around the outer edge of a series of geometrically shaped, tube-like constructs, shooting down or out into the nebulous void of outer space. From the core of this void, fuseballs, rockets, pulsars, tankers and other hazardous aliens and alien artifacts move toward your ship. Once you clear a screen, you fly into the void and onto the next level. Watch out for spikes as you advance. \n This game features three modes of play: Classic Tempest, which is based on the early 1980s Arcade smash simply titled Tempest; an update of Tempest called Tempest X, which features a jump feature, A.I. Droids that help you fight and enhanced graphics and sound; and Tempest Duel, which pits you against a friend and the Generator, which cranks out an endless source of enemies. \n Features: \n * Blast through 99 colorful levels \n * Features both competitive and cooperative play for two \n * Includes the 1981 original and an enhanced version with new layouts and weapons\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Tenchu - Stealth Assassins (USA) (Rev 1).txt",
    "content": "After firing your grappling hook to the rooftop of a small house, you pull yourself up and notice a guard pacing back and forth on the ground. He doesn't see you as you begin to crawl and sneak around on the roof. If he detects your presence, you will be in a world of hurt; you will blow your mission and risk death. Patiently, you wait for the right time to jump down -- and end his life while his back is turned. \n Set in 16th century Japan, Tenchu: Stealth Assassins is a simulation of the ways of the stealthy ninja. You'll chose between two characters, Rikimaru and Ayame, with a main objective of remaining unseen throughout ten non-linear missions. You will move through the shadows, make your way across rooftops, dash through trees -- anything to cloak yourself from enemy sight. While completing the missions, you are judged on three levels that measure your success in the fields of elusiveness and effectiveness. \n Each mission is different in its design and goal. Your mentor will have you run secret errands to informants, kill evil merchants and thieves, and rescue captive ninjas. Along the way, the enemy resistance has set up traps and assigned guards to keep a watchful eye for any interference (that would be you). Because Tenchu is a simulation of sorts, running up and engaging an enemy combat is not advised -- that's not the way of the ninja.  \n A ninja is cunning and in order to uphold his duty, he must remain unseen. If you brazenly walk up to a group of enemies and try to kill them all, you may get through a couple, but you will ultimately fail and dishonor your people. As far as weaponry goes, make use of throwing stars and actual ninja assassin swords. For the truly cunning players, poisoned rice and smoke bombs are included as special items. If a guard will not go away, try putting some rice down for him to eat - he'll get sick and collapse.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Tenchu 2 - Birth of the Stealth Assassins (USA).txt",
    "content": "Before the events of Tenchu, the House of Gohda is rocked by betrayal. As shadow warriors Rikimaru, Ayame and Tatsumaru, you are called on to restore pride to the name of your master. For you have been born to a life of honor... a life of stealth. Discover even more ways to slay your foes with 21 new stealth kill techniques. Take on the role of three ninja assassins, each with their own story and fighting techniques. Strike from the shadows in 29 new day and night stealth missions. Utilize a variety of new ninja weapons and items, like flaming arrows and invisibility.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Threads of Fate (USA).txt",
    "content": "Threads of Fate combines the gameplay of a real-time 3d adventure with an RPG typical character-system. The game provides two different main characters and two different storylines.\n\nThe young warrior Rue embarks on a journey to revive his lost beloved guardian, Claire. Mint, who lost  her right to the throne of East Heaven Kingdom, is seeking world domination and vengeance against her younger sister. Both of them live in the same world at the same time and both of them are looking for the same powerful relic to help them achieve their goals.\n\nOn their journey both characters have to explore areas filled with challenging puzzles and unusual enemies. To solve certain mysteries or clear certain obstacles, they have to make use of special abilities. By using collected coins, Rue has the ability to shape-shift into the forms of defeated monsters, whereas Mint can learn and use a variety of powerful magical spells.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Thunder Force V - Perfect System (USA).txt",
    "content": "In a grim future where a once-benevolent alien technology has turned against humanity, only a ragtag group of ace pilots can save the Earth from total annihilation. Code name: Thunder Force! Witness the first 32-bit installment of the massively popular shooter series! Five spectacular weapons with multiple power-up levels let you blast through waves of metallic predators, and look good doing it. A constant barrage of innovative enemies keeps you intrigued while you struggle to stay alive. A speaker-imploding soundtrack has your foot tapping as your fingers are mashing. Unbelievable rendered cutscenes draw, no-DRAG you kicking and screaming into the action. Put simply, it's the ultimate hardcore gaming blast-o-rama!\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Time Bokan Series - Bokan desu yo (Japan).txt",
    "content": "Time Bokan is a Japanese anime series first aired on Fuji TV from October 4, 1975 to December 25, 1976 throughout Japan every Saturday at 6:30pm, with a total of 61 30-minute episodes. It was produced by Tatsunoko Productions, who later produced a number of spinoff programs as part of the \"Time Bokan Series\": \n Dr. Kieda, a somewhat slightly wacky, but intelligent scientist, has finally succeeded in inventing insect-shaped all-terrain time machines called \"Time Bokan\". To prove its efficiency and safety, he decides to serve as the very first guinea-pig for its maiden voyage. However, by the time the machine returned, he isn't anywhere inside. The only thing that returned with it is a talking parrot, along with a large gemstone called the Dynamond, which is seemingly the most powerful and valuable jewel in the world. \n Now it is up to a search party, founded by Dr. Kieda's lab assistant Tanpei, to travel though time to find Dr. Kieda; but it seems that someone power hungry is looking for the \"Dynamond\"... \n In Time Bokan Bokandesuyo the player controls \"The Skull Trio\" (Marjo, Grocky & Walther) using different kind of vehicles, bombs and power-ups in a vertical 2d shooter game.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Tiny Tank (USA).txt",
    "content": "In a future world, an army of steel robots are out to destroy the human race. Our only hope is a little yellow tank armed with some mighty big guns. The sentient Tiny Tank was originally created to appease a public that feared the mindless violence waged by larger war-robots, but he was soon destroyed by one of those jealous automatons at the beginning of the robot revolution 100 years ago. Almost destroyed, at least. \n Thanks to nano-technology, hundreds of microscopic \"Fix-It Crabs\" went to work and Tiny Tank was slowly rebuilt. Now he alone stands against the threat of the cruel MuTank and his deadly robot minions, who have all but erased human civilization from the planet's surface. The spunky little tank will need luck, strategy, and all the futuristic firepower he can get his treads on to save the human race. \n STORY: \n Sometime before 2094 A.D., all of Earth's armed forces were disintegrated into one large corporation, SenTrax. SenTrax vowed to create a robot army to fight humanity's wars, so mankind itself would not have to. However, they needed the peoples' vote to set this plan into motion, and thus developed the titular \"Tiny Tank\" - a small yellow tank with an occasionally unfriendly attitude. The creation of this cute killing machine made SenTrax's popularity skyrocket, and won them the vote. As thanks, the corporation set up an exhibition showing their yellow mascot fighting off the entire SenTrax army on July 4, 2094, broadcast live over the Internet. However, once the event began, one of the SenTrax robots had been accidentally fitted with live ammunition and destroyed Tiny with one shot. As a result, Tiny's \"positronic brain\" (his artificial intelligence system) shattered, and its shards gave \"life\" to the entire robot army. The robot that had fired the shot, now self-aware and calling himself Mutank, took control of the rampant robots and began to eliminate humanity so that machines could thrive. Humanity was forced to evacuate into underground asteroid shelters as the mechanical army conquered the surface. \n On July 4, 2194 A.D., exactly 100 years later, Tiny Tank was finally rebuilt thanks to automated SenTrax Fix-It Crabs, which were minuscule robots made to repair broken machinery. A female artificial intelligence on board an orbital satellite reawakened Tiny, and sent him to fight Mutank's robot army and save mankind. \n GAMEPLAY: \n Tiny Tank is a relatively straightforward third person shooter. The player controls Tiny as he traverses many levels, eliminating SenTrax forces as he goes. There are two bars at the top of the screen that show Tiny's health and the amount of nanometal acquired. Nanometal is essential for the on-board Fix-It Crabs to repair Tiny. If the nanometal meter runs out, health cannot be regenerated. There is also a map on the upper right hand corner identifying the surroundings, enemies, and mission objectives.Tiny canalso pick up fallen parts from destroyed enemie. \n Features: \n Free-roaming warfare across 3D battlefields \n Command \"Teeny Weeny\" tanks to scout ahead or retrieve weapons \n Analog Control and Vibration Function compatible \n Two-player Death Match mode\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Tobal No. 1 (USA).txt",
    "content": "Tobal No. 1 is a fighting game for the PlayStation developed by DreamFactory and published by Square in 1996. The game was DreamFactory's first release, as well as Square's first release on the CD-based console. \n Tobal No. 1 marks Square's incursion into the fighting game genre, although an adventure-like quest mode is part of the game. The game's mechanics were designed with the aid of fighter game designer Seiichi Ishii, while all the characters were designed by Akira Toriyama of Dragon Ball fame. The sequel, Tobal 2, was never released in North America and Europe. \n Packaged with both the North American and Japanese version of the game was a sampler disc featuring a pre-release demo of Final Fantasy VII and video previews of Final Fantasy Tactics, Bushido Blade, and SaGa Frontier. \n STORY: \n Tobal No. 1 takes place in the year 2027 on a fictional planet called Tobal, which has large deposits of Molmoran, an ore that can be used as an energy source. The planet's 98th tournament is held to determine who has the rights to the ore. A number of humans and aliens compete for the title. The game's plot and character backstories are only explored in the instruction manual. All of the initial eight playable characters receive the same ending. \n The game's immediately playable characters include Chuji Wu, Oliems, Epon, Hom, Fei Pusu, Mary Ivonskaya, Ill Goga, and Gren Kutz. Bosses include Nork, Mufu, and the emperor Udan. All bosses are unlockable after defeating them in Dungeon Mode except Nork. Instead, the game allows the player to select Snork (Small Nork), a pint-sized version of the very large character. There is also one secret fighter named Toriyama Robo (named for Akira Toriyama) who is unlockable if the player can complete the 30-floor Udan's Dungeon level in the quest mode. Toriyama Robo is not seen at any point in the game except at the very end of the dungeon. \n GAMEPLAY: \n Tobal No. 1 has various gameplay modes including a tournament mode, two player versus mode, practice mode, and the unique quest mode, all of which utilize the same fighting system. The game itself runs at up to a smooth 60 frames per second due to its lack of textured polygons and reduced details which gave the game a distinctive look in comparison to other fighting games at the time, such as Tekken 2. The game's controls are unique in that they allow full freedom of movement in the ring as long as the player faces the opponent. The player has the ability to dash and jump, and certain buttons execute high, medium, and low attacks for each character. Tobal No. 1 also has an intuitive grappling and blocking system, offering the player a variety of throws and counter moves. \n Perhaps the most distinctive feature of Tobal No. 1 is the \"Quest Mode\", which combines the game's fighting controls with three-dimensional dungeon exploration. The player must advance down a number of floors, contend with traps, and engage in fights with a variety of enemies including the game's playable characters. Several items can be found, dropped by enemies, or bought using crystals. These items can be picked up, consumed, or thrown at enemies, and include foodstuffs that can restore the player's HP or potions that have a range of effects including raising the player's maximum health or bringing it down to 1 point. There is no way to save one's progress, and dying means starting over from the beginning. Defeating certain characters in this mode unlocks them as playable characters in the game's other modes. \n Each of the eight initially playable characters can perform high, medium, and low attacks, and the game makes use of a grappling and blocking system that lets players execute a variety of throws and counterattacks. \n Features: \n Featuring such modes of play as \"Tournament,\" \"Vs.,\" and \"Quest\" \n Kick, punch, guard, jump, dash, and attack your way through the darkness of a dungeon to locate the Molmoran \n Select from 11 different characters including Emperor Udan, Nork, Hom, Epon, and Oliems\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Tomb Raider Chronicles (USA) (Rev 1).txt",
    "content": "A few days after the events described in Tomb Raider: The Last Revelation, Lara Croft is presumed dead. Her close friends begin to recollect her previous adventures, which occurred during different periods of her life. These include searching for the Philosopher's Stone in Rome; preventing the Spear of Destiny from falling into the hands of a ruthless gang leader; facing monsters on the Black Isle of Ireland as a child; and, finally, infiltrating a high-tech complex in pursuit of the Iris artefact. \n \nLike its predecessors, Tomb Raider: Chronicles is an action game with puzzle-solving and platforming elements. The gameplay is very similar to that of the previous games, with the addition of a few new skills. Lara can now walk on tightropes, swing on horizontal bars, and somersault forwards from a ledge while crouching. A grappling hook has been added to her inventory. The game also includes a level editor, allowing the player to create new stages for Lara to explore.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Tomb Raider II - Starring Lara Croft (USA) (Rev 3).txt",
    "content": "The story of Tomb Raider II surrounds the mythical Dagger of Xian, a weapon which was used by an Emperor of China to command his army. By plunging the weapon into its owner's heart, the weapon has the power to turn its bearer into a dragon. A flashback reveals that the last battle which was fought with the Dagger ended in defeat when the warrior monks of Tibet succeeded in removing the knife from the Emperor's heart. The Dagger was then returned to its resting place within the Great Wall.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Tomb Raider III - Adventures of Lara Croft (USA) (Rev 2).txt",
    "content": "Lara goes in search of 4 mysterious artifacts carved into the rock of an ancient meteorite. Her new mission will take her to the depths of the Indonesian jungle, to the heart of India, to the ice of Antarctica, to the rooftops of London and to the mysterious Area 51 in Nevada. During her travels Lara will have to thwart many traps, solve new puzzles and face a horde of bloodthirsty enemies. \nFind Lara for her most dazzling and perilous adventure. You will be amazed! \n\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Tomba! (USA).txt",
    "content": "Aside from sporting a wacky pink hairdo, Tomba! offers a long and brain twisting experience that mixes the traditional 2D side scrolling action/platformer with the elements of a role-playing game. The game starts out simple enough with the evil Koma Pigs stealing Tomba's bracelet, which was given to him by his grandfather. You assume the role of Tomba and begin your adventure. Little do you know that the quest for your bracelet will turn into so much more. \n \nBecause of its role-playing elements, in Tomba!, your character will gain experience points, develop new skills and learn new things. He has seven abilities that can be learned throughout the duration of the game. Once all three experience meters reach level ten (in order to do this, Tomba must do certain things), he will unlock and learn an ability.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Tomba! 2 - The Evil Swine Return (USA).txt",
    "content": "Explore an all new 3D world. Use your trusty fire hammer, ice boomerang or or blackjack to turn the evil pigs into bacon. Throw on super-duds like a flying squirrel suit or high speed turbo pants. There's no limit to the stuff you can do.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Tony Hawk's Pro Skater (USA).txt",
    "content": "Go Big, Go Pro! Skate as legendary Tony Hawk, or as one of nine top pros. Work your way up the ranks by landing suicidal tricks in brutal competitions to become the highest ranked skate champ! Great features such as: Signature Pro Moves, fully skateable worlds, head-to-head competition, and Instant Replay Mode.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Tony Hawk's Pro Skater 2 (USA).txt",
    "content": "Tony Hawk's Pro Skater 2 features the series' trademark open-ended gameplay, in which the player (playing as a professional skateboarder) completes a number of tasks which result in cash rewards. With money gained, the player can then purchase skill improvements and better skateboards. THPS2 was also the first game in the series to introduce the manual, a skateboarding trick where the performer balances on two wheels. This enables players to string together trick combos. The game also introduced the Noseslide, Tailslide, Bluntslide, Nosebluntside, Feeble, and Overcrook grinds. It was also the first of the Pro Skater games to feature Create-a-Skater and Park Editor features, now staples in the series.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Trap Gunner (USA).txt",
    "content": "In Trap Gunner two opponents battle in small arenas, and while each has a relatively weak ranged and melee attack, the favored means of damaging an opponent is through hidden traps. Each combatant has at his or her disposal a range of explosives, pits, throwing panels, and gas bombs. An enemy is significantly damaged by a single trap, but one may create a sequence of traps for a devastating amount of damage. \n \nWith one of six different special agents, each a specialist in assassination and demolitions, a player may progress through a story mode consisting of several missions, a sub-boss, and a final boss. These characters are also available for custom battles against a human or the computer.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Twisted Metal (USA).txt",
    "content": "The original classic!  Choose from 12 different vehicles ranging from a rig to a bike and try to win the Twisted Metal contest.  TM features plenty of weapons, including fire missiles, homing missiles, mines, and of course, each car has their own special weapon that delivers huge damage with cool effects. All battles are waged in 3D combat arenas, with plenty of power-ups and secret areas to find, which adds depth - which is important because TM in not really a single player game.  Though it has a single player mode, the real meat is in the two-player battles.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Twisted Metal 2 (USA).txt",
    "content": "Twisted Metal features destructive car combat, playable either as a complete tournament or a single match The action takes place in 8 different locations around the world, on differing surfaces, many featuring destructible buildings and landmarks.\n\nCombat takes place between a wide array of vehicles ranging from a man strapped between two wheels to an ice cream truck. They have their own strengths and weaknesses,  using an eclectic arrangement of weaponry include bombs and missiles, and resulting in its own end sequence, complete with an ironic line in humour.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Um Jammer Lammy (USA).txt",
    "content": "Introducing Lammy, a totally rockin' guitarist.  In day-to-day life, she's quite timid, shy, and wimpy - but put a guitar in her hands, and she'll blow you away!  Help Lammy get to her latest gig on time, and face obstacles such as flaming buildings, out-of-control airplanes, and even getting trapped in Hell.\n\nIn this sequel to PaRappa The Rapper you play as Lammy, a guitarist for MilkCan - the coolest, hippest band ever!  While PaRappa focused on lyrics, with each button controlling a different word; Lammy is a guitar player, so naturally, each button controls a different note on the guitar.  Lammy will encounter seven different teachers on her travels to the big gig, so either follow their lessons accurately, or do even better - improvise and blow them all away with your axe.  The teacher will then step away for you to go it solo for an even better performance.\n\nLammy improves over PaRappa in a multitude of ways.  Rather than just being a single player experience, you can now play the game with a friend.  Any stages that you unlock can be played either co-operatively or competitively.  If you don't have a friend to play co-operatively with, you can also get the computer to take on the role of your partner.  After finishing the initial game, PaRappa also makes a return, allowing you to play through the game again with raps instead of Lammy's guitar.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Vagrant Story (USA).txt",
    "content": "Valendra is a land that had undergone civil war. The end of which had birthed the parliament and several organizations to control the balance of power. Ashley Riot is a Riskbreaker agent, an elite one man investigator, for the Valendia Knights of Peace (VKP) who is investigating some strange occurrences. A cult of religious fanatics known as Mllenkamp, and their leader Sydney Losstarot, have seized the manor of Duke Bardorba of Valendia Kingdom. The events at the manor have sent Ashley on a quest to get to the bottom of what's going on, and travel into the catacombs that lead to the destroyed, yet magical city of Le Monde. However Ashley is not the only person interested in the city, and other factions of the government, including parliament assigned Knights of the Crimson Blade and other VKP agents are pursuing their own agenda. \n\nCombat is central to the game. The game runs in real time but when entering combat and attacking an enemy, the game is paused. A wireframe sphere showing the range of the currently selected weapon and detailed statistics on different body parts of the enemies within range.\n\nThe game features a range of weapons. Each weapon can be disassembled and reassembled in workshops scattered throughout the game, attaching gems for extra power. Weapons used constantly against the same type of enemy improve in power against them.\n\nAshley can also make use of Magic, Chain Abilities and Break Arts. Magic is broken into four groups, namely defense, combat, healing and status. Spells use up mana points and are sometimes more costly than useful. Chain Abilities allow Ashley to \"chain together\" consecutive hits against enemies. Break Arts are special skills learnt after repetitive use of a weapon type. Sacrificing some of the player's health, Break Arts can perform a high damage attack on an enemy.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Valkyrie Profile (USA).txt",
    "content": "In preparation for Ragnarok, the final battle between the gods, Odin has commanded Lenneth the Valkyrie to descend to the lower world and gather the souls of fallen heroes to serve as soldiers in the approaching conflict. You play as Lenneth, gathering soldiers and training them to be transferred to the battlefields of the gods.\n\nThe gameplay mainly consists of exploring various locations (dungeons, mansions, swamps) from a 2D perspective. Lenneth can run, jump, shoot ice crystals (useful for anything from freezing enemies to building ledges), push and pull objects to solve simple puzzles, etc. All of the enemies are on-screen and can usually be avoided, in the style of games like Chrono Cross and SaGa Frontier 2. The battle system is a mix of real-time and turn-based elements. Each of the characters (up to three can fight alongside Lenneth at a time) is assigned to one of the four main keys. The player and the enemy take turns attacking, but with the right timing, the player can execute combos that leave enemies defenseless. Long combos can result in substantial experience bonuses, although it is possible to defeat most enemies without them.\n\nThe rest of the game consists of Lenneth using \"spiritual concentration\" to discover the locations of dungeons and fallen heroes, ingame-engine cutscenes that give the history of these characters, and reports about the war's progress that come at the end of each \"chapter\". The chapter system is one of the game's most original features. Each chapter (there are about 8) is made up of a preset number of periods. Each action, such as a successful use of spiritual concentration, or entering a town/dungeon, uses a number of periods that varies with the difficulty level. When all of the periods have passed, the chapter is over. Since the player must transfer heroes to Valhalla in the course of each chapter (permanently losing them), but has only a limited amount of time to improve their statistics, the game has a sense of urgency and danger often absent from more traditional console RPGs.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Vanark (USA).txt",
    "content": "Vanark is, at its core, a shooter. Sure, it's a 3D shooter \"on rails\" in the grand tradition of Star Fox or the Saturn's Panzer Dragoon series, but the difference here, is that it's the PlayStation's first great example of one. It's a tried-and-true method of laying on the action, and while there were plenty of opportunities for Asmik to screw up the formula, but luckily, they never really dropped the ball, at least not when it came to the shooter parts.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Vandal Hearts (USA).txt",
    "content": "Vandal Hearts is a turn-based strategy RPG. It follows a fixed plot-line with set battles, focusing more on strategic elements than adventure elements. \n\nThe combat takes place in a series 3D grid based maps and each character in the party has a certain amount of movements they can perform each turn. As the game progresses, other characters join and leave the party and as they increase in level they can progress along different paths of development. Between each battle there is a cut scene that develops the plot using the same 3D engine as the combat (and often the same areas).\n\nIn between battles you have the opportunity to talk to people in cities as well as purchase different equipment for the up coming battles.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Vandal Hearts II (USA).txt",
    "content": "Vandal Hearts II is a turn based strategic RPG which is comparable to the more famous Fire Emblem series. \n \nMost of the gameplay consists of moving your party on 3D grid based maps in a way that will give you a strategic advantage over your enemies. The main difference between Vandal Hearts II and its predecessor is the change of the battle system. Unlike in Vandal Hearts you and your enemies issue the commands at the same time and then move simultaneously. That results in in completely new strategies and gives the game a unique touch. \n \nThe story takes place in the already collapsed church state of Nirvadia, that was once formed by the religious leader St Nirvath, but eventually ceased to exist, because of several conflicts between unbelievers and local rulers. Caused by a chain of coincidences, the young boy Joshua, from a small and unimportant village in the east, eventually finds himself within a complex political scheme set in motion by power-hungry aristocrats and religious fanatics.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Vib-Ribbon (Europe) (En,Fr,De,Es,It).txt",
    "content": "Your rabbity character, Vibri, is composed of some fairly basic geometric shapes. Vibri skips around along the eponymous vib ribbon and you have to control Vibri until the end, dodging obstacles to rack up as many points as you can. \n The game is a music/party game. Japanese band Laugh and Peace provides this game with some of it's soundtrack. The soundtrack is used to generate the game levels. By analyzing the music being played, the game creates the level you are playing in real-time and forces you to navigate that level. Then once you have mastered the songs that come with Vib Ribbon, you can then put in your own music CD's to see what wild challenges you can create.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/WarGames - Defcon 1 (USA).txt",
    "content": "The player gets to play as NORAD or WOPR. According to the game's cover box, the story takes place 20 years after the film: WOPR attempts to exterminate humanity and NORAD tried to stop it. During a mission the player takes control of a vehicle and can change the controls of any vehicle the team has - for example, while NORAD has heavily armored and armed tanks and aircraft, WOPR possesses exotically futuristic mechs and hovercraft. Vehicles could recharge ammo by obtaining powers. A unique feature in the game allows the player to command their team to send resupply on ammos or repair damage units. The game allows the player to command teammates to attack or follow the player's main vehicle.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Wild 9 (USA).txt",
    "content": "Wild 9 is a 2D platformer with 3D graphics, featuring gameplay similar in vein to the company's 2D Earthworm Jim games. Unique to Wild 9 is the 'rig', a weapon your character wields to carry enemies to torture and maim them to solve puzzles and progress through the game's ten levels. Basically, it's an interesting twist and homage to more old-school Super NES video gaming.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Wild Arms (USA).txt",
    "content": "Wild Arms is a classic style RPG with some wild west aspects such as guns (called ARMS) thrown in.  The main map view is done with graphics similar in style to those found on SNES RPGs but to a higher quality.  Combat is a typical turn based mode in 3D mode where you designate each characters actions at the start of each round.\n\nDuring the game you control three characters: Rudy, a wanderer who uses ARMS, Jack, a treasure hunter, and Cecilia, an aprentice wizard.  During the game you encounter the usual hordes of monsters and discover a series of giant robot like cretures refered to as golems which play an important role in the plot.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Wild Arms 2 (USA).txt",
    "content": "\"Wild Arms 2\" isn't really a sequel to Sony's original title. Your hero, a young soldier Ashley, is transformed to a demon. Ashley is determined to purge the evil from his body. He meets Brad, a criminal and a war-hero, and Lilka, a female magician. Together, they start a journey in order to discover the unknown foes which have corrupted Ashley, but soon they find out that a much greater conspiracy has taken place...\n\nThe combat system in \"Wild Arms\" is very similar to the one in Final Fantasy games: turned-based attacks, and a menu choice of physical attacks, spells, and even Guardians, which are more or less the same like the Guardian Forces in \"Final Fantasy VIII\". The \"Arms\" are special abilities which the party members learn while progressing in the game. \n\n\"Wild Arms 2\" also has many adventure elements, which links it to Nintendo's Zelda games. The dungeons (which can - and must - be viewed rotating the camera) contain many puzzles to solve.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/WipEout (USA).txt",
    "content": "Wipeout is a futuristic racing game set in the year 2052. Racing for one of four teams, the player competes in the F3600 Anti-Gravity Racing League on six tracks. Each team's hovercraft racer has different ratings in speed, acceleration and turning. In addition to high-speed racing, there is also shooting in the game, with different weapon pickups like rockets and mines available, useful for slowing one's opponents down. Shields can also be picked up and can block the weapons' effects.\n\nThere are championship, single race and time trial modes. Winning the championship in the regular Venom class unlocks the Rapier class, where the craft are faster and the tracks have slightly different looks.\n\nThere is also a two-player mode where two opponents can race and shoot at each other.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/WipEout 3 - Special Edition (Europe) (En,Fr,De,Es,It).txt",
    "content": "Wipeout 3: Special Edition was released exclusively in Europe on 14th July 2000. It features many minor changes to gameplay, such as different craft physics, auto-loading of saves, unlock messages and AI bugfixes. Special Edition also adds eight courses from previous Wipeout titles (three from Wipeout and five from Wipeout 2097) plus two hidden prototype circuits previously only available in the Japanese version of Wipeout 3, giving total of 22 tracks compared to just 12 in the standard edition. \n \nWipeout 3: Special Edition also allows for four-person multiplayer, using two televisions and two PlayStation consoles connected with the PlayStation Link Cable. Wipeout 3: Special Edition was the last game in the Wipeout series made for the PlayStation.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Wipeout XL (USA).txt",
    "content": "A breakneck speed racing game set in the year 2097 featuring anti-gravity hovercrafts. The vehicles can \"pick up\" weapons and power-ups by flying over the weapon grids marked on the track.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/X-COM - UFO Defense (USA).txt",
    "content": "After an outbreak of UFO sightings and alien abductions, panic spread like wildfire across the globe. What exactly was happening? Have aliens come to take over Earth? Realizing the need to address the situation, delegates from the world's superpowers gathered in Geneva to decide on a plan of action. \n   An agreement was reached to form a secret group to investigate this potential alien threat, and if necessary, use deadly force to stop them. This covert organization would be called the Extraterrestrial Combat unit (X-COM for short), composed of the most talented pilots, troops, scientists and engineers the world had to offer. \n   X-COM: UFO Defense is based on the 1994 PC game originally developed by Mythos Games Ltd. The player assumes control of the X-COM task force, building bases and tracking various UFOs on a 3D map of Earth. Once a UFO is spotted (represented by a red cross), you must try to intercept it so that it crashes over dry land. You'll then need to send your heavily armed squad to the site, where you'll witness the downed craft and surrounding terrain from an isometric perspective. \n   Moving your troops is accomplished through a point-and-click interface with each side alternating turns. Your three goals are to (1) engage the aliens face to face, (2) either stun or kill them, and (3) retrieve whatever technology or weapons you find so your scientists can replicate them. After all, you have to fight fire with fire! The PlayStation version supports both the mouse and memory card, with the latter allowing you to save the game at any point (as long as you have five blocks free).\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Xenogears (USA).txt",
    "content": "After losing his memory, Fei Fong Wong found himself in the small town of Lahan. Because he couldn't remember who he really was or where he came from, he decided to stay there and teach martial arts and paint -- one of his personal hobbies. After his arrival, he became friends with the various townsfolk, who in return treated him like one of their own. Still, who he was and what happened to him in his past bothered him; he was afraid it would come back to haunt him one of these days. \n   And it did. One day, an organization in control of large Gears, mechanized robots built for war purposes, came into the small town of Lahan. Fei was at the center of attention and with no hesitation jumped into a nearby Gear and started fighting back. The villagers were scared to death as he began to destroy the threatening enemies; he also aided in the destruction of the town. Enraged at the way he had handled himself, the townsfolk exiled Fei from the village with his only friend being an inventor named Citan. \n   \n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Xevious 3D-G+ (USA).txt",
    "content": "In Xevious 3-D/G+, you pilot a sleek Solvalou space fighter blasting and bombing your way through an overwhelming alien invasion force consisting of airborne attackers, ground defenses, and enormous \"boss\" motherships. \n   Based on the premise that aliens who originally settled Earth have returned (and they're not happy about the proliferation of the human race, go figure), Xevious 3-D/G+ is a 3-D remake of the original Namco classic Xevious (licensed to Atari in the early 1980s). \n   The new game sticks to the basic concepts of the original Xevious, right down to the familiar overhead view. Power-ups offer new weapons such as constant-fire, electrocution beams and wide-dispersal lasers --- but along with new weapons come new enemies and new bosses who aren't quite so easy to eliminate. \n   Included as a bonus are the original Xevious, emulated to perfection (a nice addition since the only other PlayStation version available is on the rather hard-to-find Namco Museum Volume 2), and the only console version available of Xevious Arrangement, a more obscure coin-up conversion designed to vex those who had plowed their way through the original.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/YoYo's Puzzle Park (Europe).txt",
    "content": "YoYo's Puzzle Park is a puzzle platform game for the PlayStation.\n\nAt the opening ceremony of the Gussan Paradise theme park, a creature known as YoYo invades it. He takes hostages from the crowd and manages to elude the police and take control of the park. It's up to Guss and Yodie, two innocent bystanders, to take back the park.\n\nThe game features some sixty platform filled levels similar to Bubble Bobble. The player (as Guss or Yodie) can hop around on them, while avoiding the enemies that crowd the platforms. The enemies hurt the player by touching them, and some have ranged attacks like lasers. The players can strike back at the enemies with bombs that scatter the level, throwing or jumping on them activates their two second fuse. The goal is to kill all the enemies in a level within the time limit.\n\nTo aid the protagonists there are several collectibles such as vehicles. Guss and Yodie can also stun enemies with their Yo-yos.\n\nIn the multi-player mode, you can fight against your friends in a two player deathmatch game.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Yutona Eiyuu Senki - TearRingSaga (Japan) (Translated).txt",
    "content": "Tear Ring Saga is a tactical RPG with gameplay very similar to the gameplay found in the Fire Emblem series of video games. The game was created as a spiritual sequel to Fire Emblem by the game's creator, Shouzou Kaga, who no longer had the rights to the Fire Emblem intellectual property upon leaving Intelligent Systems and Nintendo. The game shares the same interface, graphical and music style, and overall gameflow.The game involves the player moving characters in a turn based fashion across a large grid from a top-down perspective. The player is tasked with certain objectives, commonly fighting and defeating an entire opposing faction, or a particular member or leader of a faction. \n \nThere are two protagonists in the game, Runan and Holmes, each with their own army to command. Though the two armies travel separately for the majority of the game, they cross paths at several points of the story, allowing the player to switch allocations of fighters and items amongst the two groups. Runan's story follows a strict set of scenarios where he battles against an enemy empire, while Holme's scenario allows for more freedom, allowing the player to ignore the main scenarios in favor of gathering treasure and increase the army's strength.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/Zanac x Zanac (Japan).txt",
    "content": "Zanac X Zanac was released to celebrate the Compile's 15th anniversary of the release of its classic NES game, Zanac. \nZanac is an arcade-style who players fly a lone starfighter, dubbed the AFX-6502 Zanac, through twelve levels; their goal is to destroy the System?a part-organic, part-mechanical entity bent on destroying Mankind. \nZanac differs from other vertical shooters in its ability to adapt to your strengths and to adjust the game to attack your weaknesses. Your performance during the game and your choice of subweapon will partially determine what and how much Zanac will send at you.\n"
  },
  {
    "path": "Tiny Best Set/MUOS/info/catalogue/Sony PlayStation/text/iS - Internal Section (Japan) (Translated).txt",
    "content": "INTERNAL SECTION is best described as a \"sound reactive\" shooting game. It is set up very similar to the classic arcade game TEMPEST or more recently, the PSX game N2O. All three of these are shooters where the player controls a ship \"looking down\" and long tunnel or tube and the player can move around inside the cylinder, shooting enemies that it runs to while moving. I will make most of my comparisons to N20 because it is apparent that the two games have a lot of similarities.\n"
  }
]